1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/app.cpp
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
20 #include "wx/window.h"
23 #include "wx/button.h"
27 #include "wx/palette.h"
29 #include "wx/cursor.h"
30 #include "wx/dialog.h"
31 #include "wx/msgdlg.h"
32 #include "wx/textctrl.h"
33 #include "wx/memory.h"
34 #include "wx/gdicmn.h"
35 #include "wx/module.h"
38 #include "wx/tooltip.h"
39 #include "wx/docview.h"
40 #include "wx/filename.h"
42 #include "wx/thread.h"
43 #include "wx/evtloop.h"
49 #include "wx/osx/uma.h"
51 #include "wx/osx/private.h"
54 #if defined(WXMAKINGDLL_CORE)
55 # include <mach-o/dyld.h>
58 // Keep linker from discarding wxStockGDIMac
59 wxFORCE_LINK_MODULE(gdiobj
)
61 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
62 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
63 EVT_IDLE(wxApp::OnIdle
)
64 EVT_END_SESSION(wxApp::OnEndSession
)
65 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
69 // platform specific static variables
70 static const short kwxMacAppleMenuId
= 1 ;
72 wxWindow
* wxApp::s_captureWindow
= NULL
;
73 long wxApp::s_lastModifiers
= 0 ;
75 long wxApp::s_macAboutMenuItemId
= wxID_ABOUT
;
76 long wxApp::s_macPreferencesMenuItemId
= wxID_PREFERENCES
;
77 long wxApp::s_macExitMenuItemId
= wxID_EXIT
;
78 wxString
wxApp::s_macHelpMenuTitleName
= wxT("&Help") ;
80 bool wxApp::sm_isEmbedded
= false; // Normally we're not a plugin
84 //----------------------------------------------------------------------
85 // Core Apple Event Support
86 //----------------------------------------------------------------------
88 AEEventHandlerUPP sODocHandler
= NULL
;
89 AEEventHandlerUPP sGURLHandler
= NULL
;
90 AEEventHandlerUPP sOAppHandler
= NULL
;
91 AEEventHandlerUPP sPDocHandler
= NULL
;
92 AEEventHandlerUPP sRAppHandler
= NULL
;
93 AEEventHandlerUPP sQuitHandler
= NULL
;
95 pascal OSErr
AEHandleODoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
96 pascal OSErr
AEHandleOApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
97 pascal OSErr
AEHandlePDoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
98 pascal OSErr
AEHandleQuit( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
99 pascal OSErr
AEHandleRApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
100 pascal OSErr
AEHandleGURL( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
102 pascal OSErr
AEHandleODoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
104 return wxTheApp
->MacHandleAEODoc( (AppleEvent
*) event
, reply
) ;
107 pascal OSErr
AEHandleOApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
109 return wxTheApp
->MacHandleAEOApp( (AppleEvent
*) event
, reply
) ;
112 pascal OSErr
AEHandlePDoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
114 return wxTheApp
->MacHandleAEPDoc( (AppleEvent
*) event
, reply
) ;
117 pascal OSErr
AEHandleQuit( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
119 return wxTheApp
->MacHandleAEQuit( (AppleEvent
*) event
, reply
) ;
122 pascal OSErr
AEHandleRApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
124 return wxTheApp
->MacHandleAERApp( (AppleEvent
*) event
, reply
) ;
127 pascal OSErr
AEHandleGURL( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
129 return wxTheApp
->MacHandleAEGURL((WXEVENTREF
*)event
, reply
) ;
133 // AEODoc Calls MacOpenFile on each of the files passed
135 short wxApp::MacHandleAEODoc(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
139 DescType returnedType
;
145 err
= AEGetParamDesc((AppleEvent
*)event
, keyDirectObject
, typeAEList
,&docList
);
149 err
= AECountItems(&docList
, &itemsInList
);
153 ProcessSerialNumber PSN
;
154 PSN
.highLongOfPSN
= 0 ;
155 PSN
.lowLongOfPSN
= kCurrentProcess
;
156 SetFrontProcess( &PSN
) ;
161 for (i
= 1; i
<= itemsInList
; i
++)
164 &docList
, i
, typeFSRef
, &keywd
, &returnedType
,
165 (Ptr
)&theRef
, sizeof(theRef
), &actualSize
);
166 fName
= wxMacFSRefToPath( &theRef
) ;
174 // AEODoc Calls MacOpenURL on the url passed
176 short wxApp::MacHandleAEGURL(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
178 DescType returnedType
;
181 OSErr err
= AEGetParamPtr((AppleEvent
*)event
, keyDirectObject
, typeChar
,
182 &returnedType
, url
, sizeof(url
)-1,
187 url
[actualSize
] = '\0'; // Terminate the C string
189 ProcessSerialNumber PSN
;
190 PSN
.highLongOfPSN
= 0 ;
191 PSN
.lowLongOfPSN
= kCurrentProcess
;
192 SetFrontProcess( &PSN
) ;
194 MacOpenURL(wxString(url
, wxConvUTF8
));
199 // AEPDoc Calls MacPrintFile on each of the files passed
201 short wxApp::MacHandleAEPDoc(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
205 DescType returnedType
;
211 err
= AEGetParamDesc((AppleEvent
*)event
, keyDirectObject
, typeAEList
,&docList
);
215 err
= AECountItems(&docList
, &itemsInList
);
219 ProcessSerialNumber PSN
;
220 PSN
.highLongOfPSN
= 0 ;
221 PSN
.lowLongOfPSN
= kCurrentProcess
;
222 SetFrontProcess( &PSN
) ;
227 for (i
= 1; i
<= itemsInList
; i
++)
230 &docList
, i
, typeFSRef
, &keywd
, &returnedType
,
231 (Ptr
)&theRef
, sizeof(theRef
), &actualSize
);
232 fName
= wxMacFSRefToPath( &theRef
) ;
240 // AEOApp calls MacNewFile
242 short wxApp::MacHandleAEOApp(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
248 // AEQuit attempts to quit the application
250 short wxApp::MacHandleAEQuit(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
253 wxTheApp
->OnQueryEndSession(event
);
254 if ( !event
.GetVeto() )
257 wxTheApp
->OnEndSession(event
);
262 // AEROApp calls MacReopenApp
264 short wxApp::MacHandleAERApp(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
273 //----------------------------------------------------------------------
274 // Support Routines linking the Mac...File Calls to the Document Manager
275 //----------------------------------------------------------------------
277 void wxApp::MacOpenFile(const wxString
& fileName
)
279 #if wxUSE_DOC_VIEW_ARCHITECTURE
280 wxDocManager
* dm
= wxDocManager::GetDocumentManager() ;
282 dm
->CreateDocument(fileName
, wxDOC_SILENT
) ;
286 void wxApp::MacOpenURL(const wxString
& WXUNUSED(url
) )
290 void wxApp::MacPrintFile(const wxString
& fileName
)
292 #if wxUSE_DOC_VIEW_ARCHITECTURE
294 #if wxUSE_PRINTING_ARCHITECTURE
295 wxDocManager
* dm
= wxDocManager::GetDocumentManager() ;
298 wxDocument
*doc
= dm
->CreateDocument(fileName
, wxDOC_SILENT
) ;
301 wxView
* view
= doc
->GetFirstView() ;
304 wxPrintout
*printout
= view
->OnCreatePrintout();
308 printer
.Print(view
->GetFrame(), printout
, true);
315 doc
->DeleteAllViews();
316 dm
->RemoveDocument(doc
) ;
327 void wxApp::MacNewFile()
331 void wxApp::MacReopenApp()
334 // if there is no open window -> create a new one
335 // if all windows are hidden -> show the first
336 // if some windows are not hidden -> do nothing
338 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
345 wxTopLevelWindow
* firstIconized
= NULL
;
346 wxTopLevelWindow
* firstHidden
= NULL
;
349 wxTopLevelWindow
* win
= (wxTopLevelWindow
*) node
->GetData();
350 if ( !win
->IsShown() )
352 // make sure we don't show 'virtual toplevel windows' like wxTaskBarIconWindow
353 if ( firstHidden
== NULL
&& ( wxDynamicCast( win
, wxFrame
) || wxDynamicCast( win
, wxDialog
) ) )
356 else if ( win
->IsIconized() )
358 if ( firstIconized
== NULL
)
359 firstIconized
= win
;
363 // we do have a visible, non-iconized toplevelwindow -> do nothing
367 node
= node
->GetNext();
371 firstIconized
->Iconize( false ) ;
372 else if ( firstHidden
)
373 firstHidden
->Show( true );
377 //----------------------------------------------------------------------
378 // Macintosh CommandID support - converting between native and wx IDs
379 //----------------------------------------------------------------------
381 // if no native match they just return the passed-in id
391 IdPair gCommandIds
[] =
393 { kHICommandCut
, wxID_CUT
} ,
394 { kHICommandCopy
, wxID_COPY
} ,
395 { kHICommandPaste
, wxID_PASTE
} ,
396 { kHICommandSelectAll
, wxID_SELECTALL
} ,
397 { kHICommandClear
, wxID_CLEAR
} ,
398 { kHICommandUndo
, wxID_UNDO
} ,
399 { kHICommandRedo
, wxID_REDO
} ,
402 int wxMacCommandToId( UInt32 macCommandId
)
406 switch ( macCommandId
)
408 case kHICommandPreferences
:
409 wxid
= wxApp::s_macPreferencesMenuItemId
;
412 case kHICommandQuit
:
413 wxid
= wxApp::s_macExitMenuItemId
;
416 case kHICommandAbout
:
417 wxid
= wxApp::s_macAboutMenuItemId
;
422 for ( size_t i
= 0 ; i
< WXSIZEOF(gCommandIds
) ; ++i
)
424 if ( gCommandIds
[i
].macId
== macCommandId
)
426 wxid
= gCommandIds
[i
].wxId
;
435 wxid
= (int) macCommandId
;
440 UInt32
wxIdToMacCommand( int wxId
)
444 if ( wxId
== wxApp::s_macPreferencesMenuItemId
)
445 macId
= kHICommandPreferences
;
446 else if (wxId
== wxApp::s_macExitMenuItemId
)
447 macId
= kHICommandQuit
;
448 else if (wxId
== wxApp::s_macAboutMenuItemId
)
449 macId
= kHICommandAbout
;
452 for ( size_t i
= 0 ; i
< WXSIZEOF(gCommandIds
) ; ++i
)
454 if ( gCommandIds
[i
].wxId
== wxId
)
456 macId
= gCommandIds
[i
].macId
;
468 wxMenu
* wxFindMenuFromMacCommand( const HICommand
&command
, wxMenuItem
* &item
)
470 wxMenu
* itemMenu
= NULL
;
471 #ifndef __WXUNIVERSAL__
474 // for 'standard' commands which don't have a wx-menu
475 if ( command
.commandID
== kHICommandPreferences
|| command
.commandID
== kHICommandQuit
|| command
.commandID
== kHICommandAbout
)
477 id
= wxMacCommandToId( command
.commandID
) ;
479 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
481 item
= mbar
->FindItem( id
, &itemMenu
) ;
483 else if ( command
.commandID
!= 0 && command
.menu
.menuRef
!= 0 && command
.menu
.menuItemIndex
!= 0 )
485 id
= wxMacCommandToId( command
.commandID
) ;
486 // make sure it is one of our own menus, or of the 'synthetic' apple and help menus , otherwise don't touch
487 MenuItemIndex firstUserHelpMenuItem
;
488 static MenuHandle helpMenuHandle
= NULL
;
489 if ( helpMenuHandle
== NULL
)
491 if ( UMAGetHelpMenuDontCreate( &helpMenuHandle
, &firstUserHelpMenuItem
) != noErr
)
492 helpMenuHandle
= NULL
;
495 // is it part of the application or the Help menu, then look for the id directly
496 if ( ( GetMenuHandle( kwxMacAppleMenuId
) != NULL
&& command
.menu
.menuRef
== GetMenuHandle( kwxMacAppleMenuId
) ) ||
497 ( helpMenuHandle
!= NULL
&& command
.menu
.menuRef
== helpMenuHandle
) ||
498 wxMenuBar::MacGetWindowMenuHMenu() != NULL
&& command
.menu
.menuRef
== wxMenuBar::MacGetWindowMenuHMenu() )
500 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
502 item
= mbar
->FindItem( id
, &itemMenu
) ;
508 GetMenuItemRefCon( command
.menu
.menuRef
, command
.menu
.menuItemIndex
, &refCon
) ;
509 itemMenu
= wxFindMenuFromMacMenu( command
.menu
.menuRef
) ;
510 if ( itemMenu
!= NULL
&& refCon
!= 0)
511 item
= (wxMenuItem
*) refCon
;
520 //----------------------------------------------------------------------
521 // Carbon Event Handler
522 //----------------------------------------------------------------------
526 static const EventTypeSpec eventList
[] =
528 { kEventClassCommand
, kEventProcessCommand
} ,
529 { kEventClassCommand
, kEventCommandUpdateStatus
} ,
531 { kEventClassMenu
, kEventMenuOpening
},
532 { kEventClassMenu
, kEventMenuClosed
},
533 { kEventClassMenu
, kEventMenuTargetItem
},
535 { kEventClassApplication
, kEventAppActivated
} ,
536 { kEventClassApplication
, kEventAppDeactivated
} ,
537 // handling the quit event is not recommended by apple
538 // rather using the quit apple event - which we do
540 { kEventClassAppleEvent
, kEventAppleEvent
} ,
542 { kEventClassMouse
, kEventMouseDown
} ,
543 { kEventClassMouse
, kEventMouseMoved
} ,
544 { kEventClassMouse
, kEventMouseUp
} ,
545 { kEventClassMouse
, kEventMouseDragged
} ,
549 static pascal OSStatus
550 wxMacAppMenuEventHandler( EventHandlerCallRef
WXUNUSED(handler
),
552 void *WXUNUSED(data
) )
554 wxMacCarbonEvent
cEvent( event
) ;
555 MenuRef menuRef
= cEvent
.GetParameter
<MenuRef
>(kEventParamDirectObject
) ;
556 #ifndef __WXUNIVERSAL__
557 wxMenu
* menu
= wxFindMenuFromMacMenu( menuRef
) ;
561 switch (GetEventKind(event
))
563 case kEventMenuOpening
:
564 menu
->HandleMenuOpened();
567 case kEventMenuClosed
:
568 menu
->HandleMenuClosed();
571 case kEventMenuTargetItem
:
575 command
.menu
.menuRef
= menuRef
;
576 command
.menu
.menuItemIndex
= cEvent
.GetParameter
<MenuItemIndex
>(kEventParamMenuItemIndex
,typeMenuItemIndex
) ;
577 command
.commandID
= cEvent
.GetParameter
<MenuCommand
>(kEventParamMenuCommand
,typeMenuCommand
) ;
578 if (command
.commandID
!= 0)
580 wxMenuItem
* item
= NULL
;
581 wxMenu
* itemMenu
= wxFindMenuFromMacCommand( command
, item
) ;
582 if ( itemMenu
&& item
)
583 itemMenu
->HandleMenuItemHighlighted( item
);
589 wxFAIL_MSG(wxT("Unexpected menu event kind"));
595 return eventNotHandledErr
;
598 static pascal OSStatus
599 wxMacAppCommandEventHandler( EventHandlerCallRef
WXUNUSED(handler
) ,
601 void *WXUNUSED(data
) )
603 OSStatus result
= eventNotHandledErr
;
607 wxMacCarbonEvent
cEvent( event
) ;
608 cEvent
.GetParameter
<HICommand
>(kEventParamDirectObject
,typeHICommand
,&command
) ;
610 wxMenuItem
* item
= NULL
;
611 wxMenu
* itemMenu
= wxFindMenuFromMacCommand( command
, item
) ;
615 wxASSERT( itemMenu
!= NULL
) ;
617 switch ( cEvent
.GetKind() )
619 case kEventProcessCommand
:
620 if ( itemMenu
->HandleCommandProcess( item
) )
624 case kEventCommandUpdateStatus
:
625 if ( itemMenu
->HandleCommandUpdateStatus( item
) )
636 static pascal OSStatus
637 wxMacAppApplicationEventHandler( EventHandlerCallRef
WXUNUSED(handler
) ,
639 void *WXUNUSED(data
) )
641 OSStatus result
= eventNotHandledErr
;
642 switch ( GetEventKind( event
) )
644 case kEventAppActivated
:
646 wxTheApp
->SetActive( true , NULL
) ;
650 case kEventAppDeactivated
:
652 wxTheApp
->SetActive( false , NULL
) ;
663 pascal OSStatus
wxMacAppEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
665 EventRef formerEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
666 EventHandlerCallRef formerEventHandlerCallRef
= (EventHandlerCallRef
) wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
667 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
669 OSStatus result
= eventNotHandledErr
;
670 switch ( GetEventClass( event
) )
673 case kEventClassCommand
:
674 result
= wxMacAppCommandEventHandler( handler
, event
, data
) ;
677 case kEventClassApplication
:
678 result
= wxMacAppApplicationEventHandler( handler
, event
, data
) ;
681 case kEventClassMenu
:
682 result
= wxMacAppMenuEventHandler( handler
, event
, data
) ;
685 case kEventClassMouse
:
687 wxMacCarbonEvent
cEvent( event
) ;
690 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
691 ::FindWindow(screenMouseLocation
, &window
);
692 // only send this event in case it had not already been sent to a tlw, as we get
693 // double events otherwise (in case event.skip) was called
694 if ( window
== NULL
)
695 result
= wxMacTopLevelMouseEventHandler( handler
, event
, NULL
) ;
699 case kEventClassAppleEvent
:
701 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
702 if ( AEProcessEvent
!= NULL
)
704 result
= AEProcessEvent(event
);
707 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
711 wxMacConvertEventToRecord( event
, &rec
) ;
712 result
= AEProcessAppleEvent( &rec
) ;
722 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerEventHandlerCallRef
) ;
727 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacAppEventHandler
)
730 #if wxDEBUG_LEVEL && wxOSX_USE_COCOA_OR_CARBON
733 wxMacAssertOutputHandler(OSType
WXUNUSED(componentSignature
),
734 UInt32
WXUNUSED(options
),
735 const char *assertionString
,
736 const char *exceptionLabelString
,
737 const char *errorString
,
738 const char *fileName
,
741 ConstStr255Param
WXUNUSED(outputMsg
))
743 // flow into assert handling
744 wxString fileNameStr
;
745 wxString assertionStr
;
746 wxString exceptionStr
;
750 fileNameStr
= wxString(fileName
, wxConvLocal
);
751 assertionStr
= wxString(assertionString
, wxConvLocal
);
752 exceptionStr
= wxString((exceptionLabelString
!=0) ? exceptionLabelString
: "", wxConvLocal
) ;
753 errorStr
= wxString((errorString
!=0) ? errorString
: "", wxConvLocal
) ;
755 fileNameStr
= fileName
;
756 assertionStr
= assertionString
;
757 exceptionStr
= (exceptionLabelString
!=0) ? exceptionLabelString
: "" ;
758 errorStr
= (errorString
!=0) ? errorString
: "" ;
763 wxLogDebug( wxT("AssertMacros: %s %s %s file: %s, line: %ld (value %p)\n"),
764 assertionStr
.c_str() ,
765 exceptionStr
.c_str() ,
767 fileNameStr
.c_str(), lineNumber
,
771 wxOnAssert(fileNameStr
, lineNumber
, assertionStr
,
772 wxString::Format( wxT("%s %s value (%p)") , exceptionStr
, errorStr
, value
) ) ;
776 #endif // wxDEBUG_LEVEL
778 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
782 #if wxDEBUG_LEVEL && wxOSX_USE_COCOA_OR_CARBON
783 InstallDebugAssertOutputHandler( NewDebugAssertOutputHandlerUPP( wxMacAssertOutputHandler
) );
786 // Mac OS X passes a process serial number command line argument when
787 // the application is launched from the Finder. This argument must be
788 // removed from the command line arguments before being handled by the
789 // application (otherwise applications would need to handle it)
792 static const wxChar
*ARG_PSN
= wxT("-psn_");
793 if ( wxStrncmp(argv
[1], ARG_PSN
, wxStrlen(ARG_PSN
)) == 0 )
795 // remove this argument
797 memmove(argv
+ 1, argv
+ 2, argc
* sizeof(char *));
801 if ( !wxAppBase::Initialize(argc
, argv
) )
805 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
808 // these might be the startup dirs, set them to the 'usual' dir containing the app bundle
809 wxString startupCwd
= wxGetCwd() ;
810 if ( startupCwd
== wxT("/") || startupCwd
.Right(15) == wxT("/Contents/MacOS") )
812 CFURLRef url
= CFBundleCopyBundleURL(CFBundleGetMainBundle() ) ;
813 CFURLRef urlParent
= CFURLCreateCopyDeletingLastPathComponent( kCFAllocatorDefault
, url
) ;
815 CFStringRef path
= CFURLCopyFileSystemPath ( urlParent
, kCFURLPOSIXPathStyle
) ;
816 CFRelease( urlParent
) ;
817 wxString cwd
= wxCFStringRef(path
).AsString(wxLocale::GetSystemEncoding());
818 wxSetWorkingDirectory( cwd
) ;
824 #if wxOSX_USE_COCOA_OR_CARBON
825 bool wxApp::CallOnInit()
827 wxMacAutoreleasePool autoreleasepool
;
832 bool wxApp::OnInitGui()
834 if ( !wxAppBase::OnInitGui() )
843 bool wxApp::ProcessIdle()
845 wxMacAutoreleasePool autoreleasepool
;
846 return wxAppBase::ProcessIdle();
851 wxMacAutoreleasePool pool
;
852 return wxAppBase::OnRun();
856 bool wxApp::DoInitGui()
858 InstallStandardEventHandler( GetApplicationEventTarget() ) ;
861 InstallApplicationEventHandler(
862 GetwxMacAppEventHandlerUPP(),
863 GetEventTypeCount(eventList
), eventList
, wxTheApp
, (EventHandlerRef
*)&(wxTheApp
->m_macEventHandler
));
868 sODocHandler
= NewAEEventHandlerUPP(AEHandleODoc
) ;
869 sGURLHandler
= NewAEEventHandlerUPP(AEHandleGURL
) ;
870 sOAppHandler
= NewAEEventHandlerUPP(AEHandleOApp
) ;
871 sPDocHandler
= NewAEEventHandlerUPP(AEHandlePDoc
) ;
872 sRAppHandler
= NewAEEventHandlerUPP(AEHandleRApp
) ;
873 sQuitHandler
= NewAEEventHandlerUPP(AEHandleQuit
) ;
875 AEInstallEventHandler( kCoreEventClass
, kAEOpenDocuments
,
876 sODocHandler
, 0 , FALSE
) ;
877 AEInstallEventHandler( kInternetEventClass
, kAEGetURL
,
878 sGURLHandler
, 0 , FALSE
) ;
879 AEInstallEventHandler( kCoreEventClass
, kAEOpenApplication
,
880 sOAppHandler
, 0 , FALSE
) ;
881 AEInstallEventHandler( kCoreEventClass
, kAEPrintDocuments
,
882 sPDocHandler
, 0 , FALSE
) ;
883 AEInstallEventHandler( kCoreEventClass
, kAEReopenApplication
,
884 sRAppHandler
, 0 , FALSE
) ;
885 AEInstallEventHandler( kCoreEventClass
, kAEQuitApplication
,
886 sQuitHandler
, 0 , FALSE
) ;
889 if ( !wxMacInitCocoa() )
895 void wxApp::DoCleanUp()
898 RemoveEventHandler( (EventHandlerRef
)(wxTheApp
->m_macEventHandler
) );
902 AERemoveEventHandler( kCoreEventClass
, kAEOpenDocuments
,
903 sODocHandler
, FALSE
) ;
904 AERemoveEventHandler( kInternetEventClass
, kAEGetURL
,
905 sGURLHandler
, FALSE
) ;
906 AERemoveEventHandler( kCoreEventClass
, kAEOpenApplication
,
907 sOAppHandler
, FALSE
) ;
908 AERemoveEventHandler( kCoreEventClass
, kAEPrintDocuments
,
909 sPDocHandler
, FALSE
) ;
910 AERemoveEventHandler( kCoreEventClass
, kAEReopenApplication
,
911 sRAppHandler
, FALSE
) ;
912 AERemoveEventHandler( kCoreEventClass
, kAEQuitApplication
,
913 sQuitHandler
, FALSE
) ;
915 DisposeAEEventHandlerUPP( sODocHandler
) ;
916 DisposeAEEventHandlerUPP( sGURLHandler
) ;
917 DisposeAEEventHandlerUPP( sOAppHandler
) ;
918 DisposeAEEventHandlerUPP( sPDocHandler
) ;
919 DisposeAEEventHandlerUPP( sRAppHandler
) ;
920 DisposeAEEventHandlerUPP( sQuitHandler
) ;
926 void wxApp::CleanUp()
928 wxMacAutoreleasePool autoreleasepool
;
930 wxToolTip::RemoveToolTips() ;
935 wxAppBase::CleanUp();
938 //----------------------------------------------------------------------
939 // misc initialization stuff
940 //----------------------------------------------------------------------
942 #if wxOSX_USE_CARBON && MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
943 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
)
945 OSStatus err
= noErr
;
946 bool converted
= ConvertEventRefToEventRecord( event
, rec
) ;
950 switch ( GetEventClass( event
) )
952 case kEventClassKeyboard
:
955 switch ( GetEventKind(event
) )
957 case kEventRawKeyDown
:
958 rec
->what
= keyDown
;
961 case kEventRawKeyRepeat
:
962 rec
->what
= autoKey
;
965 case kEventRawKeyUp
:
969 case kEventRawKeyModifiersChanged
:
970 rec
->what
= nullEvent
;
981 unsigned char charCode
;
983 GetMouse( &rec
->where
) ;
984 err
= GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
985 err
= GetEventParameter(event
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
986 err
= GetEventParameter(event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
987 rec
->modifiers
= modifiers
;
988 rec
->message
= (keyCode
<< 8 ) + charCode
;
993 case kEventClassTextInput
:
995 switch ( GetEventKind( event
) )
997 case kEventTextInputUnicodeForKeyEvent
:
1000 err
= GetEventParameter(
1001 event
, kEventParamTextInputSendKeyboardEvent
, typeEventRef
, NULL
,
1002 sizeof(rawEvent
), NULL
, &rawEvent
) ;
1006 UInt32 keyCode
, modifiers
;
1007 unsigned char charCode
;
1008 GetMouse( &rec
->where
) ;
1009 rec
->what
= keyDown
;
1010 err
= GetEventParameter(rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
1011 err
= GetEventParameter(rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
1012 err
= GetEventParameter(rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
1013 rec
->modifiers
= modifiers
;
1014 rec
->message
= (keyCode
<< 8 ) + charCode
;
1036 m_printMode
= wxPRINT_WINDOWS
;
1038 m_macCurrentEvent
= NULL
;
1039 m_macCurrentEventHandlerCallRef
= NULL
;
1040 m_macPool
= new wxMacAutoreleasePool();
1049 CFMutableArrayRef
GetAutoReleaseArray()
1051 static CFMutableArrayRef array
= 0;
1053 array
= CFArrayCreateMutable(kCFAllocatorDefault
,0,&kCFTypeArrayCallBacks
);
1057 void wxApp::MacAddToAutorelease( void* cfrefobj
)
1059 CFArrayAppendValue( GetAutoReleaseArray(), cfrefobj
);
1062 void wxApp::MacReleaseAutoreleasePool()
1066 m_macPool
= new wxMacAutoreleasePool();
1069 void wxApp::OnIdle(wxIdleEvent
& WXUNUSED(event
))
1071 // If they are pending events, we must process them: pending events are
1072 // either events to the threads other than main or events posted with
1073 // wxPostEvent() functions
1074 #ifndef __WXUNIVERSAL__
1076 if (!wxMenuBar::MacGetInstalledMenuBar() && wxMenuBar::MacGetCommonMenuBar())
1077 wxMenuBar::MacGetCommonMenuBar()->MacInstallMenuBar();
1080 CFArrayRemoveAllValues( GetAutoReleaseArray() );
1083 void wxApp::WakeUpIdle()
1085 wxEventLoopBase
* const loop
= wxEventLoopBase::GetActive();
1091 void wxApp::OnEndSession(wxCloseEvent
& WXUNUSED(event
))
1094 GetTopWindow()->Close(true);
1097 // Default behaviour: close the application with prompts. The
1098 // user can veto the close, and therefore the end session.
1099 void wxApp::OnQueryEndSession(wxCloseEvent
& event
)
1101 if ( !wxDialog::OSXHasModalDialogsOpen() )
1105 if (!GetTopWindow()->Close(!event
.CanVeto()))
1115 extern "C" void wxCYield() ;
1122 void wxApp::MacHandleUnhandledEvent( WXEVENTREF
WXUNUSED(evr
) )
1124 // Override to process unhandled events as you please
1127 #if wxOSX_USE_CARBON
1129 long wxMacTranslateKey(unsigned char key
, unsigned char code
)
1134 case kHomeCharCode
:
1138 case kEnterCharCode
:
1139 retval
= WXK_RETURN
;
1145 case kHelpCharCode
:
1149 case kBackspaceCharCode
:
1157 case kPageUpCharCode
:
1158 retval
= WXK_PAGEUP
;
1161 case kPageDownCharCode
:
1162 retval
= WXK_PAGEDOWN
;
1165 case kReturnCharCode
:
1166 retval
= WXK_RETURN
;
1169 case kFunctionKeyCharCode
:
1239 case kEscapeCharCode
:
1240 retval
= WXK_ESCAPE
;
1243 case kLeftArrowCharCode
:
1247 case kRightArrowCharCode
:
1248 retval
= WXK_RIGHT
;
1251 case kUpArrowCharCode
:
1255 case kDownArrowCharCode
:
1259 case kDeleteCharCode
:
1260 retval
= WXK_DELETE
;
1270 int wxMacKeyCodeToModifier(wxKeyCode key
)
1296 #if wxOSX_USE_COCOA && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6
1298 // defined in utils.mm
1300 #elif wxOSX_USE_COCOA_OR_CARBON
1302 wxMouseState
wxGetMouseState()
1306 wxPoint pt
= wxGetMousePosition();
1310 UInt32 buttons
= GetCurrentButtonState();
1311 ms
.SetLeftDown( (buttons
& 0x01) != 0 );
1312 ms
.SetMiddleDown( (buttons
& 0x04) != 0 );
1313 ms
.SetRightDown( (buttons
& 0x02) != 0 );
1315 UInt32 modifiers
= GetCurrentKeyModifiers();
1316 ms
.SetControlDown(modifiers
& controlKey
);
1317 ms
.SetShiftDown(modifiers
& shiftKey
);
1318 ms
.SetAltDown(modifiers
& optionKey
);
1319 ms
.SetMetaDown(modifiers
& cmdKey
);
1326 // TODO : once the new key/char handling is tested, move all the code to wxWindow
1328 bool wxApp::MacSendKeyDownEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1333 wxKeyEvent
event(wxEVT_KEY_DOWN
) ;
1334 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1336 return focus
->OSXHandleKeyEvent(event
);
1339 bool wxApp::MacSendKeyUpEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1344 wxKeyEvent
event( wxEVT_KEY_UP
) ;
1345 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1347 return focus
->OSXHandleKeyEvent(event
) ;
1350 bool wxApp::MacSendCharEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1354 wxKeyEvent
event(wxEVT_CHAR
) ;
1355 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1357 bool handled
= false ;
1359 #if wxOSX_USE_CARBON
1360 long keyval
= event
.m_keyCode
;
1361 wxNonOwnedWindow
*tlw
= focus
->MacGetTopLevelWindow() ;
1365 event
.SetEventType( wxEVT_CHAR_HOOK
);
1366 handled
= tlw
->HandleWindowEvent( event
);
1367 if ( handled
&& event
.GetSkipped() )
1373 event
.SetEventType( wxEVT_CHAR
);
1374 event
.Skip( false ) ;
1375 handled
= focus
->HandleWindowEvent( event
) ;
1378 if ( !handled
&& (keyval
== WXK_TAB
) )
1380 wxWindow
* iter
= focus
->GetParent() ;
1381 while ( iter
&& !handled
)
1383 if ( iter
->HasFlag( wxTAB_TRAVERSAL
) )
1385 wxNavigationKeyEvent new_event
;
1386 new_event
.SetEventObject( focus
);
1387 new_event
.SetDirection( !event
.ShiftDown() );
1388 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1389 new_event
.SetWindowChange( event
.ControlDown() );
1390 new_event
.SetCurrentFocus( focus
);
1391 handled
= focus
->GetParent()->HandleWindowEvent( new_event
);
1392 if ( handled
&& new_event
.GetSkipped() )
1396 iter
= iter
->GetParent() ;
1400 // backdoor handler for default return and command escape
1401 if ( !handled
&& (!focus
->IsKindOf(CLASSINFO(wxControl
) ) || !focus
->AcceptsFocus() ) )
1403 // if window is not having a focus still testing for default enter or cancel
1404 // TODO: add the UMA version for ActiveNonFloatingWindow
1406 wxWindow
* focus
= wxNonOwnedWindow::GetFromWXWindow( (WXWindow
) FrontWindow() ) ;
1409 if ( keyval
== WXK_RETURN
|| keyval
== WXK_NUMPAD_ENTER
)
1411 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent(focus
), wxTopLevelWindow
);
1412 if ( tlw
&& tlw
->GetDefaultItem() )
1414 wxButton
*def
= wxDynamicCast(tlw
->GetDefaultItem(), wxButton
);
1415 if ( def
&& def
->IsEnabled() )
1417 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
1418 event
.SetEventObject(def
);
1419 def
->Command(event
);
1425 else if (keyval
== WXK_ESCAPE
|| (keyval
== '.' && modifiers
& cmdKey
) )
1427 // generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs)
1428 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
1429 new_event
.SetEventObject( focus
);
1430 handled
= focus
->HandleWindowEvent( new_event
);
1439 // This method handles common code for SendKeyDown, SendKeyUp, and SendChar events.
1440 void wxApp::MacCreateKeyEvent( wxKeyEvent
& event
, wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1442 #if wxOSX_USE_CARBON
1443 short keycode
, keychar
;
1445 keychar
= short(keymessage
& charCodeMask
);
1446 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1447 if ( !(event
.GetEventType() == wxEVT_CHAR
) && (modifiers
& (controlKey
| shiftKey
| optionKey
) ) )
1449 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1450 // and look at the character after
1452 // TODO new implementation using TextInputSources
1455 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
| shiftKey
| optionKey
))) | keycode
, &state
);
1456 keychar
= short(keyInfo
& charCodeMask
);
1460 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1461 if ( keyval
== keychar
&& ( event
.GetEventType() == wxEVT_KEY_UP
|| event
.GetEventType() == wxEVT_KEY_DOWN
) )
1462 keyval
= wxToupper( keyval
) ;
1464 // Check for NUMPAD keys. For KEY_UP/DOWN events we need to use the
1465 // WXK_NUMPAD constants, but for the CHAR event we want to use the
1466 // standard ascii values
1467 if ( event
.GetEventType() != wxEVT_CHAR
)
1469 if (keyval
>= '0' && keyval
<= '9' && keycode
>= 82 && keycode
<= 92)
1471 keyval
= (keyval
- '0') + WXK_NUMPAD0
;
1473 else if (keycode
>= 65 && keycode
<= 81)
1478 keyval
= WXK_NUMPAD_ENTER
;
1482 keyval
= WXK_NUMPAD_EQUAL
;
1486 keyval
= WXK_NUMPAD_MULTIPLY
;
1490 keyval
= WXK_NUMPAD_DIVIDE
;
1494 keyval
= WXK_NUMPAD_SUBTRACT
;
1498 keyval
= WXK_NUMPAD_ADD
;
1502 keyval
= WXK_NUMPAD_DECIMAL
;
1510 event
.m_shiftDown
= modifiers
& shiftKey
;
1511 event
.m_controlDown
= modifiers
& controlKey
;
1512 event
.m_altDown
= modifiers
& optionKey
;
1513 event
.m_metaDown
= modifiers
& cmdKey
;
1514 event
.m_keyCode
= keyval
;
1516 event
.m_uniChar
= uniChar
;
1519 event
.m_rawCode
= keymessage
;
1520 event
.m_rawFlags
= modifiers
;
1523 event
.SetTimestamp(when
);
1524 event
.SetEventObject(focus
);
1528 wxUnusedVar(keymessage
);
1529 wxUnusedVar(modifiers
);
1531 wxUnusedVar(wherex
);
1532 wxUnusedVar(wherey
);
1533 wxUnusedVar(uniChar
);
1538 void wxApp::MacHideApp()
1540 #if wxOSX_USE_CARBON
1541 wxMacCarbonEvent
event( kEventClassCommand
, kEventCommandProcess
);
1543 memset( &command
, 0 , sizeof(command
) );
1544 command
.commandID
= kHICommandHide
;
1545 event
.SetParameter
<HICommand
>(kEventParamDirectObject
, command
);
1546 SendEventToApplication( event
);