1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/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"
47 #include "wx/mac/uma.h"
50 # include <CoreServices/CoreServices.h>
51 # if defined(WXMAKINGDLL_CORE)
52 # include <mach-o/dyld.h>
56 // Keep linker from discarding wxStockGDIMac
57 wxFORCE_LINK_MODULE(gdiobj
)
59 // statics for implementation
60 static bool s_inYield
= false;
61 static bool s_inReceiveEvent
= false ;
62 static EventTime sleepTime
= kEventDurationNoWait
;
65 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
66 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
67 EVT_IDLE(wxApp::OnIdle
)
68 EVT_END_SESSION(wxApp::OnEndSession
)
69 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
73 // platform specific static variables
74 static const short kwxMacAppleMenuId
= 1 ;
76 wxWindow
* wxApp::s_captureWindow
= NULL
;
77 long wxApp::s_lastModifiers
= 0 ;
79 long wxApp::s_macAboutMenuItemId
= wxID_ABOUT
;
80 long wxApp::s_macPreferencesMenuItemId
= wxID_PREFERENCES
;
81 long wxApp::s_macExitMenuItemId
= wxID_EXIT
;
82 wxString
wxApp::s_macHelpMenuTitleName
= wxT("&Help") ;
84 bool wxApp::sm_isEmbedded
= false; // Normally we're not a plugin
86 //----------------------------------------------------------------------
87 // Core Apple Event Support
88 //----------------------------------------------------------------------
90 pascal OSErr
AEHandleODoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
91 pascal OSErr
AEHandleOApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
92 pascal OSErr
AEHandlePDoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
93 pascal OSErr
AEHandleQuit( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
94 pascal OSErr
AEHandleRApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon refcon
) ;
96 pascal OSErr
AEHandleODoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
98 return wxTheApp
->MacHandleAEODoc( (AppleEvent
*) event
, reply
) ;
101 pascal OSErr
AEHandleOApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
103 return wxTheApp
->MacHandleAEOApp( (AppleEvent
*) event
, reply
) ;
106 pascal OSErr
AEHandlePDoc( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
108 return wxTheApp
->MacHandleAEPDoc( (AppleEvent
*) event
, reply
) ;
111 pascal OSErr
AEHandleQuit( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
113 return wxTheApp
->MacHandleAEQuit( (AppleEvent
*) event
, reply
) ;
116 pascal OSErr
AEHandleRApp( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
118 return wxTheApp
->MacHandleAERApp( (AppleEvent
*) event
, reply
) ;
121 pascal OSErr
AEHandleGURL( const AppleEvent
*event
, AppleEvent
*reply
, SRefCon
WXUNUSED(refcon
) )
123 return wxTheApp
->MacHandleAEGURL((WXEVENTREF
*)event
, reply
) ;
127 // AEODoc Calls MacOpenFile on each of the files passed
129 short wxApp::MacHandleAEODoc(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
133 DescType returnedType
;
139 err
= AEGetParamDesc((AppleEvent
*)event
, keyDirectObject
, typeAEList
,&docList
);
143 err
= AECountItems(&docList
, &itemsInList
);
147 ProcessSerialNumber PSN
;
148 PSN
.highLongOfPSN
= 0 ;
149 PSN
.lowLongOfPSN
= kCurrentProcess
;
150 SetFrontProcess( &PSN
) ;
155 for (i
= 1; i
<= itemsInList
; i
++)
158 &docList
, i
, typeFSRef
, &keywd
, &returnedType
,
159 (Ptr
)&theRef
, sizeof(theRef
), &actualSize
);
160 fName
= wxMacFSRefToPath( &theRef
) ;
168 // AEODoc Calls MacOpenURL on the url passed
170 short wxApp::MacHandleAEGURL(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
172 DescType returnedType
;
175 OSErr err
= AEGetParamPtr((AppleEvent
*)event
, keyDirectObject
, typeChar
,
176 &returnedType
, url
, sizeof(url
)-1,
181 url
[actualSize
] = '\0'; // Terminate the C string
183 ProcessSerialNumber PSN
;
184 PSN
.highLongOfPSN
= 0 ;
185 PSN
.lowLongOfPSN
= kCurrentProcess
;
186 SetFrontProcess( &PSN
) ;
188 MacOpenURL(wxString(url
, wxConvUTF8
));
193 // AEPDoc Calls MacPrintFile on each of the files passed
195 short wxApp::MacHandleAEPDoc(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
199 DescType returnedType
;
205 err
= AEGetParamDesc((AppleEvent
*)event
, keyDirectObject
, typeAEList
,&docList
);
209 err
= AECountItems(&docList
, &itemsInList
);
213 ProcessSerialNumber PSN
;
214 PSN
.highLongOfPSN
= 0 ;
215 PSN
.lowLongOfPSN
= kCurrentProcess
;
216 SetFrontProcess( &PSN
) ;
221 for (i
= 1; i
<= itemsInList
; i
++)
224 &docList
, i
, typeFSRef
, &keywd
, &returnedType
,
225 (Ptr
)&theRef
, sizeof(theRef
), &actualSize
);
226 fName
= wxMacFSRefToPath( &theRef
) ;
234 // AEOApp calls MacNewFile
236 short wxApp::MacHandleAEOApp(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
242 // AEQuit attempts to quit the application
244 short wxApp::MacHandleAEQuit(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
246 wxWindow
* win
= GetTopWindow() ;
249 wxCommandEvent
exitEvent(wxEVT_COMMAND_MENU_SELECTED
, s_macExitMenuItemId
);
250 if (!win
->ProcessEvent(exitEvent
))
261 // AEROApp calls MacReopenApp
263 short wxApp::MacHandleAERApp(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
270 //----------------------------------------------------------------------
271 // Support Routines linking the Mac...File Calls to the Document Manager
272 //----------------------------------------------------------------------
274 void wxApp::MacOpenFile(const wxString
& fileName
)
276 #if wxUSE_DOC_VIEW_ARCHITECTURE
277 wxDocManager
* dm
= wxDocManager::GetDocumentManager() ;
279 dm
->CreateDocument(fileName
, wxDOC_SILENT
) ;
283 void wxApp::MacOpenURL(const wxString
& WXUNUSED(url
) )
287 void wxApp::MacPrintFile(const wxString
& fileName
)
289 #if wxUSE_DOC_VIEW_ARCHITECTURE
291 #if wxUSE_PRINTING_ARCHITECTURE
292 wxDocManager
* dm
= wxDocManager::GetDocumentManager() ;
295 wxDocument
*doc
= dm
->CreateDocument(fileName
, wxDOC_SILENT
) ;
298 wxView
* view
= doc
->GetFirstView() ;
301 wxPrintout
*printout
= view
->OnCreatePrintout();
305 printer
.Print(view
->GetFrame(), printout
, true);
312 doc
->DeleteAllViews();
313 dm
->RemoveDocument(doc
) ;
324 void wxApp::MacNewFile()
328 void wxApp::MacReopenApp()
331 // if there is no open window -> create a new one
332 // if all windows are hidden -> show the first
333 // if some windows are not hidden -> do nothing
335 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
342 wxTopLevelWindow
* firstIconized
= NULL
;
343 wxTopLevelWindow
* firstHidden
= NULL
;
346 wxTopLevelWindow
* win
= (wxTopLevelWindow
*) node
->GetData();
347 if ( !win
->IsShown() )
349 // make sure we don't show 'virtual toplevel windows' like wxTaskBarIconWindow
350 if ( firstHidden
== NULL
&& ( wxDynamicCast( win
, wxFrame
) || wxDynamicCast( win
, wxDialog
) ) )
353 else if ( win
->IsIconized() )
355 if ( firstIconized
== NULL
)
356 firstIconized
= win
;
360 // we do have a visible, non-iconized toplevelwindow -> do nothing
364 node
= node
->GetNext();
368 firstIconized
->Iconize( false ) ;
369 else if ( firstHidden
)
370 firstHidden
->Show( true );
374 //----------------------------------------------------------------------
375 // Macintosh CommandID support - converting between native and wx IDs
376 //----------------------------------------------------------------------
378 // if no native match they just return the passed-in id
386 IdPair gCommandIds
[] =
388 { kHICommandCut
, wxID_CUT
} ,
389 { kHICommandCopy
, wxID_COPY
} ,
390 { kHICommandPaste
, wxID_PASTE
} ,
391 { kHICommandSelectAll
, wxID_SELECTALL
} ,
392 { kHICommandClear
, wxID_CLEAR
} ,
393 { kHICommandUndo
, wxID_UNDO
} ,
394 { kHICommandRedo
, wxID_REDO
} ,
397 int wxMacCommandToId( UInt32 macCommandId
)
401 switch ( macCommandId
)
403 case kHICommandPreferences
:
404 wxid
= wxApp::s_macPreferencesMenuItemId
;
407 case kHICommandQuit
:
408 wxid
= wxApp::s_macExitMenuItemId
;
411 case kHICommandAbout
:
412 wxid
= wxApp::s_macAboutMenuItemId
;
417 for ( size_t i
= 0 ; i
< WXSIZEOF(gCommandIds
) ; ++i
)
419 if ( gCommandIds
[i
].macId
== macCommandId
)
421 wxid
= gCommandIds
[i
].wxId
;
430 wxid
= (int) macCommandId
;
435 UInt32
wxIdToMacCommand( int wxId
)
439 if ( wxId
== wxApp::s_macPreferencesMenuItemId
)
440 macId
= kHICommandPreferences
;
441 else if (wxId
== wxApp::s_macExitMenuItemId
)
442 macId
= kHICommandQuit
;
443 else if (wxId
== wxApp::s_macAboutMenuItemId
)
444 macId
= kHICommandAbout
;
447 for ( size_t i
= 0 ; i
< WXSIZEOF(gCommandIds
) ; ++i
)
449 if ( gCommandIds
[i
].wxId
== wxId
)
451 macId
= gCommandIds
[i
].macId
;
463 wxMenu
* wxFindMenuFromMacCommand( const HICommand
&command
, wxMenuItem
* &item
)
465 wxMenu
* itemMenu
= NULL
;
466 #ifndef __WXUNIVERSAL__
469 // for 'standard' commands which don't have a wx-menu
470 if ( command
.commandID
== kHICommandPreferences
|| command
.commandID
== kHICommandQuit
|| command
.commandID
== kHICommandAbout
)
472 id
= wxMacCommandToId( command
.commandID
) ;
474 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
476 item
= mbar
->FindItem( id
, &itemMenu
) ;
478 else if ( command
.commandID
!= 0 && command
.menu
.menuRef
!= 0 && command
.menu
.menuItemIndex
!= 0 )
480 id
= wxMacCommandToId( command
.commandID
) ;
481 // make sure it is one of our own menus, or of the 'synthetic' apple and help menus , otherwise don't touch
482 MenuItemIndex firstUserHelpMenuItem
;
483 static MenuHandle helpMenuHandle
= NULL
;
484 if ( helpMenuHandle
== NULL
)
486 if ( UMAGetHelpMenuDontCreate( &helpMenuHandle
, &firstUserHelpMenuItem
) != noErr
)
487 helpMenuHandle
= NULL
;
490 // is it part of the application or the Help menu, then look for the id directly
491 if ( ( GetMenuHandle( kwxMacAppleMenuId
) != NULL
&& command
.menu
.menuRef
== GetMenuHandle( kwxMacAppleMenuId
) ) ||
492 ( helpMenuHandle
!= NULL
&& command
.menu
.menuRef
== helpMenuHandle
) ||
493 wxMenuBar::MacGetWindowMenuHMenu() != NULL
&& command
.menu
.menuRef
== wxMenuBar::MacGetWindowMenuHMenu() )
495 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
497 item
= mbar
->FindItem( id
, &itemMenu
) ;
503 GetMenuItemRefCon( command
.menu
.menuRef
, command
.menu
.menuItemIndex
, &refCon
) ;
504 itemMenu
= wxFindMenuFromMacMenu( command
.menu
.menuRef
) ;
505 if ( itemMenu
!= NULL
)
506 item
= (wxMenuItem
*) refCon
;
513 //----------------------------------------------------------------------
514 // Carbon Event Handler
515 //----------------------------------------------------------------------
517 static const EventTypeSpec eventList
[] =
519 { kEventClassCommand
, kEventProcessCommand
} ,
520 { kEventClassCommand
, kEventCommandUpdateStatus
} ,
522 { kEventClassMenu
, kEventMenuOpening
},
523 { kEventClassMenu
, kEventMenuClosed
},
524 { kEventClassMenu
, kEventMenuTargetItem
},
526 { kEventClassApplication
, kEventAppActivated
} ,
527 { kEventClassApplication
, kEventAppDeactivated
} ,
528 // handling the quit event is not recommended by apple
529 // rather using the quit apple event - which we do
531 { kEventClassAppleEvent
, kEventAppleEvent
} ,
533 { kEventClassMouse
, kEventMouseDown
} ,
534 { kEventClassMouse
, kEventMouseMoved
} ,
535 { kEventClassMouse
, kEventMouseUp
} ,
536 { kEventClassMouse
, kEventMouseDragged
} ,
540 static pascal OSStatus
541 wxMacAppMenuEventHandler( EventHandlerCallRef
WXUNUSED(handler
),
543 void *WXUNUSED(data
) )
545 wxMacCarbonEvent
cEvent( event
) ;
546 MenuRef menuRef
= cEvent
.GetParameter
<MenuRef
>(kEventParamDirectObject
) ;
547 #ifndef __WXUNIVERSAL__
548 wxMenu
* menu
= wxFindMenuFromMacMenu( menuRef
) ;
554 switch (GetEventKind(event
))
556 case kEventMenuOpening
:
557 type
= wxEVT_MENU_OPEN
;
560 case kEventMenuClosed
:
561 type
= wxEVT_MENU_CLOSE
;
564 case kEventMenuTargetItem
:
565 cmd
= cEvent
.GetParameter
<MenuCommand
>(kEventParamMenuCommand
,typeMenuCommand
) ;
567 type
= wxEVT_MENU_HIGHLIGHT
;
571 wxFAIL_MSG(wxT("Unexpected menu event kind"));
577 wxMenuEvent
wxevent(type
, cmd
, menu
);
578 wxevent
.SetEventObject(menu
);
580 wxEvtHandler
* handler
= menu
->GetEventHandler();
581 if (handler
&& handler
->ProcessEvent(wxevent
))
587 wxWindow
*win
= menu
->GetInvokingWindow();
589 win
->GetEventHandler()->ProcessEvent(wxevent
);
594 return eventNotHandledErr
;
597 static pascal OSStatus
598 wxMacAppCommandEventHandler( EventHandlerCallRef
WXUNUSED(handler
) ,
600 void *WXUNUSED(data
) )
602 OSStatus result
= eventNotHandledErr
;
606 wxMacCarbonEvent
cEvent( event
) ;
607 cEvent
.GetParameter
<HICommand
>(kEventParamDirectObject
,typeHICommand
,&command
) ;
609 wxMenuItem
* item
= NULL
;
610 wxMenu
* itemMenu
= wxFindMenuFromMacCommand( command
, item
) ;
611 int id
= wxMacCommandToId( command
.commandID
) ;
615 wxASSERT( itemMenu
!= NULL
) ;
617 switch ( cEvent
.GetKind() )
619 case kEventProcessCommand
:
620 result
= itemMenu
->MacHandleCommandProcess( item
, id
);
623 case kEventCommandUpdateStatus
:
624 result
= itemMenu
->MacHandleCommandUpdateStatus( item
, id
);
634 static pascal OSStatus
635 wxMacAppApplicationEventHandler( EventHandlerCallRef
WXUNUSED(handler
) ,
637 void *WXUNUSED(data
) )
639 OSStatus result
= eventNotHandledErr
;
640 switch ( GetEventKind( event
) )
642 case kEventAppActivated
:
644 wxTheApp
->SetActive( true , NULL
) ;
648 case kEventAppDeactivated
:
650 wxTheApp
->SetActive( false , NULL
) ;
661 pascal OSStatus
wxMacAppEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
663 EventRef formerEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
664 EventHandlerCallRef formerEventHandlerCallRef
= (EventHandlerCallRef
) wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
665 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
667 OSStatus result
= eventNotHandledErr
;
668 switch ( GetEventClass( event
) )
670 case kEventClassCommand
:
671 result
= wxMacAppCommandEventHandler( handler
, event
, data
) ;
674 case kEventClassApplication
:
675 result
= wxMacAppApplicationEventHandler( handler
, event
, data
) ;
678 case kEventClassMenu
:
679 result
= wxMacAppMenuEventHandler( handler
, event
, data
) ;
682 case kEventClassMouse
:
684 wxMacCarbonEvent
cEvent( event
) ;
687 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
688 ::FindWindow(screenMouseLocation
, &window
);
689 // only send this event in case it had not already been sent to a tlw, as we get
690 // double events otherwise (in case event.skip) was called
691 if ( window
== NULL
)
692 result
= wxMacTopLevelMouseEventHandler( handler
, event
, NULL
) ;
696 case kEventClassAppleEvent
:
700 wxMacConvertEventToRecord( event
, &rec
) ;
701 result
= AEProcessAppleEvent( &rec
) ;
709 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerEventHandlerCallRef
) ;
714 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacAppEventHandler
)
719 wxMacAssertOutputHandler(OSType
WXUNUSED(componentSignature
),
720 UInt32
WXUNUSED(options
),
721 const char *assertionString
,
722 const char *exceptionLabelString
,
723 const char *errorString
,
724 const char *fileName
,
727 ConstStr255Param
WXUNUSED(outputMsg
))
729 // flow into assert handling
730 wxString fileNameStr
;
731 wxString assertionStr
;
732 wxString exceptionStr
;
736 fileNameStr
= wxString(fileName
, wxConvLocal
);
737 assertionStr
= wxString(assertionString
, wxConvLocal
);
738 exceptionStr
= wxString((exceptionLabelString
!=0) ? exceptionLabelString
: "", wxConvLocal
) ;
739 errorStr
= wxString((errorString
!=0) ? errorString
: "", wxConvLocal
) ;
741 fileNameStr
= fileName
;
742 assertionStr
= assertionString
;
743 exceptionStr
= (exceptionLabelString
!=0) ? exceptionLabelString
: "" ;
744 errorStr
= (errorString
!=0) ? errorString
: "" ;
749 wxLogDebug( wxT("AssertMacros: %s %s %s file: %s, line: %ld (value %p)\n"),
750 assertionStr
.c_str() ,
751 exceptionStr
.c_str() ,
753 fileNameStr
.c_str(), lineNumber
,
757 wxOnAssert(fileNameStr
, lineNumber
, assertionStr
,
758 wxString::Format( wxT("%s %s value (%p)") , exceptionStr
, errorStr
, value
) ) ;
764 extern "C" void macPostedEventCallback(void *WXUNUSED(unused
))
766 wxTheApp
->ProcessPendingEvents();
769 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
774 InstallDebugAssertOutputHandler( NewDebugAssertOutputHandlerUPP( wxMacAssertOutputHandler
) );
777 UMAInitToolbox( 4, sm_isEmbedded
) ;
778 SetEventMask( everyEvent
) ;
779 UMAShowWatchCursor() ;
781 // Mac OS X passes a process serial number command line argument when
782 // the application is launched from the Finder. This argument must be
783 // removed from the command line arguments before being handled by the
784 // application (otherwise applications would need to handle it)
787 static const wxChar
*ARG_PSN
= _T("-psn_");
788 if ( wxStrncmp(argv
[1], ARG_PSN
, wxStrlen(ARG_PSN
)) == 0 )
790 // remove this argument
792 memmove(argv
+ 1, argv
+ 2, argc
* sizeof(char *));
796 if ( !wxAppBase::Initialize(argc
, argv
) )
800 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
803 // these might be the startup dirs, set them to the 'usual' dir containing the app bundle
804 wxString startupCwd
= wxGetCwd() ;
805 if ( startupCwd
== wxT("/") || startupCwd
.Right(15) == wxT("/Contents/MacOS") )
807 CFURLRef url
= CFBundleCopyBundleURL(CFBundleGetMainBundle() ) ;
808 CFURLRef urlParent
= CFURLCreateCopyDeletingLastPathComponent( kCFAllocatorDefault
, url
) ;
810 CFStringRef path
= CFURLCopyFileSystemPath ( urlParent
, kCFURLPOSIXPathStyle
) ;
811 CFRelease( urlParent
) ;
812 wxString cwd
= wxMacCFStringHolder(path
).AsString(wxLocale::GetSystemEncoding());
813 wxSetWorkingDirectory( cwd
) ;
816 /* connect posted events to common-mode run loop so that wxPostEvent events
817 are handled even while we're in the menu or on a scrollbar */
818 CFRunLoopSourceContext event_posted_context
= {0};
819 event_posted_context
.perform
= macPostedEventCallback
;
820 m_macEventPosted
= CFRunLoopSourceCreate(NULL
,0,&event_posted_context
);
821 CFRunLoopAddSource(CFRunLoopGetCurrent(), m_macEventPosted
, kCFRunLoopCommonModes
);
822 // run loop takes ownership
823 CFRelease(m_macEventPosted
);
825 UMAShowArrowCursor() ;
830 AEEventHandlerUPP sODocHandler
= NULL
;
831 AEEventHandlerUPP sGURLHandler
= NULL
;
832 AEEventHandlerUPP sOAppHandler
= NULL
;
833 AEEventHandlerUPP sPDocHandler
= NULL
;
834 AEEventHandlerUPP sRAppHandler
= NULL
;
835 AEEventHandlerUPP sQuitHandler
= NULL
;
837 bool wxApp::OnInitGui()
839 if ( !wxAppBase::OnInitGui() )
842 InstallStandardEventHandler( GetApplicationEventTarget() ) ;
846 InstallApplicationEventHandler(
847 GetwxMacAppEventHandlerUPP(),
848 GetEventTypeCount(eventList
), eventList
, wxTheApp
, (EventHandlerRef
*)&(wxTheApp
->m_macEventHandler
));
853 sODocHandler
= NewAEEventHandlerUPP(AEHandleODoc
) ;
854 sGURLHandler
= NewAEEventHandlerUPP(AEHandleGURL
) ;
855 sOAppHandler
= NewAEEventHandlerUPP(AEHandleOApp
) ;
856 sPDocHandler
= NewAEEventHandlerUPP(AEHandlePDoc
) ;
857 sRAppHandler
= NewAEEventHandlerUPP(AEHandleRApp
) ;
858 sQuitHandler
= NewAEEventHandlerUPP(AEHandleQuit
) ;
860 AEInstallEventHandler( kCoreEventClass
, kAEOpenDocuments
,
861 sODocHandler
, 0 , FALSE
) ;
862 AEInstallEventHandler( kInternetEventClass
, kAEGetURL
,
863 sGURLHandler
, 0 , FALSE
) ;
864 AEInstallEventHandler( kCoreEventClass
, kAEOpenApplication
,
865 sOAppHandler
, 0 , FALSE
) ;
866 AEInstallEventHandler( kCoreEventClass
, kAEPrintDocuments
,
867 sPDocHandler
, 0 , FALSE
) ;
868 AEInstallEventHandler( kCoreEventClass
, kAEReopenApplication
,
869 sRAppHandler
, 0 , FALSE
) ;
870 AEInstallEventHandler( kCoreEventClass
, kAEQuitApplication
,
871 sQuitHandler
, 0 , FALSE
) ;
874 if ( !wxMacInitCocoa() )
880 void wxApp::CleanUp()
883 wxToolTip::RemoveToolTips() ;
886 if (m_macEventPosted
)
888 CFRunLoopRemoveSource(CFRunLoopGetCurrent(), m_macEventPosted
, kCFRunLoopCommonModes
);
889 m_macEventPosted
= NULL
;
892 // One last chance for pending objects to be cleaned up
893 wxTheApp
->DeletePendingObjects();
895 UMACleanupToolbox() ;
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
) ;
923 wxAppBase::CleanUp();
926 //----------------------------------------------------------------------
927 // misc initialization stuff
928 //----------------------------------------------------------------------
930 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
)
932 OSStatus err
= noErr
;
933 bool converted
= ConvertEventRefToEventRecord( event
, rec
) ;
937 switch ( GetEventClass( event
) )
939 case kEventClassKeyboard
:
942 switch ( GetEventKind(event
) )
944 case kEventRawKeyDown
:
945 rec
->what
= keyDown
;
948 case kEventRawKeyRepeat
:
949 rec
->what
= autoKey
;
952 case kEventRawKeyUp
:
956 case kEventRawKeyModifiersChanged
:
957 rec
->what
= nullEvent
;
968 unsigned char charCode
;
971 GetMouse( &rec
->where
) ;
973 err
= GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
974 err
= GetEventParameter(event
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
975 err
= GetEventParameter(event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
976 rec
->modifiers
= modifiers
;
977 rec
->message
= (keyCode
<< 8 ) + charCode
;
982 case kEventClassTextInput
:
984 switch ( GetEventKind( event
) )
986 case kEventTextInputUnicodeForKeyEvent
:
989 err
= GetEventParameter(
990 event
, kEventParamTextInputSendKeyboardEvent
, typeEventRef
, NULL
,
991 sizeof(rawEvent
), NULL
, &rawEvent
) ;
995 UInt32 keyCode
, modifiers
;
996 unsigned char charCode
;
999 GetMouse( &rec
->where
) ;
1001 rec
->what
= keyDown
;
1002 err
= GetEventParameter(rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
1003 err
= GetEventParameter(rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
1004 err
= GetEventParameter(rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
1005 rec
->modifiers
= modifiers
;
1006 rec
->message
= (keyCode
<< 8 ) + charCode
;
1027 m_printMode
= wxPRINT_WINDOWS
;
1029 m_macCurrentEvent
= NULL
;
1030 m_macCurrentEventHandlerCallRef
= NULL
;
1031 m_macEventPosted
= NULL
;
1034 void wxApp::OnIdle(wxIdleEvent
& WXUNUSED(event
))
1036 // If they are pending events, we must process them: pending events are
1037 // either events to the threads other than main or events posted with
1038 // wxPostEvent() functions
1039 #ifndef __WXUNIVERSAL__
1040 if (!wxMenuBar::MacGetInstalledMenuBar() && wxMenuBar::MacGetCommonMenuBar())
1041 wxMenuBar::MacGetCommonMenuBar()->MacInstallMenuBar();
1045 void wxApp::WakeUpIdle()
1047 if (m_macEventPosted
)
1049 CFRunLoopSourceSignal(m_macEventPosted
);
1055 void wxApp::OnEndSession(wxCloseEvent
& WXUNUSED(event
))
1058 GetTopWindow()->Close(true);
1061 // Default behaviour: close the application with prompts. The
1062 // user can veto the close, and therefore the end session.
1063 void wxApp::OnQueryEndSession(wxCloseEvent
& event
)
1067 if (!GetTopWindow()->Close(!event
.CanVeto()))
1072 extern "C" void wxCYield() ;
1078 // Yield to other processes
1080 bool wxApp::Yield(bool onlyIfNeeded
)
1084 if ( !onlyIfNeeded
)
1086 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1093 // Yielding from a non-gui thread needs to bail out, otherwise we end up
1094 // possibly sending events in the thread too.
1095 if ( !wxThread::IsMain() )
1099 #endif // wxUSE_THREADS
1103 // by definition yield should handle all non-processed events
1107 OSStatus status
= noErr
;
1109 while ( status
== noErr
)
1111 s_inReceiveEvent
= true ;
1112 status
= ReceiveNextEvent(0, NULL
,kEventDurationNoWait
,true,&theEvent
) ;
1113 s_inReceiveEvent
= false ;
1115 if ( status
== eventLoopTimedOutErr
)
1117 // make sure next time the event loop will trigger idle events
1118 sleepTime
= kEventDurationNoWait
;
1120 else if ( status
== eventLoopQuitErr
)
1122 // according to QA1061 this may also occur when a WakeUp Process
1127 MacHandleOneEvent( theEvent
) ;
1128 ReleaseEvent(theEvent
);
1137 void wxApp::MacDoOneEvent()
1139 wxMacAutoreleasePool autoreleasepool
;
1142 s_inReceiveEvent
= true ;
1143 OSStatus status
= ReceiveNextEvent(0, NULL
, sleepTime
, true, &theEvent
) ;
1144 s_inReceiveEvent
= false ;
1148 case eventLoopTimedOutErr
:
1149 if ( wxTheApp
->ProcessIdle() )
1150 sleepTime
= kEventDurationNoWait
;
1152 sleepTime
= kEventDurationSecond
;
1155 case eventLoopQuitErr
:
1156 // according to QA1061 this may also occur
1157 // when a WakeUp Process is executed
1161 MacHandleOneEvent( theEvent
) ;
1162 ReleaseEvent( theEvent
);
1163 sleepTime
= kEventDurationNoWait
;
1168 DeletePendingObjects() ;
1172 void wxApp::MacHandleUnhandledEvent( WXEVENTREF
WXUNUSED(evr
) )
1174 // Override to process unhandled events as you please
1177 CFMutableArrayRef
GetAutoReleaseArray()
1179 static CFMutableArrayRef array
= 0;
1181 array
= CFArrayCreateMutable(kCFAllocatorDefault
,0,&kCFTypeArrayCallBacks
);
1185 void wxApp::MacHandleOneEvent( WXEVENTREF evr
)
1187 EventTargetRef theTarget
;
1188 theTarget
= GetEventDispatcherTarget();
1189 m_macCurrentEvent
= evr
;
1191 OSStatus status
= SendEventToEventTarget((EventRef
) evr
, theTarget
);
1192 if (status
== eventNotHandledErr
)
1193 MacHandleUnhandledEvent(evr
);
1196 wxMutexGuiLeaveOrEnter();
1197 #endif // wxUSE_THREADS
1199 CFArrayRemoveAllValues( GetAutoReleaseArray() );
1202 void wxApp::MacAddToAutorelease( void* cfrefobj
)
1204 CFArrayAppendValue( GetAutoReleaseArray(), cfrefobj
);
1207 long wxMacTranslateKey(unsigned char key
, unsigned char code
)
1212 case kHomeCharCode
:
1216 case kEnterCharCode
:
1217 retval
= WXK_RETURN
;
1223 case kHelpCharCode
:
1227 case kBackspaceCharCode
:
1235 case kPageUpCharCode
:
1236 retval
= WXK_PAGEUP
;
1239 case kPageDownCharCode
:
1240 retval
= WXK_PAGEDOWN
;
1243 case kReturnCharCode
:
1244 retval
= WXK_RETURN
;
1247 case kFunctionKeyCharCode
:
1317 case kEscapeCharCode
:
1318 retval
= WXK_ESCAPE
;
1321 case kLeftArrowCharCode
:
1325 case kRightArrowCharCode
:
1326 retval
= WXK_RIGHT
;
1329 case kUpArrowCharCode
:
1333 case kDownArrowCharCode
:
1337 case kDeleteCharCode
:
1338 retval
= WXK_DELETE
;
1348 int wxMacKeyCodeToModifier(wxKeyCode key
)
1373 wxMouseState
wxGetMouseState()
1377 wxPoint pt
= wxGetMousePosition();
1381 UInt32 buttons
= GetCurrentButtonState();
1382 ms
.SetLeftDown( (buttons
& 0x01) != 0 );
1383 ms
.SetMiddleDown( (buttons
& 0x04) != 0 );
1384 ms
.SetRightDown( (buttons
& 0x02) != 0 );
1386 UInt32 modifiers
= GetCurrentKeyModifiers();
1387 ms
.SetControlDown(modifiers
& controlKey
);
1388 ms
.SetShiftDown(modifiers
& shiftKey
);
1389 ms
.SetAltDown(modifiers
& optionKey
);
1390 ms
.SetMetaDown(modifiers
& cmdKey
);
1395 // TODO : once the new key/char handling is tested, move all the code to wxWindow
1397 bool wxApp::MacSendKeyDownEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1403 wxKeyEvent
event(wxEVT_KEY_DOWN
) ;
1404 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1406 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1407 if ( handled
&& event
.GetSkipped() )
1413 wxWindow
*ancestor
= focus
;
1416 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
1419 wxEvtHandler
* const handler
= ancestor
->GetEventHandler();
1421 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
1422 handled
= handler
->ProcessEvent( command_event
);
1426 // accelerators can also be used with buttons, try them too
1427 command_event
.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED
);
1428 handled
= handler
->ProcessEvent( command_event
);
1434 if (ancestor
->IsTopLevel())
1437 ancestor
= ancestor
->GetParent();
1440 #endif // wxUSE_ACCEL
1445 bool wxApp::MacSendKeyUpEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1451 wxKeyEvent
event( wxEVT_KEY_UP
) ;
1452 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1453 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1458 bool wxApp::MacSendCharEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1463 wxKeyEvent
event(wxEVT_CHAR
) ;
1464 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1465 long keyval
= event
.m_keyCode
;
1467 bool handled
= false ;
1469 wxTopLevelWindowMac
*tlw
= focus
->MacGetTopLevelWindow() ;
1473 event
.SetEventType( wxEVT_CHAR_HOOK
);
1474 handled
= tlw
->GetEventHandler()->ProcessEvent( event
);
1475 if ( handled
&& event
.GetSkipped() )
1481 event
.SetEventType( wxEVT_CHAR
);
1482 event
.Skip( false ) ;
1483 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1486 if ( !handled
&& (keyval
== WXK_TAB
) )
1488 wxWindow
* iter
= focus
->GetParent() ;
1489 while ( iter
&& !handled
)
1491 if ( iter
->HasFlag( wxTAB_TRAVERSAL
) )
1493 wxNavigationKeyEvent new_event
;
1494 new_event
.SetEventObject( focus
);
1495 new_event
.SetDirection( !event
.ShiftDown() );
1496 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1497 new_event
.SetWindowChange( event
.ControlDown() );
1498 new_event
.SetCurrentFocus( focus
);
1499 handled
= focus
->GetParent()->GetEventHandler()->ProcessEvent( new_event
);
1500 if ( handled
&& new_event
.GetSkipped() )
1504 iter
= iter
->GetParent() ;
1508 // backdoor handler for default return and command escape
1509 if ( !handled
&& (!focus
->IsKindOf(CLASSINFO(wxControl
) ) || !focus
->MacCanFocus() ) )
1511 // if window is not having a focus still testing for default enter or cancel
1512 // TODO: add the UMA version for ActiveNonFloatingWindow
1513 wxWindow
* focus
= wxFindWinFromMacWindow( FrontWindow() ) ;
1516 if ( keyval
== WXK_RETURN
|| keyval
== WXK_NUMPAD_ENTER
)
1518 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent(focus
), wxTopLevelWindow
);
1519 if ( tlw
&& tlw
->GetDefaultItem() )
1521 wxButton
*def
= wxDynamicCast(tlw
->GetDefaultItem(), wxButton
);
1522 if ( def
&& def
->IsEnabled() )
1524 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
1525 event
.SetEventObject(def
);
1526 def
->Command(event
);
1532 else if (keyval
== WXK_ESCAPE
|| (keyval
== '.' && modifiers
& cmdKey
) )
1534 // generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs)
1535 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
1536 new_event
.SetEventObject( focus
);
1537 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1544 // This method handles common code for SendKeyDown, SendKeyUp, and SendChar events.
1545 void wxApp::MacCreateKeyEvent( wxKeyEvent
& event
, wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1547 short keycode
, keychar
;
1549 keychar
= short(keymessage
& charCodeMask
);
1550 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1551 if ( !(event
.GetEventType() == wxEVT_CHAR
) && (modifiers
& (controlKey
| shiftKey
| optionKey
) ) )
1553 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1554 // and look at the character after
1556 // TODO new implementation using TextInputSources
1559 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
| shiftKey
| optionKey
))) | keycode
, &state
);
1560 keychar
= short(keyInfo
& charCodeMask
);
1564 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1565 if ( keyval
== keychar
&& ( event
.GetEventType() == wxEVT_KEY_UP
|| event
.GetEventType() == wxEVT_KEY_DOWN
) )
1566 keyval
= wxToupper( keyval
) ;
1568 // Check for NUMPAD keys. For KEY_UP/DOWN events we need to use the
1569 // WXK_NUMPAD constants, but for the CHAR event we want to use the
1570 // standard ascii values
1571 if ( event
.GetEventType() != wxEVT_CHAR
)
1573 if (keyval
>= '0' && keyval
<= '9' && keycode
>= 82 && keycode
<= 92)
1575 keyval
= (keyval
- '0') + WXK_NUMPAD0
;
1577 else if (keycode
>= 65 && keycode
<= 81)
1582 keyval
= WXK_NUMPAD_ENTER
;
1586 keyval
= WXK_NUMPAD_EQUAL
;
1590 keyval
= WXK_NUMPAD_MULTIPLY
;
1594 keyval
= WXK_NUMPAD_DIVIDE
;
1598 keyval
= WXK_NUMPAD_SUBTRACT
;
1602 keyval
= WXK_NUMPAD_ADD
;
1606 keyval
= WXK_NUMPAD_DECIMAL
;
1614 event
.m_shiftDown
= modifiers
& shiftKey
;
1615 event
.m_controlDown
= modifiers
& controlKey
;
1616 event
.m_altDown
= modifiers
& optionKey
;
1617 event
.m_metaDown
= modifiers
& cmdKey
;
1618 event
.m_keyCode
= keyval
;
1620 event
.m_uniChar
= uniChar
;
1623 event
.m_rawCode
= keymessage
;
1624 event
.m_rawFlags
= modifiers
;
1627 event
.SetTimestamp(when
);
1628 event
.SetEventObject(focus
);