wxDatePickerCtrlThis control allows the user to select a date. Unlike wxCalendarCtrl, which is a relatively big control, wxDatePickerCtrl is implemented as a small window showing the currently selected date. The control can be edited using the keyboard, and can also display a popup window for more user-friendly date selection, depending on the styles used and the platform, except PalmOS where date is selected using native dialog. It is only available if wxUSE_DATEPICKCTRL is set to 1. Derived from
wxControl Include files <wx/datectrl.h> (only available if wxUSE_DATEPICKCTRL is set to 1) Window styles
Event handling
See also Members
wxDatePickerCtrl::wxDatePickerCtrl
wxDatePickerCtrl::wxDatePickerCtrlwxDatePickerCtrl(wxWindow *parent, wxWindowID id, const wxDateTime& dt = wxDefaultDateTime, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, const wxValidator& validator = wxDefaultValidator, const wxString& name = "datectrl") Initializes the object and calls Create with all the parameters.
wxDatePickerCtrl::Createbool Create(wxWindow *parent, wxWindowID id, const wxDateTime& dt = wxDefaultDateTime, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDP_DEFAULT | wxDP_SHOWCENTURY, const wxValidator& validator = wxDefaultValidator, const wxString& name = "datectrl") Parameters parent
id
dt
pos
size
style
validator
name
Return value true if the control was successfully created or false if creation failed.
wxDatePickerCtrl::GetRangebool GetRange(wxDateTime *dt1, wxDateTime *dt2) const If the control had been previously limited to a range of dates using SetRange(), returns the lower and upper bounds of this range. If no range is set (or only one of the bounds is set), dt1 and/or dt2 are set to be invalid. Parameters dt1
dt2
Return value false if no range limits are currently set, true if at least one bound is set.
wxDatePickerCtrl::GetValuewxDateTime GetValue() const Returns the currently selected. If there is no selection or the selection is outside of the current range, an invalid object is returned.
wxDatePickerCtrl::SetFormatvoid SetFormat(const wxChar* format) Please note that this function is only available in the generic version of this control. The native version always uses the current system locale. Sets the display format for the date in the control. See wxDateTime for the meaning of format strings. Remarks If the format parameter is invalid, the behaviour is undefined.
wxDatePickerCtrl::SetRangevoid SetRange(const wxDateTime& dt1, const wxDateTime& dt2) Sets the valid range for the date selection. If dt1 is valid, it becomes the earliest date (inclusive) accepted by the control. If dt2 is valid, it becomes the latest possible date. Remarks If the current value of the control is outside of the newly set range bounds, the behaviour is undefined.
wxDatePickerCtrl::SetValuevoid SetValue(const wxDateTime& dt) Changes the current value of the control. The date should be valid and included in the currently selected range, if any. Calling this method does not result in a date change event.
|