]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/timer.h
wxItemContainerImmutable::FindString unified.
[wxWidgets.git] / include / wx / cocoa / timer.h
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
14 #include "wx/cocoa/ObjcRef.h"
15
16 //-----------------------------------------------------------------------------
17 // wxTimer
18 //-----------------------------------------------------------------------------
19
20 DECLARE_WXCOCOA_OBJC_CLASS(NSTimer);
21
22 class WXDLLEXPORT wxTimer : public wxTimerBase
23 {
24 public:
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
38 protected:
39 void Init();
40
41 private:
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__