bump product version to 4.1.6.2
[LibreOffice.git] / sc / inc / refreshtimer.hxx
blobe60fd62e92548c231ea90fdba314af24d95feb76
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
25 #include "scdllapi.h"
27 class ScRefreshTimerControl
29 private:
30 ::osl::Mutex aMutex;
31 sal_uInt16 nBlockRefresh;
33 public:
34 ScRefreshTimerControl() : nBlockRefresh(0) {}
36 void SetAllowRefresh( sal_Bool b )
38 if ( b && nBlockRefresh )
39 --nBlockRefresh;
40 else if ( !b && nBlockRefresh < (sal_uInt16)(~0) )
41 ++nBlockRefresh;
44 sal_Bool IsRefreshAllowed() const { return !nBlockRefresh; }
46 ::osl::Mutex& GetMutex() { return aMutex; }
49 class ScRefreshTimerProtector
51 private:
52 ScRefreshTimerControl * const * ppControl;
54 public:
55 ScRefreshTimerProtector( ScRefreshTimerControl * const * pp );
57 ~ScRefreshTimerProtector()
59 if ( ppControl && *ppControl )
60 (*ppControl)->SetAllowRefresh( true );
64 class ScRefreshTimer : public AutoTimer
66 private:
67 ScRefreshTimerControl * const * ppControl;
69 void AppendToControl() {}
71 void RemoveFromControl() {}
73 void Start()
75 if ( GetTimeout() )
76 AutoTimer::Start();
79 public:
80 ScRefreshTimer() : ppControl(0) { SetTimeout( 0 ); }
82 ScRefreshTimer( sal_uLong nSeconds ) : ppControl(0)
84 SetTimeout( nSeconds * 1000 );
85 Start();
88 ScRefreshTimer( const ScRefreshTimer& r ) : AutoTimer( r ), ppControl(0) {}
90 virtual ~ScRefreshTimer();
92 ScRefreshTimer& operator=( const ScRefreshTimer& r )
94 SetRefreshControl(0);
95 AutoTimer::operator=( r );
96 return *this;
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 )
109 RemoveFromControl();
110 ppControl = pp;
111 AppendToControl();
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: */