]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_propdlg.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / xrc / xh_propdlg.h
CommitLineData
f8efd2df
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/xrc/xh_propdlg.h
3// Purpose: XML resource handler for wxPropertySheetDialog
4// Author: Sander Berents
5// Created: 2007/07/12
f8efd2df
VZ
6// Copyright: (c) 2007 Sander Berents
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XH_PROPDLG_H_
11#define _WX_XH_PROPDLG_H_
12
13#include "wx/xrc/xmlres.h"
14
15#if wxUSE_XRC
16
ca6328c4 17class WXDLLIMPEXP_FWD_ADV wxPropertySheetDialog;
f8efd2df
VZ
18
19class WXDLLIMPEXP_XRC wxPropertySheetDialogXmlHandler : public wxXmlResourceHandler
20{
21 DECLARE_DYNAMIC_CLASS(wxPropertySheetDialogXmlHandler)
22
23public:
24 wxPropertySheetDialogXmlHandler();
25 virtual wxObject *DoCreateResource();
26 virtual bool CanHandle(wxXmlNode *node);
27
28private:
29 bool m_isInside;
30 wxPropertySheetDialog *m_dialog;
31};
32
33#endif // wxUSE_XRC
34
35#endif // _WX_XH_PROPDLG_H_