-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathncmdumpGUI_OptionsDialog.h
48 lines (37 loc) · 1017 Bytes
/
ncmdumpGUI_OptionsDialog.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
#ifndef NCMDUMPGUI_OPTIONSDIALOG_H
#define NCMDUMPGUI_OPTIONSDIALOG_H
//(*Headers(ncmdumpGUI_OptionsDialog)
#include <wx/frame.h>
class wxBoxSizer;
class wxCheckBox;
class wxPanel;
class wxStaticBoxSizer;
class wxStaticText;
//*)
class ncmdumpGUI_OptionsDialog: public wxFrame
{
public:
ncmdumpGUI_OptionsDialog(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~ncmdumpGUI_OptionsDialog();
bool isDeleteNCMFile() const;
bool isFixMetaData() const;
//(*Declarations(ncmdumpGUI_OptionsDialog)
wxCheckBox* chkDelNCM;
wxCheckBox* chkFixMeta;
wxPanel* Panel1;
wxStaticText* StaticText1;
//*)
protected:
//(*Identifiers(ncmdumpGUI_OptionsDialog)
static const long ID_CHECKBOX1;
static const long ID_CHECKBOX2;
static const long ID_STATICTEXT1;
static const long ID_PANEL1;
//*)
private:
//(*Handlers(ncmdumpGUI_OptionsDialog)
void OnClose(wxCloseEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif