1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/private/timer.h
3 // Purpose: wxTimer class
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MOTIF_PRIVATE_TIMER_H_
12 #define _WX_MOTIF_PRIVATE_TIMER_H_
14 #include "wx/private/timer.h"
16 class WXDLLIMPEXP_CORE wxMotifTimerImpl
: public wxTimerImpl
19 wxMotifTimerImpl(wxTimer
* timer
) : wxTimerImpl(timer
) { m_id
= 0; }
20 virtual ~wxMotifTimerImpl();
22 virtual bool Start(int milliseconds
= -1, bool oneShot
= false);
24 virtual bool IsRunning() const { return m_id
!= 0; }
26 // override this to rearm the timer if necessary (i.e. if not one shot) as
27 // X timeouts are removed automatically when they expire
28 virtual void Notify();
31 // common part of Start() and Notify()
37 #endif // _WX_MOTIF_PRIVATE_TIMER_H_