]> git.saurik.com Git - wxWidgets.git/blob - include/wx/xrc/xh_notbk.h
moving XRC to the core
[wxWidgets.git] / include / wx / xrc / xh_notbk.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_notbk.h
3 // Purpose: XML resource handler for wxNotebook
4 // Author: Vaclav Slavik
5 // RCS-ID: $Id$
6 // Copyright: (c) 2000 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef _WX_XH_NOTBK_H_
11 #define _WX_XH_NOTBK_H_
12
13 #if defined(__GNUG__) && !defined(__APPLE__)
14 #pragma interface "xh_notbk.h"
15 #endif
16
17 #include "wx/xrc/xmlres.h"
18
19 #if wxUSE_NOTEBOOK
20
21 class WXDLLEXPORT wxNotebook;
22
23 class WXDLLIMPEXP_XRC wxNotebookXmlHandler : public wxXmlResourceHandler
24 {
25 DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler)
26 public:
27 wxNotebookXmlHandler();
28 virtual wxObject *DoCreateResource();
29 virtual bool CanHandle(wxXmlNode *node);
30
31 private:
32 bool m_isInside;
33 wxNotebook *m_notebook;
34 };
35
36 #endif
37
38 #endif // _WX_XH_NOTBK_H_