forked from Wirless/IdlersMapEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathground_validation_dialog.h
More file actions
30 lines (22 loc) · 908 Bytes
/
ground_validation_dialog.h
File metadata and controls
30 lines (22 loc) · 908 Bytes
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
#ifndef RME_GROUND_VALIDATION_DIALOG_H_
#define RME_GROUND_VALIDATION_DIALOG_H_
#include <wx/dialog.h>
class GroundValidationDialog : public wxDialog {
public:
GroundValidationDialog(wxWindow* parent);
~GroundValidationDialog();
bool shouldValidateGroundStack() const { return validateGroundStack; }
bool shouldGenerateEmptySurroundedGrounds() const { return generateEmptySurroundedGrounds; }
bool shouldRemoveDuplicateGrounds() const { return removeDuplicateGrounds; }
protected:
void OnClickOK(wxCommandEvent& event);
void OnClickCancel(wxCommandEvent& event);
wxCheckBox* validateGroundStackBox;
wxCheckBox* generateEmptySurroundedGroundsBox;
wxCheckBox* removeDuplicateGroundsBox;
bool validateGroundStack;
bool generateEmptySurroundedGrounds;
bool removeDuplicateGrounds;
DECLARE_EVENT_TABLE()
};
#endif // RME_GROUND_VALIDATION_DIALOG_H_