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