Mercurial > mercurial > hgweb_mover2.cgi
view include/param.h @ 1:b47bd4618c16
design done.
author | pyon@macmini |
---|---|
date | Sat, 15 Oct 2011 20:07:12 +0900 |
parents | 7bf900d47e9e |
children | 52697c869ce8 |
line wrap: on
line source
// Filename : param.h // Last Change: 15-Oct-2011. // #ifndef __param__ #define __param__ #include "common.h" /////////////////////////////////////////////////////////////////////////////// /// Class MyFrame /////////////////////////////////////////////////////////////////////////////// class ParamDialog : public wxDialog { DECLARE_EVENT_TABLE(); private: protected: wxTextCtrl* m_textCtrlLenMIn; wxStaticText* m_staticTextLen; wxTextCtrl* m_textCtrlLenMax; wxTextCtrl* m_textCtrlBMin; wxStaticText* m_staticTextBlack; wxTextCtrl* m_textCtrlBmax; 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 GetParam(void); void SaveParam(wxCommandEvent& event); }; #endif //__param.h__