1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/xrc/xh_listbk.h
3 // Purpose: XML resource handler for wxListbook
4 // Author: Vaclav Slavik
5 // Copyright: (c) 2000 Vaclav Slavik
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef _WX_XH_LISTBK_H_
10 #define _WX_XH_LISTBK_H_
12 #include "wx/xrc/xmlres.h"
14 #if wxUSE_XRC && wxUSE_LISTBOOK
16 class WXDLLIMPEXP_FWD_CORE wxListbook
;
18 class WXDLLIMPEXP_XRC wxListbookXmlHandler
: public wxXmlResourceHandler
20 DECLARE_DYNAMIC_CLASS(wxListbookXmlHandler
)
23 wxListbookXmlHandler();
24 virtual wxObject
*DoCreateResource();
25 virtual bool CanHandle(wxXmlNode
*node
);
29 wxListbook
*m_listbook
;
32 #endif // wxUSE_XRC && wxUSE_LISTBOOK
34 #endif // _WX_XH_LISTBK_H_