2005-01-14 20:31:10 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/datectrl.h
|
|
|
|
// Purpose: implements wxDatePickerCtrl
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2005-01-09
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DATECTRL_H_
|
|
|
|
#define _WX_DATECTRL_H_
|
|
|
|
|
|
|
|
#include "wx/control.h" // the base class
|
|
|
|
#include "wx/datetime.h"
|
|
|
|
|
|
|
|
#define wxDatePickerCtrlNameStr _T("datectrl")
|
|
|
|
|
2005-01-19 14:31:40 -05:00
|
|
|
// wxDatePickerCtrl styles
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// default style on this platform, either wxDP_SPIN or wxDP_DROPDOWN
|
|
|
|
wxDP_DEFAULT = 0,
|
|
|
|
|
|
|
|
// a spin control-like date picker (not supported in generic version)
|
|
|
|
wxDP_SPIN = 1,
|
|
|
|
|
|
|
|
// a combobox-like date picker (not supported in mac version)
|
|
|
|
wxDP_DROPDOWN = 2
|
|
|
|
};
|
|
|
|
|
2005-01-14 20:31:10 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDatePickerCtrl: allow the user to enter the date
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_ADV wxDatePickerCtrlBase : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/*
|
|
|
|
The derived classes should implement ctor and Create() method with the
|
|
|
|
following signature:
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxDateTime& dt = wxDefaultDateTime,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2005-01-19 14:31:40 -05:00
|
|
|
long style = wxDP_DEFAULT,
|
2005-01-14 20:31:10 -05:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxDatePickerCtrlNameStr);
|
|
|
|
*/
|
|
|
|
|
|
|
|
// set/get the date
|
|
|
|
virtual void SetValue(const wxDateTime& dt) = 0;
|
|
|
|
virtual wxDateTime GetValue() const = 0;
|
|
|
|
|
|
|
|
// set/get the allowed valid range for the dates, if either/both of them
|
|
|
|
// are invalid, there is no corresponding limit and if neither is set
|
|
|
|
// GetRange() returns false
|
|
|
|
virtual void SetRange(const wxDateTime& dt1, const wxDateTime& dt2) = 0;
|
|
|
|
virtual bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/msw/datectrl.h"
|
|
|
|
#else
|
2005-01-19 08:55:48 -05:00
|
|
|
#include "wx/generic/datectrl.h"
|
2005-01-14 20:31:10 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // _WX_DATECTRL_H_
|
|
|
|
|