34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
///////////////////////////////////////////////////////////////////////////////
 | 
						|
// 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.
 | 
						|
    virtual void SetValue(const wxDateTime& dt) wxOVERRIDE;
 | 
						|
    virtual wxDateTime GetValue() const wxOVERRIDE;
 | 
						|
 | 
						|
    // Implementation only.
 | 
						|
    virtual void OSXGenerateEvent(const wxDateTime& dt) = 0;
 | 
						|
 | 
						|
protected:
 | 
						|
    wxDateTimeWidgetImpl* GetDateTimePeer() const;
 | 
						|
};
 | 
						|
 | 
						|
#endif // _WX_OSX_DATETIMECTRL_H_
 |