-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApplicationFiles.h
94 lines (78 loc) · 2.26 KB
/
ApplicationFiles.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#ifndef APPLICATIONFILES_H
#define APPLICATIONFILES_H
//(*Headers(ApplicationFiles)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/checkbox.h>
#include <wx/listbox.h>
#include <wx/statline.h>
#include <wx/panel.h>
#include <wx/filedlg.h>
#include <wx/statbmp.h>
#include <wx/button.h>
#include <wx/dirdlg.h>
//*)
#include <wx/wizard.h>
#include <wx/msgdlg.h>
#include <wx/dynarray.h>
#include "WizardFile.h"
WX_DECLARE_OBJARRAY(File, ArrayFile);
class ApplicationFiles: public wxWizardPageSimple
{
public:
ApplicationFiles(wxWizard* parent, wxWizardPageSimple* prev);
virtual ~ApplicationFiles();
//(*Declarations(ApplicationFiles)
wxButton* btnFolder;
wxButton* btnFiles;
wxStaticText* text1;
wxPanel* Panel1;
wxFileDialog* FileDialog1;
wxCheckBox* cbAllowStartAfterInstall;
wxDirDialog* DirDialog1;
wxTextCtrl* txtMainExe;
wxStaticLine* StaticLine1;
wxButton* btnRemove;
wxFileDialog* FileDialog2;
wxCheckBox* cbDoesntHaveMain;
wxButton* btnEdit;
wxListBox* lbFiles;
wxButton* btnMainExe;
//*)
wxString lastPath;
ArrayFile Files;
protected:
//(*Identifiers(ApplicationFiles)
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_TEXTCTRL1;
static const long ID_BUTTON1;
static const long ID_CHECKBOX1;
static const long ID_CHECKBOX2;
static const long ID_STATICTEXT4;
static const long ID_LISTBOX1;
static const long ID_BUTTON2;
static const long ID_BUTTON3;
static const long ID_BUTTON4;
static const long ID_BUTTON5;
static const long ID_STATICTEXT7;
static const long ID_STATICTEXT8;
//*)
WizardFile* FileDialog;
private:
//(*Handlers(ApplicationFiles)
void OncbDoesntHaveMainClick(wxCommandEvent& event);
void OnbtnMainExeClick(wxCommandEvent& event);
void OnbtnFilesClick(wxCommandEvent& event);
void OnlbFilesSelect(wxCommandEvent& event);
void OnbtnFolderClick(wxCommandEvent& event);
void OnbtnEditClick(wxCommandEvent& event);
void OnbtnRemoveClick(wxCommandEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif