Mercurial > mercurial > hgweb_searcher03.cgi
annotate include/common.h @ 16:1ba97995f642
Get/Put DB files to shared-directory.
author | pyon@macmini |
---|---|
date | Thu, 19 Jun 2014 18:46:11 +0900 |
parents | de222bc84e48 |
children | 92188f60323d |
rev | line source |
---|---|
0 | 1 // Filename : common.h |
15 | 2 // Last Change: 05-Jun-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> | |
12
52958cd4a073
Implement Force Mask button in Batch Print Mode.
pyon@macmini
parents:
11
diff
changeset
|
40 #include <wx/filedlg.h> |
2 | 41 #include <wx/progdlg.h> |
42 #include <wx/grid.h> | |
1 | 43 #include <wx/regex.h> |
2 | 44 #include <wx/dir.h> |
45 #include <wx/print.h> | |
12
52958cd4a073
Implement Force Mask button in Batch Print Mode.
pyon@macmini
parents:
11
diff
changeset
|
46 #include <wx/filepicker.h> |
15 | 47 #include <wx/clipbrd.h> |
2 | 48 #include <wx/html/htmprint.h> |
11 | 49 #include <wx/datectrl.h> |
0 | 50 #include <wx/xrc/xmlres.h> |
51 | |
52 #endif | |
53 | |
54 #endif // __COMMON_H__ | |
55 |