]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dateevt.h
support for iPhone callbacks
[wxWidgets.git] / interface / wx / dateevt.h
index 5f6f2ae77adf1bd4c63129c8b5e82ec42af63865..73f1d501926fe9c9d2d516b00066766b635f0600 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxDateEvent
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
 class wxDateEvent : public wxCommandEvent
 {
 public:
+    wxDateEvent();
+    wxDateEvent(wxWindow *win, const wxDateTime& dt, wxEventType type);
+
     /**
         Returns the date.
     */
-    const wxDateTime GetDate() const;
+    const wxDateTime& GetDate() const;
 
     /**
         Sets the date carried by the event, normally only used by the library
@@ -31,3 +34,5 @@ public:
     void SetDate(const wxDateTime& date);
 };
 
+wxEventType wxEVT_DATE_CHANGED;
+wxEventType wxEVT_TIME_CHANGED;