X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b11af9ed9d759a86275a4d28d59ba17b7f2c8d69..87b621a5b737c09cef079bb4a9ef53be132d2ce0:/src/dfb/app.cpp?ds=sidebyside diff --git a/src/dfb/app.cpp b/src/dfb/app.cpp index c78010f081..8df872883c 100644 --- a/src/dfb/app.cpp +++ b/src/dfb/app.cpp @@ -2,7 +2,6 @@ // Name: src/dfb/app.cpp // Purpose: wxApp implementation // Author: Vaclav Slavik -// based on MGL implementation // Created: 2006-08-16 // RCS-ID: $Id$ // Copyright: (c) 2006 REA Elektronik GmbH @@ -19,6 +18,7 @@ #include "wx/app.h" #include "wx/evtloop.h" +#include "wx/thread.h" #include "wx/dfb/private.h" #include "wx/private/fontmgr.h" @@ -28,10 +28,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) -BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) - EVT_IDLE(wxAppBase::OnIdle) -END_EVENT_TABLE() - wxApp::wxApp() { } @@ -151,57 +147,9 @@ bool wxApp::SetDisplayMode(const wxVideoMode& mode) void wxApp::WakeUpIdle() { -#if wxUSE_THREADS - if (!wxThread::IsMain()) - wxMutexGuiEnter(); -#endif - - wxEventLoop * const loop = wxEventLoop::GetActive(); + // we don't need a mutex here, since we use the wxConsoleEventLoop + // and wxConsoleEventLoop::WakeUp() is thread-safe + wxEventLoopBase * const loop = wxEventLoop::GetActive(); if ( loop ) loop->WakeUp(); - -#if wxUSE_THREADS - if (!wxThread::IsMain()) - wxMutexGuiLeave(); -#endif -} - - -bool wxApp::Yield(bool onlyIfNeeded) -{ -#if wxUSE_THREADS - if ( !wxThread::IsMain() ) - return true; // can't process events from other threads -#endif // wxUSE_THREADS - - static bool s_inYield = false; - - if ( s_inYield ) - { - if ( !onlyIfNeeded ) - { - wxFAIL_MSG( wxT("wxYield called recursively" ) ); - } - - return false; - } - - s_inYield = true; - - wxLog::Suspend(); - - wxEventLoop * const loop = wxEventLoop::GetActive(); - if ( loop ) - loop->Yield(); - - // it's necessary to call ProcessIdle() to update the frames sizes which - // might have been changed (it also will update other things set from - // OnUpdateUI() which is a nice (and desired) side effect) - while ( ProcessIdle() ) {} - - wxLog::Resume(); - - s_inYield = false; - - return true; }