Mercurial > mercurial > hgweb_mover2.cgi
diff include/param.h @ 0:7bf900d47e9e
start mover2
author | pyon@macmini |
---|---|
date | Sat, 15 Oct 2011 13:24:27 +0900 |
parents | |
children | 52697c869ce8 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/param.h Sat Oct 15 13:24:27 2011 +0900 @@ -0,0 +1,40 @@ +// 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__ +