comparison include/adddialog.h @ 0:cb3403ca39b1

First release.
author pyon@macmini
date Sun, 30 Aug 2015 21:53:19 +0900
parents
children e4aa0e7a07ad
comparison
equal deleted inserted replaced
-1:000000000000 0:cb3403ca39b1
1 // Filename: adddialog.h
2 // Last Change: 2015-08-30 Sun 16:00:48.
3 //
4
5 #ifndef __ADDDLG_H__
6 #define __ADDDLG_H__
7
8 #include <wx/string.h>
9 #include <wx/stattext.h>
10 #include <wx/gdicmn.h>
11 #include <wx/textctrl.h>
12 #include <wx/choice.h>
13 #include <wx/sizer.h>
14 #include <wx/button.h>
15 #include <wx/dialog.h>
16
17 class AddDialog : public wxDialog
18 {
19 private:
20
21 protected:
22 wxStaticText* m_staticText;
23
24 wxStaticText* m_staticTextText;
25 wxTextCtrl* m_textCtrlText;
26 wxStaticText* m_staticTextText2;
27
28 wxStaticText* m_staticTextType;
29 wxChoice* m_choiceType;
30 wxStaticText* m_staticTextType2;
31
32 wxStaticText* m_staticTextTime;
33 wxTextCtrl* m_textCtrlTime;
34 wxStaticText* m_staticTextTime2;
35
36 wxStaticText* m_staticTextDesc;
37 wxTextCtrl* m_textCtrlDesc;
38 wxStaticText* m_staticTextDesc2;
39
40 wxButton* m_buttonAdd;
41 wxButton* m_buttonCancel;
42
43 public:
44 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 );
45 ~AddDialog();
46
47 };
48
49 #endif //__ADDDLG_H__
50