1/////////////////////////////////////////////////////////////////////////////
2// Name:        wx/xrc/xh_propdlg.h
3// Purpose:     XML resource handler for wxPropertySheetDialog
4// Author:      Sander Berents
5// Created:     2007/07/12
6// RCS-ID:      $Id: xh_propdlg.h 53135 2008-04-12 02:31:04Z VZ $
7// Copyright:   (c) 2007 Sander Berents
8// Licence:     wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_XH_PROPDLG_H_
12#define _WX_XH_PROPDLG_H_
13
14#include "wx/xrc/xmlres.h"
15
16#if wxUSE_XRC
17
18#if wxABI_VERSION >= 20805
19class WXDLLIMPEXP_FWD_ADV wxPropertySheetDialog;
20
21class WXDLLIMPEXP_XRC wxPropertySheetDialogXmlHandler : public wxXmlResourceHandler
22{
23    DECLARE_DYNAMIC_CLASS(wxPropertySheetDialogXmlHandler)
24
25public:
26    wxPropertySheetDialogXmlHandler();
27    virtual wxObject *DoCreateResource();
28    virtual bool CanHandle(wxXmlNode *node);
29
30private:
31    bool m_isInside;
32    wxPropertySheetDialog *m_dialog;
33};
34#endif // wxABI_VERSION >= 20805
35
36#endif // wxUSE_XRC
37
38#endif // _WX_XH_PROPDLG_H_
39