GetTraits()->SetLocale();
#endif // wxUSE_INTL
-#if wxUSE_THREADS
- wxHandlersWithPendingEventsLocker = new wxCriticalSection;
- wxHandlersWithPendingDelayedEvents = new wxList;
-#endif
-
#ifndef __WXPALMOS__
if ( m_appName.empty() && argv && argv[0] )
{
delete m_mainLoop;
m_mainLoop = NULL;
}
-
- delete wxHandlersWithPendingEvents;
- wxHandlersWithPendingEvents = NULL;
-
- delete wxHandlersWithPendingDelayedEvents;
- wxHandlersWithPendingDelayedEvents = NULL;
-
-#if wxUSE_THREADS
- delete wxHandlersWithPendingEventsLocker;
- wxHandlersWithPendingEventsLocker = NULL;
-#endif // wxUSE_THREADS
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
-// event processing
+// wxEventLoop redirection
// ----------------------------------------------------------------------------
int wxAppConsoleBase::MainLoop()
bool wxAppConsoleBase::HasPendingEvents() const
{
- wxENTER_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
-
- bool has = wxHandlersWithPendingEvents && !wxHandlersWithPendingEvents->IsEmpty();
-
- wxLEAVE_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
+ wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
- return has;
+ return loop && loop->HasPendingEvents();
}
void wxAppConsoleBase::SuspendProcessingOfPendingEvents()
{
- wxENTER_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
-}
+ wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
-void wxAppConsoleBase::ResumeProcessingOfPendingEvents()
-{
- wxLEAVE_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
+ if (loop) loop->SuspendProcessingOfPendingEvents();
}
-/* static */
-bool wxAppConsoleBase::IsMainLoopRunning()
+void wxAppConsoleBase::ResumeProcessingOfPendingEvents()
{
- const wxAppConsole * const app = GetInstance();
+ wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
- return app && app->m_mainLoop != NULL;
+ if (loop) loop->ResumeProcessingOfPendingEvents();
}
void wxAppConsoleBase::ProcessPendingEvents()
{
-#if wxUSE_THREADS
- if ( !wxHandlersWithPendingEventsLocker )
- return;
-#endif
-
- wxENTER_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
-
- wxCHECK_RET( wxHandlersWithPendingDelayedEvents->IsEmpty(),
- "this helper list should be empty" );
-
- if (wxHandlersWithPendingEvents)
- {
- // iterate until the list becomes empty: the handlers remove themselves
- // from it when they don't have any more pending events
- wxList::compatibility_iterator node = wxHandlersWithPendingEvents->GetFirst();
- while (node)
- {
- // In ProcessPendingEvents(), new handlers might be added
- // and we can safely leave the critical section here.
- wxLEAVE_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
-
- wxEvtHandler *handler = (wxEvtHandler *)node->GetData();
- handler->ProcessPendingEvents();
-
- wxENTER_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
-
- // restart as the iterators could have been invalidated
- node = wxHandlersWithPendingEvents->GetFirst();
- }
- }
+ wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
- // now the wxHandlersWithPendingEvents is surely empty; however some event
- // handlers may have moved themselves into wxHandlersWithPendingDelayedEvents
- // because of a selective wxYield call in progress.
- // Now we need to move them back to wxHandlersWithPendingEvents so the next
- // call to this function has the chance of processing them:
- if (!wxHandlersWithPendingDelayedEvents->IsEmpty())
- {
- if (!wxHandlersWithPendingEvents)
- wxHandlersWithPendingEvents = new wxList;
+ if (loop) loop->ProcessPendingEvents();
+}
- WX_APPEND_LIST(wxHandlersWithPendingEvents, wxHandlersWithPendingDelayedEvents);
- wxHandlersWithPendingDelayedEvents->Clear();
- }
+bool wxAppConsoleBase::Yield(bool onlyIfNeeded)
+{
+ wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
- wxLEAVE_CRIT_SECT( *wxHandlersWithPendingEventsLocker );
+ return loop && loop->Yield(onlyIfNeeded);
}
void wxAppConsoleBase::WakeUpIdle()
bool wxAppConsoleBase::ProcessIdle()
{
- // process pending wx events before sending idle events
- ProcessPendingEvents();
+ wxEventLoopBase * const loop = wxEventLoopBase::GetActive();
+
+ return loop && loop->ProcessIdle();
+}
+
+// ----------------------------------------------------------------------------
+// events
+// ----------------------------------------------------------------------------
- wxIdleEvent event;
+/* static */
+bool wxAppConsoleBase::IsMainLoopRunning()
+{
+ const wxAppConsole * const app = GetInstance();
- event.SetEventObject(this);
- ProcessEvent(event);
- return event.MoreRequested();
+ return app && app->m_mainLoop != NULL;
}
int wxAppConsoleBase::FilterEvent(wxEvent& WXUNUSED(event))
// normally wxLogFatalError doesn't return
return false;
}
-#undef wxCMP
return true;
}