moving OnInit to a later stage to avoid Carbon Emulation artifacts by the OS, fixes #11839

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2010-04-02 12:27:39 +00:00
parent 4cf018e14e
commit 175e9d71cd
2 changed files with 51 additions and 41 deletions

View File

@@ -841,7 +841,7 @@ bool wxApp::Initialize(int& argc, wxChar **argv)
return true; return true;
} }
#if wxOSX_USE_COCOA_OR_CARBON #if wxOSX_USE_CARBON
bool wxApp::CallOnInit() bool wxApp::CallOnInit()
{ {
wxMacAutoreleasePool autoreleasepool; wxMacAutoreleasePool autoreleasepool;
@@ -866,20 +866,12 @@ bool wxApp::ProcessIdle()
return wxAppBase::ProcessIdle(); return wxAppBase::ProcessIdle();
} }
#if wxOSX_USE_COCOA_OR_CARBON
int wxApp::OnRun() int wxApp::OnRun()
{ {
wxMacAutoreleasePool pool; wxMacAutoreleasePool pool;
return wxAppBase::OnRun(); return wxAppBase::OnRun();
} }
#else
// iPhone version in utils.mm
#endif
#if wxOSX_USE_CARBON #if wxOSX_USE_CARBON
bool wxApp::DoInitGui() bool wxApp::DoInitGui()
{ {

View File

@@ -82,22 +82,24 @@ void wxMacWakeUp()
{ {
} }
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender; - (void)applicationWillFinishLaunching:(NSApplication *)sender;
- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename; - (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename;
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender; - (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender;
- (BOOL)application:(NSApplication *)sender printFile:(NSString *)filename; - (BOOL)application:(NSApplication *)sender printFile:(NSString *)filename;
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender;
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event - (void)handleGetURLEvent:(NSAppleEventDescriptor *)event
withReplyEvent:(NSAppleEventDescriptor *)replyEvent; withReplyEvent:(NSAppleEventDescriptor *)replyEvent;
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender;
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender;
- (void)applicationWillTerminate:(NSApplication *)sender;
@end @end
@implementation wxNSAppController @implementation wxNSAppController
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender - (void)applicationWillFinishLaunching:(NSApplication *)application {
{ wxUnusedVar(application);
wxUnusedVar(sender); wxTheApp->OnInit();
// let wx do this, not cocoa
return NO;
} }
- (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename; - (BOOL)application:(NSApplication *)sender openFile:(NSString *)filename;
@@ -123,6 +125,23 @@ void wxMacWakeUp()
return YES; return YES;
} }
- (BOOL)applicationShouldHandleReopen:(NSApplication *)sender hasVisibleWindows:(BOOL)flag
{
wxUnusedVar(flag);
wxUnusedVar(sender);
wxTheApp->MacReopenApp() ;
return NO;
}
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event
withReplyEvent:(NSAppleEventDescriptor *)replyEvent
{
wxUnusedVar(replyEvent);
NSString* url = [[event descriptorAtIndex:1] stringValue];
wxCFStringRef cf(wxCFRetain(url));
wxTheApp->MacOpenURL(cf.AsString()) ;
}
/* /*
Allowable return values are: Allowable return values are:
NSTerminateNow - it is ok to proceed with termination NSTerminateNow - it is ok to proceed with termination
@@ -133,36 +152,28 @@ void wxMacWakeUp()
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
{ {
wxUnusedVar(sender); wxUnusedVar(sender);
wxWindow* win = wxTheApp->GetTopWindow() ; wxCloseEvent event;
if ( win ) wxTheApp->OnQueryEndSession(event);
{ if ( event.GetVeto() )
wxCommandEvent exitEvent(wxEVT_COMMAND_MENU_SELECTED, wxApp::s_macExitMenuItemId); return NSTerminateCancel;
if (!win->GetEventHandler()->ProcessEvent(exitEvent))
win->Close(true) ; return NSTerminateNow;
}
else
{
wxTheApp->ExitMainLoop() ;
}
return NSTerminateCancel;
} }
- (BOOL)applicationShouldHandleReopen:(NSApplication *)sender hasVisibleWindows:(BOOL)flag - (void)applicationWillTerminate:(NSApplication *)application {
wxUnusedVar(application);
wxCloseEvent event;
event.SetCanVeto(false);
wxTheApp->OnEndSession(event);
}
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender
{ {
wxUnusedVar(flag);
wxUnusedVar(sender); wxUnusedVar(sender);
wxTheApp->MacReopenApp() ; // let wx do this, not cocoa
return NO; return NO;
} }
- (void)handleGetURLEvent:(NSAppleEventDescriptor *)event
withReplyEvent:(NSAppleEventDescriptor *)replyEvent
{
wxUnusedVar(replyEvent);
NSString* url = [[event descriptorAtIndex:1] stringValue];
wxCFStringRef cf(wxCFRetain(url));
wxTheApp->MacOpenURL(cf.AsString()) ;
}
@end @end
/* /*
@@ -216,6 +227,14 @@ void wxMacWakeUp()
} }
@end @end
bool wxApp::CallOnInit()
{
if ( sm_isEmbedded )
return OnInit();
return true;
}
bool wxApp::DoInitGui() bool wxApp::DoInitGui()
{ {
wxMacAutoreleasePool pool; wxMacAutoreleasePool pool;
@@ -229,7 +248,6 @@ bool wxApp::DoInitGui()
NSAppleEventManager *appleEventManager = [NSAppleEventManager sharedAppleEventManager]; NSAppleEventManager *appleEventManager = [NSAppleEventManager sharedAppleEventManager];
[appleEventManager setEventHandler:controller andSelector:@selector(handleGetURLEvent:withReplyEvent:) [appleEventManager setEventHandler:controller andSelector:@selector(handleGetURLEvent:withReplyEvent:)
forEventClass:kInternetEventClass andEventID:kAEGetURL]; forEventClass:kInternetEventClass andEventID:kAEGetURL];
[NSApp finishLaunching];
} }
return true; return true;
} }