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