]> git.saurik.com Git - wxWidgets.git/blame - include/wx/wx.h
wxT() for a Spanish(?) debug message
[wxWidgets.git] / include / wx / wx.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx.h
3// Purpose: wxWindows main include file
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c)
e90c1d2a 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_WXH__
13#define _WX_WXH__
c801d85f 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"
26
27#if wxUSE_GUI
28
c801d85f
KB
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"
c801d85f 37#include "wx/button.h"
88ac883a 38#include "wx/menu.h"
88ac883a
VZ
39#include "wx/list.h"
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
c801d85f
KB
51#include "wx/bmpbuttn.h"
52#include "wx/checkbox.h"
53#include "wx/choice.h"
54#include "wx/scrolbar.h"
55#include "wx/stattext.h"
56#include "wx/statbmp.h"
57#include "wx/statbox.h"
58#include "wx/listbox.h"
59#include "wx/radiobox.h"
60#include "wx/radiobut.h"
61#include "wx/textctrl.h"
62#include "wx/slider.h"
63#include "wx/gauge.h"
64#include "wx/combobox.h"
c801d85f 65#include "wx/layout.h"
3417c2cd 66#include "wx/sizer.h"
c801d85f
KB
67#include "wx/memory.h"
68#include "wx/mdi.h"
69#include "wx/scrolwin.h"
70#include "wx/statusbr.h"
71#include "wx/scrolbar.h"
c801d85f
KB
72#include "wx/choicdlg.h"
73#include "wx/textdlg.h"
74#include "wx/filedlg.h"
75#include "wx/dirdlg.h"
88ac883a 76
88ac883a
VZ
77#if wxUSE_VALIDATORS
78 #include "wx/valtext.h"
79#endif // wxUSE_VALIDATORS
80
9838df2c 81#if wxUSE_SERIAL
88ac883a
VZ
82 #include "wx/objstrm.h"
83 #include "wx/serbase.h"
84#endif // wxUSE_SERIAL
c801d85f 85
e90c1d2a
VZ
86#endif // wxUSE_GUI
87
c801d85f 88#endif
34138703 89 // _WX_WXH__