0
|
1 // Filename : index.h
|
|
2 // Last Change: 21-Jul-2013.
|
|
3 //
|
|
4
|
|
5 #ifndef __INDEX_H__
|
|
6 #define __INDEX_H__
|
|
7
|
|
8 #include "common.h"
|
|
9
|
|
10 class IndexDialog : public wxDialog
|
|
11 {
|
|
12 DECLARE_EVENT_TABLE()
|
|
13 private:
|
|
14
|
|
15 protected:
|
|
16 wxListCtrl* m_listCtrl;
|
|
17 wxCalendarCtrl* m_calendar;
|
|
18 wxButton* m_buttonMake;
|
|
19 wxButton* m_buttonClose;
|
|
20
|
|
21 public:
|
|
22
|
|
23 IndexDialog( wxWindow*, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style );
|
|
24 ~IndexDialog();
|
|
25
|
|
26 };
|
|
27
|
|
28 enum {
|
|
29 ID_CALNENDER = wxID_HIGHEST + 60,
|
|
30 ID_MKINDEX,
|
|
31 };
|
|
32
|
|
33 #endif //__INDEX_H__
|
|
34
|