1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: timer.h
|
|
|
|
// Purpose: wxTimer class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_TIMER_H_
|
|
|
|
#define _WX_TIMER_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-11-12 19:19:38 +00:00
|
|
|
#pragma interface "timer.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
|
|
|
|
1999-11-12 19:19:38 +00:00
|
|
|
class WXDLLEXPORT wxTimer : public wxTimerBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1998-10-14 23:53:24 +00:00
|
|
|
friend void wxProcessTimer(wxTimer& timer);
|
|
|
|
|
1998-10-12 13:09:15 +00:00
|
|
|
public:
|
2000-02-05 01:57:38 +00:00
|
|
|
wxTimer() { Init(); }
|
2004-09-07 06:01:01 +00:00
|
|
|
wxTimer(wxEvtHandler *owner, int id = wxID_ANY) : wxTimerBase(owner, id)
|
2000-02-05 01:57:38 +00:00
|
|
|
{ Init(); }
|
1998-10-12 13:09:15 +00:00
|
|
|
~wxTimer();
|
|
|
|
|
2004-09-07 06:01:01 +00:00
|
|
|
virtual bool Start(int milliseconds = -1, bool oneShot = false);
|
1999-11-12 19:19:38 +00:00
|
|
|
virtual void Stop();
|
1998-10-12 13:09:15 +00:00
|
|
|
|
1999-11-12 19:19:38 +00:00
|
|
|
virtual bool IsRunning() const { return m_id != 0; }
|
1998-10-12 13:09:15 +00:00
|
|
|
|
1998-10-14 23:53:24 +00:00
|
|
|
protected:
|
2000-02-05 01:57:38 +00:00
|
|
|
void Init();
|
|
|
|
|
2003-09-24 14:48:33 +00:00
|
|
|
unsigned long m_id;
|
1998-10-12 13:09:15 +00:00
|
|
|
|
|
|
|
private:
|
2003-07-22 00:24:07 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxTimer)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_TIMERH_
|