X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2cd78b2a875c3b7abd8a9f1025e164124fae0088..a8fd1047b81302d010ff29b9c0885819cbf25011:/include/wx/timer.h diff --git a/include/wx/timer.h b/include/wx/timer.h index 3135963190..a8501510db 100644 --- a/include/wx/timer.h +++ b/include/wx/timer.h @@ -32,7 +32,7 @@ // only send the notification once and then stop the timer #define wxTIMER_ONE_SHOT true -class WXDLLIMPEXP_BASE wxTimerImpl; +class WXDLLIMPEXP_FWD_BASE wxTimerImpl; // the interface of wxTimer class class WXDLLIMPEXP_BASE wxTimer : public wxEvtHandler @@ -116,7 +116,7 @@ protected: // wxTimerRunner: starts the timer in its ctor, stops in the dtor // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxTimerRunner +class WXDLLIMPEXP_BASE wxTimerRunner { public: wxTimerRunner(wxTimer& timer) : m_timer(timer) { } @@ -152,25 +152,27 @@ private: class WXDLLIMPEXP_BASE wxTimerEvent : public wxEvent { public: + wxTimerEvent() + : wxEvent(wxID_ANY, wxEVT_TIMER) { m_timer=NULL; } + wxTimerEvent(wxTimer& timer) : wxEvent(timer.GetId(), wxEVT_TIMER), - m_timer(timer) + m_timer(&timer) { SetEventObject(timer.GetOwner()); } // accessors - int GetInterval() const { return m_timer.GetInterval(); } - wxTimer& GetTimer() const { return m_timer; } + 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: - wxTimer& m_timer; + wxTimer* m_timer; - DECLARE_ABSTRACT_CLASS(wxTimerEvent) - DECLARE_NO_ASSIGN_CLASS(wxTimerEvent) + DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxTimerEvent) }; typedef void (wxEvtHandler::*wxTimerEventFunction)(wxTimerEvent&);