Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/FileManager/Resource/SettingsPage/SettingsPage.h')
-rwxr-xr-xCPP/7zip/FileManager/Resource/SettingsPage/SettingsPage.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/CPP/7zip/FileManager/Resource/SettingsPage/SettingsPage.h b/CPP/7zip/FileManager/Resource/SettingsPage/SettingsPage.h
new file mode 100755
index 00000000..e5fe6e67
--- /dev/null
+++ b/CPP/7zip/FileManager/Resource/SettingsPage/SettingsPage.h
@@ -0,0 +1,19 @@
+// SettingsPage.h
+
+#ifndef __SETTINGSPAGE_H
+#define __SETTINGSPAGE_H
+
+#include "Windows/Control/PropertyPage.h"
+#include "Windows/Control/Edit.h"
+
+class CSettingsPage: public NWindows::NControl::CPropertyPage
+{
+ // void EnableSubItems();
+ bool OnButtonClicked(int buttonID, HWND buttonHWND);
+public:
+ virtual bool OnInit();
+ virtual void OnNotifyHelp();
+ virtual LONG OnApply();
+};
+
+#endif