comparison include/param.h @ 6:9c85d71cad7c

implement drag&drop.
author pyon@macmini
date Tue, 18 Oct 2011 22:43:46 +0900
parents 52697c869ce8
children
comparison
equal deleted inserted replaced
5:52697c869ce8 6:9c85d71cad7c
1 // Filename : param.h 1 // Filename : param.h
2 // Last Change: 17-Oct-2011. 2 // Last Change: 18-Oct-2011.
3 // 3 //
4 4
5 #ifndef __param__ 5 #ifndef __param__
6 #define __param__ 6 #define __param__
7 7
29 29
30 public: 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 ); 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(); 32 ~ParamDialog();
33 33
34 void GetParam(void); 34 void ReadParam(void);
35 void SaveParam(wxCommandEvent& event); 35 void SaveParam(wxCommandEvent& event);
36 36 void NewParam( wxString& lmin, wxString& lmax, wxString& zmin, wxString& zmax );
37 }; 37 };
38 38
39 #endif //__param.h__ 39 #endif //__param.h__
40 40