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