X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b0ca8b999417137b955e6e837ee331a9b6107eb..219a5f10c0e5efc3aad7ff3d050a92e7fed88806:/contrib/src/xml/xmlrsall.cpp?ds=sidebyside diff --git a/contrib/src/xml/xmlrsall.cpp b/contrib/src/xml/xmlrsall.cpp index 5e5bda02e4..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 @@ -66,4 +85,13 @@ void wxXmlResource::InitAllHandlers() #if wxUSE_LISTBOX AddHandler(new wxListBoxXmlHandler); #endif +#if wxUSE_TOOLBAR + AddHandler(new wxToolBarXmlHandler); +#endif +#if wxUSE_STATLINE + AddHandler(new wxStaticLineXmlHandler); +#endif + AddHandler(new wxUnknownWidgetXmlHandler); + + AddHandler(new wxFrameXmlHandler); }