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