1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2007-04-19 21:29:16 -04:00
|
|
|
// Name: wx/msw/private/timer.h
|
1998-05-20 10:12:05 -04:00
|
|
|
// Purpose: wxTimer class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 19:52:45 -04:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-04-19 21:29:16 -04:00
|
|
|
#ifndef _WX_MSW_PRIVATE_TIMER_H_
|
|
|
|
#define _WX_MSW_PRIVATE_TIMER_H_
|
1998-05-20 10:12:05 -04:00
|
|
|
|
2007-07-20 22:05:03 -04:00
|
|
|
#if wxUSE_TIMER
|
|
|
|
|
2007-04-19 21:29:16 -04:00
|
|
|
#include "wx/private/timer.h"
|
1998-10-14 19:53:24 -04:00
|
|
|
|
2007-04-19 21:29:16 -04:00
|
|
|
class WXDLLIMPEXP_BASE wxMSWTimerImpl : public wxTimerImpl
|
|
|
|
{
|
1998-10-12 09:09:15 -04:00
|
|
|
public:
|
2007-04-19 21:29:16 -04:00
|
|
|
wxMSWTimerImpl(wxTimer *timer) : wxTimerImpl(timer) { m_id = 0; }
|
1998-10-12 09:09:15 -04:00
|
|
|
|
2004-09-07 02:01:01 -04:00
|
|
|
virtual bool Start(int milliseconds = -1, bool oneShot = false);
|
1999-11-12 14:19:38 -05:00
|
|
|
virtual void Stop();
|
1998-10-12 09:09:15 -04:00
|
|
|
|
1999-11-12 14:19:38 -05:00
|
|
|
virtual bool IsRunning() const { return m_id != 0; }
|
1998-10-12 09:09:15 -04:00
|
|
|
|
1998-10-14 19:53:24 -04:00
|
|
|
protected:
|
2003-09-24 10:48:33 -04:00
|
|
|
unsigned long m_id;
|
1998-05-20 10:12:05 -04:00
|
|
|
};
|
|
|
|
|
2007-07-20 22:05:03 -04:00
|
|
|
#endif // wxUSE_TIMER
|
|
|
|
|
2007-04-19 21:29:16 -04:00
|
|
|
#endif // _WX_TIMERH_
|