mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
23 lines
499 B
C++
Executable File
23 lines
499 B
C++
Executable File
// 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;
|
|
public:
|
|
bool LangWasChanged;
|
|
CLangPage() { LangWasChanged = false; }
|
|
virtual bool OnInit();
|
|
virtual void OnNotifyHelp();
|
|
virtual bool OnCommand(int code, int itemID, LPARAM param);
|
|
virtual LONG OnApply();
|
|
};
|
|
|
|
#endif
|