IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
-#ifdef __WXDEBUG__
extern "C"
{
typedef int (*XErrorHandlerFunc)(Display *, XErrorEvent *);
}
}
-#endif // __WXDEBUG__
bool wxApp::Initialize(int& argc_, wxChar **argv_)
{
}
m_initialDisplay = (WXDisplay*) dpy;
-#ifdef __WXDEBUG__
// install the X error handler
gs_pfnXErrorHandler = XSetErrorHandler(wxXErrorHandler);
-#endif // __WXDEBUG__
// Add general resize proc
XtActionsRec rec;
.m_topLevelRealizedWidget = (Widget)widget;
}
-// Yield to other processes
-
-bool wxApp::DoYield(bool onlyIfNeeded, long eventsToProcess)
-{
- if ( m_isInsideYield )
- {
- if ( !onlyIfNeeded )
- {
- wxFAIL_MSG( wxT("wxYield called recursively" ) );
- }
-
- return false;
- }
-
- m_isInsideYield = true;
- m_eventsToProcessInsideYield = eventsToProcess;
-
- wxEventLoopGuarantor dummyLoopIfNeeded;
- while (wxTheApp && wxTheApp->Pending())
- // TODO: implement event filtering using the eventsToProcess mask
- wxTheApp->Dispatch();
-
- m_isInsideYield = false;
-
- return true;
-}
// ----------------------------------------------------------------------------
// accessors for C modules