0
|
1 // Filename : common.h
|
9
|
2 // Last Change: 23-Apr-2014.
|
0
|
3 //
|
|
4 #ifndef __COMMON_H__
|
|
5 #define __COMMON_H__
|
|
6
|
|
7 #include "wx/wxprec.h"
|
|
8
|
|
9 #ifndef WX_PRECOMP
|
|
10
|
|
11 #include <wx/artprov.h>
|
|
12 #include <wx/bitmap.h>
|
|
13 #include <wx/button.h>
|
|
14 #include <wx/calctrl.h>
|
|
15 #include <wx/colour.h>
|
|
16 #include <wx/dialog.h>
|
|
17 #include <wx/font.h>
|
|
18 #include <wx/frame.h>
|
|
19 #include <wx/gdicmn.h>
|
|
20 #include <wx/icon.h>
|
|
21 #include <wx/image.h>
|
|
22 #include <wx/checkbox.h>
|
|
23 #include <wx/listctrl.h>
|
|
24 #include <wx/menu.h>
|
|
25 #include <wx/panel.h>
|
|
26 #include <wx/richtext/richtextctrl.h>
|
|
27 #include <wx/settings.h>
|
|
28 #include <wx/sizer.h>
|
|
29 #include <wx/splitter.h>
|
|
30 #include <wx/srchctrl.h>
|
2
|
31 #include <wx/notebook.h>
|
0
|
32 #include <wx/statbmp.h>
|
|
33 #include <wx/stattext.h>
|
|
34 #include <wx/statusbr.h>
|
|
35 #include <wx/string.h>
|
|
36 #include <wx/textctrl.h>
|
|
37 #include <wx/textfile.h>
|
|
38 #include <wx/tokenzr.h>
|
|
39 #include <wx/msgdlg.h>
|
2
|
40 #include <wx/progdlg.h>
|
|
41 #include <wx/grid.h>
|
1
|
42 #include <wx/regex.h>
|
2
|
43 #include <wx/dir.h>
|
|
44 #include <wx/print.h>
|
|
45 #include <wx/html/htmprint.h>
|
0
|
46 #include <wx/xrc/xmlres.h>
|
|
47
|
|
48 #endif
|
|
49
|
|
50 #endif // __COMMON_H__
|
|
51
|