]> git.saurik.com Git - wxWidgets.git/blame - include/wx/wx.h
Somehow, setting a tint color makes gauge work :/.
[wxWidgets.git] / include / wx / wx.h
CommitLineData
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
99d80019 7// Copyright: (c) Julian Smart
65571936 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
b1e88286
VZ
11#ifndef _WX_WX_H_
12#define _WX_WX_H_
13
c801d85f 14#include "wx/defs.h"
e90c1d2a
VZ
15#include "wx/object.h"
16#include "wx/dynarray.h"
17#include "wx/list.h"
18#include "wx/hash.h"
c801d85f 19#include "wx/string.h"
df69528b 20#include "wx/hashmap.h"
aaa6d89a 21#include "wx/arrstr.h"
e90c1d2a 22#include "wx/intl.h"
184b5d99 23#include "wx/log.h"
e90c1d2a
VZ
24#include "wx/event.h"
25#include "wx/app.h"
26#include "wx/utils.h"
edc8bd8d 27#include "wx/stream.h"
5b56bffb 28#include "wx/memory.h"
18680f86 29#include "wx/math.h"
bb90a3e6 30#include "wx/stopwatch.h"
bad6549d 31#include "wx/timer.h"
02761f6c 32#include "wx/module.h"
e3f6cbd9 33#include "wx/wxcrt.h"
2523e9b7 34#include "wx/wxcrtvararg.h"
e90c1d2a
VZ
35
36#if wxUSE_GUI
37
c801d85f 38#include "wx/window.h"
841f23e1 39#include "wx/containr.h"
c801d85f 40#include "wx/panel.h"
1832043f 41#include "wx/toplevel.h"
c801d85f 42#include "wx/frame.h"
dd05139a 43#include "wx/gdicmn.h"
8dd86663 44#include "wx/gdiobj.h"
b3a44e05 45#include "wx/region.h"
0bca0373 46#include "wx/bitmap.h"
155ecd4c 47#include "wx/image.h"
7cf41a5d 48#include "wx/colour.h"
48a1108e 49#include "wx/font.h"
c801d85f
KB
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"
c801d85f 55#include "wx/button.h"
25466131 56#include "wx/menuitem.h"
88ac883a 57#include "wx/menu.h"
88ac883a
VZ
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"
88ac883a
VZ
64#include "wx/settings.h"
65#include "wx/msgdlg.h"
28f92d74 66#include "wx/dataobj.h"
88ac883a 67
1e6feb95
VZ
68#include "wx/control.h"
69#include "wx/ctrlsub.h"
c801d85f
KB
70#include "wx/bmpbuttn.h"
71#include "wx/checkbox.h"
1e6feb95 72#include "wx/checklst.h"
c801d85f
KB
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"
4720388f
DW
84#include "wx/scrolwin.h"
85#include "wx/dirdlg.h"
86#include "wx/toolbar.h"
c801d85f 87#include "wx/combobox.h"
c801d85f 88#include "wx/layout.h"
3417c2cd 89#include "wx/sizer.h"
c801d85f 90#include "wx/statusbr.h"
c801d85f
KB
91#include "wx/choicdlg.h"
92#include "wx/textdlg.h"
93#include "wx/filedlg.h"
b1e88286 94
690ba30e
VZ
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
b1e88286
VZ
103// always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator
104#include "wx/validate.h"
674ac8b9 105
88ac883a
VZ
106#if wxUSE_VALIDATORS
107 #include "wx/valtext.h"
108#endif // wxUSE_VALIDATORS
109
e90c1d2a
VZ
110#endif // wxUSE_GUI
111
b1e88286 112#endif // _WX_WX_H_