Removed MainLoop, ExitMainLoop, Pending, and Dispatch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24065 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2003-10-03 13:15:56 +00:00
parent 8897ca05eb
commit 518e56a71b
2 changed files with 0 additions and 38 deletions

View File

@@ -46,11 +46,6 @@ protected:
// ------------------------------------------------------------------------
public:
// Implement wxAppBase pure virtuals
virtual int MainLoop();
virtual void ExitMainLoop();
virtual bool Pending();
virtual bool Dispatch();
virtual void Exit();
virtual bool Yield(bool onlyIfNeeded = FALSE);

View File

@@ -237,39 +237,6 @@ void wxApp::Exit()
wxAppConsole::Exit();
}
int wxApp::MainLoop()
{
[m_cocoaApp run];
return 0;
}
void wxApp::ExitMainLoop()
{
wxLogDebug("wxApp::ExitMailLoop m_isIdle=%d, isRunning=%d",(int)m_isIdle,(int)[m_cocoaApp isRunning]);
// CocoaInstallRequestedIdleHandler();
// if(m_isIdle)
// [[ NSRunLoop currentRunLoop ] performSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL order:0 modes:[NSArray arrayWithObjects:NSDefaultRunLoopMode, /* NSConnectionReplyRunLoopMode, NSModalPanelRunLoopMode, NSEventTrackingRunLoopMode,*/ nil] ];
// actually.. we WANT the idle event
// or not
#if 0
if(!m_isIdle)
[[ NSRunLoop currentRunLoop ] cancelPerformSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL];
#endif
[m_cocoaApp stop: m_cocoaApp];
}
// Is a message/event pending?
bool wxApp::Pending()
{
return 0;
}
// Dispatch a message.
bool wxApp::Dispatch()
{
return true;
}
// Yield to other processes
bool wxApp::Yield(bool onlyIfNeeded)
{