]>
Commit | Line | Data |
---|---|---|
9aaf1192 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e8a793f0 | 2 | // Name: wx/xrc/xh_choicbk.h |
9aaf1192 WS |
3 | // Purpose: XML resource handler for wxChoicebook |
4 | // Author: Vaclav Slavik | |
5 | // Copyright: (c) 2000 Vaclav Slavik | |
6 | // Licence: wxWindows licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | #ifndef _WX_XH_CHOICEBK_H_ | |
10 | #define _WX_XH_CHOICEBK_H_ | |
11 | ||
e8a793f0 WS |
12 | #include "wx/defs.h" |
13 | ||
14 | #if wxUSE_XRC && wxUSE_CHOICEBOOK | |
9aaf1192 | 15 | |
e8a793f0 | 16 | #include "wx/xrc/xmlres.h" |
9aaf1192 WS |
17 | |
18 | class WXDLLEXPORT wxChoicebook; | |
19 | ||
20 | class WXDLLIMPEXP_XRC wxChoicebookXmlHandler : public wxXmlResourceHandler | |
21 | { | |
22 | DECLARE_DYNAMIC_CLASS(wxChoicebookXmlHandler) | |
23 | public: | |
24 | wxChoicebookXmlHandler(); | |
25 | virtual wxObject *DoCreateResource(); | |
26 | virtual bool CanHandle(wxXmlNode *node); | |
27 | ||
28 | private: | |
29 | bool m_isInside; | |
30 | wxChoicebook *m_choicebook; | |
31 | }; | |
32 | ||
e8a793f0 | 33 | #endif // wxUSE_XRC && wxUSE_CHOICEBOOK |
9aaf1192 WS |
34 | |
35 | #endif // _WX_XH_CHOICEBK_H_ |