Bump version to 6.4-15
[LibreOffice.git] / include / svx / sdr / animation / scheduler.hxx
blob59aba43460ca9a53737d99dff2c7f910b26f4d63
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_SVX_SDR_ANIMATION_SCHEDULER_HXX
21 #define INCLUDED_SVX_SDR_ANIMATION_SCHEDULER_HXX
23 #include <sal/types.h>
24 #include <vcl/timer.hxx>
25 #include <svx/svxdllapi.h>
26 #include <vector>
29 namespace sdr
31 namespace animation
34 class SVX_DLLPUBLIC Event
36 // time of event in ms
37 sal_uInt32 mnTime;
39 public:
40 // constructor/destructor
41 SAL_DLLPRIVATE explicit Event();
42 virtual ~Event();
44 // get/set time
45 SAL_DLLPRIVATE sal_uInt32 GetTime() const { return mnTime; }
46 void SetTime(sal_uInt32 nNew);
48 // execute event
49 virtual void Trigger(sal_uInt32 nTime) = 0;
52 class SVX_DLLPUBLIC Scheduler : public Timer
54 // time in ms
55 sal_uInt32 mnTime;
57 // next delta time
58 sal_uInt32 mnDeltaTime;
60 // list of events, sorted by time
61 std::vector<Event*> mvEvents;
63 // Flag which remembers if this timer is paused. Default
64 // is false.
65 bool mbIsPaused;
67 public:
68 // constructor/destructor
69 SAL_DLLPRIVATE Scheduler();
70 virtual ~Scheduler() override;
72 // From baseclass Timer, the timeout call
73 virtual void Invoke() override;
75 // get time
76 SAL_DLLPRIVATE sal_uInt32 GetTime() const { return mnTime; }
78 // #i38135#
79 SAL_DLLPRIVATE void SetTime(sal_uInt32 nTime);
81 // execute all ripe events, removes executed ones from the scheduler
82 SAL_DLLPRIVATE void triggerEvents();
84 // re-start or stop timer according to event list
85 SAL_DLLPRIVATE void checkTimeout();
87 // insert/remove events, wrapper to EventList methods
88 void InsertEvent(Event& rNew);
89 SAL_DLLPRIVATE void RemoveEvent(Event* pOld);
91 // get/set pause
92 SAL_DLLPRIVATE bool IsPaused() const { return mbIsPaused; }
93 SAL_DLLPRIVATE void SetPaused(bool bNew);
96 } // end of namespace animation
97 } // end of namespace sdr
100 #endif // INCLUDED_SVX_SDR_ANIMATION_SCHEDULER_HXX
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */