summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2PrefDialogBox.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2PrefDialogBox.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/T2DLL/T2PrefDialogBox.h b/src/T2DLL/T2PrefDialogBox.h
new file mode 100644
index 0000000..0fb015b
--- /dev/null
+++ b/src/T2DLL/T2PrefDialogBox.h
@@ -0,0 +1,15 @@
+#pragma once
+#include "common.h"
+
+class T2PrefDialogBox {
+public:
+ T2PrefDialogBox();
+ virtual ~T2PrefDialogBox();
+protected:
+ virtual int OnT2DialogCommand(unsigned int, long);
+ virtual int OnT2EraseBkgnd(CDC*);
+ virtual void OnT2Create();
+ virtual void OnT2Destroy();
+ virtual void CreateDlgItem(CTokenizer&, T2Dialog::T2DialogDef&);
+ void SetupPluginPref();
+};