]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/timer.cpp
positioning of the insertion point at the end
[wxWidgets.git] / src / mac / carbon / timer.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: timer.cpp
3// Purpose: wxTimer implementation
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
e40298d5 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "timer.h"
14#endif
15
16#include "wx/timer.h"
17
2f1ae414 18#if !USE_SHARED_LIBRARY
e9576ca5 19IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject)
2f1ae414
SC
20#endif
21
76a5e5d2
SC
22#ifdef __WXMAC__
23#include "wx/mac/private.h"
24#endif
66a09d47
SC
25#ifndef __DARWIN__
26#include <Timer.h>
27#endif
76a5e5d2 28
e5f0419b
SC
29#include "wx/dynarray.h"
30
76a5e5d2
SC
31typedef struct MacTimerInfo
32{
33 TMTask m_task;
34 wxMacNotifierTableRef m_table ;
35 wxTimer* m_timer ;
36} ;
37
2f1ae414
SC
38static void wxProcessTimer( unsigned long event , void *data ) ;
39
d015713e 40static pascal void MacTimerProc( TMTask * t )
2f1ae414 41{
e40298d5
JS
42 MacTimerInfo * tm = (MacTimerInfo*) t ;
43 wxMacAddEvent( tm->m_table , wxProcessTimer, 0 , (void*) tm->m_timer , TRUE ) ;
2f1ae414
SC
44}
45
604b66c1
SC
46// we need this array to track timers that are being deleted within the Notify procedure
47// adding the timer before the Notify call and checking after whether it still is in there
48// as the destructor would have removed it from the array
49
e5f0419b
SC
50wxArrayPtrVoid gTimersInProcess ;
51
d015713e 52static void wxProcessTimer( unsigned long event , void *data )
2f1ae414 53{
e40298d5
JS
54 if ( !data )
55 return ;
56
57 wxTimer* timer = (wxTimer*) data ;
58
59 if ( timer->IsOneShot() )
60 timer->Stop() ;
61
62 gTimersInProcess.Add( timer ) ;
63
2f1ae414
SC
64 timer->Notify();
65
e5f0419b
SC
66 int index = gTimersInProcess.Index( timer ) ;
67
68 if ( index != wxNOT_FOUND )
2f1ae414 69 {
e5f0419b
SC
70 gTimersInProcess.RemoveAt( index ) ;
71
72 if ( !timer->IsOneShot() && timer->m_info->m_task.tmAddr )
73 {
e40298d5 74 PrimeTime( (QElemPtr) &timer->m_info->m_task , timer->GetInterval() ) ;
e5f0419b
SC
75 }
76
2f1ae414
SC
77 }
78}
e9576ca5 79
d015713e 80void wxTimer::Init()
e9576ca5 81{
76a5e5d2 82 m_info = new MacTimerInfo() ;
e40298d5
JS
83 m_info->m_task.tmAddr = NULL ;
84 m_info->m_task.tmWakeUp = 0 ;
85 m_info->m_task.tmReserved = 0 ;
86 m_info->m_task.qType = 0 ;
87 m_info->m_table = wxMacGetNotifierTable() ;
88 m_info->m_timer = this ;
2f1ae414
SC
89}
90
91bool wxTimer::IsRunning() const
92{
604b66c1
SC
93 // as the qType may already indicate it is elapsed, but it
94 // was not handled internally yet
95 return ( m_info->m_task.tmAddr != NULL ) ;
e9576ca5
SC
96}
97
98wxTimer::~wxTimer()
99{
100 Stop();
f5bb2251
GD
101 if (m_info != NULL) {
102 delete m_info ;
103 m_info = NULL ;
104 }
e5f0419b
SC
105 int index = gTimersInProcess.Index( this ) ;
106 if ( index != wxNOT_FOUND )
107 gTimersInProcess.RemoveAt( index ) ;
e9576ca5
SC
108}
109
110bool wxTimer::Start(int milliseconds,bool mode)
111{
2f1ae414 112 (void)wxTimerBase::Start(milliseconds, mode);
e9576ca5 113
604b66c1 114 wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeout") );
76a5e5d2 115 wxCHECK_MSG( m_info->m_task.tmAddr == NULL , FALSE, wxT("attempting to restart a timer") );
e9576ca5 116
76a5e5d2 117 m_info->m_task.tmAddr = NewTimerUPP( MacTimerProc ) ;
76a5e5d2
SC
118 m_info->m_task.tmWakeUp = 0 ;
119 m_info->m_task.tmReserved = 0 ;
e40298d5
JS
120 m_info->m_task.qType = 0 ;
121 m_info->m_timer = this ;
76a5e5d2
SC
122 InsXTime((QElemPtr) &m_info->m_task ) ;
123 PrimeTime( (QElemPtr) &m_info->m_task , m_milli ) ;
c5990c00 124 return TRUE;
e9576ca5
SC
125}
126
127void wxTimer::Stop()
128{
76a5e5d2 129 if ( m_info->m_task.tmAddr )
2f1ae414 130 {
e40298d5
JS
131 RmvTime( (QElemPtr) &m_info->m_task ) ;
132 DisposeTimerUPP(m_info->m_task.tmAddr) ;
133 m_info->m_task.tmAddr = NULL ;
2f1ae414
SC
134 }
135 wxMacRemoveAllNotifiersForData( wxMacGetNotifierTable() , this ) ;
e9576ca5
SC
136}
137
138
2f1ae414 139