wxTimer for wxMGL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12377 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-11-11 18:59:30 +00:00
parent 08829b064c
commit 1acd70f921
4 changed files with 181 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////////////////////
// Name: timer.h
// Purpose:
// Purpose: wxTimer class
// Author: Vaclav Slavik
// Id: $Id$
// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
@@ -19,27 +19,35 @@
// wxTimer
//-----------------------------------------------------------------------------
//FIXME_MGL
class wxTimerDesc;
class wxTimerScheduler;
class WXDLLEXPORT wxTimer : public wxTimerBase
{
public:
wxTimer() { Init(); }
wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id)
{ Init(); }
~wxTimer() {}
~wxTimer();
virtual bool Start( int millisecs = -1, bool oneShot = FALSE ) { return TRUE; }
virtual void Stop() {}
virtual bool Start(int millisecs = -1, bool oneShot = FALSE);
virtual void Stop();
virtual bool IsRunning() const { return m_tag != -1; }
virtual bool IsRunning() const;
// implementation
static void NotifyTimers();
protected:
void Init() {}
int m_tag;
void Init();
private:
wxTimerDesc *m_desc;
static wxTimerScheduler *ms_scheduler;
static size_t ms_timersCnt;
DECLARE_ABSTRACT_CLASS(wxTimer)
};
#endif // __GTKTIMERH__
#endif // __WX_TIMER_H__