tdf#104816 sw: if non-section content, let all sections hide.
[LibreOffice.git] / sc / inc / refreshtimer.hxx
blob337ee8c29dd56d126002ca619998b3b173e94ae5
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 INCLUDED_SC_INC_REFRESHTIMER_HXX
21 #define INCLUDED_SC_INC_REFRESHTIMER_HXX
23 #include <sal/config.h>
25 #include <tools/solar.h>
26 #include <vcl/timer.hxx>
27 #include <osl/mutex.hxx>
28 #include "scdllapi.h"
29 #include <memory>
31 class ScRefreshTimerControl
33 ::osl::Mutex aMutex;
34 sal_uInt16 nBlockRefresh;
36 public:
37 ScRefreshTimerControl() : nBlockRefresh(0) {}
38 void SetAllowRefresh( bool b );
39 bool IsRefreshAllowed() const { return !nBlockRefresh; }
40 ::osl::Mutex& GetMutex() { return aMutex; }
43 class ScRefreshTimer : public AutoTimer
45 std::unique_ptr<ScRefreshTimerControl> const * ppControl;
47 public:
48 ScRefreshTimer();
49 ScRefreshTimer( sal_uLong nSeconds );
50 ScRefreshTimer( const ScRefreshTimer& r );
51 virtual ~ScRefreshTimer() override;
53 ScRefreshTimer& operator=( const ScRefreshTimer& r );
54 bool operator==( const ScRefreshTimer& r ) const;
55 bool operator!=( const ScRefreshTimer& r ) const;
57 void SetRefreshControl( std::unique_ptr<ScRefreshTimerControl> const * pp );
58 void SetRefreshHandler( const Link<Timer *, void>& rLink );
59 sal_uLong GetRefreshDelay() const;
60 void StopRefreshTimer();
62 void SetRefreshDelay( sal_uLong nSeconds );
63 SC_DLLPUBLIC virtual void Invoke() override;
65 private:
66 void Launch();
69 #endif // INCLUDED_SC_INC_REFRESHTIMER_HXX
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */