-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsettingsDialog.h
More file actions
66 lines (55 loc) · 1.41 KB
/
Copy pathsettingsDialog.h
File metadata and controls
66 lines (55 loc) · 1.41 KB
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
/*#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
//(*Headers(settingsDialog)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/checkbox.h>
#include <wx/slider.h>
#include <wx/dialog.h>
//*)
class settingsDialog: public wxDialog
{
public:
settingsDialog(wxWindow* parent,wxWindowID id=wxID_ANY);
virtual ~settingsDialog();
//(*Declarations(settingsDialog)
wxCheckBox* chkQuickFix;
wxSlider* sldBuoyancy;
wxStaticText* StaticText2;
wxCheckBox* chkShowStress;
wxSlider* sldStrength;
wxStaticText* StaticText1;
wxStaticText* StaticText3;
wxSlider* sldWaveHeight;
wxStaticText* StaticText5;
wxSlider* sldSeaDepth;
wxStaticText* StaticText4;
wxSlider* sldWaterPressure;
wxCheckBox* chkXRay;
//*)
protected:
//(*Identifiers(settingsDialog)
static const long ID_STATICTEXT1;
static const long ID_SLIDER1;
static const long ID_STATICTEXT2;
static const long ID_SLIDER2;
static const long ID_STATICTEXT3;
static const long ID_SLIDER4;
static const long ID_STATICTEXT4;
static const long ID_SLIDER5;
static const long ID_STATICTEXT5;
static const long ID_SLIDER3;
static const long ID_CHECKBOX2;
static const long ID_CHECKBOX1;
static const long ID_CHECKBOX3;
//*)
private:
//(*Handlers(settingsDialog)
void OnSlider1CmdScroll(wxScrollEvent& event);
void OnCheckBox1Click(wxCommandEvent& event);
//*)
wxWindow *parent;
DECLARE_EVENT_TABLE()
};
#endif
*/