]>
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/intl.h" | |
22 | #include "wx/log.h" | |
23 | #include "wx/event.h" | |
24 | #include "wx/app.h" | |
25 | #include "wx/utils.h" | |
26 | #include "wx/stream.h" | |
27 | ||
28 | #if wxUSE_GUI | |
29 | ||
30 | #include "wx/window.h" | |
31 | #include "wx/panel.h" | |
32 | #include "wx/frame.h" | |
33 | #include "wx/dc.h" | |
34 | #include "wx/dcclient.h" | |
35 | #include "wx/dcmemory.h" | |
36 | #include "wx/dcprint.h" | |
37 | #include "wx/dcscreen.h" | |
38 | #include "wx/button.h" | |
39 | #include "wx/menu.h" | |
40 | #include "wx/pen.h" | |
41 | #include "wx/brush.h" | |
42 | #include "wx/palette.h" | |
43 | #include "wx/icon.h" | |
44 | #include "wx/cursor.h" | |
45 | #include "wx/dialog.h" | |
46 | #include "wx/timer.h" | |
47 | #include "wx/settings.h" | |
48 | #include "wx/msgdlg.h" | |
49 | #include "wx/cmndata.h" | |
50 | ||
51 | #include "wx/control.h" | |
52 | #include "wx/ctrlsub.h" | |
53 | #include "wx/bmpbuttn.h" | |
54 | #include "wx/checkbox.h" | |
55 | #include "wx/checklst.h" | |
56 | #include "wx/choice.h" | |
57 | #include "wx/scrolbar.h" | |
58 | #include "wx/stattext.h" | |
59 | #include "wx/statbmp.h" | |
60 | #include "wx/statbox.h" | |
61 | #include "wx/listbox.h" | |
62 | #include "wx/radiobox.h" | |
63 | #include "wx/radiobut.h" | |
64 | #include "wx/textctrl.h" | |
65 | #include "wx/slider.h" | |
66 | #include "wx/gauge.h" | |
67 | #include "wx/scrolwin.h" | |
68 | #include "wx/dirdlg.h" | |
69 | #include "wx/toolbar.h" | |
70 | #include "wx/combobox.h" | |
71 | #include "wx/layout.h" | |
72 | #include "wx/sizer.h" | |
73 | #include "wx/memory.h" | |
74 | #include "wx/mdi.h" | |
75 | #include "wx/statusbr.h" | |
76 | #include "wx/scrolbar.h" | |
77 | #include "wx/choicdlg.h" | |
78 | #include "wx/textdlg.h" | |
79 | #include "wx/filedlg.h" | |
80 | ||
81 | // always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator | |
82 | #include "wx/validate.h" | |
83 | ||
84 | #if wxUSE_VALIDATORS | |
85 | #include "wx/valtext.h" | |
86 | #endif // wxUSE_VALIDATORS | |
87 | ||
88 | #endif // wxUSE_GUI | |
89 | ||
90 | #endif // _WX_WX_H_ | |
91 |