initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
36
libs/wxWidgets-3.3.1/include/wx/xrc/xh_wizrd.h
Normal file
36
libs/wxWidgets-3.3.1/include/wx/xrc/xh_wizrd.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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() override;
|
||||
virtual bool CanHandle(wxXmlNode *node) override;
|
||||
|
||||
private:
|
||||
wxWizard *m_wizard;
|
||||
wxWizardPageSimple *m_lastSimplePage;
|
||||
};
|
||||
|
||||
#endif // wxUSE_XRC && wxUSE_WIZARDDLG
|
||||
|
||||
#endif // _WX_XH_WIZRD_H_
|
||||
Reference in New Issue
Block a user