0c9ff74f05
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31286 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: xh_bmp.h
|
|
// Purpose: XML resource handler for wxBitmap and wxIcon
|
|
// Author: Vaclav Slavik
|
|
// Created: 2000/09/00
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XH_BMP_H_
|
|
#define _WX_XH_BMP_H_
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
#pragma interface "xh_bmp.h"
|
|
#endif
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
|
|
class WXDLLIMPEXP_XRC wxBitmapXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxBitmapXmlHandler)
|
|
public:
|
|
wxBitmapXmlHandler();
|
|
virtual wxObject *DoCreateResource();
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
};
|
|
|
|
class WXDLLIMPEXP_XRC wxIconXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxIconXmlHandler)
|
|
public:
|
|
wxIconXmlHandler();
|
|
virtual wxObject *DoCreateResource();
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
};
|
|
|
|
|
|
#endif // _WX_XH_BMP_H_
|