X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8576d6a4546855a1358c84e45e1bc4f1bc39e496..00b2a5df9502adfd9a14ce01ab603f7906984995:/contrib/src/xml/xmlrsall.cpp diff --git a/contrib/src/xml/xmlrsall.cpp b/contrib/src/xml/xmlrsall.cpp index 19312097e9..7db99c52c9 100644 --- a/contrib/src/xml/xmlrsall.cpp +++ b/contrib/src/xml/xmlrsall.cpp @@ -25,12 +25,33 @@ void wxXmlResource::InitAllHandlers() { + AddHandler(new wxBitmapXmlHandler); + AddHandler(new wxIconXmlHandler); AddHandler(new wxMenuXmlHandler); AddHandler(new wxMenuBarXmlHandler); AddHandler(new wxDialogXmlHandler); AddHandler(new wxPanelXmlHandler); + + AddHandler(new wxSizerXmlHandler); +//Controls AddHandler(new wxButtonXmlHandler); + AddHandler(new wxBitmapButtonXmlHandler); + AddHandler(new wxStaticTextXmlHandler); + AddHandler(new wxStaticBoxXmlHandler); + AddHandler(new wxStaticBitmapXmlHandler); + AddHandler(new wxTreeCtrlXmlHandler); + AddHandler(new wxCalendarCtrlXmlHandler); + AddHandler(new wxListCtrlXmlHandler); +#if CHECKLISTBOX + AddHandler(new wxCheckListXmlHandler); +#endif +#if wxUSE_CHOICE + AddHandler(new wxChoiceXmlHandler); +#endif +#if wxUSE_SLIDER + AddHandler(new wxSliderXmlHandler); +#endif #if wxUSE_GAUGE AddHandler(new wxGaugeXmlHandler); #endif @@ -46,9 +67,10 @@ void wxXmlResource::InitAllHandlers() #if wxUSE_SPINCTRL AddHandler(new wxSpinCtrlXmlHandler); #endif - AddHandler(new wxStaticTextXmlHandler); - AddHandler(new wxStaticBitmapXmlHandler); - AddHandler(new wxSliderXmlHandler); +#if wxUSE_SCROLLBAR + AddHandler(new wxScrollBarXmlHandler); +#endif + #if wxUSE_RADIOBOX AddHandler(new wxRadioBoxXmlHandler); AddHandler(new wxRadioButtonXmlHandler); @@ -56,9 +78,6 @@ void wxXmlResource::InitAllHandlers() #if wxUSE_COMBOBOX AddHandler(new wxComboBoxXmlHandler); #endif - AddHandler(new wxChoiceXmlHandler); - AddHandler(new wxCheckListXmlHandler); - AddHandler(new wxSizerXmlHandler); #if wxUSE_NOTEBOOK AddHandler(new wxNotebookXmlHandler); #endif @@ -69,4 +88,10 @@ void wxXmlResource::InitAllHandlers() #if wxUSE_TOOLBAR AddHandler(new wxToolBarXmlHandler); #endif +#if wxUSE_STATLINE + AddHandler(new wxStaticLineXmlHandler); +#endif + AddHandler(new wxUnknownWidgetXmlHandler); + + AddHandler(new wxFrameXmlHandler); }