mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-21 10:01:31 +00:00
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/osx/datetimectrl_osx.cpp
|
|
// Purpose: Implementation of wxDateTimePickerCtrl for OS X.
|
|
// Author: Vadim Zeitlin
|
|
// Created: 2011-12-18
|
|
// RCS-ID: $Id: datetimectrl_osx.cpp 70071 2011-12-20 21:27:14Z VZ $
|
|
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// for compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_DATEPICKCTRL || wxUSE_TIMEPICKCTRL
|
|
|
|
#ifndef WX_PRECOMP
|
|
#endif // WX_PRECOMP
|
|
|
|
#include "wx/datetimectrl.h"
|
|
|
|
#include "wx/osx/core/private/datetimectrl.h"
|
|
|
|
// ============================================================================
|
|
// wxDateTimePickerCtrl implementation
|
|
// ============================================================================
|
|
|
|
wxDateTimeWidgetImpl* wxDateTimePickerCtrl::GetDateTimePeer() const
|
|
{
|
|
return static_cast<wxDateTimeWidgetImpl*>(GetPeer());
|
|
}
|
|
|
|
void wxDateTimePickerCtrl::SetValue(const wxDateTime& dt)
|
|
{
|
|
GetDateTimePeer()->SetDateTime(dt);
|
|
}
|
|
|
|
wxDateTime wxDateTimePickerCtrl::GetValue() const
|
|
{
|
|
return GetDateTimePeer()->GetDateTime();
|
|
}
|
|
|
|
|
|
#endif // wxUSE_DATEPICKCTRL || wxUSE_TIMEPICKCTRL
|