1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: timer.h
|
|
|
|
// Purpose: wxTimer class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TIMER_H_
|
|
|
|
#define _WX_TIMER_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-11-12 19:19:38 +00:00
|
|
|
#pragma interface "timer.h"
|
1998-09-18 10:19:10 +00:00
|
|
|
#endif
|
|
|
|
|
1999-11-12 19:19:38 +00:00
|
|
|
class WXDLLEXPORT wxTimer : public wxTimerBase
|
1998-09-18 10:19:10 +00:00
|
|
|
{
|
1999-11-12 19:19:38 +00:00
|
|
|
friend void wxTimerCallback(wxTimer * timer);
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxTimer();
|
|
|
|
~wxTimer();
|
1998-09-18 10:19:10 +00:00
|
|
|
|
1999-11-12 19:19:38 +00:00
|
|
|
virtual bool Start(int milliseconds = -1, bool oneShot = FALSE);
|
|
|
|
virtual void Stop();
|
1998-10-21 21:43:20 +00:00
|
|
|
|
1999-11-12 19:19:38 +00:00
|
|
|
virtual bool IsRunning() const { return m_id != 0; }
|
1998-09-18 10:19:10 +00:00
|
|
|
|
|
|
|
protected:
|
1999-11-12 19:19:38 +00:00
|
|
|
long m_id;
|
1998-09-18 10:19:10 +00:00
|
|
|
|
1999-11-12 19:19:38 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxTimer)
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_TIMER_H_
|