1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef SC_REFRESHTIMER_HXX
21 #define SC_REFRESHTIMER_HXX
23 #include <vcl/timer.hxx>
24 #include <osl/mutex.hxx>
27 class ScRefreshTimerControl
31 sal_uInt16 nBlockRefresh
;
34 ScRefreshTimerControl() : nBlockRefresh(0) {}
36 void SetAllowRefresh( sal_Bool b
)
38 if ( b
&& nBlockRefresh
)
40 else if ( !b
&& nBlockRefresh
< (sal_uInt16
)(~0) )
44 sal_Bool
IsRefreshAllowed() const { return !nBlockRefresh
; }
46 ::osl::Mutex
& GetMutex() { return aMutex
; }
49 class ScRefreshTimerProtector
52 ScRefreshTimerControl
* const * ppControl
;
55 ScRefreshTimerProtector( ScRefreshTimerControl
* const * pp
);
57 ~ScRefreshTimerProtector()
59 if ( ppControl
&& *ppControl
)
60 (*ppControl
)->SetAllowRefresh( true );
64 class ScRefreshTimer
: public AutoTimer
67 ScRefreshTimerControl
* const * ppControl
;
69 void AppendToControl() {}
71 void RemoveFromControl() {}
80 ScRefreshTimer() : ppControl(0) { SetTimeout( 0 ); }
82 ScRefreshTimer( sal_uLong nSeconds
) : ppControl(0)
84 SetTimeout( nSeconds
* 1000 );
88 ScRefreshTimer( const ScRefreshTimer
& r
) : AutoTimer( r
), ppControl(0) {}
90 virtual ~ScRefreshTimer();
92 ScRefreshTimer
& operator=( const ScRefreshTimer
& r
)
95 AutoTimer::operator=( r
);
99 sal_Bool
operator==( const ScRefreshTimer
& r
) const
100 { return GetTimeout() == r
.GetTimeout(); }
102 sal_Bool
operator!=( const ScRefreshTimer
& r
) const
103 { return !ScRefreshTimer::operator==( r
); }
105 void StartRefreshTimer() { Start(); }
107 void SetRefreshControl( ScRefreshTimerControl
* const * pp
)
114 void SetRefreshHandler( const Link
& rLink
) { SetTimeoutHdl( rLink
); }
116 sal_uLong
GetRefreshDelay() const { return GetTimeout() / 1000; }
118 void StopRefreshTimer() { Stop(); }
120 SC_DLLPUBLIC
virtual void SetRefreshDelay( sal_uLong nSeconds
);
122 SC_DLLPUBLIC
virtual void Timeout();
125 #endif // SC_REFRESHTIMER_HXX
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */