1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef SC_AUTOSTYL_HXX 25 #define SC_AUTOSTYL_HXX 26 27 #include <vcl/timer.hxx> 28 #include <tools/list.hxx> 29 #include <tools/string.hxx> 30 31 class ScDocShell; 32 class ScRange; 33 34 class ScAutoStyleList 35 { 36 private: 37 ScDocShell* pDocSh; 38 Timer aTimer; 39 Timer aInitTimer; 40 sal_uLong nTimerStart; 41 List aEntries; 42 List aInitials; 43 44 void ExecuteEntries(); 45 void AdjustEntries(sal_uLong nDiff); 46 void StartTimer(sal_uLong nNow); 47 DECL_LINK( TimerHdl, Timer* ); 48 DECL_LINK( InitHdl, Timer* ); 49 50 public: 51 ScAutoStyleList(ScDocShell* pShell); 52 ~ScAutoStyleList(); 53 54 void AddInitial( const ScRange& rRange, const String& rStyle1, 55 sal_uLong nTimeout, const String& rStyle2 ); 56 void AddEntry( sal_uLong nTimeout, const ScRange& rRange, const String& rStyle ); 57 58 void ExecuteAllNow(); 59 }; 60 61 62 63 #endif 64 65