X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04ef50df3a0fa3c343800c554e609f98fc7575cc..8f4d9fcd9a1133442aa733e978231b01956e641b:/src/msw/timer.cpp diff --git a/src/msw/timer.cpp b/src/msw/timer.cpp index 17f1c17552..796db83d7a 100644 --- a/src/msw/timer.cpp +++ b/src/msw/timer.cpp @@ -1,15 +1,15 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: timer.cpp +// Name: msw/timer.cpp // Purpose: wxTimer implementation // Author: Julian Smart // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "timer.h" #endif @@ -23,7 +23,6 @@ #if wxUSE_TIMER #ifndef WX_PRECOMP - #include "wx/setup.h" #include "wx/window.h" #include "wx/list.h" #include "wx/event.h" @@ -32,27 +31,37 @@ #include "wx/log.h" #endif +#include "wx/hashmap.h" + #include "wx/timer.h" #include "wx/msw/private.h" +// from utils.cpp +extern "C" WXDLLIMPEXP_BASE HWND +wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc); + +// ---------------------------------------------------------------------------- +// private globals +// ---------------------------------------------------------------------------- + +// define a hash containing all the timers: it is indexed by timer id and +// contains the corresponding timer +WX_DECLARE_HASH_MAP(unsigned long, wxTimer *, wxIntegerHash, wxIntegerEqual, + wxTimerMap); + +static wxTimerMap g_timerMap; + // ---------------------------------------------------------------------------- // private functions // ---------------------------------------------------------------------------- -wxList wxTimerList(wxKEY_INTEGER); -UINT WINAPI _EXPORT wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD); +void WINAPI wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD); // ---------------------------------------------------------------------------- // macros // ---------------------------------------------------------------------------- -#ifdef __WIN32__ - #define _EXPORT -#else - #define _EXPORT _export -#endif - IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject) // ============================================================================ @@ -71,49 +80,54 @@ void wxTimer::Init() wxTimer::~wxTimer() { wxTimer::Stop(); - - wxTimerList.DeleteObject(this); } bool wxTimer::Start(int milliseconds, bool oneShot) { (void)wxTimerBase::Start(milliseconds, oneShot); - wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeour") ); - - wxTimerList.DeleteObject(this); + wxCHECK_MSG( m_milli > 0, false, wxT("invalid value for timer timeour") ); -#ifdef __WXMICROWIN__ - m_id = SetTimer(NULL, (UINT)(m_id ? m_id : 1), - (UINT)milliseconds, (TIMERPROC) wxTimerProc); -#else - TIMERPROC wxTimerProcInst = (TIMERPROC) - MakeProcInstance((FARPROC)wxTimerProc, wxGetInstance()); + m_id = ::SetTimer + ( + NULL, // don't use window + 1, // id ignored with NULL hwnd anyhow + (UINT)m_milli, // delay + (TIMERPROC)wxTimerProc // timer proc to call + ); - m_id = SetTimer(NULL, (UINT)(m_id ? m_id : 1), - (UINT)milliseconds, wxTimerProcInst); -#endif - - if ( m_id > 0 ) + if ( !m_id ) { - wxTimerList.Append(m_id, this); + wxLogSysError(_("Couldn't create a timer")); - return TRUE; + return false; } - else + + // check that SetTimer() didn't reuse an existing id: according to the MSDN + // this can happen and this would be catastrophic to us as we rely on ids + // uniquely identifying the timers because we use them as keys in the hash + if ( g_timerMap.find(m_id) != g_timerMap.end() ) { - wxLogSysError(_("Couldn't create a timer")); + wxLogError(_("Timer creation failed.")); + + ::KillTimer(NULL, m_id); + m_id = 0; - return FALSE; + return false; } + + g_timerMap[m_id] = this; + + return true; } void wxTimer::Stop() { if ( m_id ) { - KillTimer(NULL, (UINT)m_id); - wxTimerList.DeleteObject(this); + ::KillTimer(NULL, m_id); + + g_timerMap.erase(m_id); } m_id = 0; @@ -125,9 +139,7 @@ void wxTimer::Stop() void wxProcessTimer(wxTimer& timer) { - // Avoid to process spurious timer events - if ( timer.m_id == 0) - return; + wxASSERT_MSG( timer.m_id != 0, _T("bogus timer id") ); if ( timer.IsOneShot() ) timer.Stop(); @@ -135,15 +147,14 @@ void wxProcessTimer(wxTimer& timer) timer.Notify(); } -UINT WINAPI _EXPORT wxTimerProc(HWND WXUNUSED(hwnd), WORD, int idTimer, DWORD) +void WINAPI wxTimerProc(HWND WXUNUSED(hwnd), WORD, int idTimer, DWORD) { - wxNode *node = wxTimerList.Find((long)idTimer); + wxTimerMap::iterator node = g_timerMap.find(idTimer); - wxCHECK_MSG( node, 0, wxT("bogus timer id in wxTimerProc") ); + wxCHECK_RET( node != g_timerMap.end(), wxT("bogus timer id in wxTimerProc") ); - wxProcessTimer(*(wxTimer *)node->Data()); - - return 0; + wxProcessTimer(*(node->second)); } #endif // wxUSE_TIMER +