X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f1781e98b6da4b83716eeaf4b67475dd976234d1..fb52c2b67139da20b026475aa48d73522e6afe2b:/include/wx/dateevt.h diff --git a/include/wx/dateevt.h b/include/wx/dateevt.h index 59e5b1df53..f1f4f60d67 100644 --- a/include/wx/dateevt.h +++ b/include/wx/dateevt.h @@ -34,10 +34,13 @@ public: const wxDateTime& GetDate() const { return m_date; } void SetDate(const wxDateTime &date) { m_date = date; } + // default copy ctor, assignment operator and dtor are ok + virtual wxEvent *Clone() const { return new wxDateEvent(*this); } + private: wxDateTime m_date; - DECLARE_DYNAMIC_CLASS_NO_COPY(wxDateEvent) + DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDateEvent) }; // ---------------------------------------------------------------------------- @@ -50,7 +53,11 @@ END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*wxDateEventFunction)(wxDateEvent&); -#define EVT_DATE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_DATE_CHANGED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxDateEventFunction, & fn ), (wxObject *) NULL), +#define wxDateEventHandler(func) \ + (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDateEventFunction, &func) + +#define EVT_DATE_CHANGED(id, fn) \ + wx__DECLARE_EVT1(wxEVT_DATE_CHANGED, id, wxDateEventHandler(fn)) #ifdef _WX_DEFINE_DATE_EVENTS_ DEFINE_EVENT_TYPE(wxEVT_DATE_CHANGED)