summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DlgItemImageTable.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2DlgItemImageTable.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/T2DLL/T2DlgItemImageTable.h b/src/T2DLL/T2DlgItemImageTable.h
new file mode 100644
index 0000000..ab768ba
--- /dev/null
+++ b/src/T2DLL/T2DlgItemImageTable.h
@@ -0,0 +1,15 @@
+#pragma once
+#include "common.h"
+
+class T2DlgItemImageTable {
+public:
+ T2DlgItemImageTable(T2TowerDoc*, T2ImageObj*, CPalette*);
+ T2DlgItemImageTable(int, int, int, int, int, T2TowerDoc*, T2ImageObj*, CPalette*);
+protected:
+ virtual void DrawCell(CDC*, const TableCellT&);
+ virtual void HiliteCell(CDC*, const TableCellT&);
+ virtual void UnhiliteCell(CDC*, const TableCellT&);
+
+public:
+ virtual ~T2DlgItemImageTable() {}
+};