1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxDateEvent
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
11 This event class holds information about a date change and is used together
12 with wxDatePickerCtrl. It also serves as a base class
18 class wxDateEvent
: public wxCommandEvent
22 wxDateEvent(wxWindow
*win
, const wxDateTime
& dt
, wxEventType type
);
27 const wxDateTime
& GetDate() const;
30 Sets the date carried by the event, normally only used by the library
33 void SetDate(const wxDateTime
& date
);
36 wxEventType wxEVT_DATE_CHANGED
;
37 wxEventType wxEVT_TIME_CHANGED
;