X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c2ca375c5620209d77a88d2d378bdcdedbc82e7e..28efe6544f28ba7b37a77c033901fdd6f3978b82:/include/wx/timer.h diff --git a/include/wx/timer.h b/include/wx/timer.h index 1a5d5d70f8..3135963190 100644 --- a/include/wx/timer.h +++ b/include/wx/timer.h @@ -149,26 +149,28 @@ private: // wxTimerEvent // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxTimerEvent : public wxEvent +class WXDLLIMPEXP_BASE wxTimerEvent : public wxEvent { public: - wxTimerEvent(int timerid = 0, int interval = 0) : wxEvent(timerid) + wxTimerEvent(wxTimer& timer) + : wxEvent(timer.GetId(), wxEVT_TIMER), + m_timer(timer) { - m_eventType = wxEVT_TIMER; - - m_interval = interval; + SetEventObject(timer.GetOwner()); } // accessors - int GetInterval() const { return m_interval; } + int GetInterval() const { return m_timer.GetInterval(); } + wxTimer& GetTimer() const { return m_timer; } // implement the base class pure virtual virtual wxEvent *Clone() const { return new wxTimerEvent(*this); } private: - int m_interval; + wxTimer& m_timer; - DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxTimerEvent) + DECLARE_ABSTRACT_CLASS(wxTimerEvent) + DECLARE_NO_ASSIGN_CLASS(wxTimerEvent) }; typedef void (wxEvtHandler::*wxTimerEventFunction)(wxTimerEvent&);