1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/xrc/xh_auinotbk.h
3 // Purpose: XML resource handler for wxAuiNotebook
4 // Author: Steve Lamerton
7 // Copyright: (c) 2009 Steve Lamerton
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_XRC_XH_AUINOTEBOOK_H_
12 #define _WX_XRC_XH_AUINOTEBOOK_H_
14 #include "wx/xrc/xmlres.h"
16 class WXDLLIMPEXP_FWD_AUI wxAuiNotebook
;
18 #if wxUSE_XRC && wxUSE_AUI
20 class WXDLLIMPEXP_AUI wxAuiNotebookXmlHandler
: public wxXmlResourceHandler
23 wxAuiNotebookXmlHandler();
24 virtual wxObject
*DoCreateResource();
25 virtual bool CanHandle(wxXmlNode
*node
);
29 wxAuiNotebook
*m_notebook
;
31 wxDECLARE_DYNAMIC_CLASS(wxAuiNotebookXmlHandler
);
34 #endif // wxUSE_XRC && wxUSE_AUI
36 #endif // _WX_XRC_XH_AUINOTEBOOK_H_