]> git.saurik.com Git - wxWidgets.git/blame - src/xrc/xmlrsall.cpp
Fix the rectangle size when offsetting
[wxWidgets.git] / src / xrc / xmlrsall.cpp
CommitLineData
78d14f80 1/////////////////////////////////////////////////////////////////////////////
28583246 2// Name: src/xrc/xmlrsall.cpp
78d14f80
VS
3// Purpose: wxXmlResource::InitAllHandlers
4// Author: Vaclav Slavik
5// Created: 2000/03/05
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
f80ea77b 10
78d14f80
VS
11// For compilers that support precompilation, includes "wx.h".
12#include "wx/wxprec.h"
13
14#ifdef __BORLANDC__
15 #pragma hdrstop
16#endif
17
621be1ec 18#if wxUSE_XRC
a1e4ec87 19
78d14f80
VS
20#include "wx/xrc/xmlres.h"
21#include "wx/xrc/xh_all.h"
22
23void wxXmlResource::InitAllHandlers()
24{
dd47af27
VZ
25 // these are the handlers, which we always have
26 AddHandler(new wxUnknownWidgetXmlHandler);
78d14f80
VS
27 AddHandler(new wxBitmapXmlHandler);
28 AddHandler(new wxIconXmlHandler);
78d14f80
VS
29 AddHandler(new wxDialogXmlHandler);
30 AddHandler(new wxPanelXmlHandler);
78d14f80 31 AddHandler(new wxSizerXmlHandler);
dd47af27
VZ
32 AddHandler(new wxFrameXmlHandler);
33 AddHandler(new wxScrolledWindowXmlHandler);
34
35 // these are configurable handlers
ecf48edf
VZ
36 //
37 // please keep them in alphabetical order of wxUSE_XXX guards
38#if wxUSE_ANIMATIONCTRL
39 AddHandler(new wxAnimationCtrlXmlHandler);
dd47af27 40#endif
ecf48edf
VZ
41#if wxUSE_BITMAPCOMBOBOX
42 AddHandler(new wxBitmapComboBoxXmlHandler);
dd47af27
VZ
43#endif
44#if wxUSE_BMPBUTTON
78d14f80 45 AddHandler(new wxBitmapButtonXmlHandler);
dd47af27 46#endif
ecf48edf
VZ
47#if wxUSE_BUTTON
48 AddHandler(new wxStdDialogButtonSizerXmlHandler);
49 AddHandler(new wxButtonXmlHandler);
dd47af27 50#endif
f03b9d45 51#if wxUSE_CALENDARCTRL
78d14f80 52 AddHandler(new wxCalendarCtrlXmlHandler);
f03b9d45 53#endif
ecf48edf
VZ
54#if wxUSE_CHECKBOX
55 AddHandler(new wxCheckBoxXmlHandler);
dd47af27 56#endif
636e7e5d 57#if wxUSE_CHECKLISTBOX
56572188 58 AddHandler(new wxCheckListBoxXmlHandler);
78d14f80
VS
59#endif
60#if wxUSE_CHOICE
61 AddHandler(new wxChoiceXmlHandler);
62#endif
ecf48edf
VZ
63#if wxUSE_CHOICEBOOK
64 AddHandler(new wxChoicebookXmlHandler);
65#endif
66#if wxUSE_COLOURPICKERCTRL
67 AddHandler(new wxColourPickerCtrlXmlHandler);
68#endif
69#if wxUSE_COMBOBOX
70 AddHandler(new wxComboBoxXmlHandler);
71#endif
72#if wxUSE_DATEPICKCTRL
73 AddHandler(new wxDateCtrlXmlHandler);
74#endif
75#if wxUSE_DIRDLG
76 AddHandler(new wxGenericDirCtrlXmlHandler);
77#endif
78#if wxUSE_DIRPICKERCTRL
79 AddHandler(new wxDirPickerCtrlXmlHandler);
80#endif
81#if wxUSE_FILEPICKERCTRL
82 AddHandler(new wxFilePickerCtrlXmlHandler);
83#endif
84#if wxUSE_FONTPICKERCTRL
85 AddHandler(new wxFontPickerCtrlXmlHandler);
78d14f80
VS
86#endif
87#if wxUSE_GAUGE
88 AddHandler(new wxGaugeXmlHandler);
89#endif
ecf48edf
VZ
90#if wxUSE_GRID
91 AddHandler( new wxGridXmlHandler);
85f138db 92#endif
78d14f80
VS
93#if wxUSE_HTML
94 AddHandler(new wxHtmlWindowXmlHandler);
9ebb7cad 95 AddHandler(new wxSimpleHtmlListBoxXmlHandler);
f80ea77b 96#endif
ecf48edf
VZ
97#if wxUSE_HYPERLINKCTRL
98 AddHandler( new wxHyperlinkCtrlXmlHandler);
78d14f80 99#endif
ecf48edf
VZ
100#if wxUSE_LISTBOOK
101 AddHandler(new wxListbookXmlHandler);
dd47af27 102#endif
ecf48edf
VZ
103#if wxUSE_LISTBOX
104 AddHandler(new wxListBoxXmlHandler);
78d14f80 105#endif
ecf48edf
VZ
106#if wxUSE_LISTCTRL
107 AddHandler(new wxListCtrlXmlHandler);
78d14f80 108#endif
ecf48edf
VZ
109#if wxUSE_MDI
110 AddHandler(new wxMdiXmlHandler);
582f07c2 111#endif
ecf48edf
VZ
112#if wxUSE_MENUS
113 AddHandler(new wxMenuXmlHandler);
114 AddHandler(new wxMenuBarXmlHandler);
95a46303 115#endif
78d14f80
VS
116#if wxUSE_NOTEBOOK
117 AddHandler(new wxNotebookXmlHandler);
9aaf1192 118#endif
ecf48edf
VZ
119#if wxUSE_ODCOMBOBOX
120 AddHandler(new wxOwnerDrawnComboBoxXmlHandler);
eca15c0d 121#endif
ecf48edf
VZ
122#if wxUSE_RADIOBOX
123 AddHandler(new wxRadioBoxXmlHandler);
78d14f80 124#endif
ecf48edf
VZ
125#if wxUSE_RADIOBTN
126 AddHandler(new wxRadioButtonXmlHandler);
dd47af27 127#endif
ecf48edf
VZ
128#if wxUSE_SCROLLBAR
129 AddHandler(new wxScrollBarXmlHandler);
78d14f80 130#endif
ecf48edf
VZ
131#if wxUSE_SLIDER
132 AddHandler(new wxSliderXmlHandler);
78d14f80 133#endif
ecf48edf
VZ
134#if wxUSE_SPINBTN
135 AddHandler(new wxSpinButtonXmlHandler);
78d14f80 136#endif
ecf48edf
VZ
137#if wxUSE_SPINCTRL
138 AddHandler(new wxSpinCtrlXmlHandler);
995c1788 139#endif
dd47af27 140#if wxUSE_SPLITTER
2f5b93fb 141 AddHandler(new wxSplitterWindowXmlHandler);
dd47af27 142#endif
ecf48edf
VZ
143#if wxUSE_STATBMP
144 AddHandler(new wxStaticBitmapXmlHandler);
e5db28fd 145#endif
ecf48edf
VZ
146#if wxUSE_STATBOX
147 AddHandler(new wxStaticBoxXmlHandler);
b0fb0f3c 148#endif
ecf48edf
VZ
149#if wxUSE_STATLINE
150 AddHandler(new wxStaticLineXmlHandler);
1ee3fb38 151#endif
ecf48edf
VZ
152#if wxUSE_STATTEXT
153 AddHandler(new wxStaticTextXmlHandler);
ec376c8f 154#endif
ecf48edf
VZ
155#if wxUSE_STATUSBAR
156 AddHandler(new wxStatusBarXmlHandler);
ec376c8f 157#endif
ecf48edf
VZ
158#if wxUSE_TEXTCTRL
159 AddHandler(new wxTextCtrlXmlHandler);
ec376c8f 160#endif
ecf48edf
VZ
161#if wxUSE_TOGGLEBTN
162 AddHandler(new wxToggleButtonXmlHandler);
ec376c8f 163#endif
ecf48edf
VZ
164#if wxUSE_TOOLBAR
165 AddHandler(new wxToolBarXmlHandler);
5a0348c4 166#endif
ecf48edf
VZ
167#if wxUSE_TREEBOOK
168 AddHandler(new wxTreebookXmlHandler);
0e3c83a7 169#endif
ecf48edf
VZ
170#if wxUSE_TREECTRL
171 AddHandler(new wxTreeCtrlXmlHandler);
17e91437 172#endif
ecf48edf
VZ
173#if wxUSE_WIZARDDLG
174 AddHandler(new wxWizardXmlHandler);
9e29cd0a 175#endif
78d14f80 176}
a1e4ec87
VS
177
178#endif // wxUSE_XRC