mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 07:14:56 -06:00
Initialer Commit
This commit is contained in:
25
CPP/7zip/UI/FileManager/LangPage.h
Normal file
25
CPP/7zip/UI/FileManager/LangPage.h
Normal file
@@ -0,0 +1,25 @@
|
||||
// LangPage.h
|
||||
|
||||
#ifndef __LANG_PAGE_H
|
||||
#define __LANG_PAGE_H
|
||||
|
||||
#include "../../../Windows/Control/PropertyPage.h"
|
||||
#include "../../../Windows/Control/ComboBox.h"
|
||||
|
||||
class CLangPage: public NWindows::NControl::CPropertyPage
|
||||
{
|
||||
NWindows::NControl::CComboBox _langCombo;
|
||||
UStringVector _paths;
|
||||
|
||||
bool _needSave;
|
||||
public:
|
||||
bool LangWasChanged;
|
||||
|
||||
CLangPage(): _needSave(false), LangWasChanged(false) {}
|
||||
virtual bool OnInit();
|
||||
virtual void OnNotifyHelp();
|
||||
virtual bool OnCommand(int code, int itemID, LPARAM param);
|
||||
virtual LONG OnApply();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user