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: wx.h 40943 2006-08-31 19:31:43Z ABX $
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
34#if wxUSE_GUI
35
36#include "wx/window.h"
37#include "wx/containr.h"
38#include "wx/panel.h"
39#include "wx/toplevel.h"
40#include "wx/frame.h"
41#include "wx/gdicmn.h"
42#include "wx/gdiobj.h"
43#include "wx/region.h"
44#include "wx/bitmap.h"
45#include "wx/image.h"
46#include "wx/colour.h"
47#include "wx/font.h"
48#include "wx/dc.h"
49#include "wx/dcclient.h"
50#include "wx/dcmemory.h"
51#include "wx/dcprint.h"
52#include "wx/dcscreen.h"
53#include "wx/button.h"
54#include "wx/menuitem.h"
55#include "wx/menu.h"
56#include "wx/pen.h"
57#include "wx/brush.h"
58#include "wx/palette.h"
59#include "wx/icon.h"
60#include "wx/cursor.h"
61#include "wx/dialog.h"
62#include "wx/timer.h"
63#include "wx/settings.h"
64#include "wx/msgdlg.h"
65#include "wx/cmndata.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/mdi.h"
91#include "wx/statusbr.h"
92#include "wx/choicdlg.h"
93#include "wx/textdlg.h"
94#include "wx/filedlg.h"
95
96// always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator
97#include "wx/validate.h"
98
99#if wxUSE_VALIDATORS
100    #include "wx/valtext.h"
101#endif // wxUSE_VALIDATORS
102
103#endif // wxUSE_GUI
104
105#endif // _WX_WX_H_
106