]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/app.cpp
mac cleanup
[wxWidgets.git] / src / mac / carbon / app.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/app.cpp
3 // Purpose: wxApp
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/wxprec.h"
13
14 #include "wx/app.h"
15
16 #ifndef WX_PRECOMP
17 #include "wx/intl.h"
18 #include "wx/log.h"
19 #include "wx/utils.h"
20 #include "wx/window.h"
21 #include "wx/frame.h"
22 #include "wx/dc.h"
23 #include "wx/button.h"
24 #include "wx/menu.h"
25 #include "wx/pen.h"
26 #include "wx/brush.h"
27 #include "wx/palette.h"
28 #include "wx/icon.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"
36 #endif
37
38 #include "wx/tooltip.h"
39 #include "wx/docview.h"
40 #include "wx/filename.h"
41 #include "wx/link.h"
42
43 #include <string.h>
44
45 // mac
46
47 #include "wx/mac/uma.h"
48
49 #ifdef __DARWIN__
50 # include <CoreServices/CoreServices.h>
51 # if defined(WXMAKINGDLL_CORE)
52 # include <mach-o/dyld.h>
53 # endif
54 #endif
55
56 // Keep linker from discarding wxStockGDIMac
57 wxFORCE_LINK_MODULE(gdiobj)
58
59 // statics for implementation
60 static bool s_inYield = false;
61 static bool s_inReceiveEvent = false ;
62 static EventTime sleepTime = kEventDurationNoWait ;
63
64
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)
70 END_EVENT_TABLE()
71
72
73 // platform specific static variables
74 static const short kwxMacAppleMenuId = 1 ;
75
76 wxWindow* wxApp::s_captureWindow = NULL ;
77 long wxApp::s_lastModifiers = 0 ;
78
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") ;
83
84 bool wxApp::sm_isEmbedded = false; // Normally we're not a plugin
85
86 //----------------------------------------------------------------------
87 // Core Apple Event Support
88 //----------------------------------------------------------------------
89
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 ) ;
95
96 pascal OSErr AEHandleODoc( const AppleEvent *event , AppleEvent *reply , SRefCon WXUNUSED(refcon) )
97 {
98 return wxTheApp->MacHandleAEODoc( (AppleEvent*) event , reply) ;
99 }
100
101 pascal OSErr AEHandleOApp( const AppleEvent *event , AppleEvent *reply , SRefCon WXUNUSED(refcon) )
102 {
103 return wxTheApp->MacHandleAEOApp( (AppleEvent*) event , reply ) ;
104 }
105
106 pascal OSErr AEHandlePDoc( const AppleEvent *event , AppleEvent *reply , SRefCon WXUNUSED(refcon) )
107 {
108 return wxTheApp->MacHandleAEPDoc( (AppleEvent*) event , reply ) ;
109 }
110
111 pascal OSErr AEHandleQuit( const AppleEvent *event , AppleEvent *reply , SRefCon WXUNUSED(refcon) )
112 {
113 return wxTheApp->MacHandleAEQuit( (AppleEvent*) event , reply) ;
114 }
115
116 pascal OSErr AEHandleRApp( const AppleEvent *event , AppleEvent *reply , SRefCon WXUNUSED(refcon) )
117 {
118 return wxTheApp->MacHandleAERApp( (AppleEvent*) event , reply) ;
119 }
120
121 pascal OSErr AEHandleGURL( const AppleEvent *event , AppleEvent *reply , SRefCon WXUNUSED(refcon) )
122 {
123 return wxTheApp->MacHandleAEGURL((WXEVENTREF *)event , reply) ;
124 }
125
126
127 // AEODoc Calls MacOpenFile on each of the files passed
128
129 short wxApp::MacHandleAEODoc(const WXEVENTREF event, WXEVENTREF WXUNUSED(reply))
130 {
131 AEDescList docList;
132 AEKeyword keywd;
133 DescType returnedType;
134 Size actualSize;
135 long itemsInList;
136 OSErr err;
137 short i;
138
139 err = AEGetParamDesc((AppleEvent *)event, keyDirectObject, typeAEList,&docList);
140 if (err != noErr)
141 return err;
142
143 err = AECountItems(&docList, &itemsInList);
144 if (err != noErr)
145 return err;
146
147 ProcessSerialNumber PSN ;
148 PSN.highLongOfPSN = 0 ;
149 PSN.lowLongOfPSN = kCurrentProcess ;
150 SetFrontProcess( &PSN ) ;
151
152 wxString fName ;
153 FSRef theRef ;
154
155 for (i = 1; i <= itemsInList; i++)
156 {
157 AEGetNthPtr(
158 &docList, i, typeFSRef, &keywd, &returnedType,
159 (Ptr)&theRef, sizeof(theRef), &actualSize);
160 fName = wxMacFSRefToPath( &theRef ) ;
161
162 MacOpenFile(fName);
163 }
164
165 return noErr;
166 }
167
168 // AEODoc Calls MacOpenURL on the url passed
169
170 short wxApp::MacHandleAEGURL(const WXEVENTREF event, WXEVENTREF WXUNUSED(reply))
171 {
172 DescType returnedType;
173 Size actualSize;
174 char url[255];
175 OSErr err = AEGetParamPtr((AppleEvent *)event, keyDirectObject, typeChar,
176 &returnedType, url, sizeof(url)-1,
177 &actualSize);
178 if (err != noErr)
179 return err;
180
181 url[actualSize] = '\0'; // Terminate the C string
182
183 ProcessSerialNumber PSN ;
184 PSN.highLongOfPSN = 0 ;
185 PSN.lowLongOfPSN = kCurrentProcess ;
186 SetFrontProcess( &PSN ) ;
187
188 MacOpenURL(wxString(url, wxConvUTF8));
189
190 return noErr;
191 }
192
193 // AEPDoc Calls MacPrintFile on each of the files passed
194
195 short wxApp::MacHandleAEPDoc(const WXEVENTREF event , WXEVENTREF WXUNUSED(reply))
196 {
197 AEDescList docList;
198 AEKeyword keywd;
199 DescType returnedType;
200 Size actualSize;
201 long itemsInList;
202 OSErr err;
203 short i;
204
205 err = AEGetParamDesc((AppleEvent *)event, keyDirectObject, typeAEList,&docList);
206 if (err != noErr)
207 return err;
208
209 err = AECountItems(&docList, &itemsInList);
210 if (err != noErr)
211 return err;
212
213 ProcessSerialNumber PSN ;
214 PSN.highLongOfPSN = 0 ;
215 PSN.lowLongOfPSN = kCurrentProcess ;
216 SetFrontProcess( &PSN ) ;
217
218 wxString fName ;
219 FSRef theRef ;
220
221 for (i = 1; i <= itemsInList; i++)
222 {
223 AEGetNthPtr(
224 &docList, i, typeFSRef, &keywd, &returnedType,
225 (Ptr)&theRef, sizeof(theRef), &actualSize);
226 fName = wxMacFSRefToPath( &theRef ) ;
227
228 MacPrintFile(fName);
229 }
230
231 return noErr;
232 }
233
234 // AEOApp calls MacNewFile
235
236 short wxApp::MacHandleAEOApp(const WXEVENTREF WXUNUSED(event) , WXEVENTREF WXUNUSED(reply))
237 {
238 MacNewFile() ;
239 return noErr ;
240 }
241
242 // AEQuit attempts to quit the application
243
244 short wxApp::MacHandleAEQuit(const WXEVENTREF WXUNUSED(event) , WXEVENTREF WXUNUSED(reply))
245 {
246 wxWindow* win = GetTopWindow() ;
247 if ( win )
248 {
249 wxCommandEvent exitEvent(wxEVT_COMMAND_MENU_SELECTED, s_macExitMenuItemId);
250 if (!win->ProcessEvent(exitEvent))
251 win->Close(true) ;
252 }
253 else
254 {
255 ExitMainLoop() ;
256 }
257
258 return noErr ;
259 }
260
261 // AEROApp calls MacReopenApp
262
263 short wxApp::MacHandleAERApp(const WXEVENTREF WXUNUSED(event) , WXEVENTREF WXUNUSED(reply))
264 {
265 MacReopenApp() ;
266
267 return noErr ;
268 }
269
270 //----------------------------------------------------------------------
271 // Support Routines linking the Mac...File Calls to the Document Manager
272 //----------------------------------------------------------------------
273
274 void wxApp::MacOpenFile(const wxString & fileName )
275 {
276 #if wxUSE_DOC_VIEW_ARCHITECTURE
277 wxDocManager* dm = wxDocManager::GetDocumentManager() ;
278 if ( dm )
279 dm->CreateDocument(fileName , wxDOC_SILENT ) ;
280 #endif
281 }
282
283 void wxApp::MacOpenURL(const wxString & WXUNUSED(url) )
284 {
285 }
286
287 void wxApp::MacPrintFile(const wxString & fileName )
288 {
289 #if wxUSE_DOC_VIEW_ARCHITECTURE
290
291 #if wxUSE_PRINTING_ARCHITECTURE
292 wxDocManager* dm = wxDocManager::GetDocumentManager() ;
293 if ( dm )
294 {
295 wxDocument *doc = dm->CreateDocument(fileName , wxDOC_SILENT ) ;
296 if ( doc )
297 {
298 wxView* view = doc->GetFirstView() ;
299 if ( view )
300 {
301 wxPrintout *printout = view->OnCreatePrintout();
302 if (printout)
303 {
304 wxPrinter printer;
305 printer.Print(view->GetFrame(), printout, true);
306 delete printout;
307 }
308 }
309
310 if (doc->Close())
311 {
312 doc->DeleteAllViews();
313 dm->RemoveDocument(doc) ;
314 }
315 }
316 }
317 #endif //print
318
319 #endif //docview
320 }
321
322
323
324 void wxApp::MacNewFile()
325 {
326 }
327
328 void wxApp::MacReopenApp()
329 {
330 // HIG says :
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
334
335 wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst();
336 if ( node == NULL )
337 {
338 MacNewFile() ;
339 }
340 else
341 {
342 wxTopLevelWindow* firstIconized = NULL ;
343 wxTopLevelWindow* firstHidden = NULL ;
344 while (node)
345 {
346 wxTopLevelWindow* win = (wxTopLevelWindow*) node->GetData();
347 if ( !win->IsShown() )
348 {
349 // make sure we don't show 'virtual toplevel windows' like wxTaskBarIconWindow
350 if ( firstHidden == NULL && ( wxDynamicCast( win, wxFrame ) || wxDynamicCast( win, wxDialog ) ) )
351 firstHidden = win ;
352 }
353 else if ( win->IsIconized() )
354 {
355 if ( firstIconized == NULL )
356 firstIconized = win ;
357 }
358 else
359 {
360 // we do have a visible, non-iconized toplevelwindow -> do nothing
361 return;
362 }
363
364 node = node->GetNext();
365 }
366
367 if ( firstIconized )
368 firstIconized->Iconize( false ) ;
369 else if ( firstHidden )
370 firstHidden->Show( true );
371 }
372 }
373
374 //----------------------------------------------------------------------
375 // Macintosh CommandID support - converting between native and wx IDs
376 //----------------------------------------------------------------------
377
378 // if no native match they just return the passed-in id
379
380 struct IdPair
381 {
382 UInt32 macId ;
383 int wxId ;
384 } ;
385
386 IdPair gCommandIds [] =
387 {
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 } ,
395 } ;
396
397 int wxMacCommandToId( UInt32 macCommandId )
398 {
399 int wxid = 0 ;
400
401 switch ( macCommandId )
402 {
403 case kHICommandPreferences :
404 wxid = wxApp::s_macPreferencesMenuItemId ;
405 break ;
406
407 case kHICommandQuit :
408 wxid = wxApp::s_macExitMenuItemId ;
409 break ;
410
411 case kHICommandAbout :
412 wxid = wxApp::s_macAboutMenuItemId ;
413 break ;
414
415 default :
416 {
417 for ( size_t i = 0 ; i < WXSIZEOF(gCommandIds) ; ++i )
418 {
419 if ( gCommandIds[i].macId == macCommandId )
420 {
421 wxid = gCommandIds[i].wxId ;
422 break ;
423 }
424 }
425 }
426 break ;
427 }
428
429 if ( wxid == 0 )
430 wxid = (int) macCommandId ;
431
432 return wxid ;
433 }
434
435 UInt32 wxIdToMacCommand( int wxId )
436 {
437 UInt32 macId = 0 ;
438
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 ;
445 else
446 {
447 for ( size_t i = 0 ; i < WXSIZEOF(gCommandIds) ; ++i )
448 {
449 if ( gCommandIds[i].wxId == wxId )
450 {
451 macId = gCommandIds[i].macId ;
452 break ;
453 }
454 }
455 }
456
457 if ( macId == 0 )
458 macId = (int) wxId ;
459
460 return macId ;
461 }
462
463 wxMenu* wxFindMenuFromMacCommand( const HICommand &command , wxMenuItem* &item )
464 {
465 wxMenu* itemMenu = NULL ;
466 #ifndef __WXUNIVERSAL__
467 int id = 0 ;
468
469 // for 'standard' commands which don't have a wx-menu
470 if ( command.commandID == kHICommandPreferences || command.commandID == kHICommandQuit || command.commandID == kHICommandAbout )
471 {
472 id = wxMacCommandToId( command.commandID ) ;
473
474 wxMenuBar* mbar = wxMenuBar::MacGetInstalledMenuBar() ;
475 if ( mbar )
476 item = mbar->FindItem( id , &itemMenu ) ;
477 }
478 else if ( command.commandID != 0 && command.menu.menuRef != 0 && command.menu.menuItemIndex != 0 )
479 {
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 )
485 {
486 if ( UMAGetHelpMenuDontCreate( &helpMenuHandle , &firstUserHelpMenuItem) != noErr )
487 helpMenuHandle = NULL ;
488 }
489
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() )
494 {
495 wxMenuBar* mbar = wxMenuBar::MacGetInstalledMenuBar() ;
496 if ( mbar )
497 item = mbar->FindItem( id , &itemMenu ) ;
498 }
499 else
500 {
501 URefCon refCon ;
502
503 GetMenuItemRefCon( command.menu.menuRef , command.menu.menuItemIndex , &refCon ) ;
504 itemMenu = wxFindMenuFromMacMenu( command.menu.menuRef ) ;
505 if ( itemMenu != NULL )
506 item = (wxMenuItem*) refCon ;
507 }
508 }
509 #endif
510 return itemMenu ;
511 }
512
513 //----------------------------------------------------------------------
514 // Carbon Event Handler
515 //----------------------------------------------------------------------
516
517 static const EventTypeSpec eventList[] =
518 {
519 { kEventClassCommand, kEventProcessCommand } ,
520 { kEventClassCommand, kEventCommandUpdateStatus } ,
521
522 { kEventClassMenu, kEventMenuOpening },
523 { kEventClassMenu, kEventMenuClosed },
524 { kEventClassMenu, kEventMenuTargetItem },
525
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
530
531 { kEventClassAppleEvent , kEventAppleEvent } ,
532
533 { kEventClassMouse , kEventMouseDown } ,
534 { kEventClassMouse , kEventMouseMoved } ,
535 { kEventClassMouse , kEventMouseUp } ,
536 { kEventClassMouse , kEventMouseDragged } ,
537 { 'WXMC' , 'WXMC' }
538 } ;
539
540 static pascal OSStatus
541 wxMacAppMenuEventHandler( EventHandlerCallRef WXUNUSED(handler),
542 EventRef event,
543 void *WXUNUSED(data) )
544 {
545 wxMacCarbonEvent cEvent( event ) ;
546 MenuRef menuRef = cEvent.GetParameter<MenuRef>(kEventParamDirectObject) ;
547 #ifndef __WXUNIVERSAL__
548 wxMenu* menu = wxFindMenuFromMacMenu( menuRef ) ;
549
550 if ( menu )
551 {
552 wxEventType type=0;
553 MenuCommand cmd=0;
554 switch (GetEventKind(event))
555 {
556 case kEventMenuOpening:
557 type = wxEVT_MENU_OPEN;
558 break;
559
560 case kEventMenuClosed:
561 type = wxEVT_MENU_CLOSE;
562 break;
563
564 case kEventMenuTargetItem:
565 cmd = cEvent.GetParameter<MenuCommand>(kEventParamMenuCommand,typeMenuCommand) ;
566 if (cmd != 0)
567 type = wxEVT_MENU_HIGHLIGHT;
568 break;
569
570 default:
571 wxFAIL_MSG(wxT("Unexpected menu event kind"));
572 break;
573 }
574
575 if ( type )
576 {
577 wxMenuEvent wxevent(type, cmd, menu);
578 wxevent.SetEventObject(menu);
579
580 wxEvtHandler* handler = menu->GetEventHandler();
581 if (handler && handler->ProcessEvent(wxevent))
582 {
583 // handled
584 }
585 else
586 {
587 wxWindow *win = menu->GetInvokingWindow();
588 if (win)
589 win->GetEventHandler()->ProcessEvent(wxevent);
590 }
591 }
592 }
593 #endif
594 return eventNotHandledErr;
595 }
596
597 static pascal OSStatus
598 wxMacAppCommandEventHandler( EventHandlerCallRef WXUNUSED(handler) ,
599 EventRef event ,
600 void *WXUNUSED(data) )
601 {
602 OSStatus result = eventNotHandledErr ;
603
604 HICommand command ;
605
606 wxMacCarbonEvent cEvent( event ) ;
607 cEvent.GetParameter<HICommand>(kEventParamDirectObject,typeHICommand,&command) ;
608
609 wxMenuItem* item = NULL ;
610 wxMenu* itemMenu = wxFindMenuFromMacCommand( command , item ) ;
611 int id = wxMacCommandToId( command.commandID ) ;
612
613 if ( item )
614 {
615 wxASSERT( itemMenu != NULL ) ;
616
617 switch ( cEvent.GetKind() )
618 {
619 case kEventProcessCommand :
620 result = itemMenu->MacHandleCommandProcess( item, id );
621 break ;
622
623 case kEventCommandUpdateStatus:
624 result = itemMenu->MacHandleCommandUpdateStatus( item, id );
625 break ;
626
627 default :
628 break ;
629 }
630 }
631 return result ;
632 }
633
634 static pascal OSStatus
635 wxMacAppApplicationEventHandler( EventHandlerCallRef WXUNUSED(handler) ,
636 EventRef event ,
637 void *WXUNUSED(data) )
638 {
639 OSStatus result = eventNotHandledErr ;
640 switch ( GetEventKind( event ) )
641 {
642 case kEventAppActivated :
643 if ( wxTheApp )
644 wxTheApp->SetActive( true , NULL ) ;
645 result = noErr ;
646 break ;
647
648 case kEventAppDeactivated :
649 if ( wxTheApp )
650 wxTheApp->SetActive( false , NULL ) ;
651 result = noErr ;
652 break ;
653
654 default :
655 break ;
656 }
657
658 return result ;
659 }
660
661 pascal OSStatus wxMacAppEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
662 {
663 EventRef formerEvent = (EventRef) wxTheApp->MacGetCurrentEvent() ;
664 EventHandlerCallRef formerEventHandlerCallRef = (EventHandlerCallRef) wxTheApp->MacGetCurrentEventHandlerCallRef() ;
665 wxTheApp->MacSetCurrentEvent( event , handler ) ;
666
667 OSStatus result = eventNotHandledErr ;
668 switch ( GetEventClass( event ) )
669 {
670 case kEventClassCommand :
671 result = wxMacAppCommandEventHandler( handler , event , data ) ;
672 break ;
673
674 case kEventClassApplication :
675 result = wxMacAppApplicationEventHandler( handler , event , data ) ;
676 break ;
677
678 case kEventClassMenu :
679 result = wxMacAppMenuEventHandler( handler , event , data ) ;
680 break ;
681
682 case kEventClassMouse :
683 {
684 wxMacCarbonEvent cEvent( event ) ;
685
686 WindowRef window ;
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 ) ;
693 }
694 break ;
695
696 case kEventClassAppleEvent :
697 {
698 EventRecord rec ;
699
700 wxMacConvertEventToRecord( event , &rec ) ;
701 result = AEProcessAppleEvent( &rec ) ;
702 }
703 break ;
704
705 default :
706 break ;
707 }
708
709 wxTheApp->MacSetCurrentEvent( formerEvent, formerEventHandlerCallRef ) ;
710
711 return result ;
712 }
713
714 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacAppEventHandler )
715
716 #ifdef __WXDEBUG__
717
718 pascal static void
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,
725 long lineNumber,
726 void *value,
727 ConstStr255Param WXUNUSED(outputMsg))
728 {
729 // flow into assert handling
730 wxString fileNameStr ;
731 wxString assertionStr ;
732 wxString exceptionStr ;
733 wxString errorStr ;
734
735 #if wxUSE_UNICODE
736 fileNameStr = wxString(fileName, wxConvLocal);
737 assertionStr = wxString(assertionString, wxConvLocal);
738 exceptionStr = wxString((exceptionLabelString!=0) ? exceptionLabelString : "", wxConvLocal) ;
739 errorStr = wxString((errorString!=0) ? errorString : "", wxConvLocal) ;
740 #else
741 fileNameStr = fileName;
742 assertionStr = assertionString;
743 exceptionStr = (exceptionLabelString!=0) ? exceptionLabelString : "" ;
744 errorStr = (errorString!=0) ? errorString : "" ;
745 #endif
746
747 #if 1
748 // flow into log
749 wxLogDebug( wxT("AssertMacros: %s %s %s file: %s, line: %ld (value %p)\n"),
750 assertionStr.c_str() ,
751 exceptionStr.c_str() ,
752 errorStr.c_str(),
753 fileNameStr.c_str(), lineNumber ,
754 value ) ;
755 #else
756
757 wxOnAssert(fileNameStr, lineNumber , assertionStr ,
758 wxString::Format( wxT("%s %s value (%p)") , exceptionStr, errorStr , value ) ) ;
759 #endif
760 }
761
762 #endif //__WXDEBUG__
763
764 extern "C" void macPostedEventCallback(void *WXUNUSED(unused))
765 {
766 wxTheApp->ProcessPendingEvents();
767 }
768
769 ProcessSerialNumber gAppProcess ;
770
771 bool wxApp::Initialize(int& argc, wxChar **argv)
772 {
773 // Mac-specific
774
775 #ifdef __WXDEBUG__
776 InstallDebugAssertOutputHandler( NewDebugAssertOutputHandlerUPP( wxMacAssertOutputHandler ) );
777 #endif
778
779 UMAInitToolbox( 4, sm_isEmbedded ) ;
780 SetEventMask( everyEvent ) ;
781 UMAShowWatchCursor() ;
782
783 // Mac OS X passes a process serial number command line argument when
784 // the application is launched from the Finder. This argument must be
785 // removed from the command line arguments before being handled by the
786 // application (otherwise applications would need to handle it)
787 if ( argc > 1 )
788 {
789 static const wxChar *ARG_PSN = _T("-psn_");
790 if ( wxStrncmp(argv[1], ARG_PSN, wxStrlen(ARG_PSN)) == 0 )
791 {
792 // remove this argument
793 --argc;
794 memmove(argv + 1, argv + 2, argc * sizeof(char *));
795 }
796 }
797
798 if ( !wxAppBase::Initialize(argc, argv) )
799 return false;
800
801 GetCurrentProcess(&gAppProcess);
802
803 #if wxUSE_INTL
804 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
805 #endif
806
807 // these might be the startup dirs, set them to the 'usual' dir containing the app bundle
808 wxString startupCwd = wxGetCwd() ;
809 if ( startupCwd == wxT("/") || startupCwd.Right(15) == wxT("/Contents/MacOS") )
810 {
811 CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle() ) ;
812 CFURLRef urlParent = CFURLCreateCopyDeletingLastPathComponent( kCFAllocatorDefault , url ) ;
813 CFRelease( url ) ;
814 CFStringRef path = CFURLCopyFileSystemPath ( urlParent , kCFURLPOSIXPathStyle ) ;
815 CFRelease( urlParent ) ;
816 wxString cwd = wxMacCFStringHolder(path).AsString(wxLocale::GetSystemEncoding());
817 wxSetWorkingDirectory( cwd ) ;
818 }
819
820 /* connect posted events to common-mode run loop so that wxPostEvent events
821 are handled even while we're in the menu or on a scrollbar */
822 CFRunLoopSourceContext event_posted_context = {0};
823 event_posted_context.perform = macPostedEventCallback;
824 m_macEventPosted = CFRunLoopSourceCreate(NULL,0,&event_posted_context);
825 CFRunLoopAddSource(CFRunLoopGetCurrent(), m_macEventPosted, kCFRunLoopCommonModes);
826 // run loop takes ownership
827 CFRelease(m_macEventPosted);
828
829 UMAShowArrowCursor() ;
830
831 return true;
832 }
833
834 AEEventHandlerUPP sODocHandler = NULL ;
835 AEEventHandlerUPP sGURLHandler = NULL ;
836 AEEventHandlerUPP sOAppHandler = NULL ;
837 AEEventHandlerUPP sPDocHandler = NULL ;
838 AEEventHandlerUPP sRAppHandler = NULL ;
839 AEEventHandlerUPP sQuitHandler = NULL ;
840
841 bool wxApp::OnInitGui()
842 {
843 if ( !wxAppBase::OnInitGui() )
844 return false ;
845
846 InstallStandardEventHandler( GetApplicationEventTarget() ) ;
847
848 if (!sm_isEmbedded)
849 {
850 InstallApplicationEventHandler(
851 GetwxMacAppEventHandlerUPP(),
852 GetEventTypeCount(eventList), eventList, wxTheApp, (EventHandlerRef *)&(wxTheApp->m_macEventHandler));
853 }
854
855 if (!sm_isEmbedded)
856 {
857 sODocHandler = NewAEEventHandlerUPP(AEHandleODoc) ;
858 sGURLHandler = NewAEEventHandlerUPP(AEHandleGURL) ;
859 sOAppHandler = NewAEEventHandlerUPP(AEHandleOApp) ;
860 sPDocHandler = NewAEEventHandlerUPP(AEHandlePDoc) ;
861 sRAppHandler = NewAEEventHandlerUPP(AEHandleRApp) ;
862 sQuitHandler = NewAEEventHandlerUPP(AEHandleQuit) ;
863
864 AEInstallEventHandler( kCoreEventClass , kAEOpenDocuments ,
865 sODocHandler , 0 , FALSE ) ;
866 AEInstallEventHandler( kInternetEventClass, kAEGetURL,
867 sGURLHandler , 0 , FALSE ) ;
868 AEInstallEventHandler( kCoreEventClass , kAEOpenApplication ,
869 sOAppHandler , 0 , FALSE ) ;
870 AEInstallEventHandler( kCoreEventClass , kAEPrintDocuments ,
871 sPDocHandler , 0 , FALSE ) ;
872 AEInstallEventHandler( kCoreEventClass , kAEReopenApplication ,
873 sRAppHandler , 0 , FALSE ) ;
874 AEInstallEventHandler( kCoreEventClass , kAEQuitApplication ,
875 sQuitHandler , 0 , FALSE ) ;
876 }
877
878 if ( !wxMacInitCocoa() )
879 return false;
880
881 return true ;
882 }
883
884 void wxApp::CleanUp()
885 {
886 #if wxUSE_TOOLTIPS
887 wxToolTip::RemoveToolTips() ;
888 #endif
889
890 if (m_macEventPosted)
891 {
892 CFRunLoopRemoveSource(CFRunLoopGetCurrent(), m_macEventPosted, kCFRunLoopCommonModes);
893 m_macEventPosted = NULL;
894 }
895
896 // One last chance for pending objects to be cleaned up
897 wxTheApp->DeletePendingObjects();
898
899 UMACleanupToolbox() ;
900
901 if (!sm_isEmbedded)
902 RemoveEventHandler( (EventHandlerRef)(wxTheApp->m_macEventHandler) );
903
904 if (!sm_isEmbedded)
905 {
906 AERemoveEventHandler( kCoreEventClass , kAEOpenDocuments ,
907 sODocHandler , FALSE ) ;
908 AERemoveEventHandler( kInternetEventClass, kAEGetURL,
909 sGURLHandler , FALSE ) ;
910 AERemoveEventHandler( kCoreEventClass , kAEOpenApplication ,
911 sOAppHandler , FALSE ) ;
912 AERemoveEventHandler( kCoreEventClass , kAEPrintDocuments ,
913 sPDocHandler , FALSE ) ;
914 AERemoveEventHandler( kCoreEventClass , kAEReopenApplication ,
915 sRAppHandler , FALSE ) ;
916 AERemoveEventHandler( kCoreEventClass , kAEQuitApplication ,
917 sQuitHandler , FALSE ) ;
918
919 DisposeAEEventHandlerUPP( sODocHandler ) ;
920 DisposeAEEventHandlerUPP( sGURLHandler ) ;
921 DisposeAEEventHandlerUPP( sOAppHandler ) ;
922 DisposeAEEventHandlerUPP( sPDocHandler ) ;
923 DisposeAEEventHandlerUPP( sRAppHandler ) ;
924 DisposeAEEventHandlerUPP( sQuitHandler ) ;
925 }
926
927 wxAppBase::CleanUp();
928 }
929
930 //----------------------------------------------------------------------
931 // misc initialization stuff
932 //----------------------------------------------------------------------
933
934 bool wxMacConvertEventToRecord( EventRef event , EventRecord *rec)
935 {
936 OSStatus err = noErr ;
937 bool converted = ConvertEventRefToEventRecord( event, rec) ;
938
939 if ( !converted )
940 {
941 switch ( GetEventClass( event ) )
942 {
943 case kEventClassKeyboard :
944 {
945 converted = true ;
946 switch ( GetEventKind(event) )
947 {
948 case kEventRawKeyDown :
949 rec->what = keyDown ;
950 break ;
951
952 case kEventRawKeyRepeat :
953 rec->what = autoKey ;
954 break ;
955
956 case kEventRawKeyUp :
957 rec->what = keyUp ;
958 break ;
959
960 case kEventRawKeyModifiersChanged :
961 rec->what = nullEvent ;
962 break ;
963
964 default :
965 converted = false ;
966 break ;
967 }
968
969 if ( converted )
970 {
971 UInt32 keyCode ;
972 unsigned char charCode ;
973 UInt32 modifiers ;
974 #ifndef __LP64__
975 GetMouse( &rec->where) ;
976 #endif
977 err = GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, 4, NULL, &modifiers);
978 err = GetEventParameter(event, kEventParamKeyCode, typeUInt32, NULL, 4, NULL, &keyCode);
979 err = GetEventParameter(event, kEventParamKeyMacCharCodes, typeChar, NULL, 1, NULL, &charCode);
980 rec->modifiers = modifiers ;
981 rec->message = (keyCode << 8 ) + charCode ;
982 }
983 }
984 break ;
985
986 case kEventClassTextInput :
987 {
988 switch ( GetEventKind( event ) )
989 {
990 case kEventTextInputUnicodeForKeyEvent :
991 {
992 EventRef rawEvent ;
993 err = GetEventParameter(
994 event, kEventParamTextInputSendKeyboardEvent, typeEventRef, NULL,
995 sizeof(rawEvent), NULL, &rawEvent ) ;
996 converted = true ;
997
998 {
999 UInt32 keyCode, modifiers;
1000 unsigned char charCode ;
1001 #ifndef __LP64__
1002
1003 GetMouse( &rec->where) ;
1004 #endif
1005 rec->what = keyDown ;
1006 err = GetEventParameter(rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, 4, NULL, &modifiers);
1007 err = GetEventParameter(rawEvent, kEventParamKeyCode, typeUInt32, NULL, 4, NULL, &keyCode);
1008 err = GetEventParameter(rawEvent, kEventParamKeyMacCharCodes, typeChar, NULL, 1, NULL, &charCode);
1009 rec->modifiers = modifiers ;
1010 rec->message = (keyCode << 8 ) + charCode ;
1011 }
1012 }
1013 break ;
1014
1015 default :
1016 break ;
1017 }
1018 }
1019 break ;
1020
1021 default :
1022 break ;
1023 }
1024 }
1025
1026 return converted ;
1027 }
1028
1029 wxApp::wxApp()
1030 {
1031 m_printMode = wxPRINT_WINDOWS;
1032
1033 m_macCurrentEvent = NULL ;
1034 m_macCurrentEventHandlerCallRef = NULL ;
1035 m_macEventPosted = NULL ;
1036 }
1037
1038 void wxApp::OnIdle(wxIdleEvent& WXUNUSED(event))
1039 {
1040 // If they are pending events, we must process them: pending events are
1041 // either events to the threads other than main or events posted with
1042 // wxPostEvent() functions
1043 #ifndef __WXUNIVERSAL__
1044 if (!wxMenuBar::MacGetInstalledMenuBar() && wxMenuBar::MacGetCommonMenuBar())
1045 wxMenuBar::MacGetCommonMenuBar()->MacInstallMenuBar();
1046 #endif
1047 }
1048
1049 void wxApp::WakeUpIdle()
1050 {
1051 if (m_macEventPosted)
1052 {
1053 CFRunLoopSourceSignal(m_macEventPosted);
1054 }
1055
1056 wxMacWakeUp() ;
1057 }
1058
1059 void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event))
1060 {
1061 if (GetTopWindow())
1062 GetTopWindow()->Close(true);
1063 }
1064
1065 // Default behaviour: close the application with prompts. The
1066 // user can veto the close, and therefore the end session.
1067 void wxApp::OnQueryEndSession(wxCloseEvent& event)
1068 {
1069 if (GetTopWindow())
1070 {
1071 if (!GetTopWindow()->Close(!event.CanVeto()))
1072 event.Veto(true);
1073 }
1074 }
1075
1076 extern "C" void wxCYield() ;
1077 void wxCYield()
1078 {
1079 wxYield() ;
1080 }
1081
1082 // Yield to other processes
1083
1084 bool wxApp::Yield(bool onlyIfNeeded)
1085 {
1086 if (s_inYield)
1087 {
1088 if ( !onlyIfNeeded )
1089 {
1090 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1091 }
1092
1093 return false;
1094 }
1095
1096 #if wxUSE_THREADS
1097 // Yielding from a non-gui thread needs to bail out, otherwise we end up
1098 // possibly sending events in the thread too.
1099 if ( !wxThread::IsMain() )
1100 {
1101 return true;
1102 }
1103 #endif // wxUSE_THREADS
1104
1105 s_inYield = true;
1106
1107 // by definition yield should handle all non-processed events
1108
1109 EventRef theEvent;
1110
1111 OSStatus status = noErr ;
1112
1113 while ( status == noErr )
1114 {
1115 s_inReceiveEvent = true ;
1116 status = ReceiveNextEvent(0, NULL,kEventDurationNoWait,true,&theEvent) ;
1117 s_inReceiveEvent = false ;
1118
1119 if ( status == eventLoopTimedOutErr )
1120 {
1121 // make sure next time the event loop will trigger idle events
1122 sleepTime = kEventDurationNoWait ;
1123 }
1124 else if ( status == eventLoopQuitErr )
1125 {
1126 // according to QA1061 this may also occur when a WakeUp Process
1127 // is executed
1128 }
1129 else
1130 {
1131 MacHandleOneEvent( theEvent ) ;
1132 ReleaseEvent(theEvent);
1133 }
1134 }
1135
1136 s_inYield = false;
1137
1138 return true;
1139 }
1140
1141 void wxApp::MacDoOneEvent()
1142 {
1143 wxMacAutoreleasePool autoreleasepool;
1144 EventRef theEvent;
1145
1146 s_inReceiveEvent = true ;
1147 OSStatus status = ReceiveNextEvent(0, NULL, sleepTime, true, &theEvent) ;
1148 s_inReceiveEvent = false ;
1149
1150 switch (status)
1151 {
1152 case eventLoopTimedOutErr :
1153 if ( wxTheApp->ProcessIdle() )
1154 sleepTime = kEventDurationNoWait ;
1155 else
1156 sleepTime = kEventDurationSecond;
1157 break;
1158
1159 case eventLoopQuitErr :
1160 // according to QA1061 this may also occur
1161 // when a WakeUp Process is executed
1162 break;
1163
1164 default:
1165 MacHandleOneEvent( theEvent ) ;
1166 ReleaseEvent( theEvent );
1167 sleepTime = kEventDurationNoWait ;
1168 break;
1169 }
1170 // repeaters
1171
1172 DeletePendingObjects() ;
1173 }
1174
1175 // virtual
1176 void wxApp::MacHandleUnhandledEvent( WXEVENTREF WXUNUSED(evr) )
1177 {
1178 // Override to process unhandled events as you please
1179 }
1180
1181 CFMutableArrayRef GetAutoReleaseArray()
1182 {
1183 static CFMutableArrayRef array = 0;
1184 if ( array == 0)
1185 array= CFArrayCreateMutable(kCFAllocatorDefault,0,&kCFTypeArrayCallBacks);
1186 return array;
1187 }
1188
1189 void wxApp::MacHandleOneEvent( WXEVENTREF evr )
1190 {
1191 EventTargetRef theTarget;
1192 theTarget = GetEventDispatcherTarget();
1193 m_macCurrentEvent = evr ;
1194
1195 OSStatus status = SendEventToEventTarget((EventRef) evr , theTarget);
1196 if (status == eventNotHandledErr)
1197 MacHandleUnhandledEvent(evr);
1198
1199 #if wxUSE_THREADS
1200 wxMutexGuiLeaveOrEnter();
1201 #endif // wxUSE_THREADS
1202
1203 CFArrayRemoveAllValues( GetAutoReleaseArray() );
1204 }
1205
1206 void wxApp::MacAddToAutorelease( void* cfrefobj )
1207 {
1208 CFArrayAppendValue( GetAutoReleaseArray(), cfrefobj );
1209 }
1210
1211 long wxMacTranslateKey(unsigned char key, unsigned char code)
1212 {
1213 long retval = key ;
1214 switch (key)
1215 {
1216 case kHomeCharCode :
1217 retval = WXK_HOME;
1218 break;
1219
1220 case kEnterCharCode :
1221 retval = WXK_RETURN;
1222 break;
1223 case kEndCharCode :
1224 retval = WXK_END;
1225 break;
1226
1227 case kHelpCharCode :
1228 retval = WXK_HELP;
1229 break;
1230
1231 case kBackspaceCharCode :
1232 retval = WXK_BACK;
1233 break;
1234
1235 case kTabCharCode :
1236 retval = WXK_TAB;
1237 break;
1238
1239 case kPageUpCharCode :
1240 retval = WXK_PAGEUP;
1241 break;
1242
1243 case kPageDownCharCode :
1244 retval = WXK_PAGEDOWN;
1245 break;
1246
1247 case kReturnCharCode :
1248 retval = WXK_RETURN;
1249 break;
1250
1251 case kFunctionKeyCharCode :
1252 {
1253 switch ( code )
1254 {
1255 case 0x7a :
1256 retval = WXK_F1 ;
1257 break;
1258
1259 case 0x78 :
1260 retval = WXK_F2 ;
1261 break;
1262
1263 case 0x63 :
1264 retval = WXK_F3 ;
1265 break;
1266
1267 case 0x76 :
1268 retval = WXK_F4 ;
1269 break;
1270
1271 case 0x60 :
1272 retval = WXK_F5 ;
1273 break;
1274
1275 case 0x61 :
1276 retval = WXK_F6 ;
1277 break;
1278
1279 case 0x62:
1280 retval = WXK_F7 ;
1281 break;
1282
1283 case 0x64 :
1284 retval = WXK_F8 ;
1285 break;
1286
1287 case 0x65 :
1288 retval = WXK_F9 ;
1289 break;
1290
1291 case 0x6D :
1292 retval = WXK_F10 ;
1293 break;
1294
1295 case 0x67 :
1296 retval = WXK_F11 ;
1297 break;
1298
1299 case 0x6F :
1300 retval = WXK_F12 ;
1301 break;
1302
1303 case 0x69 :
1304 retval = WXK_F13 ;
1305 break;
1306
1307 case 0x6B :
1308 retval = WXK_F14 ;
1309 break;
1310
1311 case 0x71 :
1312 retval = WXK_F15 ;
1313 break;
1314
1315 default:
1316 break;
1317 }
1318 }
1319 break ;
1320
1321 case kEscapeCharCode :
1322 retval = WXK_ESCAPE ;
1323 break ;
1324
1325 case kLeftArrowCharCode :
1326 retval = WXK_LEFT ;
1327 break ;
1328
1329 case kRightArrowCharCode :
1330 retval = WXK_RIGHT ;
1331 break ;
1332
1333 case kUpArrowCharCode :
1334 retval = WXK_UP ;
1335 break ;
1336
1337 case kDownArrowCharCode :
1338 retval = WXK_DOWN ;
1339 break ;
1340
1341 case kDeleteCharCode :
1342 retval = WXK_DELETE ;
1343 break ;
1344
1345 default:
1346 break ;
1347 } // end switch
1348
1349 return retval;
1350 }
1351
1352 int wxMacKeyCodeToModifier(wxKeyCode key)
1353 {
1354 switch (key)
1355 {
1356 case WXK_START:
1357 case WXK_MENU:
1358 return cmdKey;
1359
1360 case WXK_SHIFT:
1361 return shiftKey;
1362
1363 case WXK_CAPITAL:
1364 return alphaLock;
1365
1366 case WXK_ALT:
1367 return optionKey;
1368
1369 case WXK_CONTROL:
1370 return controlKey;
1371
1372 default:
1373 return 0;
1374 }
1375 }
1376
1377 wxMouseState wxGetMouseState()
1378 {
1379 wxMouseState ms;
1380
1381 wxPoint pt = wxGetMousePosition();
1382 ms.SetX(pt.x);
1383 ms.SetY(pt.y);
1384
1385 UInt32 buttons = GetCurrentButtonState();
1386 ms.SetLeftDown( (buttons & 0x01) != 0 );
1387 ms.SetMiddleDown( (buttons & 0x04) != 0 );
1388 ms.SetRightDown( (buttons & 0x02) != 0 );
1389
1390 UInt32 modifiers = GetCurrentKeyModifiers();
1391 ms.SetControlDown(modifiers & controlKey);
1392 ms.SetShiftDown(modifiers & shiftKey);
1393 ms.SetAltDown(modifiers & optionKey);
1394 ms.SetMetaDown(modifiers & cmdKey);
1395
1396 return ms;
1397 }
1398
1399 // TODO : once the new key/char handling is tested, move all the code to wxWindow
1400
1401 bool wxApp::MacSendKeyDownEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1402 {
1403 if ( !focus )
1404 return false ;
1405
1406 bool handled;
1407 wxKeyEvent event(wxEVT_KEY_DOWN) ;
1408 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1409
1410 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1411 if ( handled && event.GetSkipped() )
1412 handled = false ;
1413
1414 #if wxUSE_ACCEL
1415 if ( !handled )
1416 {
1417 wxWindow *ancestor = focus;
1418 while (ancestor)
1419 {
1420 int command = ancestor->GetAcceleratorTable()->GetCommand( event );
1421 if (command != -1)
1422 {
1423 wxEvtHandler * const handler = ancestor->GetEventHandler();
1424
1425 wxCommandEvent command_event( wxEVT_COMMAND_MENU_SELECTED, command );
1426 handled = handler->ProcessEvent( command_event );
1427
1428 if ( !handled )
1429 {
1430 // accelerators can also be used with buttons, try them too
1431 command_event.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED);
1432 handled = handler->ProcessEvent( command_event );
1433 }
1434
1435 break;
1436 }
1437
1438 if (ancestor->IsTopLevel())
1439 break;
1440
1441 ancestor = ancestor->GetParent();
1442 }
1443 }
1444 #endif // wxUSE_ACCEL
1445
1446 return handled ;
1447 }
1448
1449 bool wxApp::MacSendKeyUpEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1450 {
1451 if ( !focus )
1452 return false ;
1453
1454 bool handled;
1455 wxKeyEvent event( wxEVT_KEY_UP ) ;
1456 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1457 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1458
1459 return handled ;
1460 }
1461
1462 bool wxApp::MacSendCharEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1463 {
1464 if ( !focus )
1465 return false ;
1466
1467 wxKeyEvent event(wxEVT_CHAR) ;
1468 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1469 long keyval = event.m_keyCode ;
1470
1471 bool handled = false ;
1472
1473 wxTopLevelWindowMac *tlw = focus->MacGetTopLevelWindow() ;
1474
1475 if (tlw)
1476 {
1477 event.SetEventType( wxEVT_CHAR_HOOK );
1478 handled = tlw->GetEventHandler()->ProcessEvent( event );
1479 if ( handled && event.GetSkipped() )
1480 handled = false ;
1481 }
1482
1483 if ( !handled )
1484 {
1485 event.SetEventType( wxEVT_CHAR );
1486 event.Skip( false ) ;
1487 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1488 }
1489
1490 if ( !handled && (keyval == WXK_TAB) )
1491 {
1492 wxWindow* iter = focus->GetParent() ;
1493 while ( iter && !handled )
1494 {
1495 if ( iter->HasFlag( wxTAB_TRAVERSAL ) )
1496 {
1497 wxNavigationKeyEvent new_event;
1498 new_event.SetEventObject( focus );
1499 new_event.SetDirection( !event.ShiftDown() );
1500 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1501 new_event.SetWindowChange( event.ControlDown() );
1502 new_event.SetCurrentFocus( focus );
1503 handled = focus->GetParent()->GetEventHandler()->ProcessEvent( new_event );
1504 if ( handled && new_event.GetSkipped() )
1505 handled = false ;
1506 }
1507
1508 iter = iter->GetParent() ;
1509 }
1510 }
1511
1512 // backdoor handler for default return and command escape
1513 if ( !handled && (!focus->IsKindOf(CLASSINFO(wxControl) ) || !focus->MacCanFocus() ) )
1514 {
1515 // if window is not having a focus still testing for default enter or cancel
1516 // TODO: add the UMA version for ActiveNonFloatingWindow
1517 wxWindow* focus = wxFindWinFromMacWindow( FrontWindow() ) ;
1518 if ( focus )
1519 {
1520 if ( keyval == WXK_RETURN || keyval == WXK_NUMPAD_ENTER )
1521 {
1522 wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(focus), wxTopLevelWindow);
1523 if ( tlw && tlw->GetDefaultItem() )
1524 {
1525 wxButton *def = wxDynamicCast(tlw->GetDefaultItem(), wxButton);
1526 if ( def && def->IsEnabled() )
1527 {
1528 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, def->GetId() );
1529 event.SetEventObject(def);
1530 def->Command(event);
1531
1532 return true ;
1533 }
1534 }
1535 }
1536 else if (keyval == WXK_ESCAPE || (keyval == '.' && modifiers & cmdKey ) )
1537 {
1538 // generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs)
1539 wxCommandEvent new_event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_CANCEL);
1540 new_event.SetEventObject( focus );
1541 handled = focus->GetEventHandler()->ProcessEvent( new_event );
1542 }
1543 }
1544 }
1545 return handled ;
1546 }
1547
1548 // This method handles common code for SendKeyDown, SendKeyUp, and SendChar events.
1549 void wxApp::MacCreateKeyEvent( wxKeyEvent& event, wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1550 {
1551 short keycode, keychar ;
1552
1553 keychar = short(keymessage & charCodeMask);
1554 keycode = short(keymessage & keyCodeMask) >> 8 ;
1555 if ( !(event.GetEventType() == wxEVT_CHAR) && (modifiers & (controlKey | shiftKey | optionKey) ) )
1556 {
1557 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1558 // and look at the character after
1559 #ifdef __LP64__
1560 // TODO new implementation using TextInputSources
1561 #else
1562 UInt32 state = 0;
1563 UInt32 keyInfo = KeyTranslate((Ptr)GetScriptManagerVariable(smKCHRCache), ( modifiers & (~(controlKey | shiftKey | optionKey))) | keycode, &state);
1564 keychar = short(keyInfo & charCodeMask);
1565 #endif
1566 }
1567
1568 long keyval = wxMacTranslateKey(keychar, keycode) ;
1569 if ( keyval == keychar && ( event.GetEventType() == wxEVT_KEY_UP || event.GetEventType() == wxEVT_KEY_DOWN ) )
1570 keyval = wxToupper( keyval ) ;
1571
1572 // Check for NUMPAD keys. For KEY_UP/DOWN events we need to use the
1573 // WXK_NUMPAD constants, but for the CHAR event we want to use the
1574 // standard ascii values
1575 if ( event.GetEventType() != wxEVT_CHAR )
1576 {
1577 if (keyval >= '0' && keyval <= '9' && keycode >= 82 && keycode <= 92)
1578 {
1579 keyval = (keyval - '0') + WXK_NUMPAD0;
1580 }
1581 else if (keycode >= 65 && keycode <= 81)
1582 {
1583 switch (keycode)
1584 {
1585 case 76 :
1586 keyval = WXK_NUMPAD_ENTER;
1587 break;
1588
1589 case 81:
1590 keyval = WXK_NUMPAD_EQUAL;
1591 break;
1592
1593 case 67:
1594 keyval = WXK_NUMPAD_MULTIPLY;
1595 break;
1596
1597 case 75:
1598 keyval = WXK_NUMPAD_DIVIDE;
1599 break;
1600
1601 case 78:
1602 keyval = WXK_NUMPAD_SUBTRACT;
1603 break;
1604
1605 case 69:
1606 keyval = WXK_NUMPAD_ADD;
1607 break;
1608
1609 case 65:
1610 keyval = WXK_NUMPAD_DECIMAL;
1611 break;
1612 default:
1613 break;
1614 }
1615 }
1616 }
1617
1618 event.m_shiftDown = modifiers & shiftKey;
1619 event.m_controlDown = modifiers & controlKey;
1620 event.m_altDown = modifiers & optionKey;
1621 event.m_metaDown = modifiers & cmdKey;
1622 event.m_keyCode = keyval ;
1623 #if wxUSE_UNICODE
1624 event.m_uniChar = uniChar ;
1625 #endif
1626
1627 event.m_rawCode = keymessage;
1628 event.m_rawFlags = modifiers;
1629 event.m_x = wherex;
1630 event.m_y = wherey;
1631 event.SetTimestamp(when);
1632 event.SetEventObject(focus);
1633 }