1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: timer.h
|
|
|
|
// Purpose: wxTimer class
|
|
|
|
// Author: AUTHOR
|
|
|
|
// Modified by:
|
|
|
|
// Created: ??/??/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) AUTHOR
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TIMER_H_
|
|
|
|
#define _WX_TIMER_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "timer.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/object.h"
|
2000-08-09 11:02:59 +00:00
|
|
|
#include "wx/mac/macnotfy.h"
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2000-08-09 11:02:59 +00:00
|
|
|
class wxTimer ;
|
|
|
|
|
2002-01-04 17:13:39 +00:00
|
|
|
struct MacTimerInfo ;
|
2000-08-09 11:02:59 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxTimer: public wxTimerBase
|
1999-01-01 16:05:26 +00:00
|
|
|
{
|
|
|
|
public:
|
2000-12-10 10:17:00 +00:00
|
|
|
wxTimer() { Init(); }
|
|
|
|
wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id) { Init(); }
|
1999-01-01 16:05:26 +00:00
|
|
|
~wxTimer();
|
|
|
|
|
|
|
|
virtual bool Start(int milliseconds = -1,
|
|
|
|
bool one_shot = FALSE); // Start timer
|
|
|
|
virtual void Stop(); // Stop timer
|
|
|
|
|
2000-08-09 11:02:59 +00:00
|
|
|
virtual bool IsRunning() const ;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2002-01-04 17:13:39 +00:00
|
|
|
MacTimerInfo* m_info;
|
2000-12-10 10:17:00 +00:00
|
|
|
protected :
|
|
|
|
void Init();
|
1999-01-01 16:05:26 +00:00
|
|
|
private:
|
2000-12-10 10:17:00 +00:00
|
|
|
|
1999-01-01 16:05:26 +00:00
|
|
|
DECLARE_ABSTRACT_CLASS(wxTimer)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_TIMER_H_
|