]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/xrc/xh_choicbk.h
add a radio box to select the combobox type (#9845)
[wxWidgets.git] / include / wx / xrc / xh_choicbk.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/xrc/xh_choicbk.h
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
12#include "wx/xrc/xmlres.h"
13
14#if wxUSE_XRC && wxUSE_CHOICEBOOK
15
16class WXDLLIMPEXP_FWD_CORE wxChoicebook;
17
18class WXDLLIMPEXP_XRC wxChoicebookXmlHandler : public wxXmlResourceHandler
19{
20 DECLARE_DYNAMIC_CLASS(wxChoicebookXmlHandler)
21
22public:
23 wxChoicebookXmlHandler();
24 virtual wxObject *DoCreateResource();
25 virtual bool CanHandle(wxXmlNode *node);
26
27private:
28 bool m_isInside;
29 wxChoicebook *m_choicebook;
30};
31
32#endif // wxUSE_XRC && wxUSE_CHOICEBOOK
33
34#endif // _WX_XH_CHOICEBK_H_