30 lines
845 B
C
30 lines
845 B
C
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: xh_datectrl.h
|
||
|
// Purpose: XML resource handler for wxDatePickerCtrl
|
||
|
// Author: Vaclav Slavik
|
||
|
// Created: 2005-02-07
|
||
|
// RCS-ID: $Id$
|
||
|
// Copyright: (c) 2005 Vaclav Slavik
|
||
|
// Licence: wxWindows licence
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _WX_XH_DATECTRL_H_
|
||
|
#define _WX_XH_DATECTRL_H_
|
||
|
|
||
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
||
|
#pragma interface "xh_datectrl.h"
|
||
|
#endif
|
||
|
|
||
|
#include "wx/xrc/xmlres.h"
|
||
|
|
||
|
class WXDLLIMPEXP_XRC wxDateCtrlXmlHandler : public wxXmlResourceHandler
|
||
|
{
|
||
|
DECLARE_DYNAMIC_CLASS(wxDateCtrlXmlHandler)
|
||
|
public:
|
||
|
wxDateCtrlXmlHandler();
|
||
|
virtual wxObject *DoCreateResource();
|
||
|
virtual bool CanHandle(wxXmlNode *node);
|
||
|
};
|
||
|
|
||
|
#endif // _WX_XH_DATECTRL_H_
|