wiring osx native notification during launch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2013-07-22 16:17:27 +00:00
parent c148b21630
commit 038c99477c
2 changed files with 12 additions and 0 deletions

View File

@@ -142,6 +142,10 @@ public:
virtual void MacNewFile() ;
// in response of a reopen-application apple event
virtual void MacReopenApp() ;
// immediately before the native event loop launches
virtual void OSXOnWillFinishLaunching();
// immediately when the native event loop starts, no events have been served yet
virtual void OSXOnDidFinishLaunching();
// Hide the application windows the same as the system hide command would do it.
void MacHideApp();

View File

@@ -401,6 +401,14 @@ void wxApp::MacReopenApp()
}
}
void wxApp::OSXOnWillFinishLaunching()
{
}
void wxApp::OSXOnDidFinishLaunching()
{
}
//----------------------------------------------------------------------
// Macintosh CommandID support - converting between native and wx IDs
//----------------------------------------------------------------------