Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / include / wx / wx.h
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 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_WX_H_
12 #define _WX_WX_H_
13
14 #include "wx/defs.h"
15 #include "wx/object.h"
16 #include "wx/dynarray.h"
17 #include "wx/list.h"
18 #include "wx/hash.h"
19 #include "wx/string.h"
20 #include "wx/hashmap.h"
21 #include "wx/arrstr.h"
22 #include "wx/intl.h"
23 #include "wx/log.h"
24 #include "wx/event.h"
25 #include "wx/app.h"
26 #include "wx/utils.h"
27 #include "wx/stream.h"
28 #include "wx/memory.h"
29 #include "wx/math.h"
30 #include "wx/stopwatch.h"
31 #include "wx/timer.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/settings.h"
65 #include "wx/msgdlg.h"
66 #include "wx/dataobj.h"
67
68 #include "wx/control.h"
69 #include "wx/ctrlsub.h"
70 #include "wx/bmpbuttn.h"
71 #include "wx/checkbox.h"
72 #include "wx/checklst.h"
73 #include "wx/choice.h"
74 #include "wx/scrolbar.h"
75 #include "wx/stattext.h"
76 #include "wx/statbmp.h"
77 #include "wx/statbox.h"
78 #include "wx/listbox.h"
79 #include "wx/radiobox.h"
80 #include "wx/radiobut.h"
81 #include "wx/textctrl.h"
82 #include "wx/slider.h"
83 #include "wx/gauge.h"
84 #include "wx/scrolwin.h"
85 #include "wx/dirdlg.h"
86 #include "wx/toolbar.h"
87 #include "wx/combobox.h"
88 #include "wx/layout.h"
89 #include "wx/sizer.h"
90 #include "wx/statusbr.h"
91 #include "wx/choicdlg.h"
92 #include "wx/textdlg.h"
93 #include "wx/filedlg.h"
94
95 // this one is included by exactly one file (mdi.cpp) during wx build so even
96 // although we keep it here for the library users, don't include it to avoid
97 // bloating the PCH and (worse) rebuilding the entire library when it changes
98 // when building the library itself
99 #ifndef WXBUILDING
100 #include "wx/mdi.h"
101 #endif
102
103 // always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator
104 #include "wx/validate.h"
105
106 #if wxUSE_VALIDATORS
107 #include "wx/valtext.h"
108 #endif // wxUSE_VALIDATORS
109
110 #endif // wxUSE_GUI
111
112 #endif // _WX_WX_H_