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 { kEventClassMenu
, kEventMenuOpening
},
292 { kEventClassMenu
, kEventMenuClosed
},
294 { kEventClassApplication
, kEventAppActivated
} ,
295 { kEventClassApplication
, kEventAppDeactivated
} ,
296 // handling the quit event is not recommended by apple
297 // rather using the quit apple event - which we do
299 { kEventClassAppleEvent
, kEventAppleEvent
} ,
301 { kEventClassMouse
, kEventMouseDown
} ,
305 static pascal OSStatus
306 MenuEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
308 // FIXME: this doesn't work for multiple windows
309 wxWindow
*win
= wxTheApp
->GetTopWindow();
312 // VZ: we could find the menu from its handle here by examining all
313 // the menus in the menu bar recursively but knowing that neither
314 // wxMSW nor wxGTK do it why bother...
318 GetEventParameter(event
,
319 kEventParamDirectObject
,
321 sizeof(menuRef
), NULL
,
325 wxMenuEvent
event(GetEventKind(event
) == kEventMenuOpening
328 event
.SetEventObject(win
);
330 (void)win
->GetEventHandler()->ProcessEvent(event
);
333 return eventNotHandledErr
;
336 // due to the rather low-level event API of wxWindows, we cannot use RunApplicationEventLoop
337 // but have to use ReceiveNextEvent dealing with events manually, therefore we also have
338 // deal with clicks in the menu bar explicitely
340 static pascal OSStatus
MouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
342 OSStatus result
= eventNotHandledErr
;
344 switch( GetEventKind(event
) )
346 case kEventMouseDown
:
351 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
352 sizeof( Point
), NULL
, &point
);
353 short windowPart
= ::FindWindow(point
, &window
);
355 if ( windowPart
== inMenuBar
)
357 MenuSelect( point
) ;
367 static pascal OSStatus
CommandEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
369 OSStatus result
= eventNotHandledErr
;
373 GetEventParameter( event
, kEventParamDirectObject
, typeHICommand
, NULL
,
374 sizeof( HICommand
), NULL
, &command
);
376 MenuCommand id
= command
.commandID
;
377 if ( id
== kHICommandPreferences
)
378 id
= wxApp::s_macPreferencesMenuItemId
;
380 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
381 wxMenu
* menu
= NULL
;
382 wxMenuItem
* item
= NULL
;
385 item
= mbar
->FindItem( id
, &menu
) ;
387 if ( item
== NULL
|| menu
== NULL
|| mbar
== NULL
)
390 switch( GetEventKind( event
) )
392 case kEventProcessCommand
:
394 if (item
->IsCheckable())
396 item
->Check( !item
->IsChecked() ) ;
399 menu
->SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ;
403 case kEventCommandUpdateStatus
:
404 // eventually trigger an updateui round
414 static pascal OSStatus
ApplicationEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
416 OSStatus result
= eventNotHandledErr
;
417 switch ( GetEventKind( event
) )
419 case kEventAppActivated
:
422 wxTheApp
->MacResume( true ) ;
426 case kEventAppDeactivated
:
429 wxTheApp
->MacSuspend( true ) ;
439 pascal OSStatus
wxAppEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
441 OSStatus result
= eventNotHandledErr
;
442 switch( GetEventClass( event
) )
444 case kEventClassCommand
:
445 result
= CommandEventHandler( handler
, event
, data
) ;
447 case kEventClassApplication
:
448 result
= ApplicationEventHandler( handler
, event
, data
) ;
450 case kEventClassMenu
:
451 result
= MenuEventHandler( handler
, event
, data
) ;
453 case kEventClassMouse
:
454 result
= MouseEventHandler( handler
, event
, data
) ;
456 case kEventClassAppleEvent
:
459 wxMacConvertEventToRecord( event
, &rec
) ;
460 result
= AEProcessAppleEvent( &rec
) ;
470 DEFINE_ONE_SHOT_HANDLER_GETTER( wxAppEventHandler
)
474 #if defined(WXMAKINGDLL) && !defined(__DARWIN__)
475 // we know it's there ;-)
476 WXIMPORT
char std::__throws_bad_alloc
;
479 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
485 UMAInitToolbox( 4 ) ;
486 SetEventMask( everyEvent
) ;
487 UMAShowWatchCursor() ;
489 #if defined(WXMAKINGDLL) && defined(__DARWIN__)
490 // open shared library resources from here since we don't have
491 // __wxinitialize in Mach-O shared libraries
492 wxStAppResource::OpenSharedLibraryResource(NULL
);
496 // test the minimal configuration necessary
502 if (Gestalt(gestaltMachineType
, &theMachine
) != noErr
)
504 error
= kMacSTRWrongMachine
;
506 else if (theMachine
< gestaltMacPlus
)
508 error
= kMacSTRWrongMachine
;
510 else if (Gestalt(gestaltSystemVersion
, &theSystem
) != noErr
)
512 error
= kMacSTROldSystem
;
514 else if ( theSystem
< 0x0860 )
516 error
= kMacSTROldSystem
;
518 else if ((long)GetApplLimit() - (long)ApplicationZone() < kMacMinHeap
)
520 error
= kMacSTRSmallSize
;
526 if ( !UMAHasAppearance() )
528 error = kMacSTRNoPre8Yet ;
534 // if we encountered any problems so far, give the error code and exit immediately
538 wxStAppResource resload
;
542 GetIndString(message
, 128, error
);
543 UMAShowArrowCursor() ;
544 ParamText("\pFatal Error", message
, (ConstStr255Param
)"\p", (ConstStr255Param
)"\p");
545 itemHit
= Alert(128, nil
);
550 # if __option(profile)
551 ProfilerInit( collectDetailed
, bestTimeBase
, 20000 , 40 ) ;
556 // now avoid exceptions thrown for new (bad_alloc)
557 // FIXME CS for some changes outside wxMac does not compile anymore
559 std::__throws_bad_alloc
= 0 ;
563 wxMacSetupConverters() ;
565 s_macCursorRgn
= ::NewRgn() ;
567 // Mac OS X passes a process serial number command line argument when
568 // the application is launched from the Finder. This argument must be
569 // removed from the command line arguments before being handled by the
570 // application (otherwise applications would need to handle it)
573 static const wxChar
*ARG_PSN
= _T("-psn_");
574 if ( wxStrncmp(argv
[1], ARG_PSN
, sizeof(ARG_PSN
) - 1) == 0 )
576 // remove this argument
577 memmove(argv
, argv
+ 1, argc
--);
581 if ( !wxAppBase::Initialize(argc
, argv
) )
584 wxWinMacWindowList
= new wxList(wxKEY_INTEGER
);
585 wxWinMacControlList
= new wxList(wxKEY_INTEGER
);
587 wxMacCreateNotifierTable() ;
589 UMAShowArrowCursor() ;
594 bool wxApp::OnInitGui()
596 if( !wxAppBase::OnInitGui() )
600 InstallStandardEventHandler( GetApplicationEventTarget() ) ;
602 InstallApplicationEventHandler(
603 GetwxAppEventHandlerUPP(),
604 GetEventTypeCount(eventList
), eventList
, wxTheApp
, (EventHandlerRef
*)&(wxTheApp
->m_macEventHandler
));
607 #if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340)
608 AEInstallEventHandler( kCoreEventClass
, kAEOpenDocuments
,
609 NewAEEventHandlerUPP(AEHandleODoc
) ,
611 AEInstallEventHandler( kCoreEventClass
, kAEOpenApplication
,
612 NewAEEventHandlerUPP(AEHandleOApp
) ,
614 AEInstallEventHandler( kCoreEventClass
, kAEPrintDocuments
,
615 NewAEEventHandlerUPP(AEHandlePDoc
) ,
617 AEInstallEventHandler( kCoreEventClass
, kAEQuitApplication
,
618 NewAEEventHandlerUPP(AEHandleQuit
) ,
621 AEInstallEventHandler( kCoreEventClass
, kAEOpenDocuments
,
622 NewAEEventHandlerProc(AEHandleODoc
) ,
624 AEInstallEventHandler( kCoreEventClass
, kAEOpenApplication
,
625 NewAEEventHandlerProc(AEHandleOApp
) ,
627 AEInstallEventHandler( kCoreEventClass
, kAEPrintDocuments
,
628 NewAEEventHandlerProc(AEHandlePDoc
) ,
630 AEInstallEventHandler( kCoreEventClass
, kAEQuitApplication
,
631 NewAEEventHandlerProc(AEHandleQuit
) ,
638 void wxApp::CleanUp()
640 wxToolTip::RemoveToolTips() ;
642 // One last chance for pending objects to be cleaned up
643 wxTheApp
->DeletePendingObjects();
645 wxMacDestroyNotifierTable() ;
647 delete wxWinMacWindowList
;
648 wxWinMacWindowList
= NULL
;
650 delete wxWinMacControlList
;
651 wxWinMacControlList
= NULL
;
654 # if __option(profile)
655 ProfilerDump( (StringPtr
)"\papp.prof" ) ;
660 #if defined(WXMAKINGDLL) && defined(__DARWIN__)
661 // close shared library resources from here since we don't have
662 // __wxterminate in Mach-O shared libraries
663 wxStAppResource::CloseSharedLibraryResource();
665 wxMacCleanupConverters() ;
667 UMACleanupToolbox() ;
668 if (s_macCursorRgn
) {
669 ::DisposeRgn((RgnHandle
)s_macCursorRgn
);
676 wxAppBase::CleanUp();
679 //----------------------------------------------------------------------
680 // misc initialization stuff
681 //----------------------------------------------------------------------
683 // extern variable for shared library resource id
684 // need to be able to find it with NSLookupAndBindSymbol
685 short gSharedLibraryResource
= kResFileNotOpened
;
687 #if defined(WXMAKINGDLL) && defined(__DARWIN__)
688 CFBundleRef gSharedLibraryBundle
= NULL
;
689 #endif /* WXMAKINGDLL && __DARWIN__ */
691 wxStAppResource::wxStAppResource()
693 m_currentRefNum
= CurResFile() ;
694 if ( gSharedLibraryResource
!= kResFileNotOpened
)
696 UseResFile( gSharedLibraryResource
) ;
700 wxStAppResource::~wxStAppResource()
702 if ( m_currentRefNum
!= kResFileNotOpened
)
704 UseResFile( m_currentRefNum
) ;
708 void wxStAppResource::OpenSharedLibraryResource(const void *initBlock
)
710 gSharedLibraryResource
= kResFileNotOpened
;
713 if ( initBlock
!= NULL
) {
714 const CFragInitBlock
*theInitBlock
= (const CFragInitBlock
*)initBlock
;
715 FSSpec
*fileSpec
= NULL
;
717 if (theInitBlock
->fragLocator
.where
== kDataForkCFragLocator
) {
718 fileSpec
= theInitBlock
->fragLocator
.u
.onDisk
.fileSpec
;
720 else if (theInitBlock
->fragLocator
.where
== kResourceCFragLocator
) {
721 fileSpec
= theInitBlock
->fragLocator
.u
.inSegs
.fileSpec
;
724 if (fileSpec
!= NULL
) {
725 gSharedLibraryResource
= FSpOpenResFile(fileSpec
, fsRdPerm
);
730 // Open the shared library resource file if it is not yet open
733 const char *theLibPath
;
735 gSharedLibraryBundle
= CFBundleGetBundleWithIdentifier(CFSTR("com.wxwindows.wxWindows"));
736 if (gSharedLibraryBundle
!= NULL
) {
737 // wxWindows has been bundled into a framework
738 // load the framework resources
740 gSharedLibraryResource
= CFBundleOpenBundleResourceMap(gSharedLibraryBundle
);
743 // wxWindows is a simple dynamic shared library
744 // load the resources from the data fork of a separate resource file
749 OSErr theErr
= noErr
;
751 // get the library path
752 theSymbol
= NSLookupAndBindSymbol("_gSharedLibraryResource");
753 theModule
= NSModuleForSymbol(theSymbol
);
754 theLibPath
= NSLibraryNameForModule(theModule
);
756 // if we call wxLogDebug from here then, as wxTheApp hasn't been
757 // created yet when we're called from wxApp::Initialize(), wxLog
758 // is going to create a default stderr-based log target instead of
759 // the expected normal GUI one -- don't do it, if we really want
760 // to see this message just use fprintf() here
762 wxLogDebug( wxT("wxMac library installation name is '%s'"),
766 // allocate copy to replace .dylib.* extension with .rsrc
767 theResPath
= strdup(theLibPath
);
768 if (theResPath
!= NULL
) {
769 theName
= strrchr(theResPath
, '/');
770 if (theName
== NULL
) {
771 // no directory elements in path
772 theName
= theResPath
;
774 // find ".dylib" shared library extension
775 theExt
= strstr(theName
, ".dylib");
776 // overwrite extension with ".rsrc"
777 strcpy(theExt
, ".rsrc");
780 wxLogDebug( wxT("wxMac resources file name is '%s'"),
784 theErr
= FSPathMakeRef((UInt8
*) theResPath
, &theResRef
, false);
785 if (theErr
!= noErr
) {
786 // try in current directory (using name only)
787 theErr
= FSPathMakeRef((UInt8
*) theName
, &theResRef
, false);
790 // open the resource file
791 if (theErr
== noErr
) {
792 theErr
= FSOpenResourceFile( &theResRef
, 0, NULL
, fsRdPerm
,
793 &gSharedLibraryResource
);
795 if (theErr
!= noErr
) {
798 wxT("unable to open wxMac resource file '%s'\n"),
800 #endif // __WXDEBUG__
803 // free duplicated resource file path
807 #endif /* __DARWIN__ */
809 #endif /* WXMAKINGDLL */
812 void wxStAppResource::CloseSharedLibraryResource()
815 // Close the shared library resource file
816 if (gSharedLibraryResource
!= kResFileNotOpened
) {
818 if (gSharedLibraryBundle
!= NULL
) {
819 CFBundleCloseBundleResourceMap(gSharedLibraryBundle
,
820 gSharedLibraryResource
);
821 gSharedLibraryBundle
= NULL
;
824 #endif /* __DARWIN__ */
826 CloseResFile(gSharedLibraryResource
);
828 gSharedLibraryResource
= kResFileNotOpened
;
830 #endif /* WXMAKINGDLL */
833 #if defined(WXMAKINGDLL) && !defined(__DARWIN__)
835 // for shared libraries we have to manually get the correct resource
836 // ref num upon initializing and releasing when terminating, therefore
837 // the __wxinitialize and __wxterminate must be used
840 void __sinit(void); /* (generated by linker) */
841 pascal OSErr
__initialize(const CFragInitBlock
*theInitBlock
);
842 pascal void __terminate(void);
845 pascal OSErr
__wxinitialize(const CFragInitBlock
*theInitBlock
)
847 wxStAppResource::OpenSharedLibraryResource( theInitBlock
) ;
848 return __initialize( theInitBlock
) ;
851 pascal void __wxterminate(void)
853 wxStAppResource::CloseSharedLibraryResource() ;
857 #endif /* WXMAKINGDLL && !__DARWIN__ */
861 bool wxMacConvertEventToRecord( EventRef event
, EventRecord
*rec
)
863 bool converted
= ConvertEventRefToEventRecord( event
,rec
) ;
864 OSStatus err
= noErr
;
867 switch( GetEventClass( event
) )
869 case kEventClassKeyboard
:
872 switch( GetEventKind(event
) )
874 case kEventRawKeyDown
:
875 rec
->what
= keyDown
;
877 case kEventRawKeyRepeat
:
878 rec
->what
= autoKey
;
880 case kEventRawKeyUp
:
883 case kEventRawKeyModifiersChanged
:
884 rec
->what
= nullEvent
;
893 unsigned char charCode
;
895 GetMouse( &rec
->where
) ;
897 err
= GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
898 err
= GetEventParameter(event
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
899 err
= GetEventParameter(event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
900 rec
->modifiers
= modifiers
;
901 rec
->message
= (keyCode
<< 8 ) + charCode
;
905 case kEventClassTextInput
:
907 switch( GetEventKind( event
) )
909 case kEventTextInputUnicodeForKeyEvent
:
912 err
= GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
916 unsigned char charCode
;
918 GetMouse( &rec
->where
) ;
919 rec
->what
= keyDown
;
920 err
= GetEventParameter(rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, 4, NULL
, &modifiers
);
921 err
= GetEventParameter(rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, 4, NULL
, &keyCode
);
922 err
= GetEventParameter(rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
923 rec
->modifiers
= modifiers
;
924 rec
->message
= (keyCode
<< 8 ) + charCode
;
940 pascal OSStatus wxMacApplicationEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
942 OSStatus result = eventNotHandledErr ;
945 switch ( GetEventClass( event ) )
947 case kEventClassKeyboard :
948 if ( wxMacConvertEventToRecord( event , &rec ) )
950 wxTheApp->MacHandleModifierEvents( &rec ) ;
951 wxTheApp->MacHandleOneEvent( &rec ) ;
955 case kEventClassTextInput :
956 if ( wxMacConvertEventToRecord( event , &rec ) )
958 wxTheApp->MacHandleModifierEvents( &rec ) ;
959 wxTheApp->MacHandleOneEvent( &rec ) ;
979 m_printMode
= wxPRINT_WINDOWS
;
983 bool wxApp::Initialized()
991 int wxApp::MainLoop()
1003 void wxApp::ExitMainLoop()
1005 m_keepGoing
= FALSE
;
1008 // Is a message/event pending?
1009 bool wxApp::Pending()
1012 return GetNumEventsInQueue( GetMainEventQueue() ) > 0 ;
1016 return EventAvail( everyEvent
, &event
) ;
1020 // Dispatch a message.
1021 void wxApp::Dispatch()
1026 void wxApp::OnIdle(wxIdleEvent
& event
)
1028 // Avoid recursion (via ProcessEvent default case)
1035 // 'Garbage' collection of windows deleted with Close().
1036 DeletePendingObjects();
1038 // flush the logged messages if any
1039 wxLog
*pLog
= wxLog::GetActiveTarget();
1040 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
1043 // Send OnIdle events to all windows
1044 bool needMore
= SendIdleEvents();
1047 event
.RequestMore(TRUE
);
1049 // If they are pending events, we must process them: pending events are
1050 // either events to the threads other than main or events posted with
1051 // wxPostEvent() functions
1052 wxMacProcessNotifierAndPendingEvents();
1055 if(!wxMenuBar::MacGetInstalledMenuBar() && wxMenuBar::MacGetCommonMenuBar())
1056 wxMenuBar::MacGetCommonMenuBar()->MacInstallMenuBar();
1059 void wxApp::WakeUpIdle()
1070 void wxApp::OnEndSession(wxCloseEvent
& WXUNUSED(event
))
1073 GetTopWindow()->Close(TRUE
);
1076 // Default behaviour: close the application with prompts. The
1077 // user can veto the close, and therefore the end session.
1078 void wxApp::OnQueryEndSession(wxCloseEvent
& event
)
1082 if (!GetTopWindow()->Close(!event
.CanVeto()))
1087 extern "C" void wxCYield() ;
1093 // Yield to other processes
1095 bool wxApp::Yield(bool onlyIfNeeded
)
1099 if ( !onlyIfNeeded
)
1101 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1110 YieldToAnyThread() ;
1112 // by definition yield should handle all non-processed events
1116 OSStatus status
= noErr
;
1119 s_inReceiveEvent
= true ;
1120 status
= ReceiveNextEvent(0, NULL
,kEventDurationNoWait
,true,&theEvent
) ;
1121 s_inReceiveEvent
= false ;
1123 if ( status
== eventLoopTimedOutErr
)
1125 // make sure next time the event loop will trigger idle events
1126 sleepTime
= kEventDurationNoWait
;
1128 else if ( status
== eventLoopQuitErr
)
1130 // according to QA1061 this may also occur when a WakeUp Process
1135 MacHandleOneEvent( theEvent
) ;
1136 ReleaseEvent(theEvent
);
1138 } while( status
== noErr
) ;
1142 // having a larger value here leads to large performance slowdowns
1143 // so we cannot give background apps more processor time here
1144 // we do so however having a large sleep value in the main event loop
1147 while ( !IsExiting() && WaitNextEvent(everyEvent
, &event
,sleepTime
, (RgnHandle
) wxApp::s_macCursorRgn
))
1149 MacHandleModifierEvents( &event
) ;
1150 MacHandleOneEvent( &event
);
1151 if ( event
.what
!= kHighLevelEvent
)
1152 SetRectRgn( (RgnHandle
) wxApp::s_macCursorRgn
, event
.where
.h
, event
.where
.v
, event
.where
.h
+ 1 , event
.where
.v
+ 1 ) ;
1154 MacHandleModifierEvents( &event
) ;
1157 wxMacProcessNotifierAndPendingEvents() ;
1163 // platform specifics
1165 void wxApp::MacSuspend( bool convertClipboard
)
1168 // we have to deactive the top level windows manually
1170 wxWindowListNode
* node
= wxTopLevelWindows
.GetFirst();
1173 wxTopLevelWindow
* win
= (wxTopLevelWindow
*) node
->Data();
1175 #if 0 // having problems right now with that
1176 if (!win
->HasFlag(wxSTAY_ON_TOP
))
1179 win
->MacActivate( ((EventRecord
*) MacGetCurrentEvent())->when
, false ) ;
1181 node
= node
->GetNext();
1184 ::HideFloatingWindows() ;
1186 s_lastMouseDown
= 0 ;
1188 if( convertClipboard
)
1190 MacConvertPrivateToPublicScrap() ;
1194 extern wxList wxModalDialogs
;
1196 void wxApp::MacResume( bool convertClipboard
)
1198 s_lastMouseDown
= 0 ;
1199 if( convertClipboard
)
1201 MacConvertPublicToPrivateScrap() ;
1205 ::ShowFloatingWindows() ;
1206 // raise modal dialogs in case a non modal window was selected to activate the app
1208 wxNode
* node
= wxModalDialogs
.GetFirst();
1211 wxDialog
* dialog
= (wxDialog
*) node
->GetData();
1214 node
= node
->GetNext();
1219 void wxApp::MacConvertPrivateToPublicScrap()
1223 void wxApp::MacConvertPublicToPrivateScrap()
1227 void wxApp::MacDoOneEvent()
1232 s_inReceiveEvent
= true ;
1233 OSStatus status
= ReceiveNextEvent(0, NULL
,sleepTime
,true,&theEvent
) ;
1234 s_inReceiveEvent
= false ;
1235 if ( status
== eventLoopTimedOutErr
)
1237 if ( wxTheApp
->ProcessIdle() )
1238 sleepTime
= kEventDurationNoWait
;
1240 sleepTime
= kEventDurationForever
;
1242 else if ( status
== eventLoopQuitErr
)
1244 // according to QA1061 this may also occur when a WakeUp Process
1249 MacHandleOneEvent( theEvent
) ;
1250 ReleaseEvent(theEvent
);
1251 sleepTime
= kEventDurationNoWait
;
1256 EventMask eventMask
= everyEvent
;
1258 if (WaitNextEvent(eventMask
, &event
, sleepTime
, (RgnHandle
) s_macCursorRgn
))
1260 MacHandleModifierEvents( &event
) ;
1261 MacHandleOneEvent( &event
);
1265 MacHandleModifierEvents( &event
) ;
1267 WindowPtr window
= ::FrontWindow() ;
1269 ::IdleControls( window
) ;
1271 if ( wxTheApp
->ProcessIdle() )
1274 sleepTime
= GetCaretTime() / 2 ;
1276 if ( event
.what
!= kHighLevelEvent
)
1277 SetRectRgn( (RgnHandle
) s_macCursorRgn
, event
.where
.h
, event
.where
.v
, event
.where
.h
+ 1 , event
.where
.v
+ 1 ) ;
1281 DeletePendingObjects() ;
1282 wxMacProcessNotifierAndPendingEvents() ;
1285 void wxApp::MacHandleOneEvent( WXEVENTREF evr
)
1288 EventTargetRef theTarget
;
1289 theTarget
= GetEventDispatcherTarget();
1290 m_macCurrentEvent
= evr
;
1291 SendEventToEventTarget ((EventRef
) evr
, theTarget
);
1293 EventRecord
* ev
= (EventRecord
*) evr
;
1294 m_macCurrentEvent
= ev
;
1296 wxApp::sm_lastMessageTime
= ev
->when
;
1301 MacHandleMouseDownEvent( ev
) ;
1302 if ( ev
->modifiers
& controlKey
)
1303 s_lastMouseDown
= 2;
1305 s_lastMouseDown
= 1;
1308 if ( s_lastMouseDown
== 2 )
1310 ev
->modifiers
|= controlKey
;
1314 ev
->modifiers
&= ~controlKey
;
1316 MacHandleMouseUpEvent( ev
) ;
1317 s_lastMouseDown
= 0;
1320 MacHandleActivateEvent( ev
) ;
1323 MacHandleUpdateEvent( ev
) ;
1327 MacHandleKeyDownEvent( ev
) ;
1330 MacHandleKeyUpEvent( ev
) ;
1333 MacHandleDiskEvent( ev
) ;
1336 MacHandleOSEvent( ev
) ;
1338 case kHighLevelEvent
:
1339 MacHandleHighLevelEvent( ev
) ;
1345 wxMacProcessNotifierAndPendingEvents() ;
1349 bool s_macIsInModalLoop
= false ;
1351 void wxApp::MacHandleModifierEvents( WXEVENTREF evr
)
1353 EventRecord
* ev
= (EventRecord
*) evr
;
1354 if ( ev
->modifiers
!= s_lastModifiers
&& wxWindow::FindFocus() != NULL
)
1356 wxKeyEvent
event(wxEVT_KEY_DOWN
);
1358 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
1359 event
.m_controlDown
= ev
->modifiers
& controlKey
;
1360 event
.m_altDown
= ev
->modifiers
& optionKey
;
1361 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
1363 event
.m_x
= ev
->where
.h
;
1364 event
.m_y
= ev
->where
.v
;
1365 event
.m_timeStamp
= ev
->when
;
1366 wxWindow
* focus
= wxWindow::FindFocus() ;
1367 event
.SetEventObject(focus
);
1369 if ( (ev
->modifiers
^ s_lastModifiers
) & controlKey
)
1371 event
.m_keyCode
= WXK_CONTROL
;
1372 event
.SetEventType( ( ev
->modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1373 focus
->GetEventHandler()->ProcessEvent( event
) ;
1375 if ( (ev
->modifiers
^ s_lastModifiers
) & shiftKey
)
1377 event
.m_keyCode
= WXK_SHIFT
;
1378 event
.SetEventType( ( ev
->modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1379 focus
->GetEventHandler()->ProcessEvent( event
) ;
1381 if ( (ev
->modifiers
^ s_lastModifiers
) & optionKey
)
1383 event
.m_keyCode
= WXK_ALT
;
1384 event
.SetEventType( ( ev
->modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
1385 focus
->GetEventHandler()->ProcessEvent( event
) ;
1387 s_lastModifiers
= ev
->modifiers
;
1391 void wxApp::MacHandleHighLevelEvent( WXEVENTREF evr
)
1393 // we must avoid reentrancy problems when processing high level events eg printing
1394 bool former
= s_inYield
;
1396 EventRecord
* ev
= (EventRecord
*) evr
;
1397 ::AEProcessAppleEvent( ev
) ;
1398 s_inYield
= former
;
1401 void wxApp::MacHandleMouseDownEvent( WXEVENTREF evr
)
1403 EventRecord
* ev
= (EventRecord
*) evr
;
1404 wxToolTip::RemoveToolTips() ;
1407 WindowRef frontWindow
= ::FrontNonFloatingWindow() ;
1408 WindowAttributes frontWindowAttributes
= NULL
;
1410 ::GetWindowAttributes( frontWindow
, &frontWindowAttributes
) ;
1412 short windowPart
= ::FindWindow(ev
->where
, &window
);
1413 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1414 if ( wxPendingDelete
.Member(win
) )
1418 GetQDGlobalsScreenBits( &screenBits
);
1423 if ( s_macIsInModalLoop
)
1429 UInt32 menuresult
= MenuSelect(ev
->where
) ;
1430 MacHandleMenuSelect( HiWord( menuresult
) , LoWord( menuresult
) );
1431 s_lastMouseDown
= 0;
1435 SystemClick( ev
, window
) ;
1436 s_lastMouseDown
= 0;
1439 if ( window
!= frontWindow
&& s_macIsInModalLoop
&& !(ev
->modifiers
& cmdKey
) )
1445 DragWindow(window
, ev
->where
, &screenBits
.bounds
);
1450 Point pt
= { 0, 0 } ;
1451 SetPortWindowPort(window
) ;
1452 LocalToGlobal( &pt
) ;
1454 win
->SetSize( pt
.h
, pt
.v
, -1 ,
1455 -1 , wxSIZE_USE_EXISTING
);
1457 s_lastMouseDown
= 0;
1461 if (TrackGoAway(window
, ev
->where
))
1466 s_lastMouseDown
= 0;
1470 Rect newContentRect
;
1471 Rect constraintRect
;
1472 constraintRect
.top
= win
->GetMinHeight() ;
1473 if ( constraintRect
.top
== -1 )
1474 constraintRect
.top
= 0 ;
1475 constraintRect
.left
= win
->GetMinWidth() ;
1476 if ( constraintRect
.left
== -1 )
1477 constraintRect
.left
= 0 ;
1478 constraintRect
.right
= win
->GetMaxWidth() ;
1479 if ( constraintRect
.right
== -1 )
1480 constraintRect
.right
= 32000 ;
1481 constraintRect
.bottom
= win
->GetMaxHeight() ;
1482 if ( constraintRect
.bottom
== -1 )
1483 constraintRect
.bottom
= 32000 ;
1485 Boolean growResult
= ResizeWindow( window
, ev
->where
,
1486 &constraintRect
, &newContentRect
) ;
1489 win
->SetSize( newContentRect
.left
, newContentRect
.top
,
1490 newContentRect
.right
- newContentRect
.left
,
1491 newContentRect
.bottom
- newContentRect
.top
, wxSIZE_USE_EXISTING
);
1493 s_lastMouseDown
= 0;
1498 if (TrackBox(window
, ev
->where
, windowPart
))
1500 // TODO setup size event
1501 ZoomWindow( window
, windowPart
, false ) ;
1507 Point pt
= { 0, 0 } ;
1508 SetPortWindowPort(window
) ;
1509 LocalToGlobal( &pt
) ;
1512 GetWindowPortBounds(window
, &tempRect
) ;
1513 win
->SetSize( pt
.h
, pt
.v
, tempRect
.right
-tempRect
.left
,
1514 tempRect
.bottom
-tempRect
.top
, wxSIZE_USE_EXISTING
);
1517 s_lastMouseDown
= 0;
1519 case inCollapseBox
:
1520 // TODO setup size event
1521 s_lastMouseDown
= 0;
1528 SetPortWindowPort(window
) ;
1531 if ( window
!= frontWindow
&& wxTheApp
->s_captureWindow
== NULL
)
1533 if ( s_macIsInModalLoop
)
1537 else if ( UMAIsWindowFloating( window
) )
1540 win
->MacMouseDown( ev
, windowPart
) ;
1545 win
->MacMouseDown( ev
, windowPart
) ;
1546 ::SelectWindow( window
) ;
1552 win
->MacMouseDown( ev
, windowPart
) ;
1560 void wxApp::MacHandleMouseUpEvent( WXEVENTREF evr
)
1562 EventRecord
* ev
= (EventRecord
*) evr
;
1565 short windowPart
= inNoWindow
;
1566 if ( wxTheApp
->s_captureWindow
)
1568 window
= (WindowRef
) s_captureWindow
->MacGetRootWindow() ;
1569 windowPart
= inContent
;
1573 windowPart
= ::FindWindow(ev
->where
, &window
) ;
1584 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1586 win
->MacMouseUp( ev
, windowPart
) ;
1594 long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
1595 long wxMacTranslateKey(unsigned char key
, unsigned char code
)
1600 case kHomeCharCode
:
1603 case kEnterCharCode
:
1604 retval
= WXK_RETURN
;
1609 case kHelpCharCode
:
1612 case kBackspaceCharCode
:
1618 case kPageUpCharCode
:
1619 retval
= WXK_PAGEUP
;
1621 case kPageDownCharCode
:
1622 retval
= WXK_PAGEDOWN
;
1624 case kReturnCharCode
:
1625 retval
= WXK_RETURN
;
1627 case kFunctionKeyCharCode
:
1679 case kEscapeCharCode
:
1680 retval
= WXK_ESCAPE
;
1682 case kLeftArrowCharCode
:
1685 case kRightArrowCharCode
:
1686 retval
= WXK_RIGHT
;
1688 case kUpArrowCharCode
:
1691 case kDownArrowCharCode
:
1694 case kDeleteCharCode
:
1695 retval
= WXK_DELETE
;
1704 void wxApp::MacHandleKeyDownEvent( WXEVENTREF evr
)
1706 EventRecord
* ev
= (EventRecord
*) evr
;
1707 wxToolTip::RemoveToolTips() ;
1709 UInt32 menuresult
= UMAMenuEvent(ev
) ;
1710 if ( HiWord( menuresult
) )
1712 if ( !s_macIsInModalLoop
)
1713 MacHandleMenuSelect( HiWord( menuresult
) , LoWord( menuresult
) ) ;
1717 wxWindow
* focus
= wxWindow::FindFocus() ;
1719 if ( MacSendKeyDownEvent( focus
, ev
->message
, ev
->modifiers
, ev
->when
, ev
->where
.h
, ev
->where
.v
) == false )
1721 // has not been handled -> perform default
1722 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
1723 if ( control
&& control
->GetMacControl() != NULL
)
1727 keychar
= short(ev
->message
& charCodeMask
);
1728 keycode
= short(ev
->message
& keyCodeMask
) >> 8 ;
1729 ::HandleControlKey( (ControlHandle
) control
->GetMacControl() , keycode
, keychar
, ev
->modifiers
) ;
1735 void wxApp::MacHandleKeyUpEvent( WXEVENTREF evr
)
1737 EventRecord
* ev
= (EventRecord
*) evr
;
1738 wxToolTip::RemoveToolTips() ;
1740 UInt32 menuresult
= UMAMenuEvent(ev
) ;
1741 if ( HiWord( menuresult
) )
1746 MacSendKeyUpEvent( wxWindow::FindFocus() , ev
->message
, ev
->modifiers
, ev
->when
, ev
->where
.h
, ev
->where
.v
) ;
1752 bool wxApp::MacSendKeyDownEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
)
1759 keychar
= short(keymessage
& charCodeMask
);
1760 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1762 if ( modifiers
& ( controlKey
|shiftKey
|optionKey
) )
1764 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1765 // and look at the character after
1767 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
|shiftKey
|optionKey
))) | keycode
, &state
);
1768 keychar
= short(keyInfo
& charCodeMask
);
1769 keycode
= short(keyInfo
& keyCodeMask
) >> 8 ;
1771 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1772 long realkeyval
= keyval
;
1773 if ( keyval
== keychar
)
1775 // 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)
1776 realkeyval
= short(keymessage
& charCodeMask
) ;
1777 keyval
= wxToupper( keyval
) ;
1780 wxKeyEvent
event(wxEVT_KEY_DOWN
);
1781 bool handled
= false ;
1782 event
.m_shiftDown
= modifiers
& shiftKey
;
1783 event
.m_controlDown
= modifiers
& controlKey
;
1784 event
.m_altDown
= modifiers
& optionKey
;
1785 event
.m_metaDown
= modifiers
& cmdKey
;
1786 event
.m_keyCode
= keyval
;
1790 event
.m_timeStamp
= when
;
1791 event
.SetEventObject(focus
);
1792 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1793 if ( handled
&& event
.GetSkipped() )
1800 wxWindow
*ancestor
= focus
;
1803 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
1806 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
1807 handled
= ancestor
->GetEventHandler()->ProcessEvent( command_event
);
1810 if (ancestor
->IsTopLevel())
1812 ancestor
= ancestor
->GetParent();
1815 #endif // wxUSE_ACCEL
1819 event
.Skip( FALSE
) ;
1820 event
.SetEventType( wxEVT_CHAR
) ;
1822 event
.m_keyCode
= realkeyval
;
1824 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1825 if ( handled
&& event
.GetSkipped() )
1829 (keyval
== WXK_TAB
) &&
1830 // CS: copied the change below from wxGTK
1831 // VZ: testing for wxTE_PROCESS_TAB shouldn't be done here the control may
1832 // have this style, yet choose not to process this particular TAB in which
1833 // case TAB must still work as a navigational character
1835 (!focus
->HasFlag(wxTE_PROCESS_TAB
)) &&
1837 (focus
->GetParent()) &&
1838 (focus
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
1840 wxNavigationKeyEvent new_event
;
1841 new_event
.SetEventObject( focus
);
1842 new_event
.SetDirection( !event
.ShiftDown() );
1843 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1844 new_event
.SetWindowChange( event
.ControlDown() );
1845 new_event
.SetCurrentFocus( focus
);
1846 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1847 if ( handled
&& new_event
.GetSkipped() )
1850 // backdoor handler for default return and command escape
1851 if ( !handled
&& (!focus
->IsKindOf(CLASSINFO(wxControl
) ) || !focus
->MacCanFocus() ) )
1853 // if window is not having a focus still testing for default enter or cancel
1854 // TODO add the UMA version for ActiveNonFloatingWindow
1855 wxWindow
* focus
= wxFindWinFromMacWindow( FrontWindow() ) ;
1858 if ( keyval
== WXK_RETURN
)
1860 wxButton
*def
= wxDynamicCast(focus
->GetDefaultItem(),
1862 if ( def
&& def
->IsEnabled() )
1864 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
1865 event
.SetEventObject(def
);
1866 def
->Command(event
);
1870 /* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
1871 else if (keyval
== WXK_ESCAPE
|| (keyval
== '.' && modifiers
& cmdKey
) )
1873 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
1874 new_event
.SetEventObject( focus
);
1875 handled
= focus
->GetEventHandler()->ProcessEvent( new_event
);
1882 bool wxApp::MacSendKeyUpEvent( wxWindow
* focus
, long keymessage
, long modifiers
, long when
, short wherex
, short wherey
)
1889 keychar
= short(keymessage
& charCodeMask
);
1890 keycode
= short(keymessage
& keyCodeMask
) >> 8 ;
1891 if ( modifiers
& ( controlKey
|shiftKey
|optionKey
) )
1893 // control interferes with some built-in keys like pgdown, return etc. therefore we remove the controlKey modifier
1894 // and look at the character after
1896 UInt32 keyInfo
= KeyTranslate((Ptr
)GetScriptManagerVariable(smKCHRCache
), ( modifiers
& (~(controlKey
|shiftKey
|optionKey
))) | keycode
, &state
);
1897 keychar
= short(keyInfo
& charCodeMask
);
1898 keycode
= short(keyInfo
& keyCodeMask
) >> 8 ;
1900 long keyval
= wxMacTranslateKey(keychar
, keycode
) ;
1902 if ( keyval
== keychar
)
1904 keyval
= wxToupper( keyval
) ;
1906 bool handled
= false ;
1908 wxKeyEvent
event(wxEVT_KEY_UP
);
1909 event
.m_shiftDown
= modifiers
& shiftKey
;
1910 event
.m_controlDown
= modifiers
& controlKey
;
1911 event
.m_altDown
= modifiers
& optionKey
;
1912 event
.m_metaDown
= modifiers
& cmdKey
;
1913 event
.m_keyCode
= keyval
;
1917 event
.m_timeStamp
= when
;
1918 event
.SetEventObject(focus
);
1919 handled
= focus
->GetEventHandler()->ProcessEvent( event
) ;
1925 void wxApp::MacHandleActivateEvent( WXEVENTREF evr
)
1927 EventRecord
* ev
= (EventRecord
*) evr
;
1928 WindowRef window
= (WindowRef
) ev
->message
;
1931 bool activate
= (ev
->modifiers
& activeFlag
) ;
1932 WindowClass wclass
;
1933 ::GetWindowClass ( window
, &wclass
) ;
1934 if ( wclass
== kFloatingWindowClass
)
1936 // if it is a floater we activate/deactivate the front non-floating window instead
1937 window
= ::FrontNonFloatingWindow() ;
1939 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1941 win
->MacActivate( ev
->when
, activate
) ;
1945 void wxApp::MacHandleUpdateEvent( WXEVENTREF evr
)
1947 EventRecord
* ev
= (EventRecord
*) evr
;
1948 WindowRef window
= (WindowRef
) ev
->message
;
1949 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
1952 if ( !wxPendingDelete
.Member(win
) )
1953 win
->MacUpdate( ev
->when
) ;
1957 // since there is no way of telling this foreign window to update itself
1958 // we have to invalidate the update region otherwise we keep getting the same
1959 // event over and over again
1960 BeginUpdate( window
) ;
1961 EndUpdate( window
) ;
1965 void wxApp::MacHandleDiskEvent( WXEVENTREF evr
)
1967 EventRecord
* ev
= (EventRecord
*) evr
;
1968 if ( HiWord( ev
->message
) != noErr
)
1972 SetPt( &point
, 100 , 100 ) ;
1974 err
= DIBadMount( point
, ev
->message
) ;
1975 wxASSERT( err
== noErr
) ;
1979 void wxApp::MacHandleOSEvent( WXEVENTREF evr
)
1981 EventRecord
* ev
= (EventRecord
*) evr
;
1982 switch( ( ev
->message
& osEvtMessageMask
) >> 24 )
1984 case suspendResumeMessage
:
1986 bool isResuming
= ev
->message
& resumeFlag
;
1987 bool convertClipboard
= ev
->message
& convertClipboardFlag
;
1989 bool doesActivate
= UMAGetProcessModeDoesActivateOnFGSwitch() ;
1992 WindowRef oldFrontWindow
= NULL
;
1993 WindowRef newFrontWindow
= NULL
;
1995 // in case we don't take care of activating ourselves, we have to synchronize
1996 // our idea of the active window with the process manager's - which it already activated
1998 if ( !doesActivate
)
1999 oldFrontWindow
= ::FrontNonFloatingWindow() ;
2001 MacResume( convertClipboard
) ;
2003 newFrontWindow
= ::FrontNonFloatingWindow() ;
2005 if ( oldFrontWindow
)
2007 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( oldFrontWindow
) ;
2009 win
->MacActivate( ev
->when
, false ) ;
2011 if ( newFrontWindow
)
2013 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( newFrontWindow
) ;
2015 win
->MacActivate( ev
->when
, true ) ;
2020 MacSuspend( convertClipboard
) ;
2024 case mouseMovedMessage
:
2028 wxWindow
* currentMouseWindow
= NULL
;
2030 if (s_captureWindow
)
2032 currentMouseWindow
= s_captureWindow
;
2036 wxWindow::MacGetWindowFromPoint( wxPoint( ev
->where
.h
, ev
->where
.v
) ,
2037 ¤tMouseWindow
) ;
2040 if ( currentMouseWindow
!= wxWindow::s_lastMouseWindow
)
2042 wxMouseEvent event
;
2044 bool isDown
= !(ev
->modifiers
& btnState
) ; // 1 is for up
2045 bool controlDown
= ev
->modifiers
& controlKey
; // for simulating right mouse
2047 event
.m_leftDown
= isDown
&& !controlDown
;
2048 event
.m_middleDown
= FALSE
;
2049 event
.m_rightDown
= isDown
&& controlDown
;
2050 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
2051 event
.m_controlDown
= ev
->modifiers
& controlKey
;
2052 event
.m_altDown
= ev
->modifiers
& optionKey
;
2053 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
2054 event
.m_x
= ev
->where
.h
;
2055 event
.m_y
= ev
->where
.v
;
2056 event
.m_timeStamp
= ev
->when
;
2057 event
.SetEventObject(this);
2059 if ( wxWindow::s_lastMouseWindow
)
2061 wxMouseEvent
eventleave(event
);
2062 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
2063 wxWindow::s_lastMouseWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
2064 eventleave
.SetEventObject( wxWindow::s_lastMouseWindow
) ;
2066 wxWindow::s_lastMouseWindow
->GetEventHandler()->ProcessEvent(eventleave
);
2068 if ( currentMouseWindow
)
2070 wxMouseEvent
evententer(event
);
2071 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
2072 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
2073 evententer
.SetEventObject( currentMouseWindow
) ;
2074 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
2076 wxWindow::s_lastMouseWindow
= currentMouseWindow
;
2079 short windowPart
= inNoWindow
;
2081 if ( s_captureWindow
)
2083 window
= (WindowRef
) s_captureWindow
->MacGetRootWindow() ;
2084 windowPart
= inContent
;
2088 windowPart
= ::FindWindow(ev
->where
, &window
);
2095 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow( window
) ;
2097 win
->MacMouseMoved( ev
, windowPart
) ;
2104 UMAShowArrowCursor();
2114 UMAShowArrowCursor();
2125 void wxApp::MacHandleMenuCommand( wxUint32 id
)
2127 wxMenuBar
* mbar
= wxMenuBar::MacGetInstalledMenuBar() ;
2128 wxFrame
* frame
= mbar
->GetFrame();
2129 wxCHECK_RET( mbar
!= NULL
&& frame
!= NULL
, wxT("error in menu item callback") );
2132 frame
->ProcessCommand(id
);
2137 void wxApp::MacHandleMenuSelect( int macMenuId
, int macMenuItemNum
)
2140 return; // no menu item selected
2142 if (macMenuId
== kwxMacAppleMenuId
&& macMenuItemNum
> 1)
2145 Str255 deskAccessoryName
;
2148 GetMenuItemText(GetMenuHandle(kwxMacAppleMenuId
), macMenuItemNum
, deskAccessoryName
);
2149 GetPort(&savedPort
);
2150 OpenDeskAcc(deskAccessoryName
);
2157 GetMenuItemCommandID( GetMenuHandle(macMenuId
) , macMenuItemNum
, &id
) ;
2158 MacHandleMenuCommand( id
) ;