]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/wx.h | |
3 | // Purpose: wxWidgets central header including the most often used ones | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_WX_H_ | |
13 | #define _WX_WX_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | #include "wx/object.h" | |
17 | #include "wx/dynarray.h" | |
18 | #include "wx/list.h" | |
19 | #include "wx/hash.h" | |
20 | #include "wx/string.h" | |
21 | #include "wx/hashmap.h" | |
22 | #include "wx/arrstr.h" | |
23 | #include "wx/intl.h" | |
24 | #include "wx/log.h" | |
25 | #include "wx/event.h" | |
26 | #include "wx/app.h" | |
27 | #include "wx/utils.h" | |
28 | #include "wx/stream.h" | |
29 | #include "wx/memory.h" | |
30 | #include "wx/math.h" | |
31 | #include "wx/stopwatch.h" | |
32 | #include "wx/module.h" | |
33 | #include "wx/wxcrt.h" | |
34 | #include "wx/wxcrtvararg.h" | |
35 | ||
36 | #if wxUSE_GUI | |
37 | ||
38 | #include "wx/window.h" | |
39 | #include "wx/containr.h" | |
40 | #include "wx/panel.h" | |
41 | #include "wx/toplevel.h" | |
42 | #include "wx/frame.h" | |
43 | #include "wx/gdicmn.h" | |
44 | #include "wx/gdiobj.h" | |
45 | #include "wx/region.h" | |
46 | #include "wx/bitmap.h" | |
47 | #include "wx/image.h" | |
48 | #include "wx/colour.h" | |
49 | #include "wx/font.h" | |
50 | #include "wx/dc.h" | |
51 | #include "wx/dcclient.h" | |
52 | #include "wx/dcmemory.h" | |
53 | #include "wx/dcprint.h" | |
54 | #include "wx/dcscreen.h" | |
55 | #include "wx/button.h" | |
56 | #include "wx/menuitem.h" | |
57 | #include "wx/menu.h" | |
58 | #include "wx/pen.h" | |
59 | #include "wx/brush.h" | |
60 | #include "wx/palette.h" | |
61 | #include "wx/icon.h" | |
62 | #include "wx/cursor.h" | |
63 | #include "wx/dialog.h" | |
64 | #include "wx/timer.h" | |
65 | #include "wx/settings.h" | |
66 | #include "wx/msgdlg.h" | |
67 | #include "wx/cmndata.h" | |
68 | #include "wx/dataobj.h" | |
69 | ||
70 | #include "wx/control.h" | |
71 | #include "wx/ctrlsub.h" | |
72 | #include "wx/bmpbuttn.h" | |
73 | #include "wx/checkbox.h" | |
74 | #include "wx/checklst.h" | |
75 | #include "wx/choice.h" | |
76 | #include "wx/scrolbar.h" | |
77 | #include "wx/stattext.h" | |
78 | #include "wx/statbmp.h" | |
79 | #include "wx/statbox.h" | |
80 | #include "wx/listbox.h" | |
81 | #include "wx/radiobox.h" | |
82 | #include "wx/radiobut.h" | |
83 | #include "wx/textctrl.h" | |
84 | #include "wx/slider.h" | |
85 | #include "wx/gauge.h" | |
86 | #include "wx/scrolwin.h" | |
87 | #include "wx/dirdlg.h" | |
88 | #include "wx/toolbar.h" | |
89 | #include "wx/combobox.h" | |
90 | #include "wx/layout.h" | |
91 | #include "wx/sizer.h" | |
92 | #include "wx/mdi.h" | |
93 | #include "wx/statusbr.h" | |
94 | #include "wx/choicdlg.h" | |
95 | #include "wx/textdlg.h" | |
96 | #include "wx/filedlg.h" | |
97 | ||
98 | // always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator | |
99 | #include "wx/validate.h" | |
100 | ||
101 | #if wxUSE_VALIDATORS | |
102 | #include "wx/valtext.h" | |
103 | #endif // wxUSE_VALIDATORS | |
104 | ||
105 | #endif // wxUSE_GUI | |
106 | ||
107 | #endif // _WX_WX_H_ |