added wxTimerEvent::GetTimer()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-05-05 14:59:25 +00:00
parent 0bc58f9580
commit 2cd78b2a87
4 changed files with 18 additions and 10 deletions

View File

@@ -152,23 +152,25 @@ private:
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&);