2007-08-15 11:43:32 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/xrc/xh_propdlg.h
|
|
|
|
// Purpose: XML resource handler for wxPropertySheetDialog
|
|
|
|
// Author: Sander Berents
|
|
|
|
// Created: 2007/07/12
|
|
|
|
// Copyright: (c) 2007 Sander Berents
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_PROPDLG_H_
|
|
|
|
#define _WX_XH_PROPDLG_H_
|
|
|
|
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
|
|
|
|
#if wxUSE_XRC
|
|
|
|
|
2018-08-27 14:34:34 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPropertySheetDialog;
|
2007-08-15 11:43:32 +00:00
|
|
|
|
|
|
|
class WXDLLIMPEXP_XRC wxPropertySheetDialogXmlHandler : public wxXmlResourceHandler
|
|
|
|
{
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxPropertySheetDialogXmlHandler);
|
2007-08-15 11:43:32 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
wxPropertySheetDialogXmlHandler();
|
2015-09-07 00:20:42 +00:00
|
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
2007-08-15 11:43:32 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_isInside;
|
|
|
|
wxPropertySheetDialog *m_dialog;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_XRC
|
|
|
|
|
|
|
|
#endif // _WX_XH_PROPDLG_H_
|