1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "app.h"
18 #include "wx/window.h"
20 #include "wx/button.h"
23 #include "wx/gdicmn.h"
26 #include "wx/cursor.h"
29 #include "wx/palette.h"
31 #include "wx/dialog.h"
32 #include "wx/msgdlg.h"
34 #include "wx/module.h"
35 #include "wx/memory.h"
36 #include "wx/tooltip.h"
37 #include "wx/textctrl.h"
39 #include "wx/docview.h"
53 #include "wx/mac/uma.h"
54 #include "wx/mac/macnotfy.h"
57 # include <CoreServices/CoreServices.h>
58 # if defined(WXMAKINGDLL)
59 # include <mach-o/dyld.h>
64 # include <ToolUtils.h>
65 # include <DiskInit.h>
69 extern wxList wxPendingDelete
;
70 extern wxList
*wxWinMacWindowList
;
71 extern wxList
*wxWinMacControlList
;
73 // statics for implementation
75 static bool s_inYield
= FALSE
;
76 static bool s_inOnIdle
= FALSE
;
79 static bool s_inReceiveEvent
= FALSE
;
80 static EventTime sleepTime
= kEventDurationNoWait
;
82 static long sleepTime
= 0 ;
85 #if !USE_SHARED_LIBRARY
86 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
87 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
88 EVT_IDLE(wxApp::OnIdle
)
89 EVT_END_SESSION(wxApp::OnEndSession
)
90 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession
)
95 const short kMacMinHeap
= (29 * 1024) ;
96 // platform specific static variables
98 const short kwxMacMenuBarResource
= 1 ;
99 const short kwxMacAppleMenuId
= 1 ;
101 WXHRGN
wxApp::s_macCursorRgn
= NULL
;
102 wxWindow
* wxApp::s_captureWindow
= NULL
;
103 int wxApp::s_lastMouseDown
= 0 ;
104 long wxApp::sm_lastMessageTime
= 0;
105 long wxApp::s_lastModifiers
= 0 ;
108 bool wxApp::s_macDefaultEncodingIsPC
= true ;
109 bool wxApp::s_macSupportPCMenuShortcuts
= true ;
110 long wxApp::s_macAboutMenuItemId
= wxID_ABOUT
;
111 long wxApp::s_macPreferencesMenuItemId
= 0 ;
112 long wxApp::s_macExitMenuItemId
= wxID_EXIT
;
113 wxString
wxApp::s_macHelpMenuTitleName
= wxT("&Help") ;
115 //----------------------------------------------------------------------
116 // Core Apple Event Support
117 //----------------------------------------------------------------------
119 pascal OSErr
AEHandleODoc( const AppleEvent
*event
, AppleEvent
*reply
, long refcon
) ;
120 pascal OSErr
AEHandleOApp( const AppleEvent
*event
, AppleEvent
*reply
, long refcon
) ;
121 pascal OSErr
AEHandlePDoc( const AppleEvent
*event
, AppleEvent
*reply
, long refcon
) ;
122 pascal OSErr
AEHandleQuit( const AppleEvent
*event
, AppleEvent
*reply
, long refcon
) ;
124 pascal OSErr
AEHandleODoc( const AppleEvent
*event
, AppleEvent
*reply
, long WXUNUSED(refcon
) )
126 return wxTheApp
->MacHandleAEODoc( (AppleEvent
*) event
, reply
) ;
129 pascal OSErr
AEHandleOApp( const AppleEvent
*event
, AppleEvent
*reply
, long WXUNUSED(refcon
) )
131 return wxTheApp
->MacHandleAEOApp( (AppleEvent
*) event
, reply
) ;
134 pascal OSErr
AEHandlePDoc( const AppleEvent
*event
, AppleEvent
*reply
, long WXUNUSED(refcon
) )
136 return wxTheApp
->MacHandleAEPDoc( (AppleEvent
*) event
, reply
) ;
139 pascal OSErr
AEHandleQuit( const AppleEvent
*event
, AppleEvent
*reply
, long WXUNUSED(refcon
) )
141 return wxTheApp
->MacHandleAEQuit( (AppleEvent
*) event
, reply
) ;
144 // AEODoc Calls MacOpenFile on each of the files passed
146 short wxApp::MacHandleAEODoc(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
150 DescType returnedType
;
156 err
= AEGetParamDesc((AppleEvent
*)event
, keyDirectObject
, typeAEList
,&docList
);
160 err
= AECountItems(&docList
, &itemsInList
);
164 ProcessSerialNumber PSN
;
165 PSN
.highLongOfPSN
= 0 ;
166 PSN
.lowLongOfPSN
= kCurrentProcess
;
167 SetFrontProcess( &PSN
) ;
169 for (i
= 1; i
<= itemsInList
; i
++) {
170 AEGetNthPtr(&docList
, i
, typeFSS
, &keywd
, &returnedType
,
171 (Ptr
) & theSpec
, sizeof(theSpec
), &actualSize
);
172 wxString fName
= wxMacFSSpec2MacFilename(&theSpec
);
178 // AEPDoc Calls MacPrintFile on each of the files passed
180 short wxApp::MacHandleAEPDoc(const WXEVENTREF event
, WXEVENTREF
WXUNUSED(reply
))
184 DescType returnedType
;
190 err
= AEGetParamDesc((AppleEvent
*)event
, keyDirectObject
, typeAEList
,&docList
);
194 err
= AECountItems(&docList
, &itemsInList
);
198 ProcessSerialNumber PSN
;
199 PSN
.highLongOfPSN
= 0 ;
200 PSN
.lowLongOfPSN
= kCurrentProcess
;
201 SetFrontProcess( &PSN
) ;
203 for (i
= 1; i
<= itemsInList
; i
++) {
204 AEGetNthPtr(&docList
, i
, typeFSS
, &keywd
, &returnedType
,
205 (Ptr
) & theSpec
, sizeof(theSpec
), &actualSize
);
206 wxString fName
= wxMacFSSpec2MacFilename(&theSpec
);
212 // AEOApp calls MacNewFile
214 short wxApp::MacHandleAEOApp(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
220 // AEQuit attempts to quit the application
222 short wxApp::MacHandleAEQuit(const WXEVENTREF
WXUNUSED(event
) , WXEVENTREF
WXUNUSED(reply
))
224 /* wxWindow* win = GetTopWindow() ;
237 //----------------------------------------------------------------------
238 // Support Routines linking the Mac...File Calls to the Document Manager
239 //----------------------------------------------------------------------
241 void wxApp::MacOpenFile(const wxString
& fileName
)
243 wxDocManager
* dm
= wxDocManager::GetDocumentManager() ;
245 dm
->CreateDocument(fileName
, wxDOC_SILENT
) ;
248 void wxApp::MacPrintFile(const wxString
& fileName
)
250 wxDocManager
* dm
= wxDocManager::GetDocumentManager() ;
253 wxDocument
*doc
= dm
->CreateDocument(fileName
, wxDOC_SILENT
) ;
256 wxView
* view
= doc
->GetFirstView() ;
259 wxPrintout
*printout
= view
->OnCreatePrintout();
263 printer
.Print(view
->GetFrame(), printout
, TRUE
);
269 doc
->DeleteAllViews();
270 dm
->RemoveDocument(doc
) ;
276 void wxApp::MacNewFile()
280 //----------------------------------------------------------------------
281 // Carbon Event Handler
282 //----------------------------------------------------------------------
286 static const EventTypeSpec eventList
[] =
288 { kEventClassCommand
, kEventProcessCommand
} ,
289 { kEventClassCommand
, kEventCommandUpdateStatus
} ,
291 { kEventClassApplication
, kEventAppActivated
} ,
292 { kEventClassApplication
, kEventAppDeactivated
} ,
293 // handling the quit event is not recommended by apple
294 // rather using the quit apple event - which we do
296 { kEventClassAppleEvent
, kEventAppleEvent
} ,
298 { kEventClassMouse
, kEventMouseDown
} ,
302 static pascal OSStatus
MenuEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
304 return eventNotHandledErr
;
307 // due to the rather low-level event API of wxWindows, we cannot use RunApplicationEventLoop
308 // but have to use ReceiveNextEvent dealing with events manually, therefore we also have
309 // deal with clicks in the menu bar explicitely
311 static pascal OSStatus
MouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
313 OSStatus result
= eventNotHandledErr
;
315 switch( GetEventKind(event
) )
317 case kEventMouseDown
:
322 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
323 sizeof( Point
), NULL
, &point
);
324 short windowPart
= ::FindWindow(point
, &window
);
326 if ( windowPart
== inMenuBar
)
328 MenuSelect( point
) ;
338 static pascal OSStatus
CommandEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
340 OSStatus result
= eventNotHandledErr
;
344 GetEventParameter( event
, kEventParamDirectObject
, typeHICommand
, NULL
,
345 sizeof( HICommand
), NULL
, &command
);
347 MenuCommand id
= command
.commandID
;
348 if ( id
== kHICommandPreferences
)
349 id
= wxApp::s_macPreferencesMenuItemId
;
351 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
352 wxMenu
* menu
= NULL
;
353 wxMenuItem
* item
= NULL
;
356 item
= mbar
->FindItem( id
, &menu
) ;
358 if ( item
== NULL
|| menu
== NULL
|| mbar
== NULL
)
361 switch( GetEventKind( event
) )
363 case kEventProcessCommand
:
365 if (item
->IsCheckable())
367 item
->Check( !item
->IsChecked() ) ;
370 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
374 case kEventCommandUpdateStatus
:
375 // eventually trigger an updateui round
385 static pascal OSStatus
ApplicationEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
387 OSStatus result
= eventNotHandledErr
;
388 switch ( GetEventKind( event
) )
390 case kEventAppActivated
:
393 wxTheApp
->MacResume( true ) ;
397 case kEventAppDeactivated
:
400 wxTheApp
->MacSuspend( true ) ;
410 pascal OSStatus
wxAppEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
412 OSStatus result
= eventNotHandledErr
;
413 switch( GetEventClass( event
) )
415 case kEventClassCommand
:
416 result
= CommandEventHandler( handler
, event
, data
) ;
418 case kEventClassApplication
:
419 result
= ApplicationEventHandler( handler
, event
, data
) ;
421 case kEventClassMenu
:
422 result
= MenuEventHandler( handler
, event
, data
) ;
424 case kEventClassMouse
:
425 result
= MouseEventHandler( handler
, event
, data
) ;
427 case kEventClassAppleEvent
:
430 wxMacConvertEventToRecord( event
, &rec
) ;
431 result
= AEProcessAppleEvent( &rec
) ;
441 DEFINE_ONE_SHOT_HANDLER_GETTER( wxAppEventHandler
)
445 #if defined(WXMAKINGDLL) && !defined(__DARWIN__)
446 // we know it's there ;-)
447 WXIMPORT
char std::__throws_bad_alloc
;
450 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
456 UMAInitToolbox( 4 ) ;
457 SetEventMask( everyEvent
) ;
458 UMAShowWatchCursor() ;
460 #if defined(WXMAKINGDLL) && defined(__DARWIN__)
461 // open shared library resources from here since we don't have
462 // __wxinitialize in Mach-O shared libraries
463 wxStAppResource::OpenSharedLibraryResource(NULL
);
467 // test the minimal configuration necessary
473 if (Gestalt(gestaltMachineType
, &theMachine
) != noErr
)
475 error
= kMacSTRWrongMachine
;
477 else if (theMachine
< gestaltMacPlus
)
479 error
= kMacSTRWrongMachine
;
481 else if (Gestalt(gestaltSystemVersion
, &theSystem
) != noErr
)
483 error
= kMacSTROldSystem
;
485 else if ( theSystem
< 0x0860 )
487 error
= kMacSTROldSystem
;
489 else if ((long)GetApplLimit() - (long)ApplicationZone() < kMacMinHeap
)
491 error
= kMacSTRSmallSize
;
497 if ( !UMAHasAppearance() )
499 error = kMacSTRNoPre8Yet ;
505 // if we encountered any problems so far, give the error code and exit immediately
509 wxStAppResource resload
;
513 GetIndString(message
, 128, error
);
514 UMAShowArrowCursor() ;
515 ParamText("\pFatal Error", message
, (ConstStr255Param
)"\p", (ConstStr255Param
)"\p");
516 itemHit
= Alert(128, nil
);
521 # if __option(profile)
522 ProfilerInit( collectDetailed
, bestTimeBase
, 20000 , 40 ) ;
527 // now avoid exceptions thrown for new (bad_alloc)
528 // FIXME CS for some changes outside wxMac does not compile anymore
530 std::__throws_bad_alloc
= 0 ;
534 wxMacSetupConverters() ;
536 s_macCursorRgn
= ::NewRgn() ;
538 // Mac OS X passes a process serial number command line argument when
539 // the application is launched from the Finder. This argument must be
540 // removed from the command line arguments before being handled by the
541 // application (otherwise applications would need to handle it)
544 static const wxChar
*ARG_PSN
= _T("-psn_");
545 if ( wxStrncmp(argv
[1], ARG_PSN
, sizeof(ARG_PSN
) - 1) == 0 )
547 // remove this argument
548 memmove(argv
, argv
+ 1, argc
--);
552 if ( !wxAppBase::Initialize(argc
, argv
) )
555 wxWinMacWindowList
= new wxList(wxKEY_INTEGER
);
556 wxWinMacControlList
= new wxList(wxKEY_INTEGER
);
558 wxMacCreateNotifierTable() ;
560 UMAShowArrowCursor() ;
565 bool wxApp::OnInitGui()
567 if( !wxAppBase::OnInitGui() )
571 InstallStandardEventHandler( GetApplicationEventTarget() ) ;
573 InstallApplicationEventHandler(
574 GetwxAppEventHandlerUPP(),
575 GetEventTypeCount(eventList
), eventList
, wxTheApp
, (EventHandlerRef
*)&(wxTheApp
->m_macEventHandler
));
578 #if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340)
579 AEInstallEventHandler( kCoreEventClass
, kAEOpenDocuments
,
580 NewAEEventHandlerUPP(AEHandleODoc
) ,
582 AEInstallEventHandler( kCoreEventClass
, kAEOpenApplication
,
583 NewAEEventHandlerUPP(AEHandleOApp
) ,
585 AEInstallEventHandler( kCoreEventClass
, kAEPrintDocuments
,
586 NewAEEventHandlerUPP(AEHandlePDoc
) ,
588 AEInstallEventHandler( kCoreEventClass
, kAEQuitApplication
,
589 NewAEEventHandlerUPP(AEHandleQuit
) ,
592 AEInstallEventHandler( kCoreEventClass
, kAEOpenDocuments
,
593 NewAEEventHandlerProc(AEHandleODoc
) ,
595 AEInstallEventHandler( kCoreEventClass
, kAEOpenApplication
,
596 NewAEEventHandlerProc(AEHandleOApp
) ,
598 AEInstallEventHandler( kCoreEventClass
, kAEPrintDocuments
,
599 NewAEEventHandlerProc(AEHandlePDoc
) ,
601 AEInstallEventHandler( kCoreEventClass
, kAEQuitApplication
,
602 NewAEEventHandlerProc(AEHandleQuit
) ,
609 void wxApp::CleanUp()
611 wxToolTip::RemoveToolTips() ;
613 // One last chance for pending objects to be cleaned up
614 wxTheApp
->DeletePendingObjects();
616 wxMacDestroyNotifierTable() ;
618 delete wxWinMacWindowList
;
619 wxWinMacWindowList
= NULL
;
621 delete wxWinMacControlList
;
622 wxWinMacControlList
= NULL
;
625 # if __option(profile)
626 ProfilerDump( (StringPtr
)"\papp.prof" ) ;
631 #if defined(WXMAKINGDLL) && defined(__DARWIN__)
632 // close shared library resources from here since we don't have
633 // __wxterminate in Mach-O shared libraries
634 wxStAppResource::CloseSharedLibraryResource();
636 wxMacCleanupConverters() ;
638 UMACleanupToolbox() ;
639 if (s_macCursorRgn
) {
640 ::DisposeRgn((RgnHandle
)s_macCursorRgn
);
647 wxAppBase::CleanUp();
650 //----------------------------------------------------------------------
651 // misc initialization stuff
652 //----------------------------------------------------------------------
654 // extern variable for shared library resource id
655 // need to be able to find it with NSLookupAndBindSymbol
656 short gSharedLibraryResource
= kResFileNotOpened
;
658 #if defined(WXMAKINGDLL) && defined(__DARWIN__)
659 CFBundleRef gSharedLibraryBundle
= NULL
;
660 #endif /* WXMAKINGDLL && __DARWIN__ */
662 wxStAppResource::wxStAppResource()
664 m_currentRefNum
= CurResFile() ;
665 if ( gSharedLibraryResource
!= kResFileNotOpened
)
667 UseResFile( gSharedLibraryResource
) ;
671 wxStAppResource::~wxStAppResource()
673 if ( m_currentRefNum
!= kResFileNotOpened
)
675 UseResFile( m_currentRefNum
) ;
679 void wxStAppResource::OpenSharedLibraryResource(const void *initBlock
)
681 gSharedLibraryResource
= kResFileNotOpened
;
684 if ( initBlock
!= NULL
) {
685 const CFragInitBlock
*theInitBlock
= (const CFragInitBlock
*)initBlock
;
686 FSSpec
*fileSpec
= NULL
;
688 if (theInitBlock
->fragLocator
.where
== kDataForkCFragLocator
) {
689 fileSpec
= theInitBlock
->fragLocator
.u
.onDisk
.fileSpec
;
691 else if (theInitBlock
->fragLocator
.where
== kResourceCFragLocator
) {
692 fileSpec
= theInitBlock
->fragLocator
.u
.inSegs
.fileSpec
;
695 if (fileSpec
!= NULL
) {
696 gSharedLibraryResource
= FSpOpenResFile(fileSpec
, fsRdPerm
);
701 // Open the shared library resource file if it is not yet open
704 const char *theLibPath
;
706 gSharedLibraryBundle
= CFBundleGetBundleWithIdentifier(CFSTR("com.wxwindows.wxWindows"));
707 if (gSharedLibraryBundle
!= NULL
) {
708 // wxWindows has been bundled into a framework
709 // load the framework resources
711 gSharedLibraryResource
= CFBundleOpenBundleResourceMap(gSharedLibraryBundle
);
714 // wxWindows is a simple dynamic shared library
715 // load the resources from the data fork of a separate resource file
720 OSErr theErr
= noErr
;
722 // get the library path
723 theSymbol
= NSLookupAndBindSymbol("_gSharedLibraryResource");
724 theModule
= NSModuleForSymbol(theSymbol
);
725 theLibPath
= NSLibraryNameForModule(theModule
);
727 // if we call wxLogDebug from here then, as wxTheApp hasn't been
728 // created yet when we're called from wxApp::Initialize(), wxLog
729 // is going to create a default stderr-based log target instead of
730 // the expected normal GUI one -- don't do it, if we really want
731 // to see this message just use fprintf() here
733 wxLogDebug( wxT("wxMac library installation name is '%s'"),
737 // allocate copy to replace .dylib.* extension with .rsrc
738 theResPath
= strdup(theLibPath
);
739 if (theResPath
!= NULL
) {
740 theName
= strrchr(theResPath
, '/');
741 if (theName
== NULL
) {
742 // no directory elements in path
743 theName
= theResPath
;
745 // find ".dylib" shared library extension
746 theExt
= strstr(theName
, ".dylib");
747 // overwrite extension with ".rsrc"
748 strcpy(theExt
, ".rsrc");
751 wxLogDebug( wxT("wxMac resources file name is '%s'"),
755 theErr
= FSPathMakeRef((UInt8
*) theResPath
, &theResRef
, false);
756 if (theErr
!= noErr
) {
757 // try in current directory (using name only)
758 theErr
= FSPathMakeRef((UInt8
*) theName
, &theResRef
, false);
761 // open the resource file
762 if (theErr
== noErr
) {
763 theErr
= FSOpenResourceFile( &theResRef
, 0, NULL
, fsRdPerm
,
764 &gSharedLibraryResource
);
766 if (theErr
!= noErr
) {
769 wxT("unable to open wxMac resource file '%s'\n"),
771 #endif // __WXDEBUG__
774 // free duplicated resource file path
778 #endif /* __DARWIN__ */
780 #endif /* WXMAKINGDLL */
783 void wxStAppResource::CloseSharedLibraryResource()
786 // Close the shared library resource file
787 if (gSharedLibraryResource
!= kResFileNotOpened
) {
789 if (gSharedLibraryBundle
!= NULL
) {
790 CFBundleCloseBundleResourceMap(gSharedLibraryBundle
,
791 gSharedLibraryResource
);
792 gSharedLibraryBundle
= NULL
;
795 #endif /* __DARWIN__ */
797 CloseResFile(gSharedLibraryResource
);
799 gSharedLibraryResource
= kResFileNotOpened
;
801 #endif /* WXMAKINGDLL */
804 #if defined(WXMAKINGDLL) && !defined(__DARWIN__)
806 // for shared libraries we have to manually get the correct resource
807 // ref num upon initializing and releasing when terminating, therefore
808 // the __wxinitialize and __wxterminate must be used
811 void __sinit(void); /* (generated by linker) */
812 pascal OSErr
__initialize(const CFragInitBlock
*theInitBlock
);
813 pascal void __terminate(void);
816 pascal OSErr
__wxinitialize(const CFragInitBlock
*theInitBlock
)
818 wxStAppResource::OpenSharedLibraryResource( theInitBlock
) ;
819 return __initialize( theInitBlock
) ;
822 pascal void __wxterminate(void)
824 wxStAppResource::CloseSharedLibraryResource() ;
828 #endif /* WXMAKINGDLL && !__DARWIN__ */
832 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
)
834 bool converted
= ConvertEventRefToEventRecord( event
,rec
) ;
835 OSStatus err
= noErr
;
838 switch( GetEventClass( event
) )
840 case kEventClassKeyboard
:
843 switch( GetEventKind(event
) )
845 case kEventRawKeyDown
:
846 rec
->what
= keyDown
;
848 case kEventRawKeyRepeat
:
849 rec
->what
= autoKey
;
851 case kEventRawKeyUp
:
854 case kEventRawKeyModifiersChanged
:
855 rec
->what
= nullEvent
;
864 unsigned char charCode
;
866 GetMouse( &rec
->where
) ;
868 err
= GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
869 err
= GetEventParameter(event
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
870 err
= GetEventParameter(event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
871 rec
->modifiers
= modifiers
;
872 rec
->message
= (keyCode
<< 8 ) + charCode
;
876 case kEventClassTextInput
:
878 switch( GetEventKind( event
) )
880 case kEventTextInputUnicodeForKeyEvent
:
883 err
= GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
887 unsigned char charCode
;
889 GetMouse( &rec
->where
) ;
890 rec
->what
= keyDown
;
891 err
= GetEventParameter(rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
892 err
= GetEventParameter(rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
893 err
= GetEventParameter(rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
894 rec
->modifiers
= modifiers
;
895 rec
->message
= (keyCode
<< 8 ) + charCode
;
911 pascal OSStatus wxMacApplicationEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
913 OSStatus result = eventNotHandledErr ;
916 switch ( GetEventClass( event ) )
918 case kEventClassKeyboard :
919 if ( wxMacConvertEventToRecord( event , &rec ) )
921 wxTheApp->MacHandleModifierEvents( &rec ) ;
922 wxTheApp->MacHandleOneEvent( &rec ) ;
926 case kEventClassTextInput :
927 if ( wxMacConvertEventToRecord( event , &rec ) )
929 wxTheApp->MacHandleModifierEvents( &rec ) ;
930 wxTheApp->MacHandleOneEvent( &rec ) ;
950 m_printMode
= wxPRINT_WINDOWS
;
954 bool wxApp::Initialized()
962 int wxApp::MainLoop()
974 void wxApp::ExitMainLoop()
979 // Is a message/event pending?
980 bool wxApp::Pending()
983 return GetNumEventsInQueue( GetMainEventQueue() ) > 0 ;
987 return EventAvail( everyEvent
, &event
) ;
991 // Dispatch a message.
992 void wxApp::Dispatch()
997 void wxApp::OnIdle(wxIdleEvent
& event
)
999 // Avoid recursion (via ProcessEvent default case)
1006 // 'Garbage' collection of windows deleted with Close().
1007 DeletePendingObjects();
1009 // flush the logged messages if any
1010 wxLog
*pLog
= wxLog::GetActiveTarget();
1011 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
1014 // Send OnIdle events to all windows
1015 bool needMore
= SendIdleEvents();
1018 event
.RequestMore(TRUE
);
1020 // If they are pending events, we must process them: pending events are
1021 // either events to the threads other than main or events posted with
1022 // wxPostEvent() functions
1023 wxMacProcessNotifierAndPendingEvents();
1026 if(!wxMenuBar::MacGetInstalledMenuBar() && wxMenuBar::MacGetCommonMenuBar())
1027 wxMenuBar::MacGetCommonMenuBar()->MacInstallMenuBar();
1030 void wxApp::WakeUpIdle()
1041 void wxApp::OnEndSession(wxCloseEvent
& WXUNUSED(event
))
1044 GetTopWindow()->Close(TRUE
);
1047 // Default behaviour: close the application with prompts. The
1048 // user can veto the close, and therefore the end session.
1049 void wxApp::OnQueryEndSession(wxCloseEvent
& event
)
1053 if (!GetTopWindow()->Close(!event
.CanVeto()))
1058 extern "C" void wxCYield() ;
1064 // Yield to other processes
1066 bool wxApp::Yield(bool onlyIfNeeded
)
1070 if ( !onlyIfNeeded
)
1072 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1081 YieldToAnyThread() ;
1083 // by definition yield should handle all non-processed events
1087 OSStatus status
= noErr
;
1090 s_inReceiveEvent
= true ;
1091 status
= ReceiveNextEvent(0, NULL
,kEventDurationNoWait
,true,&theEvent
) ;
1092 s_inReceiveEvent
= false ;
1094 if ( status
== eventLoopTimedOutErr
)
1096 // make sure next time the event loop will trigger idle events
1097 sleepTime
= kEventDurationNoWait
;
1099 else if ( status
== eventLoopQuitErr
)
1101 // according to QA1061 this may also occur when a WakeUp Process
1106 MacHandleOneEvent( theEvent
) ;
1107 ReleaseEvent(theEvent
);
1109 } while( status
== noErr
) ;
1113 // having a larger value here leads to large performance slowdowns
1114 // so we cannot give background apps more processor time here
1115 // we do so however having a large sleep value in the main event loop
1118 while ( !IsExiting() && WaitNextEvent(everyEvent
, &event
,sleepTime
, (RgnHandle
) wxApp::s_macCursorRgn
))
1120 MacHandleModifierEvents( &event
) ;
1121 MacHandleOneEvent( &event
);
1122 if ( event
.what
!= kHighLevelEvent
)
1123 SetRectRgn( (RgnHandle
) wxApp::s_macCursorRgn
, event
.where
.h
, event
.where
.v
, event
.where
.h
+ 1 , event
.where
.v
+ 1 ) ;
1125 MacHandleModifierEvents( &event
) ;
1128 wxMacProcessNotifierAndPendingEvents() ;
1134 // platform specifics
1136 void wxApp::MacSuspend( bool convertClipboard
)
1139 // we have to deactive the top level windows manually
1141 wxWindowListNode
* node
= wxTopLevelWindows
.GetFirst();
1144 wxTopLevelWindow
* win
= (wxTopLevelWindow
*) node
->Data();
1146 #if 0 // having problems right now with that
1147 if (!win
->HasFlag(wxSTAY_ON_TOP
))
1150 win
->MacActivate( ((EventRecord
*) MacGetCurrentEvent())->when
, false ) ;
1152 node
= node
->GetNext();
1155 ::HideFloatingWindows() ;
1157 s_lastMouseDown
= 0 ;
1159 if( convertClipboard
)
1161 MacConvertPrivateToPublicScrap() ;
1165 extern wxList wxModalDialogs
;
1167 void wxApp::MacResume( bool convertClipboard
)
1169 s_lastMouseDown
= 0 ;
1170 if( convertClipboard
)
1172 MacConvertPublicToPrivateScrap() ;
1176 ::ShowFloatingWindows() ;
1177 // raise modal dialogs in case a non modal window was selected to activate the app
1179 wxNode
* node
= wxModalDialogs
.GetFirst();
1182 wxDialog
* dialog
= (wxDialog
*) node
->GetData();
1185 node
= node
->GetNext();
1190 void wxApp::MacConvertPrivateToPublicScrap()
1194 void wxApp::MacConvertPublicToPrivateScrap()
1198 void wxApp::MacDoOneEvent()
1203 s_inReceiveEvent
= true ;
1204 OSStatus status
= ReceiveNextEvent(0, NULL
,sleepTime
,true,&theEvent
) ;
1205 s_inReceiveEvent
= false ;
1206 if ( status
== eventLoopTimedOutErr
)
1208 if ( wxTheApp
->ProcessIdle() )
1209 sleepTime
= kEventDurationNoWait
;
1211 sleepTime
= kEventDurationForever
;
1213 else if ( status
== eventLoopQuitErr
)
1215 // according to QA1061 this may also occur when a WakeUp Process
1220 MacHandleOneEvent( theEvent
) ;
1221 ReleaseEvent(theEvent
);
1222 sleepTime
= kEventDurationNoWait
;
1227 EventMask eventMask
= everyEvent
;
1229 if (WaitNextEvent(eventMask
, &event
, sleepTime
, (RgnHandle
) s_macCursorRgn
))
1231 MacHandleModifierEvents( &event
) ;
1232 MacHandleOneEvent( &event
);
1236 MacHandleModifierEvents( &event
) ;
1238 WindowPtr window
= ::FrontWindow() ;
1240 ::IdleControls( window
) ;
1242 if ( wxTheApp
->ProcessIdle() )
1245 sleepTime
= GetCaretTime() / 2 ;
1247 if ( event
.what
!= kHighLevelEvent
)
1248 SetRectRgn( (RgnHandle
) s_macCursorRgn
, event
.where
.h
, event
.where
.v
, event
.where
.h
+ 1 , event
.where
.v
+ 1 ) ;
1252 DeletePendingObjects() ;
1253 wxMacProcessNotifierAndPendingEvents() ;
1256 void wxApp::MacHandleOneEvent( WXEVENTREF evr
)
1259 EventTargetRef theTarget
;
1260 theTarget
= GetEventDispatcherTarget();
1261 m_macCurrentEvent
= evr
;
1262 SendEventToEventTarget ((EventRef
) evr
, theTarget
);
1264 EventRecord
* ev
= (EventRecord
*) evr
;
1265 m_macCurrentEvent
= ev
;
1267 wxApp::sm_lastMessageTime
= ev
->when
;
1272 MacHandleMouseDownEvent( ev
) ;
1273 if ( ev
->modifiers
& controlKey
)
1274 s_lastMouseDown
= 2;
1276 s_lastMouseDown
= 1;
1279 if ( s_lastMouseDown
== 2 )
1281 ev
->modifiers
|= controlKey
;
1285 ev
->modifiers
&= ~controlKey
;
1287 MacHandleMouseUpEvent( ev
) ;
1288 s_lastMouseDown
= 0;
1291 MacHandleActivateEvent( ev
) ;
1294 MacHandleUpdateEvent( ev
) ;
1298 MacHandleKeyDownEvent( ev
) ;
1301 MacHandleKeyUpEvent( ev
) ;
1304 MacHandleDiskEvent( ev
) ;
1307 MacHandleOSEvent( ev
) ;
1309 case kHighLevelEvent
:
1310 MacHandleHighLevelEvent( ev
) ;
1316 wxMacProcessNotifierAndPendingEvents() ;
1320 bool s_macIsInModalLoop
= false ;
1322 void wxApp::MacHandleModifierEvents( WXEVENTREF evr
)
1324 EventRecord
* ev
= (EventRecord
*) evr
;
1325 if ( ev
->modifiers
!= s_lastModifiers
&& wxWindow::FindFocus() != NULL
)
1327 wxKeyEvent
event(wxEVT_KEY_DOWN
);
1329 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
1330 event
.m_controlDown
= ev
->modifiers
& controlKey
;
1331 event
.m_altDown
= ev
->modifiers
& optionKey
;
1332 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
1334 event
.m_x
= ev
->where
.h
;
1335 event
.m_y
= ev
->where
.v
;
1336 event
.m_timeStamp
= ev
->when
;
1337 wxWindow
* focus
= wxWindow::FindFocus() ;
1338 event
.SetEventObject(focus
);
1340 if ( (ev
->modifiers
^ s_lastModifiers
) & controlKey
)
1342 event
.m_keyCode
= WXK_CONTROL
;
1343 event
.SetEventType( ( ev
->modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1344 focus
->GetEventHandler()->ProcessEvent( event
) ;
1346 if ( (ev
->modifiers
^ s_lastModifiers
) & shiftKey
)
1348 event
.m_keyCode
= WXK_SHIFT
;
1349 event
.SetEventType( ( ev
->modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1350 focus
->GetEventHandler()->ProcessEvent( event
) ;
1352 if ( (ev
->modifiers
^ s_lastModifiers
) & optionKey
)
1354 event
.m_keyCode
= WXK_ALT
;
1355 event
.SetEventType( ( ev
->modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1356 focus
->GetEventHandler()->ProcessEvent( event
) ;
1358 s_lastModifiers
= ev
->modifiers
;
1362 void wxApp::MacHandleHighLevelEvent( WXEVENTREF evr
)
1364 // we must avoid reentrancy problems when processing high level events eg printing
1365 bool former
= s_inYield
;
1367 EventRecord
* ev
= (EventRecord
*) evr
;
1368 ::AEProcessAppleEvent( ev
) ;
1369 s_inYield
= former
;
1372 void wxApp::MacHandleMouseDownEvent( WXEVENTREF evr
)
1374 EventRecord
* ev
= (EventRecord
*) evr
;
1375 wxToolTip::RemoveToolTips() ;
1378 WindowRef frontWindow
= ::FrontNonFloatingWindow() ;
1379 WindowAttributes frontWindowAttributes
= NULL
;
1381 ::GetWindowAttributes( frontWindow
, &frontWindowAttributes
) ;
1383 short windowPart
= ::FindWindow(ev
->where
, &window
);
1384 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1385 if ( wxPendingDelete
.Member(win
) )
1389 GetQDGlobalsScreenBits( &screenBits
);
1394 if ( s_macIsInModalLoop
)
1400 UInt32 menuresult
= MenuSelect(ev
->where
) ;
1401 MacHandleMenuSelect( HiWord( menuresult
) , LoWord( menuresult
) );
1402 s_lastMouseDown
= 0;
1406 SystemClick( ev
, window
) ;
1407 s_lastMouseDown
= 0;
1410 if ( window
!= frontWindow
&& s_macIsInModalLoop
&& !(ev
->modifiers
& cmdKey
) )
1416 DragWindow(window
, ev
->where
, &screenBits
.bounds
);
1421 Point pt
= { 0, 0 } ;
1422 SetPortWindowPort(window
) ;
1423 LocalToGlobal( &pt
) ;
1425 win
->SetSize( pt
.h
, pt
.v
, -1 ,
1426 -1 , wxSIZE_USE_EXISTING
);
1428 s_lastMouseDown
= 0;
1432 if (TrackGoAway(window
, ev
->where
))
1437 s_lastMouseDown
= 0;
1441 Rect newContentRect
;
1442 Rect constraintRect
;
1443 constraintRect
.top
= win
->GetMinHeight() ;
1444 if ( constraintRect
.top
== -1 )
1445 constraintRect
.top
= 0 ;
1446 constraintRect
.left
= win
->GetMinWidth() ;
1447 if ( constraintRect
.left
== -1 )
1448 constraintRect
.left
= 0 ;
1449 constraintRect
.right
= win
->GetMaxWidth() ;
1450 if ( constraintRect
.right
== -1 )
1451 constraintRect
.right
= 32000 ;
1452 constraintRect
.bottom
= win
->GetMaxHeight() ;
1453 if ( constraintRect
.bottom
== -1 )
1454 constraintRect
.bottom
= 32000 ;
1456 Boolean growResult
= ResizeWindow( window
, ev
->where
,
1457 &constraintRect
, &newContentRect
) ;
1460 win
->SetSize( newContentRect
.left
, newContentRect
.top
,
1461 newContentRect
.right
- newContentRect
.left
,
1462 newContentRect
.bottom
- newContentRect
.top
, wxSIZE_USE_EXISTING
);
1464 s_lastMouseDown
= 0;
1469 if (TrackBox(window
, ev
->where
, windowPart
))
1471 // TODO setup size event
1472 ZoomWindow( window
, windowPart
, false ) ;
1478 Point pt
= { 0, 0 } ;
1479 SetPortWindowPort(window
) ;
1480 LocalToGlobal( &pt
) ;
1483 GetWindowPortBounds(window
, &tempRect
) ;
1484 win
->SetSize( pt
.h
, pt
.v
, tempRect
.right
-tempRect
.left
,
1485 tempRect
.bottom
-tempRect
.top
, wxSIZE_USE_EXISTING
);
1488 s_lastMouseDown
= 0;
1490 case inCollapseBox
:
1491 // TODO setup size event
1492 s_lastMouseDown
= 0;
1499 SetPortWindowPort(window
) ;
1502 if ( window
!= frontWindow
&& wxTheApp
->s_captureWindow
== NULL
)
1504 if ( s_macIsInModalLoop
)
1508 else if ( UMAIsWindowFloating( window
) )
1511 win
->MacMouseDown( ev
, windowPart
) ;
1516 win
->MacMouseDown( ev
, windowPart
) ;
1517 ::SelectWindow( window
) ;
1523 win
->MacMouseDown( ev
, windowPart
) ;
1531 void wxApp::MacHandleMouseUpEvent( WXEVENTREF evr
)
1533 EventRecord
* ev
= (EventRecord
*) evr
;
1536 short windowPart
= inNoWindow
;
1537 if ( wxTheApp
->s_captureWindow
)
1539 window
= (WindowRef
) s_captureWindow
->MacGetRootWindow() ;
1540 windowPart
= inContent
;
1544 windowPart
= ::FindWindow(ev
->where
, &window
) ;
1555 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1557 win
->MacMouseUp( ev
, windowPart
) ;
1565 long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
1566 long wxMacTranslateKey(unsigned char key
, unsigned char code
)
1571 case kHomeCharCode
:
1574 case kEnterCharCode
:
1575 retval
= WXK_RETURN
;
1580 case kHelpCharCode
:
1583 case kBackspaceCharCode
:
1589 case kPageUpCharCode
:
1590 retval
= WXK_PAGEUP
;
1592 case kPageDownCharCode
:
1593 retval
= WXK_PAGEDOWN
;
1595 case kReturnCharCode
:
1596 retval
= WXK_RETURN
;
1598 case kFunctionKeyCharCode
:
1650 case kEscapeCharCode
:
1651 retval
= WXK_ESCAPE
;
1653 case kLeftArrowCharCode
:
1656 case kRightArrowCharCode
:
1657 retval
= WXK_RIGHT
;
1659 case kUpArrowCharCode
:
1662 case kDownArrowCharCode
:
1665 case kDeleteCharCode
:
1666 retval
= WXK_DELETE
;
1675 void wxApp::MacHandleKeyDownEvent( WXEVENTREF evr
)
1677 EventRecord
* ev
= (EventRecord
*) evr
;
1678 wxToolTip::RemoveToolTips() ;
1680 UInt32 menuresult
= UMAMenuEvent(ev
) ;
1681 if ( HiWord( menuresult
) )
1683 if ( !s_macIsInModalLoop
)
1684 MacHandleMenuSelect( HiWord( menuresult
) , LoWord( menuresult
) ) ;
1688 wxWindow
* focus
= wxWindow::FindFocus() ;
1690 if ( MacSendKeyDownEvent( focus
, ev
->message
, ev
->modifiers
, ev
->when
, ev
->where
.h
, ev
->where
.v
) == false )
1692 // has not been handled -> perform default
1693 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
1694 if ( control
&& control
->GetMacControl() != NULL
)
1698 keychar
= short(ev
->message
& charCodeMask
);
1699 keycode
= short(ev
->message
& keyCodeMask
) >> 8 ;
1700 ::HandleControlKey( (ControlHandle
) control
->GetMacControl() , keycode
, keychar
, ev
->modifiers
) ;
1706 void wxApp::MacHandleKeyUpEvent( WXEVENTREF evr
)
1708 EventRecord
* ev
= (EventRecord
*) evr
;
1709 wxToolTip::RemoveToolTips() ;
1711 UInt32 menuresult
= UMAMenuEvent(ev
) ;
1712 if ( HiWord( menuresult
) )
1717 MacSendKeyUpEvent( wxWindow::FindFocus() , ev
->message
, ev
->modifiers
, ev
->when
, ev
->where
.h
, ev
->where
.v
) ;
1723 bool wxApp::MacSendKeyDownEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
)
1730 keychar
= short(keymessage
& charCodeMask
);
1731 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1733 if ( modifiers
& ( controlKey
|shiftKey
|optionKey
) )
1735 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1736 // and look at the character after
1738 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
|shiftKey
|optionKey
))) | keycode
, &state
);
1739 keychar
= short(keyInfo
& charCodeMask
);
1740 keycode
= short(keyInfo
& keyCodeMask
) >> 8 ;
1742 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1743 long realkeyval
= keyval
;
1744 if ( keyval
== keychar
)
1746 // we are not on a special character combo -> pass the real os event-value to EVT_CHAR, but not to EVT_KEY (make upper first)
1747 realkeyval
= short(keymessage
& charCodeMask
) ;
1748 keyval
= wxToupper( keyval
) ;
1751 wxKeyEvent
event(wxEVT_KEY_DOWN
);
1752 bool handled
= false ;
1753 event
.m_shiftDown
= modifiers
& shiftKey
;
1754 event
.m_controlDown
= modifiers
& controlKey
;
1755 event
.m_altDown
= modifiers
& optionKey
;
1756 event
.m_metaDown
= modifiers
& cmdKey
;
1757 event
.m_keyCode
= keyval
;
1761 event
.m_timeStamp
= when
;
1762 event
.SetEventObject(focus
);
1763 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1764 if ( handled
&& event
.GetSkipped() )
1771 wxWindow
*ancestor
= focus
;
1774 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
1777 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
1778 handled
= ancestor
->GetEventHandler()->ProcessEvent( command_event
);
1781 if (ancestor
->IsTopLevel())
1783 ancestor
= ancestor
->GetParent();
1786 #endif // wxUSE_ACCEL
1790 event
.Skip( FALSE
) ;
1791 event
.SetEventType( wxEVT_CHAR
) ;
1793 event
.m_keyCode
= realkeyval
;
1795 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1796 if ( handled
&& event
.GetSkipped() )
1800 (keyval
== WXK_TAB
) &&
1801 // CS: copied the change below from wxGTK
1802 // VZ: testing for wxTE_PROCESS_TAB shouldn't be done here the control may
1803 // have this style, yet choose not to process this particular TAB in which
1804 // case TAB must still work as a navigational character
1806 (!focus
->HasFlag(wxTE_PROCESS_TAB
)) &&
1808 (focus
->GetParent()) &&
1809 (focus
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
1811 wxNavigationKeyEvent new_event
;
1812 new_event
.SetEventObject( focus
);
1813 new_event
.SetDirection( !event
.ShiftDown() );
1814 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1815 new_event
.SetWindowChange( event
.ControlDown() );
1816 new_event
.SetCurrentFocus( focus
);
1817 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1818 if ( handled
&& new_event
.GetSkipped() )
1821 // backdoor handler for default return and command escape
1822 if ( !handled
&& (!focus
->IsKindOf(CLASSINFO(wxControl
) ) || !focus
->MacCanFocus() ) )
1824 // if window is not having a focus still testing for default enter or cancel
1825 // TODO add the UMA version for ActiveNonFloatingWindow
1826 wxWindow
* focus
= wxFindWinFromMacWindow( FrontWindow() ) ;
1829 if ( keyval
== WXK_RETURN
)
1831 wxButton
*def
= wxDynamicCast(focus
->GetDefaultItem(),
1833 if ( def
&& def
->IsEnabled() )
1835 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
1836 event
.SetEventObject(def
);
1837 def
->Command(event
);
1841 /* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
1842 else if (keyval
== WXK_ESCAPE
|| (keyval
== '.' && modifiers
& cmdKey
) )
1844 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
1845 new_event
.SetEventObject( focus
);
1846 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1853 bool wxApp::MacSendKeyUpEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
)
1860 keychar
= short(keymessage
& charCodeMask
);
1861 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1862 if ( modifiers
& ( controlKey
|shiftKey
|optionKey
) )
1864 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1865 // and look at the character after
1867 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
|shiftKey
|optionKey
))) | keycode
, &state
);
1868 keychar
= short(keyInfo
& charCodeMask
);
1869 keycode
= short(keyInfo
& keyCodeMask
) >> 8 ;
1871 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1873 if ( keyval
== keychar
)
1875 keyval
= wxToupper( keyval
) ;
1877 bool handled
= false ;
1879 wxKeyEvent
event(wxEVT_KEY_UP
);
1880 event
.m_shiftDown
= modifiers
& shiftKey
;
1881 event
.m_controlDown
= modifiers
& controlKey
;
1882 event
.m_altDown
= modifiers
& optionKey
;
1883 event
.m_metaDown
= modifiers
& cmdKey
;
1884 event
.m_keyCode
= keyval
;
1888 event
.m_timeStamp
= when
;
1889 event
.SetEventObject(focus
);
1890 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1896 void wxApp::MacHandleActivateEvent( WXEVENTREF evr
)
1898 EventRecord
* ev
= (EventRecord
*) evr
;
1899 WindowRef window
= (WindowRef
) ev
->message
;
1902 bool activate
= (ev
->modifiers
& activeFlag
) ;
1903 WindowClass wclass
;
1904 ::GetWindowClass ( window
, &wclass
) ;
1905 if ( wclass
== kFloatingWindowClass
)
1907 // if it is a floater we activate/deactivate the front non-floating window instead
1908 window
= ::FrontNonFloatingWindow() ;
1910 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1912 win
->MacActivate( ev
->when
, activate
) ;
1916 void wxApp::MacHandleUpdateEvent( WXEVENTREF evr
)
1918 EventRecord
* ev
= (EventRecord
*) evr
;
1919 WindowRef window
= (WindowRef
) ev
->message
;
1920 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1923 if ( !wxPendingDelete
.Member(win
) )
1924 win
->MacUpdate( ev
->when
) ;
1928 // since there is no way of telling this foreign window to update itself
1929 // we have to invalidate the update region otherwise we keep getting the same
1930 // event over and over again
1931 BeginUpdate( window
) ;
1932 EndUpdate( window
) ;
1936 void wxApp::MacHandleDiskEvent( WXEVENTREF evr
)
1938 EventRecord
* ev
= (EventRecord
*) evr
;
1939 if ( HiWord( ev
->message
) != noErr
)
1943 SetPt( &point
, 100 , 100 ) ;
1945 err
= DIBadMount( point
, ev
->message
) ;
1946 wxASSERT( err
== noErr
) ;
1950 void wxApp::MacHandleOSEvent( WXEVENTREF evr
)
1952 EventRecord
* ev
= (EventRecord
*) evr
;
1953 switch( ( ev
->message
& osEvtMessageMask
) >> 24 )
1955 case suspendResumeMessage
:
1957 bool isResuming
= ev
->message
& resumeFlag
;
1958 bool convertClipboard
= ev
->message
& convertClipboardFlag
;
1960 bool doesActivate
= UMAGetProcessModeDoesActivateOnFGSwitch() ;
1963 WindowRef oldFrontWindow
= NULL
;
1964 WindowRef newFrontWindow
= NULL
;
1966 // in case we don't take care of activating ourselves, we have to synchronize
1967 // our idea of the active window with the process manager's - which it already activated
1969 if ( !doesActivate
)
1970 oldFrontWindow
= ::FrontNonFloatingWindow() ;
1972 MacResume( convertClipboard
) ;
1974 newFrontWindow
= ::FrontNonFloatingWindow() ;
1976 if ( oldFrontWindow
)
1978 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( oldFrontWindow
) ;
1980 win
->MacActivate( ev
->when
, false ) ;
1982 if ( newFrontWindow
)
1984 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( newFrontWindow
) ;
1986 win
->MacActivate( ev
->when
, true ) ;
1991 MacSuspend( convertClipboard
) ;
1995 case mouseMovedMessage
:
1999 wxWindow
* currentMouseWindow
= NULL
;
2001 if (s_captureWindow
)
2003 currentMouseWindow
= s_captureWindow
;
2007 wxWindow::MacGetWindowFromPoint( wxPoint( ev
->where
.h
, ev
->where
.v
) ,
2008 ¤tMouseWindow
) ;
2011 if ( currentMouseWindow
!= wxWindow::s_lastMouseWindow
)
2013 wxMouseEvent event
;
2015 bool isDown
= !(ev
->modifiers
& btnState
) ; // 1 is for up
2016 bool controlDown
= ev
->modifiers
& controlKey
; // for simulating right mouse
2018 event
.m_leftDown
= isDown
&& !controlDown
;
2019 event
.m_middleDown
= FALSE
;
2020 event
.m_rightDown
= isDown
&& controlDown
;
2021 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
2022 event
.m_controlDown
= ev
->modifiers
& controlKey
;
2023 event
.m_altDown
= ev
->modifiers
& optionKey
;
2024 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
2025 event
.m_x
= ev
->where
.h
;
2026 event
.m_y
= ev
->where
.v
;
2027 event
.m_timeStamp
= ev
->when
;
2028 event
.SetEventObject(this);
2030 if ( wxWindow::s_lastMouseWindow
)
2032 wxMouseEvent
eventleave(event
);
2033 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
2034 wxWindow::s_lastMouseWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
2035 eventleave
.SetEventObject( wxWindow::s_lastMouseWindow
) ;
2037 wxWindow::s_lastMouseWindow
->GetEventHandler()->ProcessEvent(eventleave
);
2039 if ( currentMouseWindow
)
2041 wxMouseEvent
evententer(event
);
2042 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
2043 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
2044 evententer
.SetEventObject( currentMouseWindow
) ;
2045 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
2047 wxWindow::s_lastMouseWindow
= currentMouseWindow
;
2050 short windowPart
= inNoWindow
;
2052 if ( s_captureWindow
)
2054 window
= (WindowRef
) s_captureWindow
->MacGetRootWindow() ;
2055 windowPart
= inContent
;
2059 windowPart
= ::FindWindow(ev
->where
, &window
);
2066 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
2068 win
->MacMouseMoved( ev
, windowPart
) ;
2075 UMAShowArrowCursor();
2085 UMAShowArrowCursor();
2096 void wxApp::MacHandleMenuCommand( wxUint32 id
)
2098 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
2099 wxFrame
* frame
= mbar
->GetFrame();
2100 wxCHECK_RET( mbar
!= NULL
&& frame
!= NULL
, wxT("error in menu item callback") );
2103 frame
->ProcessCommand(id
);
2108 void wxApp::MacHandleMenuSelect( int macMenuId
, int macMenuItemNum
)
2111 return; // no menu item selected
2113 if (macMenuId
== kwxMacAppleMenuId
&& macMenuItemNum
> 1)
2116 Str255 deskAccessoryName
;
2119 GetMenuItemText(GetMenuHandle(kwxMacAppleMenuId
), macMenuItemNum
, deskAccessoryName
);
2120 GetPort(&savedPort
);
2121 OpenDeskAcc(deskAccessoryName
);
2128 GetMenuItemCommandID( GetMenuHandle(macMenuId
) , macMenuItemNum
, &id
) ;
2129 MacHandleMenuCommand( id
) ;