]> git.saurik.com Git - wxWidgets.git/blame - src/msw/timer.cpp
bitmap and image updates
[wxWidgets.git] / src / msw / timer.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: timer.cpp
3// Purpose: wxTimer implementation
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
73974df1 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
c085e333 13 #pragma implementation "timer.h"
2bda0e17
KB
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
c085e333 20 #pragma hdrstop
2bda0e17
KB
21#endif
22
23#ifndef WX_PRECOMP
c085e333 24 #include "wx/setup.h"
0470b1e6 25 #include "wx/window.h"
c085e333 26 #include "wx/list.h"
2432b92d 27 #include "wx/event.h"
c085e333 28 #include "wx/app.h"
0470b1e6
VZ
29 #include "wx/intl.h"
30 #include "wx/log.h"
2bda0e17
KB
31#endif
32
33#include "wx/timer.h"
2bda0e17 34
0470b1e6 35#include "wx/msw/private.h"
2bda0e17 36
c085e333
VZ
37// ----------------------------------------------------------------------------
38// private functions
39// ----------------------------------------------------------------------------
40
2bda0e17
KB
41wxList wxTimerList(wxKEY_INTEGER);
42UINT WINAPI _EXPORT wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD);
43
c085e333
VZ
44// ----------------------------------------------------------------------------
45// macros
46// ----------------------------------------------------------------------------
47
48#ifdef __WIN32__
73974df1 49 #define _EXPORT
c085e333
VZ
50#else
51 #define _EXPORT _export
52#endif
53
2bda0e17 54#if !USE_SHARED_LIBRARY
c085e333 55 IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject)
2bda0e17
KB
56#endif
57
c085e333
VZ
58// ============================================================================
59// implementation
60// ============================================================================
61
62// ----------------------------------------------------------------------------
63// wxTimer class
64// ----------------------------------------------------------------------------
73974df1
VZ
65
66wxTimer::wxTimer()
2bda0e17 67{
0470b1e6 68 m_id = 0;
2bda0e17
KB
69}
70
73974df1 71wxTimer::~wxTimer()
2bda0e17 72{
0470b1e6 73 wxTimer::Stop();
2bda0e17 74
c085e333 75 wxTimerList.DeleteObject(this);
2bda0e17
KB
76}
77
0470b1e6 78bool wxTimer::Start(int milliseconds, bool oneShot)
2bda0e17 79{
0470b1e6 80 (void)wxTimerBase::Start(milliseconds, oneShot);
c085e333 81
0470b1e6 82 wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeour") );
c085e333
VZ
83
84 wxTimerList.DeleteObject(this);
85 TIMERPROC wxTimerProcInst = (TIMERPROC)
86 MakeProcInstance((FARPROC)wxTimerProc, wxGetInstance());
87
0470b1e6
VZ
88 m_id = SetTimer(NULL, (UINT)(m_id ? m_id : 1),
89 (UINT)milliseconds, wxTimerProcInst);
90 if ( m_id > 0 )
c085e333 91 {
0470b1e6 92 wxTimerList.Append(m_id, this);
c085e333
VZ
93
94 return TRUE;
95 }
96 else
97 {
98 wxLogSysError(_("Couldn't create a timer"));
99
100 return FALSE;
101 }
2bda0e17
KB
102}
103
73974df1 104void wxTimer::Stop()
2bda0e17 105{
0470b1e6 106 if ( m_id )
73974df1 107 {
0470b1e6 108 KillTimer(NULL, (UINT)m_id);
73974df1 109 wxTimerList.DeleteObject(this);
c085e333 110 }
0470b1e6
VZ
111
112 m_id = 0;
2bda0e17
KB
113}
114
c085e333
VZ
115// ----------------------------------------------------------------------------
116// private functions
117// ----------------------------------------------------------------------------
73974df1 118
06e38c8e 119void wxProcessTimer(wxTimer& timer)
2bda0e17 120{
c085e333 121 // Avoid to process spurious timer events
0470b1e6 122 if ( timer.m_id == 0)
c085e333
VZ
123 return;
124
0470b1e6 125 if ( timer.IsOneShot() )
c085e333
VZ
126 timer.Stop();
127
128 timer.Notify();
2bda0e17
KB
129}
130
c085e333
VZ
131UINT WINAPI _EXPORT wxTimerProc(HWND WXUNUSED(hwnd), WORD, int idTimer, DWORD)
132{
133 wxNode *node = wxTimerList.Find((long)idTimer);
134
223d09f6 135 wxCHECK_MSG( node, 0, wxT("bogus timer id in wxTimerProc") );
c085e333
VZ
136
137 wxProcessTimer(*(wxTimer *)node->Data());
138
139 return 0;
140}