argc = 0;
argv = NULL;
m_nPrintMode = wxPRINT_WINDOWS;
- m_bAuto3D = TRUE;
m_hMq = 0;
m_maxSocketHandles = 0;
m_maxSocketNr = 0;
return (int)svCurrentMsg.mp1;
} // end of wxApp::MainLoop
-//
-// Returns TRUE if more time is needed.
-//
-bool wxApp::ProcessIdle()
-{
- wxIdleEvent vEvent;
-
- vEvent.SetEventObject(this);
- ProcessEvent(vEvent);
- wxUpdateUIEvent::ResetUpdateTime();
- return vEvent.MoreRequested();
-} // end of wxApp::ProcessIdle
-
void wxApp::ExitMainLoop()
{
::WinPostMsg(NULL, WM_QUIT, 0, 0);
return;
gbInOnIdle = TRUE;
-
- //
- // If there are pending events, we must process them: pending events
- // are either events to the threads other than main or events posted
- // with wxPostEvent() functions
- //
- ProcessPendingEvents();
-
- //
- // 'Garbage' collection of windows deleted with Close().
- //
- DeletePendingObjects();
-
-#if wxUSE_LOG
- //
- // Flush the logged messages if any
- //
- wxLog::FlushActive();
-#endif // wxUSE_LOG
+
+ wxAppBase::OnIdle(event);
#if wxUSE_DC_CACHEING
// automated DC cache management: clear the cached DCs and bitmap
wxDC::ClearCache();
#endif // wxUSE_DC_CACHEING
- //
- // Send OnIdle events to all windows
- //
- if (SendIdleEvents())
- {
- //
- // SendIdleEvents() returns TRUE if at least one window requested more
- // idle events
- //
- rEvent.RequestMore(TRUE);
- }
gbInOnIdle = FALSE;
} // end of wxApp::OnIdle
-// Send idle event to all top-level windows
-bool wxApp::SendIdleEvents()
-{
- bool bNeedMore = FALSE;
- wxWindowList::Node* pNode = wxTopLevelWindows.GetFirst();
-
- while (pNode)
- {
- wxWindow* pWin = pNode->GetData();
-
- if (SendIdleEvents(pWin))
- bNeedMore = TRUE;
- pNode = pNode->GetNext();
- }
- return bNeedMore;
-} // end of wxApp::SendIdleEvents
-
-//
-// Send idle event to window and all subwindows
-//
-bool wxApp::SendIdleEvents(
- wxWindow* pWin
-)
-{
- bool bNeedMore = FALSE;
- wxIdleEvent vEvent;
-
- vEvent.SetEventObject(pWin);
- pWin->GetEventHandler()->ProcessEvent(vEvent);
-
- if (vEvent.MoreRequested())
- bNeedMore = TRUE;
-
- wxNode* pNode = pWin->GetChildren().First();
-
- while (pNode)
- {
- wxWindow* pWin = (wxWindow*) pNode->Data();
-
- if (SendIdleEvents(pWin))
- bNeedMore = TRUE;
- pNode = pNode->Next();
- }
- return bNeedMore;
-} // end of wxApp::SendIdleEvents
-
void wxApp::OnEndSession(
wxCloseEvent& WXUNUSED(rEvent))
{