]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/timer.h
more extra semicolons removed (patch 1303724)
[wxWidgets.git] / include / wx / cocoa / timer.h
CommitLineData
2fcd7f64
RN
1/////////////////////////////////////////////////////////////////////////////
2// Name: timer.h
3// Purpose: Cocoa wxTimer class
4// Author: Ryan Norton
5// Id: $Id$
6// Copyright: (c) Ryan Norton
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __WX_TIMER_H__
12#define __WX_TIMER_H__
13
2fcd7f64
RN
14#include "wx/cocoa/ObjcRef.h"
15
16//-----------------------------------------------------------------------------
17// wxTimer
18//-----------------------------------------------------------------------------
19
20DECLARE_WXCOCOA_OBJC_CLASS(NSTimer);
21
22class WXDLLEXPORT wxTimer : public wxTimerBase
23{
24public:
25 wxTimer() { Init(); }
26 wxTimer(wxEvtHandler *owner, int timerid = -1) : wxTimerBase(owner, timerid)
27 { Init(); }
28 ~wxTimer();
29
30 virtual bool Start(int millisecs = -1, bool oneShot = false);
31 virtual void Stop();
32
33 virtual bool IsRunning() const;
34
35 inline WX_NSTimer GetNSTimer()
36 { return m_cocoaNSTimer; }
37
38protected:
39 void Init();
40
41private:
42 WX_NSTimer m_cocoaNSTimer;
43 static const wxObjcAutoRefFromAlloc<struct objc_object *> sm_cocoaDelegate;
44
45 DECLARE_ABSTRACT_CLASS(wxTimer)
46};
47
48#endif // __WX_TIMER_H__