]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_statbar.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / xrc / xh_statbar.h
CommitLineData
b0fb0f3c 1/////////////////////////////////////////////////////////////////////////////
e8a793f0 2// Name: wx/xrc/xh_statbar.h
b0fb0f3c
JS
3// Purpose: XML resource handler for wxStatusBar
4// Author: Brian Ravnsgaard Riis
5// Created: 2004/01/21
b0fb0f3c
JS
6// Copyright: (c) 2004 Brian Ravnsgaard Riis
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XH_STATBAR_H_
11#define _WX_XH_STATBAR_H_
12
b0fb0f3c
JS
13#include "wx/xrc/xmlres.h"
14
dd47af27
VZ
15#if wxUSE_XRC && wxUSE_STATUSBAR
16
1ba7e7b7 17class WXDLLIMPEXP_XRC wxStatusBarXmlHandler : public wxXmlResourceHandler
b0fb0f3c 18{
dd47af27
VZ
19 DECLARE_DYNAMIC_CLASS(wxStatusBarXmlHandler)
20
21public:
22 wxStatusBarXmlHandler();
23 virtual wxObject *DoCreateResource();
24 virtual bool CanHandle(wxXmlNode *node);
b0fb0f3c
JS
25};
26
dd47af27
VZ
27#endif // wxUSE_XRC && wxUSE_STATUSBAR
28
b0fb0f3c 29#endif // _WX_XH_STATBAR_H_