40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/xrc/xh_bmp.h
|
|
// Purpose: XML resource handler for wxBitmap and wxIcon
|
|
// Author: Vaclav Slavik
|
|
// Created: 2000/09/00
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XH_BMP_H_
|
|
#define _WX_XH_BMP_H_
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
#if wxUSE_XRC
|
|
|
|
class WXDLLIMPEXP_XRC wxBitmapXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
wxDECLARE_DYNAMIC_CLASS(wxBitmapXmlHandler);
|
|
|
|
public:
|
|
wxBitmapXmlHandler();
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
|
};
|
|
|
|
class WXDLLIMPEXP_XRC wxIconXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
wxDECLARE_DYNAMIC_CLASS(wxIconXmlHandler);
|
|
|
|
public:
|
|
wxIconXmlHandler();
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
|
};
|
|
|
|
#endif // wxUSE_XRC
|
|
|
|
#endif // _WX_XH_BMP_H_
|