]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_bmp.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / xrc / xh_bmp.h
CommitLineData
d33a1e8b 1/////////////////////////////////////////////////////////////////////////////
e8a793f0 2// Name: wx/xrc/xh_bmp.h
d33a1e8b
VS
3// Purpose: XML resource handler for wxBitmap and wxIcon
4// Author: Vaclav Slavik
5// Created: 2000/09/00
d33a1e8b
VS
6// Copyright: (c) 2000 Vaclav Slavik
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XH_BMP_H_
11#define _WX_XH_BMP_H_
12
999d9a9f 13#include "wx/xrc/xmlres.h"
d33a1e8b 14
dd47af27 15#if wxUSE_XRC
d33a1e8b 16
30dc3455 17class WXDLLIMPEXP_XRC wxBitmapXmlHandler : public wxXmlResourceHandler
d33a1e8b 18{
dd47af27
VZ
19 DECLARE_DYNAMIC_CLASS(wxBitmapXmlHandler)
20
eb8671f2
VS
21public:
22 wxBitmapXmlHandler();
23 virtual wxObject *DoCreateResource();
24 virtual bool CanHandle(wxXmlNode *node);
d33a1e8b
VS
25};
26
30dc3455 27class WXDLLIMPEXP_XRC wxIconXmlHandler : public wxXmlResourceHandler
d33a1e8b 28{
dd47af27
VZ
29 DECLARE_DYNAMIC_CLASS(wxIconXmlHandler)
30
eb8671f2
VS
31public:
32 wxIconXmlHandler();
33 virtual wxObject *DoCreateResource();
34 virtual bool CanHandle(wxXmlNode *node);
d33a1e8b
VS
35};
36
dd47af27 37#endif // wxUSE_XRC
d33a1e8b
VS
38
39#endif // _WX_XH_BMP_H_