]> git.saurik.com Git - wxWidgets.git/blame - include/wx/xrc/xh_datectrl.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / xrc / xh_datectrl.h
CommitLineData
310e47b3 1/////////////////////////////////////////////////////////////////////////////
e8a793f0 2// Name: wx/xrc/xh_datectrl.h
310e47b3
VS
3// Purpose: XML resource handler for wxDatePickerCtrl
4// Author: Vaclav Slavik
5// Created: 2005-02-07
310e47b3
VS
6// Copyright: (c) 2005 Vaclav Slavik
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XH_DATECTRL_H_
11#define _WX_XH_DATECTRL_H_
12
310e47b3
VS
13#include "wx/xrc/xmlres.h"
14
dd47af27 15#if wxUSE_XRC && wxUSE_DATEPICKCTRL
1ee3fb38 16
310e47b3
VS
17class WXDLLIMPEXP_XRC wxDateCtrlXmlHandler : public wxXmlResourceHandler
18{
dd47af27
VZ
19 DECLARE_DYNAMIC_CLASS(wxDateCtrlXmlHandler)
20
310e47b3
VS
21public:
22 wxDateCtrlXmlHandler();
23 virtual wxObject *DoCreateResource();
24 virtual bool CanHandle(wxXmlNode *node);
25};
26
dd47af27 27#endif // wxUSE_XRC && wxUSE_DATEPICKCTRL
1ee3fb38 28
310e47b3 29#endif // _WX_XH_DATECTRL_H_