]> git.saurik.com Git - wxWidgets.git/blame - include/wx/wx.h
show the taskbar icon even after Explorer restart (patch 723532) + some code cleanup
[wxWidgets.git] / include / wx / wx.h
CommitLineData
4720388f
DW
1#ifndef _WX_WXH__
2#define _WX_WXH__
3
c801d85f
KB
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)
e90c1d2a 12// Licence: wxWindows licence
c801d85f
KB
13/////////////////////////////////////////////////////////////////////////////
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"
e90c1d2a 21#include "wx/intl.h"
184b5d99 22#include "wx/log.h"
e90c1d2a
VZ
23#include "wx/event.h"
24#include "wx/app.h"
25#include "wx/utils.h"
edc8bd8d 26#include "wx/stream.h"
e90c1d2a
VZ
27
28#if wxUSE_GUI
29
c801d85f
KB
30#include "wx/window.h"
31#include "wx/panel.h"
32#include "wx/frame.h"
33#include "wx/dc.h"
34#include "wx/dcclient.h"
35#include "wx/dcmemory.h"
36#include "wx/dcprint.h"
37#include "wx/dcscreen.h"
c801d85f 38#include "wx/button.h"
88ac883a 39#include "wx/menu.h"
88ac883a
VZ
40#include "wx/pen.h"
41#include "wx/brush.h"
42#include "wx/palette.h"
43#include "wx/icon.h"
44#include "wx/cursor.h"
45#include "wx/dialog.h"
46#include "wx/timer.h"
88ac883a
VZ
47#include "wx/settings.h"
48#include "wx/msgdlg.h"
49#include "wx/cmndata.h"
50
1e6feb95
VZ
51#include "wx/control.h"
52#include "wx/ctrlsub.h"
c801d85f
KB
53#include "wx/bmpbuttn.h"
54#include "wx/checkbox.h"
1e6feb95 55#include "wx/checklst.h"
c801d85f
KB
56#include "wx/choice.h"
57#include "wx/scrolbar.h"
58#include "wx/stattext.h"
59#include "wx/statbmp.h"
60#include "wx/statbox.h"
61#include "wx/listbox.h"
62#include "wx/radiobox.h"
63#include "wx/radiobut.h"
64#include "wx/textctrl.h"
65#include "wx/slider.h"
66#include "wx/gauge.h"
4720388f
DW
67#include "wx/scrolwin.h"
68#include "wx/dirdlg.h"
69#include "wx/toolbar.h"
c801d85f 70#include "wx/combobox.h"
c801d85f 71#include "wx/layout.h"
3417c2cd 72#include "wx/sizer.h"
c801d85f
KB
73#include "wx/memory.h"
74#include "wx/mdi.h"
c801d85f
KB
75#include "wx/statusbr.h"
76#include "wx/scrolbar.h"
c801d85f
KB
77#include "wx/choicdlg.h"
78#include "wx/textdlg.h"
79#include "wx/filedlg.h"
674ac8b9
VZ
80#include "wx/validate.h" // always include, even if !wxUSE_VALIDATORS
81
88ac883a
VZ
82#if wxUSE_VALIDATORS
83 #include "wx/valtext.h"
84#endif // wxUSE_VALIDATORS
85
e90c1d2a
VZ
86#endif // wxUSE_GUI
87
c801d85f 88#endif
34138703 89 // _WX_WXH__