mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 20:11:51 +00:00
36 lines
979 B
C++
36 lines
979 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/xrc/xh_wizrd.h
|
|
// Purpose: XML resource handler for wxWizard
|
|
// Author: Vaclav Slavik
|
|
// Created: 2003/03/02
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XH_WIZRD_H_
|
|
#define _WX_XH_WIZRD_H_
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
#if wxUSE_XRC && wxUSE_WIZARDDLG
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWizard;
|
|
class WXDLLIMPEXP_FWD_CORE wxWizardPageSimple;
|
|
|
|
class WXDLLIMPEXP_XRC wxWizardXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
wxDECLARE_DYNAMIC_CLASS(wxWizardXmlHandler);
|
|
|
|
public:
|
|
wxWizardXmlHandler();
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
|
|
|
private:
|
|
wxWizard *m_wizard;
|
|
wxWizardPageSimple *m_lastSimplePage;
|
|
};
|
|
|
|
#endif // wxUSE_XRC && wxUSE_WIZARDDLG
|
|
|
|
#endif // _WX_XH_WIZRD_H_
|