X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/586c455167ef67ac2920db45e48f8509b8be8d31..77c8efc8c37da6d6a5e2e8022d21d1cd7d76371d:/src/common/evtloopcmn.cpp?ds=inline diff --git a/src/common/evtloopcmn.cpp b/src/common/evtloopcmn.cpp index de9fce7230..99f2d78f3d 100644 --- a/src/common/evtloopcmn.cpp +++ b/src/common/evtloopcmn.cpp @@ -111,15 +111,7 @@ bool wxEventLoopManual::ProcessEvents() // loop so check for the flag before trying to dispatch more events // (which could block indefinitely if no more are coming). if ( m_shouldExit ) - { - // We still need to dispatch any remaining pending events, just as - // we do in the event loop in Run() if the loop is exited from a - // normal event handler. - while ( wxTheApp->HasPendingEvents() ) - wxTheApp->ProcessPendingEvents(); - return false; - } } return Dispatch(); @@ -155,19 +147,11 @@ int wxEventLoopManual::Run() // generate and process idle events for as long as we don't // have anything else to do - while ( !Pending() && ProcessIdle() && !m_shouldExit ) + while ( !m_shouldExit && !Pending() && ProcessIdle() ) ; - // if the "should exit" flag is set, the loop should terminate - // but not before processing any remaining messages so while - // Pending() returns true, do process them if ( m_shouldExit ) - { - while ( Pending() ) - ProcessEvents(); - break; - } // a message came or no more idle processing to do, dispatch // all the pending events and call Dispatch() to wait for the @@ -179,6 +163,33 @@ int wxEventLoopManual::Run() } } + // Process the remaining queued messages, both at the level of the + // underlying toolkit level (Pending/Dispatch()) and wx level + // (Has/ProcessPendingEvents()). + // + // We do run the risk of never exiting this loop if pending event + // handlers endlessly generate new events but they shouldn't do + // this in a well-behaved program and we shouldn't just discard the + // events we already have, they might be important. + for ( ;; ) + { + bool hasMoreEvents = false; + if ( wxTheApp && wxTheApp->HasPendingEvents() ) + { + wxTheApp->ProcessPendingEvents(); + hasMoreEvents = true; + } + + if ( Pending() ) + { + Dispatch(); + hasMoreEvents = true; + } + + if ( !hasMoreEvents ) + break; + } + #if wxUSE_EXCEPTIONS // exit the outer loop as well break;