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/LangPage/LangPage.h')
-rwxr-xr-xCPP/7zip/FileManager/Resource/LangPage/LangPage.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/CPP/7zip/FileManager/Resource/LangPage/LangPage.h b/CPP/7zip/FileManager/Resource/LangPage/LangPage.h
new file mode 100755
index 00000000..b28d6984
--- /dev/null
+++ b/CPP/7zip/FileManager/Resource/LangPage/LangPage.h
@@ -0,0 +1,21 @@
+// LangPage.h
+
+#ifndef __LANGPAGE_H
+#define __LANGPAGE_H
+
+#include "Windows/Control/PropertyPage.h"
+#include "Windows/Control/ComboBox.h"
+
+class CLangPage: public NWindows::NControl::CPropertyPage
+{
+ NWindows::NControl::CComboBox _langCombo;
+ UStringVector _paths;
+public:
+ bool _langWasChanged;
+ virtual bool OnInit();
+ virtual void OnNotifyHelp();
+ virtual bool OnCommand(int code, int itemID, LPARAM param);
+ virtual LONG OnApply();
+};
+
+#endif