Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <time.h>
22 :
23 : #include "attrib.hxx"
24 : #include "autostyl.hxx"
25 : #include "docsh.hxx"
26 : #include "sc.hrc"
27 :
28 0 : struct ScAutoStyleInitData
29 : {
30 : ScRange aRange;
31 : OUString aStyle1;
32 : sal_uLong nTimeout;
33 : OUString aStyle2;
34 :
35 0 : ScAutoStyleInitData( const ScRange& rR, const OUString& rSt1, sal_uLong nT, const OUString& rSt2 ) :
36 0 : aRange(rR), aStyle1(rSt1), nTimeout(nT), aStyle2(rSt2) {}
37 : };
38 :
39 0 : struct ScAutoStyleData
40 : {
41 : sal_uLong nTimeout;
42 : ScRange aRange;
43 : OUString aStyle;
44 :
45 0 : ScAutoStyleData( sal_uLong nT, const ScRange& rR, const OUString& rT ) :
46 0 : nTimeout(nT), aRange(rR), aStyle(rT) {}
47 : };
48 :
49 0 : inline sal_uLong TimeNow() // Sekunden
50 : {
51 0 : return (sal_uLong) time(0);
52 : }
53 :
54 : namespace {
55 :
56 0 : class FindByRange : public ::std::unary_function<ScAutoStyleData, bool>
57 : {
58 : ScRange maRange;
59 : public:
60 0 : FindByRange(const ScRange& r) : maRange(r) {}
61 0 : bool operator() (const ScAutoStyleData& rData) const { return rData.aRange == maRange; }
62 : };
63 :
64 : class FindByTimeout : public ::std::unary_function<ScAutoStyleData, bool>
65 : {
66 : sal_uLong mnTimeout;
67 : public:
68 0 : FindByTimeout(sal_uLong n) : mnTimeout(n) {}
69 0 : bool operator() (const ScAutoStyleData& rData) const { return rData.nTimeout >= mnTimeout; }
70 : };
71 :
72 : struct FindNonZeroTimeout : public ::std::unary_function<ScAutoStyleData, bool>
73 : {
74 0 : bool operator() (const ScAutoStyleData& rData) const
75 : {
76 0 : return rData.nTimeout != 0;
77 : }
78 : };
79 :
80 : }
81 :
82 0 : ScAutoStyleList::ScAutoStyleList(ScDocShell* pShell)
83 : : pDocSh(pShell)
84 0 : , nTimerStart(0)
85 : {
86 0 : aTimer.SetTimeoutHdl( LINK( this, ScAutoStyleList, TimerHdl ) );
87 0 : aInitTimer.SetTimeoutHdl( LINK( this, ScAutoStyleList, InitHdl ) );
88 0 : aInitTimer.SetTimeout( 0 );
89 0 : }
90 :
91 0 : ScAutoStyleList::~ScAutoStyleList()
92 : {
93 0 : }
94 :
95 : // initial short delay (asynchronous call)
96 :
97 0 : void ScAutoStyleList::AddInitial( const ScRange& rRange, const OUString& rStyle1,
98 : sal_uLong nTimeout, const OUString& rStyle2 )
99 : {
100 0 : aInitials.push_back(new ScAutoStyleInitData( rRange, rStyle1, nTimeout, rStyle2 ));
101 0 : aInitTimer.Start();
102 0 : }
103 :
104 0 : IMPL_LINK_NOARG(ScAutoStyleList, InitHdl)
105 : {
106 0 : boost::ptr_vector<ScAutoStyleInitData>::iterator iter;
107 0 : for (iter = aInitials.begin(); iter != aInitials.end(); ++iter)
108 : {
109 : // apply first style immediately
110 0 : pDocSh->DoAutoStyle(iter->aRange,iter->aStyle1);
111 :
112 : // add second style to list
113 0 : if (iter->nTimeout)
114 0 : AddEntry(iter->nTimeout,iter->aRange,iter->aStyle2 );
115 : }
116 :
117 0 : aInitials.clear();
118 :
119 0 : return 0;
120 : }
121 :
122 0 : void ScAutoStyleList::AddEntry( sal_uLong nTimeout, const ScRange& rRange, const OUString& rStyle )
123 : {
124 0 : aTimer.Stop();
125 0 : sal_uLong nNow = TimeNow();
126 :
127 : // Remove the first item with the same range.
128 : ::boost::ptr_vector<ScAutoStyleData>::iterator itr =
129 0 : ::std::find_if(aEntries.begin(), aEntries.end(), FindByRange(rRange));
130 :
131 0 : if (itr != aEntries.end())
132 0 : aEntries.erase(itr);
133 :
134 : // Timeouts von allen Eintraegen anpassen
135 :
136 0 : if (!aEntries.empty() && nNow != nTimerStart)
137 : {
138 : OSL_ENSURE(nNow>nTimerStart, "Zeit laeuft rueckwaerts?");
139 0 : AdjustEntries((nNow-nTimerStart)*1000);
140 : }
141 :
142 : // Einfuege-Position suchen
143 : boost::ptr_vector<ScAutoStyleData>::iterator iter =
144 0 : ::std::find_if(aEntries.begin(), aEntries.end(), FindByTimeout(nTimeout));
145 :
146 0 : aEntries.insert(iter,new ScAutoStyleData(nTimeout,rRange,rStyle));
147 :
148 : // abgelaufene ausfuehren, Timer neu starten
149 :
150 0 : ExecuteEntries();
151 0 : StartTimer(nNow);
152 0 : }
153 :
154 0 : void ScAutoStyleList::AdjustEntries( sal_uLong nDiff ) // Millisekunden
155 : {
156 0 : boost::ptr_vector<ScAutoStyleData>::iterator iter;
157 0 : for (iter = aEntries.begin(); iter != aEntries.end(); ++iter)
158 : {
159 0 : if (iter->nTimeout <= nDiff)
160 0 : iter->nTimeout = 0; // abgelaufen
161 : else
162 0 : iter->nTimeout -= nDiff; // weiterzaehlen
163 : }
164 0 : }
165 :
166 0 : void ScAutoStyleList::ExecuteEntries()
167 : {
168 : // Execute and remove all items with timeout == 0 from the begin position
169 : // until the first item with non-zero timeout value.
170 0 : ::boost::ptr_vector<ScAutoStyleData>::iterator itr = aEntries.begin(), itrEnd = aEntries.end();
171 0 : for (; itr != itrEnd; ++itr)
172 : {
173 0 : if (itr->nTimeout)
174 0 : break;
175 :
176 0 : pDocSh->DoAutoStyle(itr->aRange, itr->aStyle);
177 : }
178 : // At this point itr should be on the first item with non-zero timeout, or
179 : // the end position in case all items have timeout == 0.
180 0 : aEntries.erase(aEntries.begin(), itr);
181 0 : }
182 :
183 0 : void ScAutoStyleList::ExecuteAllNow()
184 : {
185 0 : aTimer.Stop();
186 :
187 0 : boost::ptr_vector<ScAutoStyleData>::iterator iter;
188 0 : for (iter = aEntries.begin(); iter != aEntries.end(); ++iter)
189 0 : pDocSh->DoAutoStyle(iter->aRange,iter->aStyle);
190 :
191 0 : aEntries.clear();
192 0 : }
193 :
194 0 : void ScAutoStyleList::StartTimer( sal_uLong nNow ) // Sekunden
195 : {
196 : // ersten Eintrag mit Timeout != 0 suchen
197 : boost::ptr_vector<ScAutoStyleData>::iterator iter =
198 0 : ::std::find_if(aEntries.begin(),aEntries.end(), FindNonZeroTimeout());
199 :
200 0 : if (iter != aEntries.end())
201 : {
202 0 : aTimer.SetTimeout(iter->nTimeout);
203 0 : aTimer.Start();
204 : }
205 :
206 0 : nTimerStart = nNow;
207 0 : }
208 :
209 0 : IMPL_LINK_NOARG(ScAutoStyleList, TimerHdl)
210 : {
211 0 : sal_uLong nNow = TimeNow();
212 0 : AdjustEntries(aTimer.GetTimeout()); // eingestellte Wartezeit
213 0 : ExecuteEntries();
214 0 : StartTimer(nNow);
215 :
216 0 : return 0;
217 : }
218 :
219 :
220 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|