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/UI/FileManager/MenuPage.h')
-rwxr-xr-xCPP/7zip/UI/FileManager/MenuPage.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/CPP/7zip/UI/FileManager/MenuPage.h b/CPP/7zip/UI/FileManager/MenuPage.h
new file mode 100755
index 00000000..5005ea9c
--- /dev/null
+++ b/CPP/7zip/UI/FileManager/MenuPage.h
@@ -0,0 +1,25 @@
+// MenuPage.h
+
+#ifndef __MENU_PAGE_H
+#define __MENU_PAGE_H
+
+#include "Windows/Control/PropertyPage.h"
+#include "Windows/Control/ListView.h"
+
+#include "../Common/LoadCodecs.h"
+
+class CMenuPage: public NWindows::NControl::CPropertyPage
+{
+ bool _initMode;
+ NWindows::NControl::CListView _listView;
+
+ virtual bool OnInit();
+ virtual void OnNotifyHelp();
+ virtual bool OnNotify(UINT controlID, LPNMHDR lParam);
+ virtual bool OnItemChanged(const NMLISTVIEW *info);
+ virtual LONG OnApply();
+ virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
+public:
+};
+
+#endif