1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2007-04-19 21:29:16 -04:00
|
|
|
// Name: wx/palmos/private/timer.h
|
1998-05-20 10:12:05 -04:00
|
|
|
// Purpose: wxTimer class
|
2007-04-19 21:29:16 -04:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
1998-05-20 10:12:05 -04:00
|
|
|
// Modified by:
|
2007-04-19 21:29:16 -04:00
|
|
|
// Created: 10/13/04
|
1998-05-20 10:12:05 -04:00
|
|
|
// RCS-ID: $Id$
|
2007-04-19 21:29:16 -04:00
|
|
|
// Copyright: (c) William Osborne
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 19:52:45 -04:00
|
|
|
#ifndef _WX_TIMER_H_
|
|
|
|
#define _WX_TIMER_H_
|
1998-05-20 10:12:05 -04:00
|
|
|
|
2008-03-01 19:53:32 -05:00
|
|
|
#include "wx/private/timer.h"
|
2007-04-19 21:29:16 -04:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxPalmOSTimerImpl : public wxTimerImpl
|
1998-05-20 10:12:05 -04:00
|
|
|
{
|
1998-10-14 19:53:24 -04:00
|
|
|
friend void wxProcessTimer(wxTimer& timer);
|
|
|
|
|
1998-10-12 09:09:15 -04:00
|
|
|
public:
|
2007-04-19 21:29:16 -04:00
|
|
|
wxPalmOSTimerImpl(wxTimer* timer) : wxTimerImpl(timer) { Init(); }
|
|
|
|
virtual ~wxPalmOSTimerImpl();
|
1998-10-12 09:09:15 -04:00
|
|
|
|
2007-04-19 21:29:16 -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:
|
2000-02-04 20:57:38 -05:00
|
|
|
void Init();
|
|
|
|
|
2003-09-24 10:48:33 -04:00
|
|
|
unsigned long m_id;
|
1998-05-20 10:12:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 19:52:45 -04:00
|
|
|
// _WX_TIMERH_
|