]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_statbar.h
More work on getting wxLisBox events right
[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
6// RCS-ID:
7// Copyright: (c) 2004 Brian Ravnsgaard Riis
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_XH_STATBAR_H_
12#define _WX_XH_STATBAR_H_
13
b0fb0f3c
JS
14#include "wx/xrc/xmlres.h"
15
dd47af27
VZ
16#if wxUSE_XRC && wxUSE_STATUSBAR
17
1ba7e7b7 18class WXDLLIMPEXP_XRC wxStatusBarXmlHandler : public wxXmlResourceHandler
b0fb0f3c 19{
dd47af27
VZ
20 DECLARE_DYNAMIC_CLASS(wxStatusBarXmlHandler)
21
22public:
23 wxStatusBarXmlHandler();
24 virtual wxObject *DoCreateResource();
25 virtual bool CanHandle(wxXmlNode *node);
b0fb0f3c
JS
26};
27
dd47af27
VZ
28#endif // wxUSE_XRC && wxUSE_STATUSBAR
29
b0fb0f3c 30#endif // _WX_XH_STATBAR_H_