]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_listbk.h
added wxUSE_ACTIVEX which depends on wxUSE_VARIANT and which wxUSE_MEDIACTRL depends...
[wxWidgets.git] / include / wx / xrc / xh_listbk.h
CommitLineData
9aaf1192 1/////////////////////////////////////////////////////////////////////////////
e8a793f0 2// Name: wx/xrc/xh_listbk.h
9aaf1192
WS
3// Purpose: XML resource handler for wxListbook
4// Author: Vaclav Slavik
5// Copyright: (c) 2000 Vaclav Slavik
6// Licence: wxWindows licence
7/////////////////////////////////////////////////////////////////////////////
8
9#ifndef _WX_XH_LISTBK_H_
10#define _WX_XH_LISTBK_H_
11
9aaf1192
WS
12#include "wx/xrc/xmlres.h"
13
14#if wxUSE_LISTBOOK
15
16class WXDLLEXPORT wxListbook;
17
18class WXDLLIMPEXP_XRC wxListbookXmlHandler : public wxXmlResourceHandler
19{
20DECLARE_DYNAMIC_CLASS(wxListbookXmlHandler)
21public:
22 wxListbookXmlHandler();
23 virtual wxObject *DoCreateResource();
24 virtual bool CanHandle(wxXmlNode *node);
25
26private:
27 bool m_isInside;
28 wxListbook *m_listbook;
29};
30
31#endif
32
33#endif // _WX_XH_LISTBK_H_