2000-07-25 14:47:21 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: xh_combo.h
|
|
|
|
// Purpose: XML resource handler for wxComboBox
|
|
|
|
// Author: Bob Mitchell
|
|
|
|
// Created: 2000/03/21
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_COMBO_H_
|
|
|
|
#define _WX_XH_COMBO_H_
|
|
|
|
|
2005-01-07 16:27:20 -05:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2000-07-25 14:47:21 -04:00
|
|
|
#pragma interface "xh_combo.h"
|
|
|
|
#endif
|
|
|
|
|
2001-06-09 18:18:45 -04:00
|
|
|
#include "wx/xrc/xmlres.h"
|
2000-07-25 14:47:21 -04:00
|
|
|
|
|
|
|
#if wxUSE_COMBOBOX
|
|
|
|
|
2003-07-04 09:33:42 -04:00
|
|
|
class WXDLLIMPEXP_XRC wxComboBoxXmlHandler : public wxXmlResourceHandler
|
2000-07-25 14:47:21 -04:00
|
|
|
{
|
2003-06-12 14:10:38 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxComboBoxXmlHandler)
|
2001-05-02 19:01:00 -04:00
|
|
|
public:
|
|
|
|
wxComboBoxXmlHandler();
|
|
|
|
virtual wxObject *DoCreateResource();
|
|
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
|
|
private:
|
|
|
|
bool m_insideBox;
|
|
|
|
wxArrayString strList;
|
2000-07-25 14:47:21 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // _WX_XH_COMBO_H_
|