summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DlgItemIRepeater.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2DlgItemIRepeater.h')
-rw-r--r--src/T2DLL/T2DlgItemIRepeater.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/T2DLL/T2DlgItemIRepeater.h b/src/T2DLL/T2DlgItemIRepeater.h
new file mode 100644
index 0000000..c27e943
--- /dev/null
+++ b/src/T2DLL/T2DlgItemIRepeater.h
@@ -0,0 +1,16 @@
+#pragma once
+#include "common.h"
+#include "T2DlgItemIButton.h"
+
+class T2DlgItemIRepeater : public T2DlgItemIButton {
+public:
+ T2DlgItemIRepeater(T2TowerDoc *inDoc, T2ImageObj *inImageObj, CPalette *inPalette);
+ ~T2DlgItemIRepeater();
+
+protected:
+ virtual void OnT2Timer(UINT inID);
+ virtual void OnT2DlgItemLButtonDown(UINT inFlags, CPoint inPt);
+ virtual void OnT2DlgItemLButtonUp(UINT inFlags, CPoint inPt);
+
+ UINT mTimerID;
+};