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