]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_wizrd.h
add a radio box to select the combobox type (#9845)
[wxWidgets.git] / include / wx / xrc / xh_wizrd.h
CommitLineData
e5db28fd 1/////////////////////////////////////////////////////////////////////////////
e8a793f0 2// Name: wx/xrc/xh_wizrd.h
e5db28fd
VS
3// Purpose: XML resource handler for wxWizard
4// Author: Vaclav Slavik
5// Created: 2003/03/02
6// RCS-ID: $Id$
7// Copyright: (c) 2000 Vaclav Slavik
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_XH_WIZRD_H_
dd47af27 12#define _WX_XH_WIZRD_H_
e5db28fd 13
e5db28fd
VS
14#include "wx/xrc/xmlres.h"
15
dd47af27 16#if wxUSE_XRC && wxUSE_WIZARDDLG
e5db28fd 17
4f7d425f
VZ
18class WXDLLIMPEXP_FWD_ADV wxWizard;
19class WXDLLIMPEXP_FWD_ADV wxWizardPageSimple;
e5db28fd 20
30dc3455 21class WXDLLIMPEXP_XRC wxWizardXmlHandler : public wxXmlResourceHandler
e5db28fd 22{
dd47af27
VZ
23 DECLARE_DYNAMIC_CLASS(wxWizardXmlHandler)
24
e5db28fd
VS
25public:
26 wxWizardXmlHandler();
27 virtual wxObject *DoCreateResource();
28 virtual bool CanHandle(wxXmlNode *node);
29
30private:
31 wxWizard *m_wizard;
32 wxWizardPageSimple *m_lastSimplePage;
33};
34
dd47af27 35#endif // wxUSE_XRC && wxUSE_WIZARDDLG
e5db28fd 36
dd47af27 37#endif // _WX_XH_WIZRD_H_