-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAGE_OpenDialog.h
30 lines (25 loc) · 976 Bytes
/
AGE_OpenDialog.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
#pragma once
#include "AGE_OpenSave.h"
class AGE_OpenDialog: public AGE_OpenSave
{
public:
AGE_OpenDialog(wxWindow *parent, const wxFont &font);
/* Events */
void OnDefaultAoE(wxCommandEvent &event);
void OnDefaultRoR(wxCommandEvent &event);
void OnDefaultAoK(wxCommandEvent &event);
void OnDefaultTC(wxCommandEvent &event);
void OnDefaultAoKHD(wxCommandEvent &event);
void OnDefaultAoP(wxCommandEvent &event);
void OnDefaultDE2(wxCommandEvent &event);
void OnDefaultSWGB(wxCommandEvent &event);
void OnDefaultCC(wxCommandEvent &event);
void OnRecent(wxCommandEvent &event);
/* Member Variables */
wxCheckBox *CheckBox_LangWriteToLatest;
wxButton *Button_RawDecompress;
wxFilePickerCtrl *Path_RawDecompress, *Path_DRS3;
wxTextCtrl *TerrainsBox;
AGE_PairedCheckBox *CheckBox_DRSPath, *CheckBox_DRSPath2, *CheckBox_DRSPath3, *CheckBox_SlpPath;
wxDirPickerCtrl *Path_DRS, *Path_DRS2, *Path_SLP;
};