From: Stefan Csomor Date: Thu, 22 Apr 2010 06:16:34 +0000 (+0000) Subject: overriding the cfrunloop accessor, during booting cocoa has to create a NSRunLoop... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7934e44732bddea8e4c5491e8db17cd0326d5957 overriding the cfrunloop accessor, during booting cocoa has to create a NSRunLoop earlier git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/osx/cocoa/evtloop.h b/include/wx/osx/cocoa/evtloop.h index 79c25c2b00..ed64e651eb 100644 --- a/include/wx/osx/cocoa/evtloop.h +++ b/include/wx/osx/cocoa/evtloop.h @@ -22,6 +22,8 @@ protected: virtual void DoRun(); virtual void DoStop(); + + virtual CFRunLoopRef CFGetCurrentRunLoop() const; }; #endif // _WX_OSX_COCOA_EVTLOOP_H_ diff --git a/src/osx/carbon/evtloop.cpp b/src/osx/carbon/evtloop.cpp index 4ca136ca90..6ea3f85fac 100644 --- a/src/osx/carbon/evtloop.cpp +++ b/src/osx/carbon/evtloop.cpp @@ -94,6 +94,11 @@ void wxGUIEventLoop::DoStop() QuitApplicationEventLoop(); } +CFRunLoopRef wxGUIEventLoop::CFGetCurrentRunLoop() const +{ + return wxCFEventLoop::CFGetCurrentRunLoop(); +} + // TODO move into a evtloop_osx.cpp wxModalEventLoop::wxModalEventLoop(wxWindow *modalWindow) @@ -114,6 +119,7 @@ wxModalEventLoop::wxModalEventLoop(WXWindow modalNativeWindow) void wxModalEventLoop::DoRun() { + wxWindowDisabler disabler(m_modalWindow); wxMacAutoreleasePool autoreleasepool; bool resetGroupParent = false; diff --git a/src/osx/cocoa/evtloop.mm b/src/osx/cocoa/evtloop.mm index bcd24e8405..ed35319658 100644 --- a/src/osx/cocoa/evtloop.mm +++ b/src/osx/cocoa/evtloop.mm @@ -175,6 +175,13 @@ void wxGUIEventLoop::DoStop() [NSApp stop:0]; } +CFRunLoopRef wxGUIEventLoop::CFGetCurrentRunLoop() const +{ + NSRunLoop* nsloop = [NSRunLoop currentRunLoop]; + return [nsloop getCFRunLoop]; +} + + // TODO move into a evtloop_osx.cpp wxModalEventLoop::wxModalEventLoop(wxWindow *modalWindow)