2000-07-31 18:03:49 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: xh_listb.h
|
|
|
|
// Purpose: XML resource handler for wxListbox
|
|
|
|
// Author: Bob Mitchell & Vaclav Slavik
|
|
|
|
// Created: 2000/07/29
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2000 Bob Mitchell & Vaclav Slavik
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_LISTB_H_
|
|
|
|
#define _WX_XH_LISTB_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "xh_listb.h"
|
|
|
|
#endif
|
|
|
|
|
2001-06-09 18:18:45 -04:00
|
|
|
#include "wx/xrc/xmlres.h"
|
2000-07-31 18:03:49 -04:00
|
|
|
|
|
|
|
#if wxUSE_LISTBOX
|
|
|
|
|
2001-06-05 18:03:02 -04:00
|
|
|
class WXXMLDLLEXPORT wxListBoxXmlHandler : public wxXmlResourceHandler
|
2000-07-31 18:03:49 -04:00
|
|
|
{
|
2001-05-02 19:01:00 -04:00
|
|
|
public:
|
|
|
|
wxListBoxXmlHandler();
|
|
|
|
virtual wxObject *DoCreateResource();
|
|
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
|
|
private:
|
|
|
|
bool m_insideBox;
|
|
|
|
wxArrayString strList;
|
2000-07-31 18:03:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // _WX_XH_LISTB_H_
|