Mercurial > mercurial > hgweb_searcher03.cgi
comparison include/hist.h @ 0:0c0701a935f8
Start Development.
author | pyon@macmini |
---|---|
date | Sun, 21 Jul 2013 16:07:19 +0900 |
parents | |
children | 7b6dab24f4b8 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0c0701a935f8 |
---|---|
1 // Filename : hist.h | |
2 // Last Change: 21-Jul-2013. | |
3 // | |
4 #ifndef __HIST_H__ | |
5 #define __HIST_H__ | |
6 | |
7 #include "common.h" | |
8 | |
9 class HistDialog : public wxDialog | |
10 { | |
11 DECLARE_EVENT_TABLE() | |
12 private: | |
13 | |
14 protected: | |
15 wxListCtrl* m_listCtrl; | |
16 wxButton* m_buttonCancel; | |
17 wxButton* m_buttonSet; | |
18 | |
19 public: | |
20 | |
21 HistDialog( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); | |
22 ~HistDialog(); | |
23 | |
24 void SetupHistoryList( void ); | |
25 }; | |
26 | |
27 enum | |
28 { | |
29 ID_LISTHIST = wxID_HIGHEST + 30, | |
30 }; | |
31 | |
32 | |
33 #endif //__HIST_H__ | |
34 |