0
|
1 // Filename : common.h
|
|
2 // Last Change: 12-Oct-2012.
|
|
3 //
|
|
4 #ifndef __COMMON_H__
|
|
5 #define __COMMON_H__
|
|
6
|
|
7 #include "wx/wxprec.h"
|
|
8
|
|
9 #ifndef WX_PRECOMP
|
|
10
|
|
11 #include <wx/wx.h>
|
|
12 #include <wx/string.h>
|
|
13 #include <wx/bitmap.h>
|
|
14 #include <wx/image.h>
|
|
15 #include <wx/icon.h>
|
|
16 #include <wx/menu.h>
|
|
17 #include <wx/gdicmn.h>
|
|
18 #include <wx/colour.h>
|
|
19 #include <wx/settings.h>
|
|
20 #include <wx/statbmp.h>
|
|
21 #include <wx/textctrl.h>
|
|
22 #include <wx/listctrl.h>
|
|
23 #include <wx/button.h>
|
|
24 #include <wx/sizer.h>
|
|
25 #include <wx/panel.h>
|
|
26 #include <wx/stattext.h>
|
|
27 #include <wx/combobox.h>
|
|
28 #include <wx/tglbtn.h>
|
|
29 #include <wx/richtext/richtextctrl.h>
|
|
30 #include "wx/fswatcher.h"
|
|
31 #include <wx/frame.h>
|
|
32 #include <wx/dialog.h>
|
|
33 #include <wx/dir.h>
|
|
34 #include <wx/regex.h>
|
|
35 #include <wx/stdpaths.h>
|
|
36 #include <wx/config.h>
|
|
37 #include <wx/fileconf.h>
|
|
38 #include <wx/filepicker.h>
|
|
39 #include <wx/window.h>
|
|
40
|
|
41 #endif
|
|
42
|
|
43 #endif // __COMMON_H__
|
|
44
|