-
Notifications
You must be signed in to change notification settings - Fork 0
/
WizardFile.h
76 lines (63 loc) · 1.7 KB
/
WizardFile.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
#ifndef WIZARDFILE_H
#define WIZARDFILE_H
//(*Headers(WizardFile)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/checkbox.h>
#include <wx/panel.h>
#include <wx/choice.h>
#include <wx/button.h>
//*)
#include <wx/msgdlg.h>
struct File
{
wxString Source;
bool Recurse;
bool Include;
int Destination;
wxString ExternDestionation;
wxString DestinationSub;
};
class WizardFile: public wxDialog
{
public:
WizardFile(wxWindow* parent, File Data,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~WizardFile();
//(*Declarations(WizardFile)
wxTextCtrl* txtDestSub;
wxButton* btnCancel;
wxTextCtrl* txtFile;
wxStaticText* StaticText3;
wxButton* btnOK;
wxChoice* chDestination;
wxStaticText* StaticText5;
wxCheckBox* cbRecurse;
wxCheckBox* cbInclude;
wxTextCtrl* txtDestination;
//*)
File FileData;
protected:
//(*Identifiers(WizardFile)
static const long ID_STATICTEXT1;
static const long ID_TEXTCTRL1;
static const long ID_CHECKBOX1;
static const long ID_CHECKBOX2;
static const long ID_STATICTEXT2;
static const long ID_CHOICE1;
static const long ID_TEXTCTRL2;
static const long ID_STATICTEXT3;
static const long ID_TEXTCTRL3;
static const long ID_STATICTEXT4;
static const long ID_STATICTEXT5;
//*)
private:
//(*Handlers(WizardFile)
void OnchDestinationSelect(wxCommandEvent& event);
void OncbRecurseClick(wxCommandEvent& event);
void OnbtnOKClick(wxCommandEvent& event);
void OnbtnCancelClick(wxCommandEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif