]> git.saurik.com Git - wxWidgets.git/blame - include/wx/wx.h
Use wxRendererNative::DrawTitleBarBitmap() for info bar close button.
[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
7// RCS-ID: $Id$
99d80019 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
b1e88286
VZ
12#ifndef _WX_WX_H_
13#define _WX_WX_H_
14
c801d85f 15#include "wx/defs.h"
e90c1d2a
VZ
16#include "wx/object.h"
17#include "wx/dynarray.h"
18#include "wx/list.h"
19#include "wx/hash.h"
c801d85f 20#include "wx/string.h"
df69528b 21#include "wx/hashmap.h"
aaa6d89a 22#include "wx/arrstr.h"
e90c1d2a 23#include "wx/intl.h"
184b5d99 24#include "wx/log.h"
e90c1d2a
VZ
25#include "wx/event.h"
26#include "wx/app.h"
27#include "wx/utils.h"
edc8bd8d 28#include "wx/stream.h"
5b56bffb 29#include "wx/memory.h"
18680f86 30#include "wx/math.h"
bb90a3e6 31#include "wx/stopwatch.h"
bad6549d 32#include "wx/timer.h"
02761f6c 33#include "wx/module.h"
e3f6cbd9 34#include "wx/wxcrt.h"
2523e9b7 35#include "wx/wxcrtvararg.h"
e90c1d2a
VZ
36
37#if wxUSE_GUI
38
c801d85f 39#include "wx/window.h"
841f23e1 40#include "wx/containr.h"
c801d85f 41#include "wx/panel.h"
1832043f 42#include "wx/toplevel.h"
c801d85f 43#include "wx/frame.h"
dd05139a 44#include "wx/gdicmn.h"
8dd86663 45#include "wx/gdiobj.h"
b3a44e05 46#include "wx/region.h"
0bca0373 47#include "wx/bitmap.h"
155ecd4c 48#include "wx/image.h"
7cf41a5d 49#include "wx/colour.h"
48a1108e 50#include "wx/font.h"
c801d85f
KB
51#include "wx/dc.h"
52#include "wx/dcclient.h"
53#include "wx/dcmemory.h"
54#include "wx/dcprint.h"
55#include "wx/dcscreen.h"
c801d85f 56#include "wx/button.h"
25466131 57#include "wx/menuitem.h"
88ac883a 58#include "wx/menu.h"
88ac883a
VZ
59#include "wx/pen.h"
60#include "wx/brush.h"
61#include "wx/palette.h"
62#include "wx/icon.h"
63#include "wx/cursor.h"
64#include "wx/dialog.h"
88ac883a
VZ
65#include "wx/settings.h"
66#include "wx/msgdlg.h"
67#include "wx/cmndata.h"
28f92d74 68#include "wx/dataobj.h"
88ac883a 69
1e6feb95
VZ
70#include "wx/control.h"
71#include "wx/ctrlsub.h"
c801d85f
KB
72#include "wx/bmpbuttn.h"
73#include "wx/checkbox.h"
1e6feb95 74#include "wx/checklst.h"
c801d85f
KB
75#include "wx/choice.h"
76#include "wx/scrolbar.h"
77#include "wx/stattext.h"
78#include "wx/statbmp.h"
79#include "wx/statbox.h"
80#include "wx/listbox.h"
81#include "wx/radiobox.h"
82#include "wx/radiobut.h"
83#include "wx/textctrl.h"
84#include "wx/slider.h"
85#include "wx/gauge.h"
4720388f
DW
86#include "wx/scrolwin.h"
87#include "wx/dirdlg.h"
88#include "wx/toolbar.h"
c801d85f 89#include "wx/combobox.h"
c801d85f 90#include "wx/layout.h"
3417c2cd 91#include "wx/sizer.h"
c801d85f 92#include "wx/statusbr.h"
c801d85f
KB
93#include "wx/choicdlg.h"
94#include "wx/textdlg.h"
95#include "wx/filedlg.h"
b1e88286 96
690ba30e
VZ
97// this one is included by exactly one file (mdi.cpp) during wx build so even
98// although we keep it here for the library users, don't include it to avoid
99// bloating the PCH and (worse) rebuilding the entire library when it changes
100// when building the library itself
101#ifndef WXBUILDING
102 #include "wx/mdi.h"
103#endif
104
b1e88286
VZ
105// always include, even if !wxUSE_VALIDATORS because we need wxDefaultValidator
106#include "wx/validate.h"
674ac8b9 107
88ac883a
VZ
108#if wxUSE_VALIDATORS
109 #include "wx/valtext.h"
110#endif // wxUSE_VALIDATORS
111
e90c1d2a
VZ
112#endif // wxUSE_GUI
113
b1e88286 114#endif // _WX_WX_H_