0
|
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
|