Mercurial > mercurial > hgweb_searcher2.cgi
comparison include/ccnframe.h @ 21:eb3f5c7c990f
small changes.
author | pyon@macmini |
---|---|
date | Mon, 25 Jul 2011 05:20:55 +0900 |
parents | 710be7b6a873 |
children | 05f76f9f9186 |
comparison
equal
deleted
inserted
replaced
20:39f9f1c7618c | 21:eb3f5c7c990f |
---|---|
1 // Filename : ccnframe.h | 1 // Filename : ccnframe.h |
2 // Last Change: 18-Jul-2011. | 2 // Last Change: 22-Jul-2011. |
3 // | 3 // |
4 | 4 |
5 #ifndef __ccnframe__ | 5 #ifndef __CCNFRAME__ |
6 #define __ccnframe__ | 6 #define __CCNFRAME__ |
7 #include "wx/wxprec.h" | 7 #include "wx/wxprec.h" |
8 | 8 |
9 #ifndef WX_PRECOMP | 9 #ifndef WX_PRECOMP |
10 #include "wx/wx.h" | 10 #include "wx/wx.h" |
11 #include <wx/listctrl.h> | 11 #include <wx/listctrl.h> |
12 #include <wx/sizer.h> | 12 #include <wx/sizer.h> |
13 #include <wx/button.h> | 13 #include <wx/button.h> |
14 #include <wx/datectrl.h> | 14 #include <wx/datectrl.h> |
15 #include <wx/gbsizer.h> | 15 #include <wx/gbsizer.h> |
16 #include "wx/dir.h" | |
17 #include "wx/regex.h" | |
18 #include "wx/progdlg.h" | |
19 #include "wx/stdpaths.h" | |
16 #endif | 20 #endif |
17 | 21 |
18 /////////////////////////////////////////////////////////////////////////// | 22 /////////////////////////////////////////////////////////////////////////// |
19 | 23 |
20 /////////////////////////////////////////////////////////////////////////////// | 24 /////////////////////////////////////////////////////////////////////////////// |
42 public: | 46 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 ); | 47 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(); | 48 ~FrameCcn(); |
45 | 49 |
46 void InitListCtrl(void); | 50 void InitListCtrl(void); |
51 | |
52 void OnSelectYmd(wxListEvent&); | |
53 void OnSelectCcn(wxListEvent&); | |
54 void OnPrevThu(wxCommandEvent&); | |
55 void OnNextThu(wxCommandEvent&); | |
56 void OnMkIndex(wxCommandEvent&); | |
57 void OnClose(wxCommandEvent&); | |
47 }; | 58 }; |
48 | 59 |
49 #endif //__ccnframe__ | 60 #endif //__CCNFRAME__ |
50 | 61 |