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

LangPage.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8062573386b5837249db6b0f8e87a862bc2949b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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