Mercurial > mercurial > hgweb_qlipbrd.cgi
diff include/adddialog.h @ 0:cb3403ca39b1
First release.
author | pyon@macmini |
---|---|
date | Sun, 30 Aug 2015 21:53:19 +0900 |
parents | |
children | e4aa0e7a07ad |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/adddialog.h Sun Aug 30 21:53:19 2015 +0900 @@ -0,0 +1,50 @@ +// Filename: adddialog.h +// Last Change: 2015-08-30 Sun 16:00:48. +// + +#ifndef __ADDDLG_H__ +#define __ADDDLG_H__ + +#include <wx/string.h> +#include <wx/stattext.h> +#include <wx/gdicmn.h> +#include <wx/textctrl.h> +#include <wx/choice.h> +#include <wx/sizer.h> +#include <wx/button.h> +#include <wx/dialog.h> + +class AddDialog : public wxDialog +{ + private: + + protected: + wxStaticText* m_staticText; + + wxStaticText* m_staticTextText; + wxTextCtrl* m_textCtrlText; + wxStaticText* m_staticTextText2; + + wxStaticText* m_staticTextType; + wxChoice* m_choiceType; + wxStaticText* m_staticTextType2; + + wxStaticText* m_staticTextTime; + wxTextCtrl* m_textCtrlTime; + wxStaticText* m_staticTextTime2; + + wxStaticText* m_staticTextDesc; + wxTextCtrl* m_textCtrlDesc; + wxStaticText* m_staticTextDesc2; + + wxButton* m_buttonAdd; + wxButton* m_buttonCancel; + + public: + AddDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Set values"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE ); + ~AddDialog(); + +}; + +#endif //__ADDDLG_H__ +