2006-09-23 05:14:49 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/xrc/xh_bmpcbox.h
|
|
|
|
// Purpose: XML resource handler for wxBitmapComboBox
|
|
|
|
// Author: Jaakko Salli
|
|
|
|
// Created: Sep-10-2006
|
|
|
|
// Copyright: (c) 2006 Jaakko Salli
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_BMPCBOX_H_
|
|
|
|
#define _WX_XH_BMPCBOX_H_
|
|
|
|
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
|
2006-10-03 10:53:40 -04:00
|
|
|
#if wxUSE_XRC && wxUSE_BITMAPCOMBOBOX
|
2006-09-23 05:14:49 -04:00
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_ADV wxBitmapComboBox;
|
2006-09-23 05:14:49 -04:00
|
|
|
|
|
|
|
class WXDLLIMPEXP_XRC wxBitmapComboBoxXmlHandler : public wxXmlResourceHandler
|
|
|
|
{
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxBitmapComboBoxXmlHandler);
|
2006-10-03 10:53:40 -04:00
|
|
|
|
2006-09-23 05:14:49 -04:00
|
|
|
public:
|
|
|
|
wxBitmapComboBoxXmlHandler();
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
2006-10-03 10:53:40 -04:00
|
|
|
|
2006-09-23 05:14:49 -04:00
|
|
|
private:
|
|
|
|
wxBitmapComboBox* m_combobox;
|
|
|
|
bool m_isInside;
|
|
|
|
};
|
|
|
|
|
2006-10-03 10:53:40 -04:00
|
|
|
#endif // wxUSE_XRC && wxUSE_BITMAPCOMBOBOX
|
2006-09-23 05:14:49 -04:00
|
|
|
|
|
|
|
#endif // _WX_XH_BMPCBOX_H_
|