added wxApp::Yield()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12095 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-10-19 18:29:32 +00:00
parent 85ee61ac2e
commit 8461e4c253
19 changed files with 2116 additions and 2100 deletions

View File

@@ -1117,13 +1117,23 @@ void wxExit()
wxApp::CleanUp();
} // end of wxExit
static bool gs_inYield = FALSE;
//
// Yield to incoming messages
//
bool wxYield()
bool wxApp::Yield(bool onlyIfNeeded)
{
static bool s_inYield = FALSE;
if ( s_inYield )
{
if ( !onlyIfNeeded )
{
wxFAIL_MSG( _T("wxYield() called recursively") );
}
return FALSE;
}
HAB vHab = 0;
QMSG vMsg;
@@ -1133,7 +1143,7 @@ bool wxYield()
//
wxLog::Suspend();
gs_inYield = TRUE;
s_inYield = TRUE;
//
// We want to go back to the main message loop
@@ -1157,19 +1167,10 @@ bool wxYield()
// Let the logs be flashed again
//
wxLog::Resume();
gs_inYield = FALSE;
s_inYield = FALSE;
return TRUE;
} // end of wxYield
// Yield to incoming messages; but fail silently if recursion is detected.
bool wxYieldIfNeeded()
{
if (gs_inYield)
return FALSE;
return wxYield();
}
wxIcon wxApp::GetStdIcon(
int nWhich
) const