]> git.saurik.com Git - wxWidgets.git/blob - include/wx/wx.h
Updates for os/2 -- mostly to allow easier VA debugging
[wxWidgets.git] / include / wx / wx.h
1 #ifndef _WX_WXH__
2 #define _WX_WXH__
3
4 /////////////////////////////////////////////////////////////////////////////
5 // Name: wx.h
6 // Purpose: wxWindows main include file
7 // Author: Julian Smart
8 // Modified by:
9 // Created: 01/02/97
10 // RCS-ID: $Id$
11 // Copyright: (c)
12 // Licence: wxWindows licence
13 /////////////////////////////////////////////////////////////////////////////
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
27 #if wxUSE_GUI
28
29 #include "wx/window.h"
30 #include "wx/panel.h"
31 #include "wx/frame.h"
32 #include "wx/dc.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcmemory.h"
35 #include "wx/dcprint.h"
36 #include "wx/dcscreen.h"
37 #include "wx/button.h"
38 #include "wx/menu.h"
39 #include "wx/pen.h"
40 #include "wx/brush.h"
41 #include "wx/palette.h"
42 #include "wx/icon.h"
43 #include "wx/cursor.h"
44 #include "wx/dialog.h"
45 #include "wx/timer.h"
46 #include "wx/settings.h"
47 #include "wx/msgdlg.h"
48 #include "wx/cmndata.h"
49
50 #include "wx/bmpbuttn.h"
51 #include "wx/checkbox.h"
52 #include "wx/choice.h"
53 #include "wx/scrolbar.h"
54 #include "wx/stattext.h"
55 #include "wx/statbmp.h"
56 #include "wx/statbox.h"
57 #include "wx/listbox.h"
58 #include "wx/radiobox.h"
59 #include "wx/radiobut.h"
60 #include "wx/textctrl.h"
61 #include "wx/slider.h"
62 #if !defined(__VISAGECPP__) // cyclic dependency
63 #include "wx/gauge.h"
64 #include "wx/scrolwin.h"
65 #include "wx/dirdlg.h"
66 #include "wx/toolbar.h"
67 #endif
68 #include "wx/combobox.h"
69 #include "wx/layout.h"
70 #include "wx/sizer.h"
71 #include "wx/memory.h"
72 #include "wx/mdi.h"
73 #include "wx/statusbr.h"
74 #include "wx/scrolbar.h"
75 #include "wx/choicdlg.h"
76 #include "wx/textdlg.h"
77 #include "wx/filedlg.h"
78
79 #include "wx/validate.h" // always include, even if !wxUSE_VALIDATORS
80
81 #if !defined(__VISAGECPP__) // cyclic dependency
82
83 #if wxUSE_VALIDATORS
84 #include "wx/valtext.h"
85 #endif // wxUSE_VALIDATORS
86
87 #if wxUSE_SERIAL
88 #include "wx/objstrm.h"
89 #include "wx/serbase.h"
90 #endif // wxUSE_SERIAL
91
92 #endif // __VISAGECPP__
93
94 #endif // wxUSE_GUI
95
96 #endif
97 // _WX_WXH__