X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/62f17a1864ffb025ffb71d6f42ca0c05223b775c..7e541da8b014f51a91b5d8c7040f1df49d3a0f1a:/src/msw/timer.cpp diff --git a/src/msw/timer.cpp b/src/msw/timer.cpp index 57dfbbb53d..cccb8ed09f 100644 --- a/src/msw/timer.cpp +++ b/src/msw/timer.cpp @@ -5,11 +5,11 @@ // 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,6 +31,8 @@ #include "wx/log.h" #endif +#include "wx/hashmap.h" + #include "wx/timer.h" #include "wx/msw/private.h" @@ -40,20 +41,21 @@ // private functions // ---------------------------------------------------------------------------- -wxList wxTimerList(wxKEY_INTEGER); -UINT WINAPI _EXPORT wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD); +WX_DECLARE_HASH_MAP( long, + wxTimer *, + wxIntegerHash, + wxIntegerEqual, + wxTimerMap ); + +wxTimerMap wxTimerList; + +void WINAPI wxTimerProc(HWND hwnd, WORD, int idTimer, DWORD); // ---------------------------------------------------------------------------- // macros // ---------------------------------------------------------------------------- -#ifdef __WIN32__ - #define _EXPORT -#else - #define _EXPORT _export -#endif - -// should probably be in wx/msw/private.h +// should probably be in wx/msw/missing.h #ifdef __WXMICROWIN__ #define MakeProcInstance(proc, hinst) proc #endif @@ -75,34 +77,41 @@ void wxTimer::Init() wxTimer::~wxTimer() { + long id = m_id; + wxTimer::Stop(); - wxTimerList.DeleteObject(this); + wxTimerList.erase(id); } bool wxTimer::Start(int milliseconds, bool oneShot) { (void)wxTimerBase::Start(milliseconds, oneShot); - wxCHECK_MSG( m_milli > 0, FALSE, wxT("invalid value for timer timeour") ); + wxCHECK_MSG( m_milli > 0, false, wxT("invalid value for timer timeour") ); +#ifdef __WXWINCE__ + m_id = ::SetTimer(NULL, (UINT)(m_id ? m_id : 1), + (UINT)m_milli, (TIMERPROC) wxTimerProc); +#else TIMERPROC wxTimerProcInst = (TIMERPROC) MakeProcInstance((FARPROC)wxTimerProc, wxGetInstance()); m_id = ::SetTimer(NULL, (UINT)(m_id ? m_id : 1), (UINT)m_milli, wxTimerProcInst); +#endif if ( m_id > 0 ) { - wxTimerList.Append(m_id, this); + wxTimerList[m_id] = this; - return TRUE; + return true; } else { wxLogSysError(_("Couldn't create a timer")); - return FALSE; + return false; } } @@ -112,7 +121,7 @@ void wxTimer::Stop() { ::KillTimer(NULL, (UINT)m_id); - wxTimerList.DeleteObject(this); + wxTimerList.erase(m_id); } m_id = 0; @@ -134,15 +143,15 @@ 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); - - wxCHECK_MSG( node, 0, wxT("bogus timer id in wxTimerProc") ); + + wxTimerMap::iterator node = wxTimerList.find((long)idTimer); - wxProcessTimer(*(wxTimer *)node->Data()); + wxASSERT_MSG( node != wxTimerList.end(), wxT("bogus timer id in wxTimerProc") ); - return 0; + wxProcessTimer(*(node->second)); } #endif // wxUSE_TIMER +