2011-12-20 16:27:14 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/osx/datetimectrl.h
|
|
|
|
// Purpose: Declaration of wxOSX-specific wxDateTimePickerCtrl class.
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2011-12-18
|
|
|
|
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_OSX_DATETIMECTRL_H_
|
|
|
|
#define _WX_OSX_DATETIMECTRL_H_
|
|
|
|
|
|
|
|
class wxDateTimeWidgetImpl;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDateTimePickerCtrl
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_ADV wxDateTimePickerCtrl : public wxDateTimePickerCtrlBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Implement the base class pure virtuals.
|
2019-04-05 14:08:53 -04:00
|
|
|
virtual void SetValue(const wxDateTime& dt) wxOVERRIDE;
|
|
|
|
virtual wxDateTime GetValue() const wxOVERRIDE;
|
2011-12-20 16:27:14 -05:00
|
|
|
|
|
|
|
// Implementation only.
|
|
|
|
virtual void OSXGenerateEvent(const wxDateTime& dt) = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxDateTimeWidgetImpl* GetDateTimePeer() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_OSX_DATETIMECTRL_H_
|