Mercurial > mercurial > hgweb_mover2.cgi
view include/param.h @ 6:9c85d71cad7c
implement drag&drop.
author | pyon@macmini |
---|---|
date | Tue, 18 Oct 2011 22:43:46 +0900 |
parents | 52697c869ce8 |
children |
line wrap: on
line source
// Filename : param.h // Last Change: 18-Oct-2011. // #ifndef __param__ #define __param__ #include "common.h" /////////////////////////////////////////////////////////////////////////////// /// Class MyFrame /////////////////////////////////////////////////////////////////////////////// class ParamDialog : public wxDialog { DECLARE_EVENT_TABLE(); private: protected: wxTextCtrl* m_textCtrlLMin; wxStaticText* m_staticTextLen; wxTextCtrl* m_textCtrlLMax; wxTextCtrl* m_textCtrlZMin; wxStaticText* m_staticTextZ; wxTextCtrl* m_textCtrlZmax; wxStaticText* m_staticTextlDummy; wxButton* m_buttonCancel; wxButton* m_buttonSave; public: 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 ); ~ParamDialog(); void ReadParam(void); void SaveParam(wxCommandEvent& event); void NewParam( wxString& lmin, wxString& lmax, wxString& zmin, wxString& zmax ); }; #endif //__param.h__