-
Notifications
You must be signed in to change notification settings - Fork 0
/
SetupLanguages.h
58 lines (46 loc) · 1.25 KB
/
SetupLanguages.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef SETUPLANGUAGES_H
#define SETUPLANGUAGES_H
//(*Headers(SetupLanguages)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/checklst.h>
#include <wx/statline.h>
#include <wx/panel.h>
#include <wx/statbmp.h>
#include <wx/button.h>
//*)
#include <wx/wizard.h>
class SetupLanguages: public wxWizardPageSimple
{
public:
SetupLanguages(wxWizard* parent, wxWizardPageSimple* prev, wxWizardPageSimple* next);
virtual ~SetupLanguages();
bool IsChecked( void);
//(*Declarations(SetupLanguages)
wxCheckListBox* lbLanguages;
wxPanel* Panel1;
wxButton* btnNone;
wxStaticLine* StaticLine1;
wxButton* btnAll;
//*)
protected:
//(*Identifiers(SetupLanguages)
static const long ID_STATICTEXT2;
static const long ID_STATICTEXT1;
static const long ID_PANEL1;
static const long ID_STATICLINE1;
static const long ID_STATICTEXT3;
static const long ID_CHECKLISTBOX1;
static const long ID_BUTTON1;
static const long ID_BUTTON2;
static const long ID_STATICTEXT7;
static const long ID_STATICTEXT8;
//*)
private:
//(*Handlers(SetupLanguages)
void OnbtnAllClick(wxCommandEvent& event);
void OnbtnNoneClick(wxCommandEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif