summaryrefslogtreecommitdiffstats
path: root/src/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/color.h')
-rw-r--r--src/color.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/color.h b/src/color.h
new file mode 100644
index 0000000..9189b41
--- /dev/null
+++ b/src/color.h
@@ -0,0 +1,41 @@
+// color.h
+
+#ifndef _COLOR_H_
+#define _COLOR_H_
+
+
+#include "control.h"
+
+
+class CD3DEngine;
+
+
+
+class CColor : public CControl
+{
+public:
+ CColor(CInstanceManager* iMan);
+ ~CColor();
+
+ BOOL Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg);
+
+ BOOL EventProcess(const Event &event);
+
+ void Draw();
+
+ void SetRepeat(BOOL bRepeat);
+ BOOL RetRepeat();
+
+ void SetColor(D3DCOLORVALUE color);
+ D3DCOLORVALUE RetColor();
+
+protected:
+
+protected:
+ BOOL m_bRepeat;
+ float m_repeat;
+ D3DCOLORVALUE m_color;
+};
+
+
+#endif //_COLOR_H_