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