]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xrc/xh_wizrd.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxWizard
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2000 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_wizrd.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
24 #include "wx/xrc/xh_wizrd.h"
26 #include "wx/wizard.h"
29 wxWizardXmlHandler::wxWizardXmlHandler() : wxXmlResourceHandler()
32 m_lastSimplePage
= NULL
;
33 XRC_ADD_STYLE(wxWIZARD_EX_HELPBUTTON
);
36 wxObject
*wxWizardXmlHandler::DoCreateResource()
38 if (m_class
== wxT("wxWizard"))
40 XRC_MAKE_INSTANCE(wiz
, wxWizard
)
42 long style
= GetStyle(wxT("exstyle"), 0);
44 wiz
->SetExtraStyle(style
);
45 wiz
->Create(m_parentAsWindow
,
47 GetText(wxT("title")),
51 wxWizard
*old
= m_wizard
;
53 m_lastSimplePage
= NULL
;
54 CreateChildren(wiz
, true /*this handler only*/);
60 wxWizardPage
*page
= NULL
;
61 if (m_class
== wxT("wxWizardPageSimple"))
63 XRC_MAKE_INSTANCE(p
, wxWizardPageSimple
)
64 p
->Create(m_wizard
, NULL
, NULL
, GetBitmap());
66 wxWizardPageSimple::Chain(m_lastSimplePage
, p
);
70 else /*if (m_class == wxT("wxWizardPage"))*/
72 wxWizardPage
*p
= NULL
;
74 p
= wxStaticCast(m_instance
, wxWizardPage
);
76 wxLogError(wxT("wxWizardPage is abstract class, must be subclassed"));
77 p
->Create(m_wizard
, GetBitmap());
81 page
->SetName(GetName());
90 bool wxWizardXmlHandler::CanHandle(wxXmlNode
*node
)
92 return IsOfClass(node
, wxT("wxWizard")) ||
94 (IsOfClass(node
, wxT("wxWizardPage")) ||
95 IsOfClass(node
, wxT("wxWizardPageSimple")))
99 #endif // wxUSE_WIZARDDLG