]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/motif/timer.h
corrected handling of timeouts in wxConditionInternal::WaitTimeout(): check for wxSEM...
[wxWidgets.git] / include / wx / motif / timer.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: timer.h
3// Purpose: wxTimer class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_TIMER_H_
13#define _WX_TIMER_H_
14
15class WXDLLEXPORT wxTimer : public wxTimerBase
16{
17 friend void wxTimerCallback(wxTimer * timer);
18
19public:
20 wxTimer() { Init(); }
21 wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id)
22 { Init(); }
23 ~wxTimer();
24
25 virtual bool Start(int milliseconds = -1, bool oneShot = false);
26 virtual void Stop();
27
28 virtual bool IsRunning() const { return m_id != 0; }
29
30protected:
31 void Init();
32
33 long m_id;
34
35private:
36 DECLARE_DYNAMIC_CLASS(wxTimer)
37};
38
39#endif
40// _WX_TIMER_H_