Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / inc / refreshtimer.hxx
blobfc1eaecf8718a0b0d79abe57864ecfd1ff0e0d47
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 ::osl::Mutex aMutex;
30 sal_uInt16 nBlockRefresh;
32 public:
33 ScRefreshTimerControl() : nBlockRefresh(0) {}
34 void SetAllowRefresh( sal_Bool b );
35 sal_Bool IsRefreshAllowed() const { return !nBlockRefresh; }
36 ::osl::Mutex& GetMutex() { return aMutex; }
39 class ScRefreshTimer : public AutoTimer
41 ScRefreshTimerControl * const * ppControl;
43 public:
44 ScRefreshTimer();
45 ScRefreshTimer( sal_uLong nSeconds );
46 ScRefreshTimer( const ScRefreshTimer& r );
47 virtual ~ScRefreshTimer();
49 ScRefreshTimer& operator=( const ScRefreshTimer& r );
50 sal_Bool operator==( const ScRefreshTimer& r ) const;
51 sal_Bool operator!=( const ScRefreshTimer& r ) const;
53 void StartRefreshTimer();
54 void SetRefreshControl( ScRefreshTimerControl * const * pp );
55 void SetRefreshHandler( const Link& rLink );
56 sal_uLong GetRefreshDelay() const;
57 void StopRefreshTimer();
59 SC_DLLPUBLIC virtual void SetRefreshDelay( sal_uLong nSeconds );
60 SC_DLLPUBLIC virtual void Timeout() SAL_OVERRIDE;
62 private:
63 void Start();
66 #endif // SC_REFRESHTIMER_HXX
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */