0
|
1 // Filename : param.h
|
|
2 // Last Change: 15-Oct-2011.
|
|
3 //
|
|
4
|
|
5 #ifndef __param__
|
|
6 #define __param__
|
|
7
|
|
8 #include "common.h"
|
|
9 ///////////////////////////////////////////////////////////////////////////////
|
|
10 /// Class MyFrame
|
|
11 ///////////////////////////////////////////////////////////////////////////////
|
|
12 class ParamDialog : public wxDialog
|
|
13 {
|
|
14 DECLARE_EVENT_TABLE();
|
|
15 private:
|
|
16
|
|
17 protected:
|
|
18 wxTextCtrl* m_textCtrlLenMIn;
|
|
19 wxStaticText* m_staticTextLen;
|
|
20 wxTextCtrl* m_textCtrlLenMax;
|
|
21
|
|
22 wxTextCtrl* m_textCtrlBMin;
|
|
23 wxStaticText* m_staticTextBlack;
|
|
24 wxTextCtrl* m_textCtrlBmax;
|
|
25
|
|
26 wxStaticText* m_staticTextlDummy;
|
|
27 wxButton* m_buttonCancel;
|
|
28 wxButton* m_buttonSave;
|
|
29
|
|
30 public:
|
|
31 ParamDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("パラメータ設定"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxCAPTION|wxDEFAULT_DIALOG_STYLE );
|
|
32 ~ParamDialog();
|
|
33
|
|
34 void GetParam(void);
|
|
35 void SaveParam(wxCommandEvent& event);
|
|
36
|
|
37 };
|
|
38
|
|
39 #endif //__param.h__
|
|
40
|