]>
Commit | Line | Data |
---|---|---|
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 | ||
dd47af27 | 14 | #if wxUSE_XRC && wxUSE_LISTBOOK |
9aaf1192 | 15 | |
b5dbe15d | 16 | class WXDLLIMPEXP_FWD_CORE wxListbook; |
9aaf1192 WS |
17 | |
18 | class WXDLLIMPEXP_XRC wxListbookXmlHandler : public wxXmlResourceHandler | |
19 | { | |
dd47af27 VZ |
20 | DECLARE_DYNAMIC_CLASS(wxListbookXmlHandler) |
21 | ||
9aaf1192 WS |
22 | public: |
23 | wxListbookXmlHandler(); | |
24 | virtual wxObject *DoCreateResource(); | |
25 | virtual bool CanHandle(wxXmlNode *node); | |
26 | ||
27 | private: | |
28 | bool m_isInside; | |
29 | wxListbook *m_listbook; | |
30 | }; | |
31 | ||
dd47af27 | 32 | #endif // wxUSE_XRC && wxUSE_LISTBOOK |
9aaf1192 WS |
33 | |
34 | #endif // _WX_XH_LISTBK_H_ |