0
|
1 // Filename : common.h
|
|
2 // Last Change: 17-Jan-2014.
|
|
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/colour.h>
|
|
15 #include <wx/dialog.h>
|
|
16 #include <wx/font.h>
|
|
17 #include <wx/frame.h>
|
|
18 #include <wx/gdicmn.h>
|
|
19 #include <wx/icon.h>
|
|
20 #include <wx/image.h>
|
|
21 #include <wx/listctrl.h>
|
|
22 #include <wx/panel.h>
|
|
23 #include <wx/settings.h>
|
|
24 #include <wx/sizer.h>
|
|
25 #include <wx/stattext.h>
|
|
26 #include <wx/statusbr.h>
|
|
27 #include <wx/string.h>
|
|
28 #include <wx/textctrl.h>
|
|
29 #include <wx/textfile.h>
|
|
30 #include <wx/msgdlg.h>
|
|
31 #include <wx/dir.h>
|
|
32 #include <wx/dnd.h>
|
|
33 #include <wx/xrc/xmlres.h>
|
|
34
|
|
35 #endif
|
|
36
|
|
37 #endif // __COMMON_H__
|
|
38
|