| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * TurnTimerWidget.h, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #pragma once
- #include "../gui/CIntObject.h"
- #include "../gui/InterfaceObjectConfigurable.h"
- #include "../render/Canvas.h"
- #include "../render/Colors.h"
- class CAnimImage;
- class CLabel;
- class TurnTimerWidget : public InterfaceObjectConfigurable
- {
- private:
-
- class DrawRect : public CIntObject
- {
- const Rect rect;
- const ColorRGBA color;
-
- public:
- DrawRect(const Rect &, const ColorRGBA &);
- void showAll(Canvas & to) override;
- };
- int turnTime;
- int lastTurnTime;
- int cachedTurnTime;
-
- //std::shared_ptr<CAnimImage> watches;
- //std::shared_ptr<CLabel> label;
-
- std::shared_ptr<DrawRect> buildDrawRect(const JsonNode & config) const;
-
- public:
- //void tick(uint32_t msPassed) override;
- void show(Canvas & to) override;
- void tick(uint32_t msPassed) override;
-
- void setTime(int time);
- TurnTimerWidget();
- };
|