19
|
1 // Filename : ccnframe.h
|
|
2 // Last Change: 18-Jul-2011.
|
|
3 //
|
|
4
|
|
5 #ifndef __ccnframe__
|
|
6 #define __ccnframe__
|
|
7 #include "wx/wxprec.h"
|
|
8
|
|
9 #ifndef WX_PRECOMP
|
|
10 #include "wx/wx.h"
|
|
11 #include <wx/listctrl.h>
|
|
12 #include <wx/sizer.h>
|
|
13 #include <wx/button.h>
|
|
14 #include <wx/datectrl.h>
|
|
15 #include <wx/gbsizer.h>
|
|
16 #endif
|
|
17
|
|
18 ///////////////////////////////////////////////////////////////////////////
|
|
19
|
|
20 ///////////////////////////////////////////////////////////////////////////////
|
|
21 /// Class FrameCcn
|
|
22 ///////////////////////////////////////////////////////////////////////////////
|
|
23 class FrameCcn : public wxFrame
|
|
24 {
|
|
25 DECLARE_EVENT_TABLE()
|
|
26 private:
|
|
27 wxPanel* m_Panel;
|
|
28 wxStaticText* m_staticText1;
|
|
29 wxStaticText* m_staticText2;
|
|
30 wxStaticText* m_staticText3;
|
|
31 wxListCtrl* m_listCtrlYmd;
|
|
32 wxStaticText* m_staticText4;
|
|
33 wxListCtrl* m_listCtrlCcn;
|
|
34 wxStaticText* m_staticText5;
|
|
35 wxListCtrl* m_listCtrlHhs;
|
|
36 wxButton* m_btnPrevThu;
|
|
37 wxButton* m_btnNextThu;
|
|
38 wxDatePickerCtrl* m_datePicker;
|
|
39 wxButton* m_btnMkIdX;
|
|
40 wxButton* m_btnClose;
|
|
41
|
|
42 public:
|
|
43 FrameCcn( wxWindow* parent, wxWindowID id = ID_FRAMECCN, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxFRAME_NO_TASKBAR|wxCAPTION|wxCLOSE_BOX|wxRESIZE_BORDER|wxSTAY_ON_TOP|wxTAB_TRAVERSAL );
|
|
44 ~FrameCcn();
|
|
45
|
|
46 void InitListCtrl(void);
|
|
47 };
|
|
48
|
|
49 #endif //__ccnframe__
|
|
50
|