]>
git.saurik.com Git - wxWidgets.git/blob - src/common/timercmn.cpp
7371b1ffbf22384217c2e5bd0162fddd4442b8fd
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/timercmn.cpp
3 // Purpose: wxTimerBase implementation
4 // Author: Julian Smart, Guillermo Rodriguez, Vadim Zeitlin
5 // Modified by: VZ: extracted all non-wxTimer stuff in stopwatch.cpp (20.06.03)
8 // Copyright: (c) Julian Smart
9 // (c) 1999 Guillermo Rodriguez <guille@iies.es>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
22 #pragma implementation "timerbase.h"
25 // For compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 IMPLEMENT_DYNAMIC_CLASS(wxTimerEvent
, wxEvent
)
43 // ============================================================================
44 // wxTimerBase implementation
45 // ============================================================================
47 wxTimerBase::~wxTimerBase()
49 // this destructor is required for Darwin
52 void wxTimerBase::Notify()
54 // the base class version generates an event if it has owner - which it
55 // should because otherwise nobody can process timer events
56 wxCHECK_RET( m_owner
, _T("wxTimer::Notify() should be overridden.") );
58 wxTimerEvent
event(m_idTimer
, m_milli
);
59 (void)m_owner
->ProcessEvent(event
);
62 bool wxTimerBase::Start(int milliseconds
, bool oneShot
)
64 // under MSW timers only work when they're started from the main thread so
65 // let the caller know about it
67 wxASSERT_MSG( wxThread::IsMain(),
68 _T("timer can only be started from the main thread") );
69 #endif // wxUSE_THREADS
73 // not stopping the already running timer might work for some
74 // platforms (no problems under MSW) but leads to mysterious crashes
75 // on the others (GTK), so to be on the safe side do it here
79 if ( milliseconds
!= -1 )
81 m_milli
= milliseconds
;