X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1ed7a2064a525da8f84f40a1b8779ffcf8d08307..931d6a47c32a5b4c283243cb553ce71ee2b535d5:/src/msw/timer.cpp diff --git a/src/msw/timer.cpp b/src/msw/timer.cpp index 4193755d71..ba7ed1cd9c 100644 --- a/src/msw/timer.cpp +++ b/src/msw/timer.cpp @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: Vadim Zeitlin (use hash map instead of list, global rewrite) // Created: 04/01/98 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -31,6 +30,7 @@ #endif #include "wx/msw/private.h" +#include "wx/msw/private/hiddenwin.h" // ---------------------------------------------------------------------------- // private globals @@ -76,11 +76,6 @@ UINT_PTR GetNewTimerId(wxMSWTimerImpl *t) LRESULT APIENTRY _EXPORT wxTimerWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam); -// implemented in utils.cpp -extern "C" WXDLLIMPEXP_BASE HWND -wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc); - - // ---------------------------------------------------------------------------- // wxTimerHiddenWindowModule: used to manage the hidden window used for // catching timer messages (we need a module to ensure that the window is @@ -118,22 +113,12 @@ IMPLEMENT_DYNAMIC_CLASS(wxTimerHiddenWindowModule, wxModule) // wxMSWTimerImpl class // ---------------------------------------------------------------------------- -wxMSWTimerImpl::wxMSWTimerImpl(wxTimer *timer) -:wxTimerImpl(timer) -{ - m_id = GetNewTimerId(this); -} - -wxMSWTimerImpl::~wxMSWTimerImpl() -{ - TimerMap().erase(m_id); -} - bool wxMSWTimerImpl::Start(int milliseconds, bool oneShot) { if ( !wxTimerImpl::Start(milliseconds, oneShot) ) return false; + m_id = GetNewTimerId(this); // SetTimer() normally returns just idTimer but this might change in the // future so use its return value to be safe UINT_PTR ret = ::SetTimer @@ -157,6 +142,8 @@ bool wxMSWTimerImpl::Start(int milliseconds, bool oneShot) void wxMSWTimerImpl::Stop() { ::KillTimer(wxTimerHiddenWindowModule::GetHWND(), m_id); + TimerMap().erase(m_id); + m_id = 0; } // ---------------------------------------------------------------------------- @@ -181,15 +168,17 @@ LRESULT APIENTRY _EXPORT wxTimerWndProc(HWND hWnd, UINT message, { wxTimerMap::iterator node = TimerMap().find(wParam); - wxCHECK_MSG( node != TimerMap().end(), 0, wxT("bogus timer id in wxTimerProc") ); + if ( node != TimerMap().end() ) + { + wxProcessTimer(*(node->second)); - wxProcessTimer(*(node->second)); - } - else - { - return ::DefWindowProc(hWnd, message, wParam, lParam); + return 0; + } + //else: Unknown timer, probably one of our timers that had fired just + // before being removed from the timers map by Stop(). } - return 0; + + return ::DefWindowProc(hWnd, message, wParam, lParam); } // ----------------------------------------------------------------------------