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_COCOA_OR_CARBON
1129 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
1131 // adding forward compatible defines for keys that are different on different keyboard layouts
1132 // see Inside Mac Volume V
1158 kVK_ANSI_Equal
= 0x18,
1161 kVK_ANSI_Minus
= 0x1B,
1164 kVK_ANSI_RightBracket
= 0x1E,
1167 kVK_ANSI_LeftBracket
= 0x21,
1172 kVK_ANSI_Quote
= 0x27,
1174 kVK_ANSI_Semicolon
= 0x29,
1175 kVK_ANSI_Backslash
= 0x2A,
1176 kVK_ANSI_Comma
= 0x2B,
1177 kVK_ANSI_Slash
= 0x2C,
1180 kVK_ANSI_Period
= 0x2F,
1181 kVK_ANSI_Grave
= 0x32,
1182 kVK_ANSI_KeypadDecimal
= 0x41,
1183 kVK_ANSI_KeypadMultiply
= 0x43,
1184 kVK_ANSI_KeypadPlus
= 0x45,
1185 kVK_ANSI_KeypadClear
= 0x47,
1186 kVK_ANSI_KeypadDivide
= 0x4B,
1187 kVK_ANSI_KeypadEnter
= 0x4C,
1188 kVK_ANSI_KeypadMinus
= 0x4E,
1189 kVK_ANSI_KeypadEquals
= 0x51,
1190 kVK_ANSI_Keypad0
= 0x52,
1191 kVK_ANSI_Keypad1
= 0x53,
1192 kVK_ANSI_Keypad2
= 0x54,
1193 kVK_ANSI_Keypad3
= 0x55,
1194 kVK_ANSI_Keypad4
= 0x56,
1195 kVK_ANSI_Keypad5
= 0x57,
1196 kVK_ANSI_Keypad6
= 0x58,
1197 kVK_ANSI_Keypad7
= 0x59,
1198 kVK_ANSI_Keypad8
= 0x5B,
1199 kVK_ANSI_Keypad9
= 0x5C
1202 // defines for keys that are the same on all layouts
1212 kVK_CapsLock
= 0x39,
1215 kVK_RightShift
= 0x3C,
1216 kVK_RightOption
= 0x3D,
1217 kVK_RightControl
= 0x3E,
1218 kVK_Function
= 0x3F,
1220 kVK_VolumeUp
= 0x48,
1221 kVK_VolumeDown
= 0x49,
1242 kVK_ForwardDelete
= 0x75,
1246 kVK_PageDown
= 0x79,
1248 kVK_LeftArrow
= 0x7B,
1249 kVK_RightArrow
= 0x7C,
1250 kVK_DownArrow
= 0x7D,
1256 CGKeyCode
wxCharCodeWXToOSX(wxKeyCode code
)
1262 case 'a': case 'A': keycode
= kVK_ANSI_A
; break;
1263 case 'b': case 'B': keycode
= kVK_ANSI_B
; break;
1264 case 'c': case 'C': keycode
= kVK_ANSI_C
; break;
1265 case 'd': case 'D': keycode
= kVK_ANSI_D
; break;
1266 case 'e': case 'E': keycode
= kVK_ANSI_E
; break;
1267 case 'f': case 'F': keycode
= kVK_ANSI_F
; break;
1268 case 'g': case 'G': keycode
= kVK_ANSI_G
; break;
1269 case 'h': case 'H': keycode
= kVK_ANSI_H
; break;
1270 case 'i': case 'I': keycode
= kVK_ANSI_I
; break;
1271 case 'j': case 'J': keycode
= kVK_ANSI_J
; break;
1272 case 'k': case 'K': keycode
= kVK_ANSI_K
; break;
1273 case 'l': case 'L': keycode
= kVK_ANSI_L
; break;
1274 case 'm': case 'M': keycode
= kVK_ANSI_M
; break;
1275 case 'n': case 'N': keycode
= kVK_ANSI_N
; break;
1276 case 'o': case 'O': keycode
= kVK_ANSI_O
; break;
1277 case 'p': case 'P': keycode
= kVK_ANSI_P
; break;
1278 case 'q': case 'Q': keycode
= kVK_ANSI_Q
; break;
1279 case 'r': case 'R': keycode
= kVK_ANSI_R
; break;
1280 case 's': case 'S': keycode
= kVK_ANSI_S
; break;
1281 case 't': case 'T': keycode
= kVK_ANSI_T
; break;
1282 case 'u': case 'U': keycode
= kVK_ANSI_U
; break;
1283 case 'v': case 'V': keycode
= kVK_ANSI_V
; break;
1284 case 'w': case 'W': keycode
= kVK_ANSI_W
; break;
1285 case 'x': case 'X': keycode
= kVK_ANSI_X
; break;
1286 case 'y': case 'Y': keycode
= kVK_ANSI_Y
; break;
1287 case 'z': case 'Z': keycode
= kVK_ANSI_Z
; break;
1289 case '0': keycode
= kVK_ANSI_0
; break;
1290 case '1': keycode
= kVK_ANSI_1
; break;
1291 case '2': keycode
= kVK_ANSI_2
; break;
1292 case '3': keycode
= kVK_ANSI_3
; break;
1293 case '4': keycode
= kVK_ANSI_4
; break;
1294 case '5': keycode
= kVK_ANSI_5
; break;
1295 case '6': keycode
= kVK_ANSI_6
; break;
1296 case '7': keycode
= kVK_ANSI_7
; break;
1297 case '8': keycode
= kVK_ANSI_8
; break;
1298 case '9': keycode
= kVK_ANSI_9
; break;
1300 case WXK_BACK
: keycode
= kVK_Delete
; break;
1301 case WXK_TAB
: keycode
= kVK_Tab
; break;
1302 case WXK_RETURN
: keycode
= kVK_Return
; break;
1303 case WXK_ESCAPE
: keycode
= kVK_Escape
; break;
1304 case WXK_SPACE
: keycode
= kVK_Space
; break;
1305 case WXK_DELETE
: keycode
= kVK_Delete
; break;
1307 case WXK_SHIFT
: keycode
= kVK_Shift
; break;
1308 case WXK_ALT
: keycode
= kVK_Option
; break;
1309 case WXK_CONTROL
: keycode
= kVK_Control
; break;
1310 case WXK_COMMAND
: keycode
= kVK_Command
; break;
1312 case WXK_CAPITAL
: keycode
= kVK_CapsLock
; break;
1313 case WXK_END
: keycode
= kVK_End
; break;
1314 case WXK_HOME
: keycode
= kVK_Home
; break;
1315 case WXK_LEFT
: keycode
= kVK_LeftArrow
; break;
1316 case WXK_UP
: keycode
= kVK_UpArrow
; break;
1317 case WXK_RIGHT
: keycode
= kVK_RightArrow
; break;
1318 case WXK_DOWN
: keycode
= kVK_DownArrow
; break;
1320 case WXK_HELP
: keycode
= kVK_Help
; break;
1323 case WXK_NUMPAD0
: keycode
= kVK_ANSI_Keypad0
; break;
1324 case WXK_NUMPAD1
: keycode
= kVK_ANSI_Keypad1
; break;
1325 case WXK_NUMPAD2
: keycode
= kVK_ANSI_Keypad2
; break;
1326 case WXK_NUMPAD3
: keycode
= kVK_ANSI_Keypad3
; break;
1327 case WXK_NUMPAD4
: keycode
= kVK_ANSI_Keypad4
; break;
1328 case WXK_NUMPAD5
: keycode
= kVK_ANSI_Keypad5
; break;
1329 case WXK_NUMPAD6
: keycode
= kVK_ANSI_Keypad6
; break;
1330 case WXK_NUMPAD7
: keycode
= kVK_ANSI_Keypad7
; break;
1331 case WXK_NUMPAD8
: keycode
= kVK_ANSI_Keypad8
; break;
1332 case WXK_NUMPAD9
: keycode
= kVK_ANSI_Keypad9
; break;
1333 case WXK_F1
: keycode
= kVK_F1
; break;
1334 case WXK_F2
: keycode
= kVK_F2
; break;
1335 case WXK_F3
: keycode
= kVK_F3
; break;
1336 case WXK_F4
: keycode
= kVK_F4
; break;
1337 case WXK_F5
: keycode
= kVK_F5
; break;
1338 case WXK_F6
: keycode
= kVK_F6
; break;
1339 case WXK_F7
: keycode
= kVK_F7
; break;
1340 case WXK_F8
: keycode
= kVK_F8
; break;
1341 case WXK_F9
: keycode
= kVK_F9
; break;
1342 case WXK_F10
: keycode
= kVK_F10
; break;
1343 case WXK_F11
: keycode
= kVK_F11
; break;
1344 case WXK_F12
: keycode
= kVK_F12
; break;
1345 case WXK_F13
: keycode
= kVK_F13
; break;
1346 case WXK_F14
: keycode
= kVK_F14
; break;
1347 case WXK_F15
: keycode
= kVK_F15
; break;
1348 case WXK_F16
: keycode
= kVK_F16
; break;
1349 case WXK_F17
: keycode
= kVK_F17
; break;
1350 case WXK_F18
: keycode
= kVK_F18
; break;
1351 case WXK_F19
: keycode
= kVK_F19
; break;
1352 case WXK_F20
: keycode
= kVK_F20
; break;
1354 case WXK_PAGEUP
: keycode
= kVK_PageUp
; break;
1355 case WXK_PAGEDOWN
: keycode
= kVK_PageDown
; break;
1357 case WXK_NUMPAD_DELETE
: keycode
= kVK_ANSI_KeypadClear
; break;
1358 case WXK_NUMPAD_EQUAL
: keycode
= kVK_ANSI_KeypadEquals
; break;
1359 case WXK_NUMPAD_MULTIPLY
: keycode
= kVK_ANSI_KeypadMultiply
; break;
1360 case WXK_NUMPAD_ADD
: keycode
= kVK_ANSI_KeypadPlus
; break;
1361 case WXK_NUMPAD_SUBTRACT
: keycode
= kVK_ANSI_KeypadMinus
; break;
1362 case WXK_NUMPAD_DECIMAL
: keycode
= kVK_ANSI_KeypadDecimal
; break;
1363 case WXK_NUMPAD_DIVIDE
: keycode
= kVK_ANSI_KeypadDivide
; break;
1366 wxLogDebug( "Unrecognised keycode %d", code
);
1367 keycode
= static_cast<CGKeyCode
>(-1);
1373 long wxMacTranslateKey(unsigned char key
, unsigned char code
)
1378 case kHomeCharCode
:
1382 case kEnterCharCode
:
1383 retval
= WXK_RETURN
;
1389 case kHelpCharCode
:
1393 case kBackspaceCharCode
:
1401 case kPageUpCharCode
:
1402 retval
= WXK_PAGEUP
;
1405 case kPageDownCharCode
:
1406 retval
= WXK_PAGEDOWN
;
1409 case kReturnCharCode
:
1410 retval
= WXK_RETURN
;
1413 case kFunctionKeyCharCode
:
1483 case kEscapeCharCode
:
1484 retval
= WXK_ESCAPE
;
1487 case kLeftArrowCharCode
:
1491 case kRightArrowCharCode
:
1492 retval
= WXK_RIGHT
;
1495 case kUpArrowCharCode
:
1499 case kDownArrowCharCode
:
1503 case kDeleteCharCode
:
1504 retval
= WXK_DELETE
;
1514 int wxMacKeyCodeToModifier(wxKeyCode key
)
1540 #if wxOSX_USE_COCOA && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6
1542 // defined in utils.mm
1544 #elif wxOSX_USE_COCOA_OR_CARBON
1546 wxMouseState
wxGetMouseState()
1550 wxPoint pt
= wxGetMousePosition();
1554 UInt32 buttons
= GetCurrentButtonState();
1555 ms
.SetLeftDown( (buttons
& 0x01) != 0 );
1556 ms
.SetMiddleDown( (buttons
& 0x04) != 0 );
1557 ms
.SetRightDown( (buttons
& 0x02) != 0 );
1559 UInt32 modifiers
= GetCurrentKeyModifiers();
1560 ms
.SetControlDown(modifiers
& controlKey
);
1561 ms
.SetShiftDown(modifiers
& shiftKey
);
1562 ms
.SetAltDown(modifiers
& optionKey
);
1563 ms
.SetMetaDown(modifiers
& cmdKey
);
1570 // TODO : once the new key/char handling is tested, move all the code to wxWindow
1572 bool wxApp::MacSendKeyDownEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1577 wxKeyEvent
event(wxEVT_KEY_DOWN
) ;
1578 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1580 return focus
->OSXHandleKeyEvent(event
);
1583 bool wxApp::MacSendKeyUpEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1588 wxKeyEvent
event( wxEVT_KEY_UP
) ;
1589 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1591 return focus
->OSXHandleKeyEvent(event
) ;
1594 bool wxApp::MacSendCharEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1598 wxKeyEvent
event(wxEVT_CHAR
) ;
1599 MacCreateKeyEvent( event
, focus
, keymessage
, modifiers
, when
, wherex
, wherey
, uniChar
) ;
1601 bool handled
= false ;
1603 #if wxOSX_USE_CARBON
1604 long keyval
= event
.m_keyCode
;
1605 wxNonOwnedWindow
*tlw
= focus
->MacGetTopLevelWindow() ;
1609 event
.SetEventType( wxEVT_CHAR_HOOK
);
1610 handled
= tlw
->HandleWindowEvent( event
);
1611 if ( handled
&& event
.GetSkipped() )
1617 event
.SetEventType( wxEVT_CHAR
);
1618 event
.Skip( false ) ;
1619 handled
= focus
->HandleWindowEvent( event
) ;
1622 if ( !handled
&& (keyval
== WXK_TAB
) )
1624 wxWindow
* iter
= focus
->GetParent() ;
1625 while ( iter
&& !handled
)
1627 if ( iter
->HasFlag( wxTAB_TRAVERSAL
) )
1629 wxNavigationKeyEvent new_event
;
1630 new_event
.SetEventObject( focus
);
1631 new_event
.SetDirection( !event
.ShiftDown() );
1632 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1633 new_event
.SetWindowChange( event
.ControlDown() );
1634 new_event
.SetCurrentFocus( focus
);
1635 handled
= focus
->GetParent()->HandleWindowEvent( new_event
);
1636 if ( handled
&& new_event
.GetSkipped() )
1640 iter
= iter
->GetParent() ;
1644 // backdoor handler for default return and command escape
1645 if ( !handled
&& (!focus
->IsKindOf(CLASSINFO(wxControl
) ) || !focus
->AcceptsFocus() ) )
1647 // if window is not having a focus still testing for default enter or cancel
1648 // TODO: add the UMA version for ActiveNonFloatingWindow
1650 wxWindow
* focus
= wxNonOwnedWindow::GetFromWXWindow( (WXWindow
) FrontWindow() ) ;
1653 if ( keyval
== WXK_RETURN
|| keyval
== WXK_NUMPAD_ENTER
)
1655 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent(focus
), wxTopLevelWindow
);
1656 if ( tlw
&& tlw
->GetDefaultItem() )
1658 wxButton
*def
= wxDynamicCast(tlw
->GetDefaultItem(), wxButton
);
1659 if ( def
&& def
->IsEnabled() )
1661 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
1662 event
.SetEventObject(def
);
1663 def
->Command(event
);
1669 else if (keyval
== WXK_ESCAPE
|| (keyval
== '.' && modifiers
& cmdKey
) )
1671 // generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs)
1672 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
1673 new_event
.SetEventObject( focus
);
1674 handled
= focus
->HandleWindowEvent( new_event
);
1683 // This method handles common code for SendKeyDown, SendKeyUp, and SendChar events.
1684 void wxApp::MacCreateKeyEvent( wxKeyEvent
& event
, wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
, wxChar uniChar
)
1686 #if wxOSX_USE_COCOA_OR_CARBON
1688 short keycode
, keychar
;
1690 keychar
= short(keymessage
& charCodeMask
);
1691 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1692 if ( !(event
.GetEventType() == wxEVT_CHAR
) && (modifiers
& (controlKey
| shiftKey
| optionKey
) ) )
1694 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1695 // and look at the character after
1697 // TODO new implementation using TextInputSources
1700 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
| shiftKey
| optionKey
))) | keycode
, &state
);
1701 keychar
= short(keyInfo
& charCodeMask
);
1705 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1706 if ( keyval
== keychar
&& ( event
.GetEventType() == wxEVT_KEY_UP
|| event
.GetEventType() == wxEVT_KEY_DOWN
) )
1707 keyval
= wxToupper( keyval
) ;
1709 // Check for NUMPAD keys. For KEY_UP/DOWN events we need to use the
1710 // WXK_NUMPAD constants, but for the CHAR event we want to use the
1711 // standard ascii values
1712 if ( event
.GetEventType() != wxEVT_CHAR
)
1714 if (keyval
>= '0' && keyval
<= '9' && keycode
>= 82 && keycode
<= 92)
1716 keyval
= (keyval
- '0') + WXK_NUMPAD0
;
1718 else if (keycode
>= 65 && keycode
<= 81)
1723 keyval
= WXK_NUMPAD_ENTER
;
1727 keyval
= WXK_NUMPAD_EQUAL
;
1731 keyval
= WXK_NUMPAD_MULTIPLY
;
1735 keyval
= WXK_NUMPAD_DIVIDE
;
1739 keyval
= WXK_NUMPAD_SUBTRACT
;
1743 keyval
= WXK_NUMPAD_ADD
;
1747 keyval
= WXK_NUMPAD_DECIMAL
;
1755 event
.m_shiftDown
= modifiers
& shiftKey
;
1756 event
.m_controlDown
= modifiers
& controlKey
;
1757 event
.m_altDown
= modifiers
& optionKey
;
1758 event
.m_metaDown
= modifiers
& cmdKey
;
1759 event
.m_keyCode
= keyval
;
1761 event
.m_uniChar
= uniChar
;
1764 event
.m_rawCode
= keymessage
;
1765 event
.m_rawFlags
= modifiers
;
1768 event
.SetTimestamp(when
);
1769 event
.SetEventObject(focus
);
1773 wxUnusedVar(keymessage
);
1774 wxUnusedVar(modifiers
);
1776 wxUnusedVar(wherex
);
1777 wxUnusedVar(wherey
);
1778 wxUnusedVar(uniChar
);
1783 void wxApp::MacHideApp()
1785 #if wxOSX_USE_CARBON
1786 wxMacCarbonEvent
event( kEventClassCommand
, kEventCommandProcess
);
1788 memset( &command
, 0 , sizeof(command
) );
1789 command
.commandID
= kHICommandHide
;
1790 event
.SetParameter
<HICommand
>(kEventParamDirectObject
, command
);
1791 SendEventToApplication( event
);