0
|
1 // Filename : common.h
|
|
2 // Last Change: 15-Oct-2011.
|
|
3 //
|
|
4 #ifndef __COMMON__
|
|
5 #define __COMMON__
|
|
6
|
|
7 #include "wx/wxprec.h"
|
|
8
|
|
9 #ifndef WX_PRECOMP
|
|
10 #include "wx/wx.h"
|
|
11 #include <wx/icon.h>
|
1
|
12 #include <wx/imaglist.h>
|
0
|
13 #include <wx/dir.h>
|
|
14 #include <wx/menu.h>
|
|
15 #include <wx/string.h>
|
|
16 #include <wx/statusbr.h>
|
|
17 #include <wx/stattext.h>
|
|
18 #include <wx/button.h>
|
|
19 #include <wx/datectrl.h>
|
|
20 #include <wx/dateevt.h>
|
|
21 #include <wx/textctrl.h>
|
|
22 #include <wx/filepicker.h>
|
|
23 #include <wx/filename.h>
|
|
24 #include <wx/listctrl.h>
|
|
25 #include <wx/dir.h>
|
|
26 #include <wx/file.h>
|
|
27 #include <wx/tokenzr.h>
|
|
28 #include <wx/stdpaths.h>
|
|
29 #include <wx/sizer.h>
|
|
30 #include <wx/combobox.h>
|
|
31 #include <wx/progdlg.h>
|
|
32 #include <wx/frame.h>
|
|
33 #endif
|
|
34
|
|
35 enum {
|
|
36 // mainframe
|
|
37 ID_MAIN = wxID_HIGHEST + 1,
|
|
38 ID_TEST,
|
|
39
|
|
40 ID_MENUBARFILE,
|
|
41 ID_MENUITEMPARAM,
|
|
42 ID_MENUITEMAPPDIR,
|
|
43 ID_MENUITEMQUIT,
|
|
44
|
|
45 ID_BUTTONMKDIR,
|
|
46 ID_TEXTCTRLDIST,
|
|
47 ID_TEXTCTRLGUESS,
|
|
48 ID_LISTCTRLVIEW,
|
|
49
|
1
|
50 ID_BUTTONDETECT,
|
0
|
51 ID_BUTTONMOVE,
|
1
|
52 ID_BUTTONMD,
|
0
|
53 ID_BUTTONDEL,
|
|
54 ID_BUTTONUNDO,
|
|
55
|
|
56 // param
|
|
57 ID_BUTTONSAVE,
|
|
58 };
|
|
59 #endif // __COMMON__
|
|
60
|