X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/db679b8c836e69c111cdc31e62cf92cebe4f938f..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/xrc/xh_chckl.h?ds=sidebyside diff --git a/include/wx/xrc/xh_chckl.h b/include/wx/xrc/xh_chckl.h index d3a2bc2abe..19725dde00 100644 --- a/include/wx/xrc/xh_chckl.h +++ b/include/wx/xrc/xh_chckl.h @@ -1,9 +1,8 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_chckl.h +// Name: wx/xrc/xh_chckl.h // Purpose: XML resource handler for wxCheckListBox // Author: Bob Mitchell // Created: 2000/03/21 -// RCS-ID: $Id$ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -11,26 +10,24 @@ #ifndef _WX_XH_CHCKL_H_ #define _WX_XH_CHCKL_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "xh_chckl.h" -#endif - #include "wx/xrc/xmlres.h" -#if wxUSE_CHECKLISTBOX +#if wxUSE_XRC && wxUSE_CHECKLISTBOX class WXDLLIMPEXP_XRC wxCheckListBoxXmlHandler : public wxXmlResourceHandler { -DECLARE_DYNAMIC_CLASS(wxCheckListBoxXmlHandler) + DECLARE_DYNAMIC_CLASS(wxCheckListBoxXmlHandler) + public: wxCheckListBoxXmlHandler(); virtual wxObject *DoCreateResource(); virtual bool CanHandle(wxXmlNode *node); + private: bool m_insideBox; wxArrayString strList; }; -#endif +#endif // wxUSE_XRC && wxUSE_CHECKLISTBOX #endif // _WX_XH_CHECKLIST_H_