]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/xrc/xh_radbx.h | |
3 | // Purpose: XML resource handler for wxRadioBox | |
4 | // Author: Bob Mitchell | |
5 | // Created: 2000/03/21 | |
6 | // Copyright: (c) 2000 Bob Mitchell and Verant Interactive | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_XH_RADBX_H_ | |
11 | #define _WX_XH_RADBX_H_ | |
12 | ||
13 | #include "wx/xrc/xmlres.h" | |
14 | ||
15 | #if wxUSE_XRC && wxUSE_RADIOBOX | |
16 | ||
17 | class WXDLLIMPEXP_XRC wxRadioBoxXmlHandler : public wxXmlResourceHandler | |
18 | { | |
19 | DECLARE_DYNAMIC_CLASS(wxRadioBoxXmlHandler) | |
20 | ||
21 | public: | |
22 | wxRadioBoxXmlHandler(); | |
23 | virtual wxObject *DoCreateResource(); | |
24 | virtual bool CanHandle(wxXmlNode *node); | |
25 | ||
26 | private: | |
27 | bool m_insideBox; | |
28 | ||
29 | // the items labels | |
30 | wxArrayString m_labels; | |
31 | ||
32 | #if wxUSE_TOOLTIPS | |
33 | // the items tooltips | |
34 | wxArrayString m_tooltips; | |
35 | #endif // wxUSE_TOOLTIPS | |
36 | ||
37 | // the item help text | |
38 | wxArrayString m_helptexts; | |
39 | wxArrayInt m_helptextSpecified; | |
40 | ||
41 | // if the corresponding array element is 1, the radiobox item is | |
42 | // disabled/hidden | |
43 | wxArrayInt m_isEnabled, | |
44 | m_isShown; | |
45 | }; | |
46 | ||
47 | #endif // wxUSE_XRC && wxUSE_RADIOBOX | |
48 | ||
49 | #endif // _WX_XH_RADBX_H_ |