Added wx.DatePickerCtrl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-02-18 04:38:30 +00:00
parent eba2f031e7
commit b3b61cdaa0
7 changed files with 275 additions and 18 deletions

View File

@@ -1273,4 +1273,22 @@ public:
//---------------------------------------------------------------------------
class wxDateEvent : public wxCommandEvent
{
public:
wxDateEvent(wxWindow *win, const wxDateTime& dt, wxEventType type);
const wxDateTime& GetDate() const;
void SetDate(const wxDateTime &date);
};
%constant wxEventType wxEVT_DATE_CHANGED;
%pythoncode {
EVT_DATE_CHANGED = wx.PyEventBinder( wxEVT_DATE_CHANGED, 1 )
}
//---------------------------------------------------------------------------