summaryrefslogtreecommitdiffstats
path: root/src/ui/gauge.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/gauge.h')
-rw-r--r--src/ui/gauge.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/src/ui/gauge.h b/src/ui/gauge.h
index b745834..8b7ef66 100644
--- a/src/ui/gauge.h
+++ b/src/ui/gauge.h
@@ -19,35 +19,36 @@
#pragma once
+#include <graphics/engine/engine.h>
-#include "ui/control.h"
+#include <common/event.h>
+#include <common/misc.h>
+
+#include <ui/control.h>
-namespace Gfx{
-class CEngine;
-};
namespace Ui {
class CGauge : public CControl
{
-public:
-// CGauge(CInstanceManager* iMan);
- CGauge();
- virtual ~CGauge();
+ public:
+ // CGauge(CInstanceManager* iMan);
+ CGauge();
+ virtual ~CGauge();
- bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
- bool EventProcess(const Event &event);
+ bool EventProcess(const Event &event);
- void Draw();
+ void Draw();
- void SetLevel(float level);
- float GetLevel();
+ void SetLevel(float level);
+ float GetLevel();
-protected:
+ protected:
-protected:
- float m_level;
+ protected:
+ float m_level;
};