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 // Returns TRUE if more time is needed.
975 bool wxApp::ProcessIdle()
978 event
.SetEventObject(this);
981 return event
.MoreRequested();
984 void wxApp::ExitMainLoop()
989 // Is a message/event pending?
990 bool wxApp::Pending()
993 return GetNumEventsInQueue( GetMainEventQueue() ) > 0 ;
997 return EventAvail( everyEvent
, &event
) ;
1001 // Dispatch a message.
1002 void wxApp::Dispatch()
1007 void wxApp::OnIdle(wxIdleEvent
& event
)
1009 // Avoid recursion (via ProcessEvent default case)
1016 // 'Garbage' collection of windows deleted with Close().
1017 DeletePendingObjects();
1019 // flush the logged messages if any
1020 wxLog
*pLog
= wxLog::GetActiveTarget();
1021 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
1024 // Send OnIdle events to all windows
1025 bool needMore
= SendIdleEvents();
1028 event
.RequestMore(TRUE
);
1030 // If they are pending events, we must process them: pending events are
1031 // either events to the threads other than main or events posted with
1032 // wxPostEvent() functions
1033 wxMacProcessNotifierAndPendingEvents();
1036 if(!wxMenuBar::MacGetInstalledMenuBar() && wxMenuBar::MacGetCommonMenuBar())
1037 wxMenuBar::MacGetCommonMenuBar()->MacInstallMenuBar();
1040 void wxApp::WakeUpIdle()
1045 // Send idle event to all top-level windows
1046 bool wxApp::SendIdleEvents()
1048 bool needMore
= FALSE
;
1049 wxWindowListNode
* node
= wxTopLevelWindows
.GetFirst();
1052 wxWindow
* win
= node
->GetData();
1053 if (SendIdleEvents(win
))
1056 node
= node
->GetNext();
1061 // Send idle event to window and all subwindows
1062 bool wxApp::SendIdleEvents(wxWindow
* win
)
1064 bool needMore
= FALSE
;
1067 event
.SetEventObject(win
);
1068 win
->ProcessEvent(event
);
1070 if (event
.MoreRequested())
1073 wxWindowListNode
* node
= win
->GetChildren().GetFirst();
1076 wxWindow
* win
= node
->GetData();
1077 if (SendIdleEvents(win
))
1080 node
= node
->GetNext();
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
)
1103 if (!GetTopWindow()->Close(!event
.CanVeto()))
1108 extern "C" void wxCYield() ;
1114 // Yield to other processes
1116 bool wxApp::Yield(bool onlyIfNeeded
)
1120 if ( !onlyIfNeeded
)
1122 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1131 YieldToAnyThread() ;
1133 // by definition yield should handle all non-processed events
1137 OSStatus status
= noErr
;
1140 s_inReceiveEvent
= true ;
1141 status
= ReceiveNextEvent(0, NULL
,kEventDurationNoWait
,true,&theEvent
) ;
1142 s_inReceiveEvent
= false ;
1144 if ( status
== eventLoopTimedOutErr
)
1146 // make sure next time the event loop will trigger idle events
1147 sleepTime
= kEventDurationNoWait
;
1149 else if ( status
== eventLoopQuitErr
)
1151 // according to QA1061 this may also occur when a WakeUp Process
1156 MacHandleOneEvent( theEvent
) ;
1157 ReleaseEvent(theEvent
);
1159 } while( status
== noErr
) ;
1163 // having a larger value here leads to large performance slowdowns
1164 // so we cannot give background apps more processor time here
1165 // we do so however having a large sleep value in the main event loop
1168 while ( !IsExiting() && WaitNextEvent(everyEvent
, &event
,sleepTime
, (RgnHandle
) wxApp::s_macCursorRgn
))
1170 MacHandleModifierEvents( &event
) ;
1171 MacHandleOneEvent( &event
);
1172 if ( event
.what
!= kHighLevelEvent
)
1173 SetRectRgn( (RgnHandle
) wxApp::s_macCursorRgn
, event
.where
.h
, event
.where
.v
, event
.where
.h
+ 1 , event
.where
.v
+ 1 ) ;
1175 MacHandleModifierEvents( &event
) ;
1178 wxMacProcessNotifierAndPendingEvents() ;
1184 // platform specifics
1186 void wxApp::MacSuspend( bool convertClipboard
)
1189 // we have to deactive the top level windows manually
1191 wxWindowListNode
* node
= wxTopLevelWindows
.GetFirst();
1194 wxTopLevelWindow
* win
= (wxTopLevelWindow
*) node
->Data();
1196 #if 0 // having problems right now with that
1197 if (!win
->HasFlag(wxSTAY_ON_TOP
))
1200 win
->MacActivate( ((EventRecord
*) MacGetCurrentEvent())->when
, false ) ;
1202 node
= node
->GetNext();
1205 ::HideFloatingWindows() ;
1207 s_lastMouseDown
= 0 ;
1209 if( convertClipboard
)
1211 MacConvertPrivateToPublicScrap() ;
1215 extern wxList wxModalDialogs
;
1217 void wxApp::MacResume( bool convertClipboard
)
1219 s_lastMouseDown
= 0 ;
1220 if( convertClipboard
)
1222 MacConvertPublicToPrivateScrap() ;
1226 ::ShowFloatingWindows() ;
1227 // raise modal dialogs in case a non modal window was selected to activate the app
1229 wxNode
* node
= wxModalDialogs
.GetFirst();
1232 wxDialog
* dialog
= (wxDialog
*) node
->GetData();
1235 node
= node
->GetNext();
1240 void wxApp::MacConvertPrivateToPublicScrap()
1244 void wxApp::MacConvertPublicToPrivateScrap()
1248 void wxApp::MacDoOneEvent()
1253 s_inReceiveEvent
= true ;
1254 OSStatus status
= ReceiveNextEvent(0, NULL
,sleepTime
,true,&theEvent
) ;
1255 s_inReceiveEvent
= false ;
1256 if ( status
== eventLoopTimedOutErr
)
1258 if ( wxTheApp
->ProcessIdle() )
1259 sleepTime
= kEventDurationNoWait
;
1261 sleepTime
= kEventDurationForever
;
1263 else if ( status
== eventLoopQuitErr
)
1265 // according to QA1061 this may also occur when a WakeUp Process
1270 MacHandleOneEvent( theEvent
) ;
1271 ReleaseEvent(theEvent
);
1272 sleepTime
= kEventDurationNoWait
;
1277 EventMask eventMask
= everyEvent
;
1279 if (WaitNextEvent(eventMask
, &event
, sleepTime
, (RgnHandle
) s_macCursorRgn
))
1281 MacHandleModifierEvents( &event
) ;
1282 MacHandleOneEvent( &event
);
1286 MacHandleModifierEvents( &event
) ;
1288 WindowPtr window
= ::FrontWindow() ;
1290 ::IdleControls( window
) ;
1292 if ( wxTheApp
->ProcessIdle() )
1295 sleepTime
= GetCaretTime() / 2 ;
1297 if ( event
.what
!= kHighLevelEvent
)
1298 SetRectRgn( (RgnHandle
) s_macCursorRgn
, event
.where
.h
, event
.where
.v
, event
.where
.h
+ 1 , event
.where
.v
+ 1 ) ;
1302 DeletePendingObjects() ;
1303 wxMacProcessNotifierAndPendingEvents() ;
1306 void wxApp::MacHandleOneEvent( WXEVENTREF evr
)
1309 EventTargetRef theTarget
;
1310 theTarget
= GetEventDispatcherTarget();
1311 m_macCurrentEvent
= evr
;
1312 SendEventToEventTarget ((EventRef
) evr
, theTarget
);
1314 EventRecord
* ev
= (EventRecord
*) evr
;
1315 m_macCurrentEvent
= ev
;
1317 wxApp::sm_lastMessageTime
= ev
->when
;
1322 MacHandleMouseDownEvent( ev
) ;
1323 if ( ev
->modifiers
& controlKey
)
1324 s_lastMouseDown
= 2;
1326 s_lastMouseDown
= 1;
1329 if ( s_lastMouseDown
== 2 )
1331 ev
->modifiers
|= controlKey
;
1335 ev
->modifiers
&= ~controlKey
;
1337 MacHandleMouseUpEvent( ev
) ;
1338 s_lastMouseDown
= 0;
1341 MacHandleActivateEvent( ev
) ;
1344 MacHandleUpdateEvent( ev
) ;
1348 MacHandleKeyDownEvent( ev
) ;
1351 MacHandleKeyUpEvent( ev
) ;
1354 MacHandleDiskEvent( ev
) ;
1357 MacHandleOSEvent( ev
) ;
1359 case kHighLevelEvent
:
1360 MacHandleHighLevelEvent( ev
) ;
1366 wxMacProcessNotifierAndPendingEvents() ;
1370 bool s_macIsInModalLoop
= false ;
1372 void wxApp::MacHandleModifierEvents( WXEVENTREF evr
)
1374 EventRecord
* ev
= (EventRecord
*) evr
;
1375 if ( ev
->modifiers
!= s_lastModifiers
&& wxWindow::FindFocus() != NULL
)
1377 wxKeyEvent
event(wxEVT_KEY_DOWN
);
1379 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
1380 event
.m_controlDown
= ev
->modifiers
& controlKey
;
1381 event
.m_altDown
= ev
->modifiers
& optionKey
;
1382 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
1384 event
.m_x
= ev
->where
.h
;
1385 event
.m_y
= ev
->where
.v
;
1386 event
.m_timeStamp
= ev
->when
;
1387 wxWindow
* focus
= wxWindow::FindFocus() ;
1388 event
.SetEventObject(focus
);
1390 if ( (ev
->modifiers
^ s_lastModifiers
) & controlKey
)
1392 event
.m_keyCode
= WXK_CONTROL
;
1393 event
.SetEventType( ( ev
->modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1394 focus
->GetEventHandler()->ProcessEvent( event
) ;
1396 if ( (ev
->modifiers
^ s_lastModifiers
) & shiftKey
)
1398 event
.m_keyCode
= WXK_SHIFT
;
1399 event
.SetEventType( ( ev
->modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1400 focus
->GetEventHandler()->ProcessEvent( event
) ;
1402 if ( (ev
->modifiers
^ s_lastModifiers
) & optionKey
)
1404 event
.m_keyCode
= WXK_ALT
;
1405 event
.SetEventType( ( ev
->modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1406 focus
->GetEventHandler()->ProcessEvent( event
) ;
1408 s_lastModifiers
= ev
->modifiers
;
1412 void wxApp::MacHandleHighLevelEvent( WXEVENTREF evr
)
1414 // we must avoid reentrancy problems when processing high level events eg printing
1415 bool former
= s_inYield
;
1417 EventRecord
* ev
= (EventRecord
*) evr
;
1418 ::AEProcessAppleEvent( ev
) ;
1419 s_inYield
= former
;
1422 void wxApp::MacHandleMouseDownEvent( WXEVENTREF evr
)
1424 EventRecord
* ev
= (EventRecord
*) evr
;
1425 wxToolTip::RemoveToolTips() ;
1428 WindowRef frontWindow
= ::FrontNonFloatingWindow() ;
1429 WindowAttributes frontWindowAttributes
= NULL
;
1431 ::GetWindowAttributes( frontWindow
, &frontWindowAttributes
) ;
1433 short windowPart
= ::FindWindow(ev
->where
, &window
);
1434 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1435 if ( wxPendingDelete
.Member(win
) )
1439 GetQDGlobalsScreenBits( &screenBits
);
1444 if ( s_macIsInModalLoop
)
1450 UInt32 menuresult
= MenuSelect(ev
->where
) ;
1451 MacHandleMenuSelect( HiWord( menuresult
) , LoWord( menuresult
) );
1452 s_lastMouseDown
= 0;
1456 SystemClick( ev
, window
) ;
1457 s_lastMouseDown
= 0;
1460 if ( window
!= frontWindow
&& s_macIsInModalLoop
&& !(ev
->modifiers
& cmdKey
) )
1466 DragWindow(window
, ev
->where
, &screenBits
.bounds
);
1471 Point pt
= { 0, 0 } ;
1472 SetPortWindowPort(window
) ;
1473 LocalToGlobal( &pt
) ;
1475 win
->SetSize( pt
.h
, pt
.v
, -1 ,
1476 -1 , wxSIZE_USE_EXISTING
);
1478 s_lastMouseDown
= 0;
1482 if (TrackGoAway(window
, ev
->where
))
1487 s_lastMouseDown
= 0;
1491 Rect newContentRect
;
1492 Rect constraintRect
;
1493 constraintRect
.top
= win
->GetMinHeight() ;
1494 if ( constraintRect
.top
== -1 )
1495 constraintRect
.top
= 0 ;
1496 constraintRect
.left
= win
->GetMinWidth() ;
1497 if ( constraintRect
.left
== -1 )
1498 constraintRect
.left
= 0 ;
1499 constraintRect
.right
= win
->GetMaxWidth() ;
1500 if ( constraintRect
.right
== -1 )
1501 constraintRect
.right
= 32000 ;
1502 constraintRect
.bottom
= win
->GetMaxHeight() ;
1503 if ( constraintRect
.bottom
== -1 )
1504 constraintRect
.bottom
= 32000 ;
1506 Boolean growResult
= ResizeWindow( window
, ev
->where
,
1507 &constraintRect
, &newContentRect
) ;
1510 win
->SetSize( newContentRect
.left
, newContentRect
.top
,
1511 newContentRect
.right
- newContentRect
.left
,
1512 newContentRect
.bottom
- newContentRect
.top
, wxSIZE_USE_EXISTING
);
1514 s_lastMouseDown
= 0;
1519 if (TrackBox(window
, ev
->where
, windowPart
))
1521 // TODO setup size event
1522 ZoomWindow( window
, windowPart
, false ) ;
1528 Point pt
= { 0, 0 } ;
1529 SetPortWindowPort(window
) ;
1530 LocalToGlobal( &pt
) ;
1533 GetWindowPortBounds(window
, &tempRect
) ;
1534 win
->SetSize( pt
.h
, pt
.v
, tempRect
.right
-tempRect
.left
,
1535 tempRect
.bottom
-tempRect
.top
, wxSIZE_USE_EXISTING
);
1538 s_lastMouseDown
= 0;
1540 case inCollapseBox
:
1541 // TODO setup size event
1542 s_lastMouseDown
= 0;
1549 SetPortWindowPort(window
) ;
1552 if ( window
!= frontWindow
&& wxTheApp
->s_captureWindow
== NULL
)
1554 if ( s_macIsInModalLoop
)
1558 else if ( UMAIsWindowFloating( window
) )
1561 win
->MacMouseDown( ev
, windowPart
) ;
1566 win
->MacMouseDown( ev
, windowPart
) ;
1567 ::SelectWindow( window
) ;
1573 win
->MacMouseDown( ev
, windowPart
) ;
1581 void wxApp::MacHandleMouseUpEvent( WXEVENTREF evr
)
1583 EventRecord
* ev
= (EventRecord
*) evr
;
1586 short windowPart
= inNoWindow
;
1587 if ( wxTheApp
->s_captureWindow
)
1589 window
= (WindowRef
) s_captureWindow
->MacGetRootWindow() ;
1590 windowPart
= inContent
;
1594 windowPart
= ::FindWindow(ev
->where
, &window
) ;
1605 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1607 win
->MacMouseUp( ev
, windowPart
) ;
1615 long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
1616 long wxMacTranslateKey(unsigned char key
, unsigned char code
)
1621 case kHomeCharCode
:
1624 case kEnterCharCode
:
1625 retval
= WXK_RETURN
;
1630 case kHelpCharCode
:
1633 case kBackspaceCharCode
:
1639 case kPageUpCharCode
:
1640 retval
= WXK_PAGEUP
;
1642 case kPageDownCharCode
:
1643 retval
= WXK_PAGEDOWN
;
1645 case kReturnCharCode
:
1646 retval
= WXK_RETURN
;
1648 case kFunctionKeyCharCode
:
1700 case kEscapeCharCode
:
1701 retval
= WXK_ESCAPE
;
1703 case kLeftArrowCharCode
:
1706 case kRightArrowCharCode
:
1707 retval
= WXK_RIGHT
;
1709 case kUpArrowCharCode
:
1712 case kDownArrowCharCode
:
1715 case kDeleteCharCode
:
1716 retval
= WXK_DELETE
;
1725 void wxApp::MacHandleKeyDownEvent( WXEVENTREF evr
)
1727 EventRecord
* ev
= (EventRecord
*) evr
;
1728 wxToolTip::RemoveToolTips() ;
1730 UInt32 menuresult
= UMAMenuEvent(ev
) ;
1731 if ( HiWord( menuresult
) )
1733 if ( !s_macIsInModalLoop
)
1734 MacHandleMenuSelect( HiWord( menuresult
) , LoWord( menuresult
) ) ;
1738 wxWindow
* focus
= wxWindow::FindFocus() ;
1740 if ( MacSendKeyDownEvent( focus
, ev
->message
, ev
->modifiers
, ev
->when
, ev
->where
.h
, ev
->where
.v
) == false )
1742 // has not been handled -> perform default
1743 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
1744 if ( control
&& control
->GetMacControl() != NULL
)
1748 keychar
= short(ev
->message
& charCodeMask
);
1749 keycode
= short(ev
->message
& keyCodeMask
) >> 8 ;
1750 ::HandleControlKey( (ControlHandle
) control
->GetMacControl() , keycode
, keychar
, ev
->modifiers
) ;
1756 void wxApp::MacHandleKeyUpEvent( WXEVENTREF evr
)
1758 EventRecord
* ev
= (EventRecord
*) evr
;
1759 wxToolTip::RemoveToolTips() ;
1761 UInt32 menuresult
= UMAMenuEvent(ev
) ;
1762 if ( HiWord( menuresult
) )
1767 MacSendKeyUpEvent( wxWindow::FindFocus() , ev
->message
, ev
->modifiers
, ev
->when
, ev
->where
.h
, ev
->where
.v
) ;
1773 bool wxApp::MacSendKeyDownEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
)
1780 keychar
= short(keymessage
& charCodeMask
);
1781 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1783 if ( modifiers
& ( controlKey
|shiftKey
|optionKey
) )
1785 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1786 // and look at the character after
1788 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
|shiftKey
|optionKey
))) | keycode
, &state
);
1789 keychar
= short(keyInfo
& charCodeMask
);
1790 keycode
= short(keyInfo
& keyCodeMask
) >> 8 ;
1792 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1793 long realkeyval
= keyval
;
1794 if ( keyval
== keychar
)
1796 // 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)
1797 realkeyval
= short(keymessage
& charCodeMask
) ;
1798 keyval
= wxToupper( keyval
) ;
1801 wxKeyEvent
event(wxEVT_KEY_DOWN
);
1802 bool handled
= false ;
1803 event
.m_shiftDown
= modifiers
& shiftKey
;
1804 event
.m_controlDown
= modifiers
& controlKey
;
1805 event
.m_altDown
= modifiers
& optionKey
;
1806 event
.m_metaDown
= modifiers
& cmdKey
;
1807 event
.m_keyCode
= keyval
;
1811 event
.m_timeStamp
= when
;
1812 event
.SetEventObject(focus
);
1813 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1814 if ( handled
&& event
.GetSkipped() )
1821 wxWindow
*ancestor
= focus
;
1824 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
1827 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
1828 handled
= ancestor
->GetEventHandler()->ProcessEvent( command_event
);
1831 if (ancestor
->IsTopLevel())
1833 ancestor
= ancestor
->GetParent();
1836 #endif // wxUSE_ACCEL
1840 event
.Skip( FALSE
) ;
1841 event
.SetEventType( wxEVT_CHAR
) ;
1843 event
.m_keyCode
= realkeyval
;
1845 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1846 if ( handled
&& event
.GetSkipped() )
1850 (keyval
== WXK_TAB
) &&
1851 // CS: copied the change below from wxGTK
1852 // VZ: testing for wxTE_PROCESS_TAB shouldn't be done here the control may
1853 // have this style, yet choose not to process this particular TAB in which
1854 // case TAB must still work as a navigational character
1856 (!focus
->HasFlag(wxTE_PROCESS_TAB
)) &&
1858 (focus
->GetParent()) &&
1859 (focus
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
1861 wxNavigationKeyEvent new_event
;
1862 new_event
.SetEventObject( focus
);
1863 new_event
.SetDirection( !event
.ShiftDown() );
1864 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1865 new_event
.SetWindowChange( event
.ControlDown() );
1866 new_event
.SetCurrentFocus( focus
);
1867 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1868 if ( handled
&& new_event
.GetSkipped() )
1871 // backdoor handler for default return and command escape
1872 if ( !handled
&& (!focus
->IsKindOf(CLASSINFO(wxControl
) ) || !focus
->MacCanFocus() ) )
1874 // if window is not having a focus still testing for default enter or cancel
1875 // TODO add the UMA version for ActiveNonFloatingWindow
1876 wxWindow
* focus
= wxFindWinFromMacWindow( FrontWindow() ) ;
1879 if ( keyval
== WXK_RETURN
)
1881 wxButton
*def
= wxDynamicCast(focus
->GetDefaultItem(),
1883 if ( def
&& def
->IsEnabled() )
1885 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
1886 event
.SetEventObject(def
);
1887 def
->Command(event
);
1891 /* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
1892 else if (keyval
== WXK_ESCAPE
|| (keyval
== '.' && modifiers
& cmdKey
) )
1894 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
1895 new_event
.SetEventObject( focus
);
1896 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1903 bool wxApp::MacSendKeyUpEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
)
1910 keychar
= short(keymessage
& charCodeMask
);
1911 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1912 if ( modifiers
& ( controlKey
|shiftKey
|optionKey
) )
1914 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1915 // and look at the character after
1917 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
|shiftKey
|optionKey
))) | keycode
, &state
);
1918 keychar
= short(keyInfo
& charCodeMask
);
1919 keycode
= short(keyInfo
& keyCodeMask
) >> 8 ;
1921 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1923 if ( keyval
== keychar
)
1925 keyval
= wxToupper( keyval
) ;
1927 bool handled
= false ;
1929 wxKeyEvent
event(wxEVT_KEY_UP
);
1930 event
.m_shiftDown
= modifiers
& shiftKey
;
1931 event
.m_controlDown
= modifiers
& controlKey
;
1932 event
.m_altDown
= modifiers
& optionKey
;
1933 event
.m_metaDown
= modifiers
& cmdKey
;
1934 event
.m_keyCode
= keyval
;
1938 event
.m_timeStamp
= when
;
1939 event
.SetEventObject(focus
);
1940 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1946 void wxApp::MacHandleActivateEvent( WXEVENTREF evr
)
1948 EventRecord
* ev
= (EventRecord
*) evr
;
1949 WindowRef window
= (WindowRef
) ev
->message
;
1952 bool activate
= (ev
->modifiers
& activeFlag
) ;
1953 WindowClass wclass
;
1954 ::GetWindowClass ( window
, &wclass
) ;
1955 if ( wclass
== kFloatingWindowClass
)
1957 // if it is a floater we activate/deactivate the front non-floating window instead
1958 window
= ::FrontNonFloatingWindow() ;
1960 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1962 win
->MacActivate( ev
->when
, activate
) ;
1966 void wxApp::MacHandleUpdateEvent( WXEVENTREF evr
)
1968 EventRecord
* ev
= (EventRecord
*) evr
;
1969 WindowRef window
= (WindowRef
) ev
->message
;
1970 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1973 if ( !wxPendingDelete
.Member(win
) )
1974 win
->MacUpdate( ev
->when
) ;
1978 // since there is no way of telling this foreign window to update itself
1979 // we have to invalidate the update region otherwise we keep getting the same
1980 // event over and over again
1981 BeginUpdate( window
) ;
1982 EndUpdate( window
) ;
1986 void wxApp::MacHandleDiskEvent( WXEVENTREF evr
)
1988 EventRecord
* ev
= (EventRecord
*) evr
;
1989 if ( HiWord( ev
->message
) != noErr
)
1993 SetPt( &point
, 100 , 100 ) ;
1995 err
= DIBadMount( point
, ev
->message
) ;
1996 wxASSERT( err
== noErr
) ;
2000 void wxApp::MacHandleOSEvent( WXEVENTREF evr
)
2002 EventRecord
* ev
= (EventRecord
*) evr
;
2003 switch( ( ev
->message
& osEvtMessageMask
) >> 24 )
2005 case suspendResumeMessage
:
2007 bool isResuming
= ev
->message
& resumeFlag
;
2008 bool convertClipboard
= ev
->message
& convertClipboardFlag
;
2010 bool doesActivate
= UMAGetProcessModeDoesActivateOnFGSwitch() ;
2013 WindowRef oldFrontWindow
= NULL
;
2014 WindowRef newFrontWindow
= NULL
;
2016 // in case we don't take care of activating ourselves, we have to synchronize
2017 // our idea of the active window with the process manager's - which it already activated
2019 if ( !doesActivate
)
2020 oldFrontWindow
= ::FrontNonFloatingWindow() ;
2022 MacResume( convertClipboard
) ;
2024 newFrontWindow
= ::FrontNonFloatingWindow() ;
2026 if ( oldFrontWindow
)
2028 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( oldFrontWindow
) ;
2030 win
->MacActivate( ev
->when
, false ) ;
2032 if ( newFrontWindow
)
2034 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( newFrontWindow
) ;
2036 win
->MacActivate( ev
->when
, true ) ;
2041 MacSuspend( convertClipboard
) ;
2045 case mouseMovedMessage
:
2049 wxWindow
* currentMouseWindow
= NULL
;
2051 if (s_captureWindow
)
2053 currentMouseWindow
= s_captureWindow
;
2057 wxWindow::MacGetWindowFromPoint( wxPoint( ev
->where
.h
, ev
->where
.v
) ,
2058 ¤tMouseWindow
) ;
2061 if ( currentMouseWindow
!= wxWindow::s_lastMouseWindow
)
2063 wxMouseEvent event
;
2065 bool isDown
= !(ev
->modifiers
& btnState
) ; // 1 is for up
2066 bool controlDown
= ev
->modifiers
& controlKey
; // for simulating right mouse
2068 event
.m_leftDown
= isDown
&& !controlDown
;
2069 event
.m_middleDown
= FALSE
;
2070 event
.m_rightDown
= isDown
&& controlDown
;
2071 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
2072 event
.m_controlDown
= ev
->modifiers
& controlKey
;
2073 event
.m_altDown
= ev
->modifiers
& optionKey
;
2074 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
2075 event
.m_x
= ev
->where
.h
;
2076 event
.m_y
= ev
->where
.v
;
2077 event
.m_timeStamp
= ev
->when
;
2078 event
.SetEventObject(this);
2080 if ( wxWindow::s_lastMouseWindow
)
2082 wxMouseEvent
eventleave(event
);
2083 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
2084 wxWindow::s_lastMouseWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
2085 eventleave
.SetEventObject( wxWindow::s_lastMouseWindow
) ;
2087 wxWindow::s_lastMouseWindow
->GetEventHandler()->ProcessEvent(eventleave
);
2089 if ( currentMouseWindow
)
2091 wxMouseEvent
evententer(event
);
2092 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
2093 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
2094 evententer
.SetEventObject( currentMouseWindow
) ;
2095 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
2097 wxWindow::s_lastMouseWindow
= currentMouseWindow
;
2100 short windowPart
= inNoWindow
;
2102 if ( s_captureWindow
)
2104 window
= (WindowRef
) s_captureWindow
->MacGetRootWindow() ;
2105 windowPart
= inContent
;
2109 windowPart
= ::FindWindow(ev
->where
, &window
);
2116 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
2118 win
->MacMouseMoved( ev
, windowPart
) ;
2125 UMAShowArrowCursor();
2135 UMAShowArrowCursor();
2146 void wxApp::MacHandleMenuCommand( wxUint32 id
)
2148 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
2149 wxFrame
* frame
= mbar
->GetFrame();
2150 wxCHECK_RET( mbar
!= NULL
&& frame
!= NULL
, wxT("error in menu item callback") );
2153 frame
->ProcessCommand(id
);
2158 void wxApp::MacHandleMenuSelect( int macMenuId
, int macMenuItemNum
)
2161 return; // no menu item selected
2163 if (macMenuId
== kwxMacAppleMenuId
&& macMenuItemNum
> 1)
2166 Str255 deskAccessoryName
;
2169 GetMenuItemText(GetMenuHandle(kwxMacAppleMenuId
), macMenuItemNum
, deskAccessoryName
);
2170 GetPort(&savedPort
);
2171 OpenDeskAcc(deskAccessoryName
);
2178 GetMenuItemCommandID( GetMenuHandle(macMenuId
) , macMenuItemNum
, &id
) ;
2179 MacHandleMenuCommand( id
) ;