]> git.saurik.com Git - wxWidgets.git/blame - src/mac/app.cpp
wxButtons no longer leave junk on dialogs when moved.
[wxWidgets.git] / src / mac / app.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.cpp
3// Purpose: wxApp
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
8461e4c2 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "app.h"
14#endif
15
df06d1a4
GD
16#include "wx/defs.h"
17
03e11df5 18#include "wx/window.h"
e9576ca5 19#include "wx/frame.h"
e8566d35 20#include "wx/button.h"
e9576ca5
SC
21#include "wx/app.h"
22#include "wx/utils.h"
23#include "wx/gdicmn.h"
24#include "wx/pen.h"
25#include "wx/brush.h"
26#include "wx/cursor.h"
ed5b9811 27#include "wx/intl.h"
e9576ca5
SC
28#include "wx/icon.h"
29#include "wx/palette.h"
30#include "wx/dc.h"
31#include "wx/dialog.h"
32#include "wx/msgdlg.h"
33#include "wx/log.h"
34#include "wx/module.h"
35#include "wx/memory.h"
2f1ae414 36#include "wx/tooltip.h"
b3c406a5 37#include "wx/textctrl.h"
03e11df5 38#include "wx/menu.h"
e9576ca5 39#if wxUSE_WX_RESOURCES
df06d1a4 40# include "wx/resource.h"
e9576ca5
SC
41#endif
42
43#include <string.h>
44
8be97d65
SC
45// mac
46
f5c6eb5c 47#ifndef __DARWIN__
03e11df5 48 #if __option(profile)
8461e4c2 49 #include <profiler.h>
03e11df5 50 #endif
9779893b 51#endif
519cb848 52
8be97d65
SC
53#include "apprsrc.h"
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>
ed581ee2
GD
60# if defined(WXMAKINGDLL)
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
e9576ca5
SC
71extern char *wxBuffer;
72extern wxList wxPendingDelete;
519cb848
SC
73extern wxList *wxWinMacWindowList;
74extern wxList *wxWinMacControlList;
e9576ca5 75
6418cb93 76wxApp *wxTheApp = NULL;
e9576ca5 77
2f1ae414 78#if !USE_SHARED_LIBRARY
e9576ca5
SC
79IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
80BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
81 EVT_IDLE(wxApp::OnIdle)
2f1ae414
SC
82 EVT_END_SESSION(wxApp::OnEndSession)
83 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession)
e9576ca5 84END_EVENT_TABLE()
2f1ae414 85#endif
e9576ca5 86
169935ad 87
8461e4c2 88const short kMacMinHeap = (29 * 1024) ;
8be97d65 89// platform specific static variables
169935ad 90
519cb848
SC
91const short kwxMacMenuBarResource = 1 ;
92const short kwxMacAppleMenuId = 1 ;
93
fbbdb7cd
GD
94WXHRGN wxApp::s_macCursorRgn = NULL;
95wxWindow* wxApp::s_captureWindow = NULL ;
96int wxApp::s_lastMouseDown = 0 ;
97long wxApp::sm_lastMessageTime = 0;
519cb848 98
fbbdb7cd
GD
99bool wxApp::s_macDefaultEncodingIsPC = true ;
100bool wxApp::s_macSupportPCMenuShortcuts = true ;
101long wxApp::s_macAboutMenuItemId = wxID_ABOUT ;
102wxString wxApp::s_macHelpMenuTitleName = "&Help" ;
519cb848 103
72055702
SC
104pascal OSErr AEHandleODoc( const AppleEvent *event , AppleEvent *reply , long refcon ) ;
105pascal OSErr AEHandleOApp( const AppleEvent *event , AppleEvent *reply , long refcon ) ;
106pascal OSErr AEHandlePDoc( const AppleEvent *event , AppleEvent *reply , long refcon ) ;
107pascal OSErr AEHandleQuit( const AppleEvent *event , AppleEvent *reply , long refcon ) ;
108
109
007ae8d0 110pascal OSErr AEHandleODoc( const AppleEvent *event , AppleEvent *reply , long refcon )
519cb848 111{
ba2928c6 112 // GD: UNUSED wxApp* app = (wxApp*) refcon ;
8461e4c2 113 return wxTheApp->MacHandleAEODoc( (AppleEvent*) event , reply) ;
519cb848
SC
114}
115
007ae8d0 116pascal OSErr AEHandleOApp( const AppleEvent *event , AppleEvent *reply , long refcon )
519cb848 117{
ba2928c6 118 // GD: UNUSED wxApp* app = (wxApp*) refcon ;
8461e4c2 119 return wxTheApp->MacHandleAEOApp( (AppleEvent*) event , reply ) ;
519cb848
SC
120}
121
007ae8d0 122pascal OSErr AEHandlePDoc( const AppleEvent *event , AppleEvent *reply , long refcon )
519cb848 123{
ba2928c6 124 // GD: UNUSED wxApp* app = (wxApp*) refcon ;
8461e4c2 125 return wxTheApp->MacHandleAEPDoc( (AppleEvent*) event , reply ) ;
519cb848
SC
126}
127
007ae8d0 128pascal OSErr AEHandleQuit( const AppleEvent *event , AppleEvent *reply , long refcon )
519cb848 129{
ba2928c6 130 // GD: UNUSED wxApp* app = (wxApp*) refcon ;
8461e4c2 131 return wxTheApp->MacHandleAEQuit( (AppleEvent*) event , reply) ;
519cb848
SC
132}
133
76a5e5d2 134short wxApp::MacHandleAEODoc(const WXEVENTREF event , WXEVENTREF reply)
519cb848 135{
c1fb8167 136 SysBeep(40) ;
8461e4c2
VZ
137 ProcessSerialNumber PSN ;
138 PSN.highLongOfPSN = 0 ;
139 PSN.lowLongOfPSN = kCurrentProcess ;
140 SetFrontProcess( &PSN ) ;
141 return noErr ;
519cb848
SC
142}
143
76a5e5d2 144short wxApp::MacHandleAEPDoc(const WXEVENTREF event , WXEVENTREF reply)
519cb848 145{
8461e4c2 146 return noErr ;
519cb848
SC
147}
148
76a5e5d2 149short wxApp::MacHandleAEOApp(const WXEVENTREF event , WXEVENTREF reply)
519cb848 150{
8461e4c2 151 return noErr ;
519cb848
SC
152}
153
76a5e5d2 154short wxApp::MacHandleAEQuit(const WXEVENTREF event , WXEVENTREF reply)
519cb848 155{
8461e4c2
VZ
156 wxWindow* win = GetTopWindow() ;
157 if ( win )
158 {
159 win->Close(TRUE ) ;
160 }
161 else
162 {
163 ExitMainLoop() ;
164 }
165 return noErr ;
519cb848
SC
166}
167
df06d1a4 168char StringMac[] = "\x0d\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
8461e4c2
VZ
169 "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
170 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xae\xaf"
171 "\xb1\xb4\xb5\xb6\xbb\xbc\xbe\xbf"
172 "\xc0\xc1\xc2\xc4\xc7\xc8\xc9\xcb\xcc\xcd\xce\xcf"
173 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd8\xca\xdb" ;
519cb848 174
2f1ae414 175char StringANSI[] = "\x0a\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8"
8461e4c2
VZ
176 "\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC"
177 "\x86\xBA\xA2\xA3\xA7\x95\xB6\xDF\xAE\xA9\x99\xB4\xA8\xC6\xD8"
178 "\xB1\xA5\xB5\xF0\xAA\xBA\xE6\xF8"
179 "\xBF\xA1\xAC\x83\xAB\xBB\x85\xC0\xC3\xD5\x8C\x9C"
180 "\x96\x97\x93\x94\x91\x92\xF7\xFF\xA0\x80" ;
519cb848
SC
181
182void wxMacConvertFromPC( const char *from , char *to , int len )
183{
8461e4c2
VZ
184 char *c ;
185 if ( from == to )
186 {
187 for( int i = 0 ; i < len ; ++ i )
188 {
189 c = strchr( StringANSI , *from ) ;
190 if ( c != NULL )
191 {
192 *to = StringMac[ c - StringANSI] ;
193 }
194 ++to ;
195 ++from ;
196 }
197 }
198 else
199 {
200 for( int i = 0 ; i < len ; ++ i )
201 {
202 c = strchr( StringANSI , *from ) ;
203 if ( c != NULL )
204 {
205 *to = StringMac[ c - StringANSI] ;
206 }
207 else
208 {
209 *to = *from ;
210 }
211 ++to ;
212 ++from ;
213 }
214 }
519cb848
SC
215}
216
217void wxMacConvertToPC( const char *from , char *to , int len )
218{
8461e4c2
VZ
219 char *c ;
220 if ( from == to )
221 {
222 for( int i = 0 ; i < len ; ++ i )
223 {
224 c = strchr( StringMac , *from ) ;
225 if ( c != NULL )
226 {
227 *to = StringANSI[ c - StringMac] ;
228 }
229 ++to ;
230 ++from ;
231 }
232 }
233 else
234 {
235 for( int i = 0 ; i < len ; ++ i )
236 {
237 c = strchr( StringMac , *from ) ;
238 if ( c != NULL )
239 {
240 *to = StringANSI[ c - StringMac] ;
241 }
242 else
243 {
244 *to = *from ;
245 }
246 ++to ;
247 ++from ;
248 }
249 }
519cb848
SC
250}
251
9779893b 252void wxMacConvertFromPC( char * p )
519cb848 253{
8461e4c2
VZ
254 char *ptr = p ;
255 int len = strlen ( p ) ;
9779893b 256
8461e4c2 257 wxMacConvertFromPC( ptr , ptr , len ) ;
519cb848
SC
258}
259
9779893b 260void wxMacConvertFromPCForControls( char * p )
519cb848 261{
8461e4c2
VZ
262 char *ptr = p ;
263 int len = strlen ( p ) ;
264
265 wxMacConvertFromPC( ptr , ptr , len ) ;
ba2928c6 266 for ( unsigned int i = 0 ; i < strlen ( ptr ) ; i++ )
8461e4c2
VZ
267 {
268 if ( ptr[i] == '&' && ptr[i]+1 != ' ' )
269 {
270 memmove( &ptr[i] , &ptr[i+1] , strlen( &ptr[i+1] ) + 1) ;
271 }
272 }
519cb848
SC
273}
274
9779893b 275void wxMacConvertFromPC( unsigned char *p )
519cb848 276{
8461e4c2
VZ
277 char *ptr = (char*) p + 1 ;
278 int len = p[0] ;
9779893b 279
8461e4c2 280 wxMacConvertFromPC( ptr , ptr , len ) ;
519cb848
SC
281}
282
283extern char *wxBuffer ;
284
9779893b 285wxString wxMacMakeMacStringFromPC( const char * p )
519cb848 286{
8461e4c2
VZ
287 const char *ptr = p ;
288 int len = strlen ( p ) ;
289 char *buf = wxBuffer ;
290
291 if ( len >= BUFSIZ + 512 )
292 {
293 buf = new char [len+1] ;
294 }
295
296 wxMacConvertFromPC( ptr , buf , len ) ;
297 buf[len] = 0 ;
298 wxString result( buf ) ;
299 if ( buf != wxBuffer )
300 delete buf ;
301 return result ;
519cb848
SC
302}
303
304
9779893b 305void wxMacConvertToPC( char * p )
519cb848 306{
8461e4c2
VZ
307 char *ptr = p ;
308 int len = strlen ( p ) ;
9779893b 309
8461e4c2 310 wxMacConvertToPC( ptr , ptr , len ) ;
519cb848
SC
311}
312
9779893b 313void wxMacConvertToPC( unsigned char *p )
519cb848 314{
8461e4c2
VZ
315 char *ptr = (char*) p + 1 ;
316 int len = p[0] ;
9779893b 317
8461e4c2 318 wxMacConvertToPC( ptr , ptr , len ) ;
519cb848
SC
319}
320
9779893b 321wxString wxMacMakePCStringFromMac( const char * p )
519cb848 322{
8461e4c2
VZ
323 const char *ptr = p ;
324 int len = strlen ( p ) ;
325 char *buf = wxBuffer ;
326
327 if ( len >= BUFSIZ + 512 )
328 {
329 buf = new char [len+1] ;
330 }
331
332 wxMacConvertToPC( ptr , buf , len ) ;
333 buf[len] = 0 ;
334
335 wxString result( buf ) ;
336 if ( buf != wxBuffer )
337 delete buf ;
338 return result ;
519cb848 339}
169935ad 340
8461e4c2 341wxString wxMacMakeStringFromMacString( const char* from , bool mac2pcEncoding )
3d2791f1 342{
8461e4c2
VZ
343 if (mac2pcEncoding)
344 {
345 return wxMacMakePCStringFromMac( from ) ;
346 }
347 else
348 {
349 return wxString( from ) ;
350 }
3d2791f1
SC
351}
352
8461e4c2 353wxString wxMacMakeStringFromPascal( StringPtr from , bool mac2pcEncoding )
3d2791f1
SC
354{
355 // this is safe since a pascal string can never be larger than 256 bytes
356 char s[256] ;
357 CopyPascalStringToC( from , s ) ;
8461e4c2
VZ
358 if (mac2pcEncoding)
359 {
360 return wxMacMakePCStringFromMac( s ) ;
361 }
362 else
363 {
364 return wxString( s ) ;
365 }
3d2791f1
SC
366}
367
8461e4c2 368void wxMacStringToPascal( const char * from , StringPtr to , bool pc2macEncoding )
3d2791f1 369{
8461e4c2
VZ
370 if (pc2macEncoding)
371 {
372 CopyCStringToPascal( wxMacMakeMacStringFromPC( from ) , to ) ;
373 }
374 else
375 {
376 CopyCStringToPascal( from , to ) ;
377 }
3d2791f1 378}
ed581ee2
GD
379
380#if defined(WXMAKINGDLL) && !defined(__DARWIN__)
53fd991c
SC
381// we know it's there ;-)
382WXIMPORT char std::__throws_bad_alloc ;
383#endif
384
e9576ca5
SC
385bool wxApp::Initialize()
386{
fbbdb7cd 387 int error = 0 ;
9779893b 388
fbbdb7cd 389 // Mac-specific
9779893b 390
fbbdb7cd
GD
391 UMAInitToolbox( 4 ) ;
392 SetEventMask( everyEvent ) ;
8461e4c2 393 UMAShowWatchCursor() ;
8be97d65 394
fbbdb7cd
GD
395#if defined(WXMAKINGDLL) && defined(__DARWIN__)
396 // open shared library resources from here since we don't have
397 // __wxinitialize in Mach-O shared libraries
398 wxStAppResource::OpenSharedLibraryResource(NULL);
399#endif
400
4114d0af 401#if defined(UNIVERSAL_INTERFACES_VERSION) && (UNIVERSAL_INTERFACES_VERSION >= 0x0340)
fbbdb7cd
GD
402 AEInstallEventHandler( kCoreEventClass , kAEOpenDocuments ,
403 NewAEEventHandlerUPP(AEHandleODoc) ,
03e11df5 404 (long) wxTheApp , FALSE ) ;
fbbdb7cd
GD
405 AEInstallEventHandler( kCoreEventClass , kAEOpenApplication ,
406 NewAEEventHandlerUPP(AEHandleOApp) ,
03e11df5 407 (long) wxTheApp , FALSE ) ;
fbbdb7cd
GD
408 AEInstallEventHandler( kCoreEventClass , kAEPrintDocuments ,
409 NewAEEventHandlerUPP(AEHandlePDoc) ,
03e11df5 410 (long) wxTheApp , FALSE ) ;
fbbdb7cd
GD
411 AEInstallEventHandler( kCoreEventClass , kAEQuitApplication ,
412 NewAEEventHandlerUPP(AEHandleQuit) ,
03e11df5
GD
413 (long) wxTheApp , FALSE ) ;
414#else
fbbdb7cd
GD
415 AEInstallEventHandler( kCoreEventClass , kAEOpenDocuments ,
416 NewAEEventHandlerProc(AEHandleODoc) ,
417 (long) wxTheApp , FALSE ) ;
418 AEInstallEventHandler( kCoreEventClass , kAEOpenApplication ,
419 NewAEEventHandlerProc(AEHandleOApp) ,
420 (long) wxTheApp , FALSE ) ;
421 AEInstallEventHandler( kCoreEventClass , kAEPrintDocuments ,
422 NewAEEventHandlerProc(AEHandlePDoc) ,
423 (long) wxTheApp , FALSE ) ;
424 AEInstallEventHandler( kCoreEventClass , kAEQuitApplication ,
425 NewAEEventHandlerProc(AEHandleQuit) ,
426 (long) wxTheApp , FALSE ) ;
03e11df5 427#endif
8be97d65 428
f5c6eb5c 429#ifndef __DARWIN__
fbbdb7cd 430 // test the minimal configuration necessary
8be97d65 431
fbbdb7cd 432# if !TARGET_CARBON
8461e4c2
VZ
433 long theSystem ;
434 long theMachine;
435
436 if (Gestalt(gestaltMachineType, &theMachine) != noErr)
437 {
438 error = kMacSTRWrongMachine;
439 }
440 else if (theMachine < gestaltMacPlus)
441 {
442 error = kMacSTRWrongMachine;
443 }
444 else if (Gestalt(gestaltSystemVersion, &theSystem) != noErr )
445 {
446 error = kMacSTROldSystem ;
447 }
72055702 448 else if ( theSystem < 0x0860 )
8461e4c2
VZ
449 {
450 error = kMacSTROldSystem ;
451 }
452 else if ((long)GetApplLimit() - (long)ApplicationZone() < kMacMinHeap)
453 {
454 error = kMacSTRSmallSize;
455 }
fbbdb7cd 456# endif
8461e4c2
VZ
457 /*
458 else
459 {
460 if ( !UMAHasAppearance() )
461 {
462 error = kMacSTRNoPre8Yet ;
463 }
464 }
465 */
ed5b9811 466#endif
8be97d65 467
8461e4c2 468 // if we encountered any problems so far, give the error code and exit immediately
9779893b 469
169935ad 470 if ( error )
9779893b 471 {
53fd991c 472 wxStAppResource resload ;
8461e4c2
VZ
473 short itemHit;
474 Str255 message;
475
476 GetIndString(message, 128, error);
477 UMAShowArrowCursor() ;
478 ParamText("\pFatal Error", message, (ConstStr255Param)"\p", (ConstStr255Param)"\p");
479 itemHit = Alert(128, nil);
480 return FALSE ;
9779893b 481 }
519cb848 482
f5c6eb5c 483#ifndef __DARWIN__
fbbdb7cd 484# if __option(profile)
8461e4c2 485 ProfilerInit( collectDetailed, bestTimeBase , 20000 , 40 ) ;
fbbdb7cd 486# endif
9779893b 487#endif
519cb848 488
f5c6eb5c 489#ifndef __DARWIN__
ed581ee2
GD
490 // now avoid exceptions thrown for new (bad_alloc)
491 std::__throws_bad_alloc = FALSE ;
03e11df5 492#endif
9779893b 493
8461e4c2 494 s_macCursorRgn = ::NewRgn() ;
8be97d65 495
ed581ee2
GD
496 wxBuffer = new char[BUFSIZ + 512];
497
498 wxClassInfo::InitializeClasses();
e9576ca5 499
2f1ae414
SC
500#if wxUSE_RESOURCES
501// wxGetResource(wxT("wxWindows"), wxT("OsVersion"), &wxOsVersion);
e9576ca5 502#endif
e9576ca5 503
2f1ae414
SC
504#if wxUSE_THREADS
505 wxPendingEventsLocker = new wxCriticalSection;
506#endif
ed581ee2
GD
507
508 wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING);
509 wxTheColourDatabase->Initialize();
e9576ca5 510
fc0daf84 511#ifdef __WXDEBUG__
0a67a93b
SC
512#if wxUSE_LOG
513 // flush the logged messages if any and install a 'safer' log target: the
514 // default one (wxLogGui) can't be used after the resources are freed just
515 // below and the user suppliedo ne might be even more unsafe (using any
516 // wxWindows GUI function is unsafe starting from now)
517 wxLog::DontCreateOnDemand();
518
519 // this will flush the old messages if any
520 delete wxLog::SetActiveTarget(new wxLogStderr);
521#endif // wxUSE_LOG
fc0daf84 522#endif
0a67a93b 523
0a6cce3b
SC
524 wxWinMacWindowList = new wxList(wxKEY_INTEGER);
525 wxWinMacControlList = new wxList(wxKEY_INTEGER);
526
e9576ca5
SC
527 wxInitializeStockLists();
528 wxInitializeStockObjects();
529
530#if wxUSE_WX_RESOURCES
531 wxInitializeResourceSystem();
532#endif
533
534 wxBitmap::InitStandardHandlers();
535
536 wxModule::RegisterModules();
03e11df5 537 if (!wxModule::InitializeModules()) {
519cb848 538 return FALSE;
03e11df5 539 }
e9576ca5 540
2f1ae414 541 wxMacCreateNotifierTable() ;
9779893b 542
b4efa069 543
2f1ae414 544 UMAShowArrowCursor() ;
8461e4c2 545
e9576ca5
SC
546 return TRUE;
547}
548
549void wxApp::CleanUp()
550{
12cd5f34 551 wxToolTip::RemoveToolTips() ;
2f1ae414
SC
552#if wxUSE_LOG
553 // flush the logged messages if any and install a 'safer' log target: the
554 // default one (wxLogGui) can't be used after the resources are freed just
555 // below and the user suppliedo ne might be even more unsafe (using any
556 // wxWindows GUI function is unsafe starting from now)
557 wxLog::DontCreateOnDemand();
558
559 // this will flush the old messages if any
560 delete wxLog::SetActiveTarget(new wxLogStderr);
561#endif // wxUSE_LOG
562
563 // One last chance for pending objects to be cleaned up
564 wxTheApp->DeletePendingObjects();
565
fbbdb7cd 566 wxModule::CleanUpModules();
e9576ca5
SC
567
568#if wxUSE_WX_RESOURCES
fbbdb7cd 569 wxCleanUpResourceSystem();
e9576ca5
SC
570#endif
571
fbbdb7cd 572 wxDeleteStockObjects() ;
e9576ca5 573
2f1ae414
SC
574 // Destroy all GDI lists, etc.
575 wxDeleteStockLists();
e9576ca5 576
fbbdb7cd
GD
577 delete wxTheColourDatabase;
578 wxTheColourDatabase = NULL;
e9576ca5 579
fbbdb7cd 580 wxBitmap::CleanUpHandlers();
519cb848 581
fbbdb7cd
GD
582 delete[] wxBuffer;
583 wxBuffer = NULL;
12cd5f34 584
fbbdb7cd
GD
585 wxMacDestroyNotifierTable() ;
586 if (wxWinMacWindowList) {
587 delete wxWinMacWindowList ;
588 }
589 if (wxWinMacControlList) {
590 delete wxWinMacControlList ;
591 }
2f1ae414 592 delete wxPendingEvents;
fbbdb7cd 593
2f1ae414
SC
594#if wxUSE_THREADS
595 delete wxPendingEventsLocker;
596 // If we don't do the following, we get an apparent memory leak.
597 ((wxEvtHandler&) wxDefaultValidator).ClearEventLocker();
598#endif
599
fbbdb7cd 600 wxClassInfo::CleanUpClasses();
e9576ca5 601
f5c6eb5c 602#ifndef __DARWIN__
fbbdb7cd
GD
603# if __option(profile)
604 ProfilerDump( "\papp.prof" ) ;
605 ProfilerTerm() ;
606# endif
9779893b 607#endif
519cb848 608
fbbdb7cd
GD
609 delete wxTheApp;
610 wxTheApp = NULL;
9779893b 611
e9576ca5 612#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
2f1ae414
SC
613 // At this point we want to check if there are any memory
614 // blocks that aren't part of the wxDebugContext itself,
615 // as a special case. Then when dumping we need to ignore
616 // wxDebugContext, too.
617 if (wxDebugContext::CountObjectsLeft(TRUE) > 0)
618 {
619 wxLogDebug(wxT("There were memory leaks."));
620 wxDebugContext::Dump();
621 wxDebugContext::PrintStatistics();
622 }
623 // wxDebugContext::SetStream(NULL, NULL);
e9576ca5 624#endif
9779893b 625
2f1ae414
SC
626#if wxUSE_LOG
627 // do it as the very last thing because everything else can log messages
628 delete wxLog::SetActiveTarget(NULL);
629#endif // wxUSE_LOG
169935ad 630
fbbdb7cd
GD
631#if defined(WXMAKINGDLL) && defined(__DARWIN__)
632 // close shared library resources from here since we don't have
633 // __wxterminate in Mach-O shared libraries
634 wxStAppResource::CloseSharedLibraryResource();
635#endif
636
8461e4c2 637 UMACleanupToolbox() ;
fbbdb7cd 638 if (s_macCursorRgn) {
76a5e5d2 639 ::DisposeRgn((RgnHandle)s_macCursorRgn);
fbbdb7cd
GD
640 }
641
8461e4c2
VZ
642 #if 0
643 TerminateAE() ;
644 #endif
e9576ca5
SC
645}
646
92b002a4
RD
647//----------------------------------------------------------------------
648// wxEntry
649//----------------------------------------------------------------------
650
fbbdb7cd
GD
651// extern variable for shared library resource id
652// need to be able to find it with NSLookupAndBindSymbol
653short gSharedLibraryResource = kResFileNotOpened ;
654
ed581ee2 655#if defined(WXMAKINGDLL) && defined(__DARWIN__)
fbbdb7cd 656CFBundleRef gSharedLibraryBundle = NULL;
ed581ee2 657#endif /* WXMAKINGDLL && __DARWIN__ */
53fd991c
SC
658
659wxStAppResource::wxStAppResource()
660{
fbbdb7cd
GD
661 m_currentRefNum = CurResFile() ;
662 if ( gSharedLibraryResource != kResFileNotOpened )
663 {
664 UseResFile( gSharedLibraryResource ) ;
665 }
666}
667
668wxStAppResource::~wxStAppResource()
669{
670 if ( m_currentRefNum != kResFileNotOpened )
671 {
672 UseResFile( m_currentRefNum ) ;
673 }
674}
675
676void wxStAppResource::OpenSharedLibraryResource(const void *initBlock)
677{
678 gSharedLibraryResource = kResFileNotOpened;
679
680#ifdef WXMAKINGDLL
681 if ( initBlock != NULL ) {
682 const CFragInitBlock *theInitBlock = (const CFragInitBlock *)initBlock;
683 FSSpec *fileSpec = NULL;
684
685 if (theInitBlock->fragLocator.where == kDataForkCFragLocator) {
686 fileSpec = theInitBlock->fragLocator.u.onDisk.fileSpec;
687 }
688 else if (theInitBlock->fragLocator.where == kResourceCFragLocator) {
689 fileSpec = theInitBlock->fragLocator.u.inSegs.fileSpec;
690 }
691
692 if (fileSpec != NULL) {
693 gSharedLibraryResource = FSpOpenResFile(fileSpec, fsRdPerm);
694 }
695 }
696 else {
697#ifdef __DARWIN__
698 // Open the shared library resource file if it is not yet open
ed581ee2
GD
699 NSSymbol theSymbol;
700 NSModule theModule;
701 const char *theLibPath;
702
fbbdb7cd
GD
703 gSharedLibraryBundle = CFBundleGetBundleWithIdentifier(CFSTR("com.wxwindows.wxWindows"));
704 if (gSharedLibraryBundle != NULL) {
ed581ee2
GD
705 // wxWindows has been bundled into a framework
706 // load the framework resources
707
fbbdb7cd 708 gSharedLibraryResource = CFBundleOpenBundleResourceMap(gSharedLibraryBundle);
ed581ee2
GD
709 }
710 else {
711 // wxWindows is a simple dynamic shared library
712 // load the resources from the data fork of a separate resource file
713 char *theResPath;
714 char *theName;
715 char *theExt;
716 FSRef theResRef;
717 OSErr theErr = noErr;
718
719 // get the library path
fbbdb7cd 720 theSymbol = NSLookupAndBindSymbol("_gSharedLibraryResource");
ed581ee2
GD
721 theModule = NSModuleForSymbol(theSymbol);
722 theLibPath = NSLibraryNameForModule(theModule);
ed581ee2
GD
723
724 // allocate copy to replace .dylib.* extension with .rsrc
725 theResPath = strdup(theLibPath);
726 if (theResPath != NULL) {
727 theName = strrchr(theResPath, '/');
728 if (theName == NULL) {
729 // no directory elements in path
730 theName = theResPath;
731 }
732 // find ".dylib" shared library extension
733 theExt = strstr(theName, ".dylib");
734 // overwrite extension with ".rsrc"
735 strcpy(theExt, ".rsrc");
736
737 wxLogDebug( theResPath );
738
739 theErr = FSPathMakeRef((UInt8 *) theResPath, &theResRef, false);
740 if (theErr != noErr) {
741 // try in current directory (using name only)
742 theErr = FSPathMakeRef((UInt8 *) theName, &theResRef, false);
743 }
744
745 // free duplicated resource file path
746 free(theResPath);
747
748 // open the resource file
749 if (theErr == noErr) {
750 theErr = FSOpenResourceFile( &theResRef, 0, NULL, fsRdPerm,
fbbdb7cd 751 &gSharedLibraryResource);
ed581ee2
GD
752 }
753 }
754 }
fbbdb7cd 755#endif /* __DARWIN__ */
53fd991c 756 }
fbbdb7cd 757#endif /* WXMAKINGDLL */
53fd991c
SC
758}
759
fbbdb7cd 760void wxStAppResource::CloseSharedLibraryResource()
53fd991c 761{
fbbdb7cd 762#ifdef WXMAKINGDLL
ed581ee2 763 // Close the shared library resource file
fbbdb7cd
GD
764 if (gSharedLibraryResource != kResFileNotOpened) {
765#ifdef __DARWIN__
766 if (gSharedLibraryBundle != NULL) {
767 CFBundleCloseBundleResourceMap(gSharedLibraryBundle,
768 gSharedLibraryResource);
769 gSharedLibraryBundle = NULL;
ed581ee2 770 }
fbbdb7cd
GD
771 else
772#endif /* __DARWIN__ */
773 {
774 CloseResFile(gSharedLibraryResource);
ed581ee2 775 }
fbbdb7cd
GD
776 gSharedLibraryResource = kResFileNotOpened;
777 }
778#endif /* WXMAKINGDLL */
53fd991c
SC
779}
780
ed581ee2 781#if defined(WXMAKINGDLL) && !defined(__DARWIN__)
53fd991c 782
ed581ee2
GD
783// for shared libraries we have to manually get the correct resource
784// ref num upon initializing and releasing when terminating, therefore
785// the __wxinitialize and __wxterminate must be used
53fd991c 786
53fd991c 787extern "C" {
fbbdb7cd
GD
788 void __sinit(void); /* (generated by linker) */
789 pascal OSErr __initialize(const CFragInitBlock *theInitBlock);
790 pascal void __terminate(void);
53fd991c 791}
53fd991c
SC
792
793pascal OSErr __wxinitialize(const CFragInitBlock *theInitBlock)
794{
fbbdb7cd
GD
795 wxStAppResource::OpenSharedLibraryResource( theInitBlock ) ;
796 return __initialize( theInitBlock ) ;
53fd991c
SC
797}
798
799pascal void __wxterminate(void)
800{
fbbdb7cd 801 wxStAppResource::CloseSharedLibraryResource() ;
53fd991c
SC
802 __terminate() ;
803}
ed581ee2
GD
804
805#endif /* WXMAKINGDLL && !__DARWIN__ */
53fd991c
SC
806
807int WXDLLEXPORT wxEntryStart( int argc, char *argv[] )
92b002a4
RD
808{
809 return wxApp::Initialize();
810}
811
53fd991c 812int WXDLLEXPORT wxEntryInitGui()
92b002a4
RD
813{
814 return wxTheApp->OnInitGui();
815}
816
53fd991c 817void WXDLLEXPORT wxEntryCleanup()
92b002a4
RD
818{
819 wxApp::CleanUp();
820}
821
2f1ae414 822int wxEntry( int argc, char *argv[] , bool enterLoop )
e9576ca5 823{
7c551d95
SC
824#ifdef __MWERKS__
825#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
826 // This seems to be necessary since there are 'rogue'
827 // objects present at this point (perhaps global objects?)
828 // Setting a checkpoint will ignore them as far as the
829 // memory checking facility is concerned.
830 // Of course you may argue that memory allocated in globals should be
831 // checked, but this is a reasonable compromise.
832 wxDebugContext::SetCheckpoint();
833#endif
834#endif
92b002a4 835 if (!wxEntryStart(argc, argv)) {
2f1ae414 836 return 0;
03e11df5 837 }
2f1ae414
SC
838 // create the application object or ensure that one already exists
839 if (!wxTheApp)
e9576ca5 840 {
2f1ae414
SC
841 // The app may have declared a global application object, but we recommend
842 // the IMPLEMENT_APP macro is used instead, which sets an initializer
843 // function for delayed, dynamic app object construction.
844 wxCHECK_MSG( wxApp::GetInitializerFunction(), 0,
845 wxT("No initializer - use IMPLEMENT_APP macro.") );
9779893b 846
2f1ae414
SC
847 wxTheApp = (wxApp*) (*wxApp::GetInitializerFunction()) ();
848 }
9779893b 849
2f1ae414 850 wxCHECK_MSG( wxTheApp, 0, wxT("You have to define an instance of wxApp!") );
e9576ca5 851
e94e53ac
GD
852#ifdef __DARWIN__
853 // Mac OS X passes a process serial number command line argument when
854 // the application is launched from the Finder. This argument must be
855 // removed from the command line arguments before being handled by the
856 // application (otherwise applications would need to handle it)
857
858 if (argc > 1) {
ed581ee2
GD
859 char theArg[6] = "";
860 strncpy(theArg, argv[1], 5);
e94e53ac 861
ed581ee2 862 if (strcmp(theArg, "-psn_") == 0) {
e94e53ac
GD
863 // assume the argument is always the only one and remove it
864 --argc;
865 }
866 }
867#else
89ebf1c9 868 argc = 0 ; // currently we don't support files as parameters
519cb848 869#endif
89ebf1c9 870 // we could try to get the open apple events here to adjust argc and argv better
519cb848 871
89ebf1c9
RR
872 wxTheApp->argc = argc;
873 wxTheApp->argv = argv;
9779893b 874
89ebf1c9
RR
875 // GUI-specific initialization, such as creating an app context.
876 wxEntryInitGui();
9779893b 877
89ebf1c9
RR
878 // Here frames insert themselves automatically
879 // into wxTopLevelWindows by getting created
880 // in OnInit().
9779893b 881
89ebf1c9 882 int retValue = 0;
9779893b 883
8461e4c2
VZ
884 if ( wxTheApp->OnInit() )
885 {
886 if ( enterLoop )
887 {
888 retValue = wxTheApp->OnRun();
889 }
890 else
891 // We want to initialize, but not run or exit immediately.
892 return 1;
893 }
894 //else: app initialization failed, so we skipped OnRun()
895
896 wxWindow *topWindow = wxTheApp->GetTopWindow();
897 if ( topWindow )
898 {
899 // Forcibly delete the window.
900 if ( topWindow->IsKindOf(CLASSINFO(wxFrame)) ||
901 topWindow->IsKindOf(CLASSINFO(wxDialog)) )
902 {
903 topWindow->Close(TRUE);
904 wxTheApp->DeletePendingObjects();
905 }
906 else
907 {
908 delete topWindow;
909 wxTheApp->SetTopWindow(NULL);
910 }
911 }
912
913 wxTheApp->OnExit();
914
92b002a4 915 wxEntryCleanup();
8461e4c2
VZ
916
917 return retValue;
03e11df5 918}
e9576ca5 919
b4efa069
SC
920#if TARGET_CARBON
921
922bool wxMacConvertEventToRecord( EventRef event , EventRecord *rec)
923{
924 bool converted = ConvertEventRefToEventRecord( event,rec) ;
925 OSStatus err = noErr ;
926 if ( !converted )
927 {
928 switch( GetEventClass( event ) )
929 {
930 case kEventClassKeyboard :
931 {
932 converted = true ;
933 switch( GetEventKind(event) )
934 {
935 case kEventRawKeyDown :
936 rec->what = keyDown ;
937 break ;
938 case kEventRawKeyRepeat :
939 rec->what = autoKey ;
940 break ;
941 case kEventRawKeyUp :
942 rec->what = keyUp ;
943 break ;
944 case kEventRawKeyModifiersChanged :
945 rec->what = nullEvent ;
946 break ;
947 default :
948 converted = false ;
949 break ;
950 }
951 if ( converted )
952 {
953 UInt32 keyCode ;
954 unsigned char charCode ;
955 UInt32 modifiers ;
956 GetMouse( &rec->where) ;
957
958 err = GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, 4, NULL, &modifiers);
959 err = GetEventParameter(event, kEventParamKeyCode, typeUInt32, NULL, 4, NULL, &keyCode);
960 err = GetEventParameter(event, kEventParamKeyMacCharCodes, typeChar, NULL, 1, NULL, &charCode);
961 rec->modifiers = modifiers ;
962 rec->message = (keyCode << 8 ) + charCode ;
963 }
964 }
965 break ;
966 case kEventClassTextInput :
967 {
968 switch( GetEventKind( event ) )
969 {
970 case kEventTextInputUnicodeForKeyEvent :
971 {
972 EventRef rawEvent ;
973 err = GetEventParameter( event , kEventParamTextInputSendKeyboardEvent ,typeEventRef,NULL,sizeof(rawEvent),NULL,&rawEvent ) ;
974 converted = true ;
975 {
976 UInt32 keyCode ;
977 unsigned char charCode ;
978 UInt32 modifiers ;
979 GetMouse( &rec->where) ;
980 rec->what = keyDown ;
981 err = GetEventParameter(rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, 4, NULL, &modifiers);
982 err = GetEventParameter(rawEvent, kEventParamKeyCode, typeUInt32, NULL, 4, NULL, &keyCode);
983 err = GetEventParameter(rawEvent, kEventParamKeyMacCharCodes, typeChar, NULL, 1, NULL, &charCode);
984 rec->modifiers = modifiers ;
985 rec->message = (keyCode << 8 ) + charCode ;
986 }
987 }
988 break ;
989 default :
990 break ;
991 }
992 }
993 break ;
994 }
995 }
996
997 return converted ;
998}
999
1000pascal OSStatus wxMacApplicationEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
1001{
1002 OSStatus result = eventNotHandledErr ;
1003
1004 EventRecord rec ;
1005 switch ( GetEventClass( event ) )
1006 {
1007 case kEventClassKeyboard :
1008 if ( wxMacConvertEventToRecord( event , &rec ) )
1009 {
1010 wxTheApp->MacHandleOneEvent( &rec ) ;
1011 result = noErr ;
1012 }
1013 break ;
1014 case kEventClassTextInput :
1015 if ( wxMacConvertEventToRecord( event , &rec ) )
1016 {
1017 wxTheApp->MacHandleOneEvent( &rec ) ;
1018 result = noErr ;
1019 }
1020 break ;
1021 default :
1022 break ;
1023 }
1024 return result ;
1025}
1026
1027#endif
1028
1029bool wxApp::OnInit()
1030{
1031 if ( ! wxAppBase::OnInit() )
1032 return FALSE ;
1033
1034#if TARGET_CARBON
1035 static const EventTypeSpec eventList[] =
1036 {
1037 { kEventClassKeyboard, kEventRawKeyDown } ,
1038 { kEventClassKeyboard, kEventRawKeyRepeat } ,
1039 { kEventClassKeyboard, kEventRawKeyUp } ,
1040 { kEventClassKeyboard, kEventRawKeyModifiersChanged } ,
1041
1042 { kEventClassTextInput , kEventTextInputUnicodeForKeyEvent } ,
1043 } ;
1044
1045 InstallApplicationEventHandler(NewEventHandlerUPP(wxMacApplicationEventHandler)
1046 , WXSIZEOF(eventList), eventList, this, NULL);
1047#endif
1048 return TRUE ;
1049}
e9576ca5 1050// Static member initialization
2f1ae414 1051wxAppInitializerFunction wxAppBase::m_appInitFn = (wxAppInitializerFunction) NULL;
e9576ca5
SC
1052
1053wxApp::wxApp()
1054{
1055 m_topWindow = NULL;
1056 wxTheApp = this;
2f1ae414 1057
1b21409b
JS
1058#if WXWIN_COMPATIBILITY_2_2
1059 m_wantDebugOutput = TRUE;
1060#endif
2f1ae414 1061
e9576ca5
SC
1062 argc = 0;
1063 argv = NULL;
519cb848 1064
e9576ca5 1065 m_printMode = wxPRINT_WINDOWS;
e9576ca5
SC
1066 m_exitOnFrameDelete = TRUE;
1067 m_auto3D = TRUE;
1068}
1069
1070bool wxApp::Initialized()
1071{
519cb848 1072 if (GetTopWindow())
e9576ca5 1073 return TRUE;
519cb848
SC
1074 else
1075 return FALSE;
e9576ca5
SC
1076}
1077
1078int wxApp::MainLoop()
1079{
1080 m_keepGoing = TRUE;
1081
e9576ca5
SC
1082 while (m_keepGoing)
1083 {
8461e4c2 1084 MacDoOneEvent() ;
e9576ca5 1085 }
e9576ca5
SC
1086
1087 return 0;
1088}
1089
1090// Returns TRUE if more time is needed.
1091bool wxApp::ProcessIdle()
1092{
1093 wxIdleEvent event;
1094 event.SetEventObject(this);
1095 ProcessEvent(event);
1096
1097 return event.MoreRequested();
1098}
1099
1100void wxApp::ExitMainLoop()
1101{
1102 m_keepGoing = FALSE;
1103}
1104
1105// Is a message/event pending?
1106bool wxApp::Pending()
1107{
8461e4c2 1108 EventRecord event ;
519cb848
SC
1109
1110 return EventAvail( everyEvent , &event ) ;
e9576ca5
SC
1111}
1112
1113// Dispatch a message.
1114void wxApp::Dispatch()
1115{
8461e4c2 1116 MacDoOneEvent() ;
e9576ca5
SC
1117}
1118
1119void wxApp::OnIdle(wxIdleEvent& event)
1120{
2f1ae414 1121 static bool s_inOnIdle = FALSE;
e9576ca5 1122
2f1ae414
SC
1123 // Avoid recursion (via ProcessEvent default case)
1124 if ( s_inOnIdle )
1125 return;
e9576ca5 1126
2f1ae414
SC
1127
1128 s_inOnIdle = TRUE;
e9576ca5
SC
1129
1130 // 'Garbage' collection of windows deleted with Close().
1131 DeletePendingObjects();
1132
1133 // flush the logged messages if any
1134 wxLog *pLog = wxLog::GetActiveTarget();
1135 if ( pLog != NULL && pLog->HasPendingMessages() )
1136 pLog->Flush();
1137
1138 // Send OnIdle events to all windows
1139 bool needMore = SendIdleEvents();
1140
1141 if (needMore)
1142 event.RequestMore(TRUE);
1143
2f1ae414
SC
1144 // If they are pending events, we must process them: pending events are
1145 // either events to the threads other than main or events posted with
1146 // wxPostEvent() functions
1147 wxMacProcessNotifierAndPendingEvents();
1148
1149 s_inOnIdle = FALSE;
e9576ca5
SC
1150}
1151
9779893b
RD
1152void wxWakeUpIdle()
1153{
8461e4c2 1154 wxMacWakeUp() ;
9779893b
RD
1155}
1156
e9576ca5
SC
1157// Send idle event to all top-level windows
1158bool wxApp::SendIdleEvents()
1159{
1160 bool needMore = FALSE;
8461e4c2
VZ
1161 wxNode* node = wxTopLevelWindows.First();
1162 while (node)
1163 {
1164 wxWindow* win = (wxWindow*) node->Data();
1165 if (SendIdleEvents(win))
e9576ca5
SC
1166 needMore = TRUE;
1167
8461e4c2
VZ
1168 node = node->Next();
1169 }
e9576ca5
SC
1170 return needMore;
1171}
1172
1173// Send idle event to window and all subwindows
1174bool wxApp::SendIdleEvents(wxWindow* win)
1175{
1176 bool needMore = FALSE;
1177
8461e4c2
VZ
1178 wxIdleEvent event;
1179 event.SetEventObject(win);
1180 win->ProcessEvent(event);
e9576ca5
SC
1181
1182 if (event.MoreRequested())
1183 needMore = TRUE;
1184
8461e4c2
VZ
1185 wxNode* node = win->GetChildren().First();
1186 while (node)
1187 {
1188 wxWindow* win = (wxWindow*) node->Data();
1189 if (SendIdleEvents(win))
e9576ca5
SC
1190 needMore = TRUE;
1191
8461e4c2
VZ
1192 node = node->Next();
1193 }
e9576ca5
SC
1194 return needMore ;
1195}
1196
1197void wxApp::DeletePendingObjects()
1198{
1199 wxNode *node = wxPendingDelete.First();
1200 while (node)
1201 {
1202 wxObject *obj = (wxObject *)node->Data();
9779893b 1203
e9576ca5
SC
1204 delete obj;
1205
1206 if (wxPendingDelete.Member(obj))
1207 delete node;
1208
1209 // Deleting one object may have deleted other pending
1210 // objects, so start from beginning of list again.
1211 node = wxPendingDelete.First();
1212 }
1213}
1214
e9576ca5
SC
1215void wxExit()
1216{
2f1ae414
SC
1217 wxLogError(_("Fatal error: exiting"));
1218
1219 wxApp::CleanUp();
8461e4c2 1220 ::ExitToShell() ;
e9576ca5
SC
1221}
1222
2f1ae414
SC
1223void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event))
1224{
1225 if (GetTopWindow())
1226 GetTopWindow()->Close(TRUE);
1227}
1228
1229// Default behaviour: close the application with prompts. The
1230// user can veto the close, and therefore the end session.
1231void wxApp::OnQueryEndSession(wxCloseEvent& event)
1232{
1233 if (GetTopWindow())
1234 {
1235 if (!GetTopWindow()->Close(!event.CanVeto()))
1236 event.Veto(TRUE);
1237 }
1238}
1239
1240extern "C" void wxCYield() ;
1241void wxCYield()
1242{
8461e4c2 1243 wxYield() ;
2f1ae414
SC
1244}
1245
e9576ca5 1246// Yield to other processes
cb2713bf 1247
8461e4c2 1248bool wxApp::Yield(bool onlyIfNeeded)
e9576ca5 1249{
8461e4c2
VZ
1250 static bool s_inYield = FALSE;
1251
1252 if (s_inYield)
1253 {
1254 if ( !onlyIfNeeded )
1255 {
1256 wxFAIL_MSG( wxT("wxYield called recursively" ) );
1257 }
1258
1259 return FALSE;
1260 }
1261
1262 s_inYield = TRUE;
cb2713bf 1263
2f1ae414 1264#if wxUSE_THREADS
cb2713bf 1265 YieldToAnyThread() ;
2f1ae414 1266#endif
cb2713bf 1267 EventRecord event ;
2f1ae414 1268
8461e4c2 1269 long sleepTime = 1 ; //::GetCaretTime();
2f1ae414 1270
76a5e5d2 1271 while ( !wxTheApp->IsExiting() && WaitNextEvent(everyEvent, &event,sleepTime, (RgnHandle) wxApp::s_macCursorRgn))
8461e4c2
VZ
1272 {
1273 wxTheApp->MacHandleOneEvent( &event );
1274 if ( event.what != kHighLevelEvent )
76a5e5d2 1275 SetRectRgn( (RgnHandle) wxApp::s_macCursorRgn , event.where.h , event.where.v , event.where.h + 1 , event.where.v + 1 ) ;
8461e4c2 1276 }
2f1ae414 1277
8461e4c2 1278 wxMacProcessNotifierAndPendingEvents() ;
cb2713bf 1279
8461e4c2 1280 s_inYield = FALSE;
cb2713bf 1281
8461e4c2 1282 return TRUE;
169935ad
SC
1283}
1284
9779893b 1285// platform specifics
169935ad 1286
519cb848
SC
1287void wxApp::MacSuspend( bool convertClipboard )
1288{
1c469f7f 1289 // we have to deactive the top level windows manually
8461e4c2 1290
1c469f7f
SC
1291 wxNode* node = wxTopLevelWindows.First();
1292 while (node)
1293 {
1294 wxTopLevelWindow* win = (wxTopLevelWindow*) node->Data();
1295 win->MacActivate( MacGetCurrentEvent() , false ) ;
8461e4c2 1296
1c469f7f
SC
1297 node = node->Next();
1298 }
1299
1300 s_lastMouseDown = 0 ;
1301 if( convertClipboard )
1302 {
1303 MacConvertPrivateToPublicScrap() ;
1304 }
8461e4c2 1305
1c469f7f 1306 ::HideFloatingWindows() ;
519cb848
SC
1307}
1308
1309void wxApp::MacResume( bool convertClipboard )
1310{
8461e4c2
VZ
1311 s_lastMouseDown = 0 ;
1312 if( convertClipboard )
1313 {
1314 MacConvertPublicToPrivateScrap() ;
1315 }
9779893b 1316
72055702 1317 ::ShowFloatingWindows() ;
519cb848
SC
1318}
1319
1320void wxApp::MacConvertPrivateToPublicScrap()
1321{
519cb848
SC
1322}
1323
1324void wxApp::MacConvertPublicToPrivateScrap()
1325{
519cb848
SC
1326}
1327
9779893b 1328void wxApp::MacDoOneEvent()
169935ad
SC
1329{
1330 EventRecord event ;
1331
6264b550 1332 long sleepTime = 1; // GetCaretTime() / 4 ;
169935ad 1333
76a5e5d2 1334 if (WaitNextEvent(everyEvent, &event, sleepTime, (RgnHandle) s_macCursorRgn))
8461e4c2 1335 {
6264b550 1336 MacHandleOneEvent( &event );
8461e4c2
VZ
1337 }
1338 else
1339 {
1340 // idlers
72055702 1341 WindowPtr window = ::FrontWindow() ;
8461e4c2 1342 if ( window )
72055702 1343 ::IdleControls( window ) ;
9779893b 1344
8461e4c2
VZ
1345 wxTheApp->ProcessIdle() ;
1346 }
1347 if ( event.what != kHighLevelEvent )
76a5e5d2 1348 SetRectRgn( (RgnHandle) s_macCursorRgn , event.where.h , event.where.v , event.where.h + 1 , event.where.v + 1 ) ;
519cb848 1349
8461e4c2 1350 // repeaters
519cb848 1351
6264b550 1352 DeletePendingObjects() ;
8461e4c2 1353 wxMacProcessNotifierAndPendingEvents() ;
169935ad
SC
1354}
1355
76a5e5d2 1356void wxApp::MacHandleOneEvent( WXEVENTREF evr )
169935ad 1357{
76a5e5d2 1358 EventRecord* ev = (EventRecord*) evr ;
8461e4c2
VZ
1359 m_macCurrentEvent = ev ;
1360
1361 wxApp::sm_lastMessageTime = ev->when ;
1362
1363 switch (ev->what)
1364 {
1365 case mouseDown:
1366 MacHandleMouseDownEvent( ev ) ;
1367 if ( ev->modifiers & controlKey )
1368 s_lastMouseDown = 2;
1369 else
1370 s_lastMouseDown = 1;
1371 break;
1372 case mouseUp:
1373 if ( s_lastMouseDown == 2 )
1374 {
1375 ev->modifiers |= controlKey ;
1376 }
1377 else
1378 {
1379 ev->modifiers &= ~controlKey ;
1380 }
1381 MacHandleMouseUpEvent( ev ) ;
1382 s_lastMouseDown = 0;
1383 break;
1384 case activateEvt:
1385 MacHandleActivateEvent( ev ) ;
1386 break;
1387 case updateEvt:
1388 MacHandleUpdateEvent( ev ) ;
1389 break;
1390 case keyDown:
1391 case autoKey:
1392 MacHandleKeyDownEvent( ev ) ;
1393 break;
1394 case keyUp:
1395 MacHandleKeyUpEvent( ev ) ;
1396 break;
1397 case diskEvt:
1398 MacHandleDiskEvent( ev ) ;
1399 break;
1400 case osEvt:
1401 MacHandleOSEvent( ev ) ;
1402 break;
1403 case kHighLevelEvent:
1404 MacHandleHighLevelEvent( ev ) ;
1405 break;
1406 default:
1407 break;
1408 }
1409 wxMacProcessNotifierAndPendingEvents() ;
169935ad
SC
1410}
1411
76a5e5d2 1412void wxApp::MacHandleHighLevelEvent( WXEVENTREF evr )
169935ad 1413{
76a5e5d2 1414 EventRecord* ev = (EventRecord*) evr ;
8461e4c2 1415 ::AEProcessAppleEvent( ev ) ;
169935ad
SC
1416}
1417
519cb848
SC
1418bool s_macIsInModalLoop = false ;
1419
76a5e5d2 1420void wxApp::MacHandleMouseDownEvent( WXEVENTREF evr )
169935ad 1421{
76a5e5d2 1422 EventRecord* ev = (EventRecord*) evr ;
8461e4c2 1423 wxToolTip::RemoveToolTips() ;
2f1ae414 1424
8461e4c2 1425 WindowRef window;
72055702 1426 WindowRef frontWindow = ::FrontNonFloatingWindow() ;
8461e4c2
VZ
1427 WindowAttributes frontWindowAttributes = NULL ;
1428 if ( frontWindow )
72055702 1429 ::GetWindowAttributes( frontWindow , &frontWindowAttributes ) ;
9779893b 1430
8461e4c2 1431 short windowPart = ::FindWindow(ev->where, &window);
a3722eeb 1432 wxTopLevelWindowMac* win = wxFindWinFromMacWindow( window ) ;
0a67a93b
SC
1433 if ( wxPendingDelete.Member(win) )
1434 return ;
9779893b 1435
8461e4c2
VZ
1436 BitMap screenBits;
1437 GetQDGlobalsScreenBits( &screenBits );
1438
1439 switch (windowPart)
1440 {
1441 case inMenuBar :
1442 if ( s_macIsInModalLoop )
1443 {
1444 SysBeep ( 30 ) ;
1445 }
1446 else
1447 {
1448 UInt32 menuresult = MenuSelect(ev->where) ;
1449 MacHandleMenuSelect( HiWord( menuresult ) , LoWord( menuresult ) );
1450 s_lastMouseDown = 0;
1451 }
1452 break ;
2f1ae414 1453#if !TARGET_CARBON
8461e4c2
VZ
1454 case inSysWindow :
1455 SystemClick( ev , window ) ;
1456 s_lastMouseDown = 0;
1457 break ;
2f1ae414 1458#endif
8461e4c2
VZ
1459 case inDrag :
1460 if ( window != frontWindow && s_macIsInModalLoop && !(ev->modifiers & cmdKey ) )
1461 {
1462 SysBeep ( 30 ) ;
1463 }
1464 else
1465 {
1466 DragWindow(window, ev->where, &screenBits.bounds);
1467 if (win)
1468 {
1469 GrafPtr port ;
1470 GetPort( &port ) ;
1471 Point pt = { 0, 0 } ;
66a09d47 1472 SetPortWindowPort(window) ;
8461e4c2
VZ
1473 LocalToGlobal( &pt ) ;
1474 SetPort( port ) ;
1475 win->SetSize( pt.h , pt.v , -1 ,
1476 -1 , wxSIZE_USE_EXISTING);
1477 }
1478 s_lastMouseDown = 0;
1479 }
1480 break ;
1481 case inGoAway:
1482 if (TrackGoAway(window, ev->where))
1483 {
1484 if ( win )
1485 win->Close() ;
1486 }
1487 s_lastMouseDown = 0;
1488 break;
1489 case inGrow:
1490 {
1491 int growResult = GrowWindow(window , ev->where, &screenBits.bounds);
1492 if (growResult != 0)
1493 {
1494 int newWidth = LoWord(growResult);
1495 int newHeight = HiWord(growResult);
1496 int oldWidth, oldHeight;
1497
1498
1499 if (win)
1500 {
1501 win->GetSize(&oldWidth, &oldHeight);
1502 if (newWidth == 0)
1503 newWidth = oldWidth;
1504 if (newHeight == 0)
1505 newHeight = oldHeight;
1506 win->SetSize( -1, -1, newWidth, newHeight, wxSIZE_USE_EXISTING);
1507 }
1508 }
1509 s_lastMouseDown = 0;
1510 }
1511 break;
1512 case inZoomIn:
1513 case inZoomOut:
1514 if (TrackBox(window, ev->where, windowPart))
1515 {
1516 // TODO setup size event
1517 ZoomWindow( window , windowPart , false ) ;
1518 if (win)
1519 {
1520 Rect tempRect ;
1521
1522 GetWindowPortBounds(window, &tempRect ) ;
1523 win->SetSize( -1, -1, tempRect.right-tempRect.left ,
1524 tempRect.bottom-tempRect.top, wxSIZE_USE_EXISTING);
1525 }
1526 }
1527 s_lastMouseDown = 0;
1528 break;
1529 case inCollapseBox :
1530 // TODO setup size event
1531 s_lastMouseDown = 0;
1532 break ;
1533
1534 case inContent :
1535 {
1536 GrafPtr port ;
1537 GetPort( &port ) ;
66a09d47 1538 SetPortWindowPort(window) ;
8461e4c2
VZ
1539 SetPort( port ) ;
1540 }
1541 if ( window != frontWindow && wxTheApp->s_captureWindow == NULL )
1542 {
1543 if ( s_macIsInModalLoop )
1544 {
1545 SysBeep ( 30 ) ;
1546 }
1547 else if ( UMAIsWindowFloating( window ) )
1548 {
1549 if ( win )
1550 win->MacMouseDown( ev , windowPart ) ;
1551 }
1552 else
1553 {
1554 if ( win )
1555 win->MacMouseDown( ev , windowPart ) ;
72055702 1556 ::SelectWindow( window ) ;
8461e4c2
VZ
1557 }
1558 }
1559 else
1560 {
1561 if ( win )
1562 win->MacMouseDown( ev , windowPart ) ;
1563 }
1564 break ;
1565
1566 default:
1567 break;
1568 }
169935ad
SC
1569}
1570
76a5e5d2 1571void wxApp::MacHandleMouseUpEvent( WXEVENTREF evr )
169935ad 1572{
76a5e5d2 1573 EventRecord* ev = (EventRecord*) evr ;
8461e4c2
VZ
1574 WindowRef window;
1575
4f5a3250
SC
1576 short windowPart = inNoWindow ;
1577 if ( wxTheApp->s_captureWindow )
1578 {
1579 window = (WindowRef) s_captureWindow->MacGetRootWindow() ;
1580 windowPart = inContent ;
1581 }
1582 else
1583 {
1584 windowPart = ::FindWindow(ev->where, &window) ;
1585 }
8461e4c2
VZ
1586
1587 switch (windowPart)
1588 {
1589 case inMenuBar :
1590 break ;
1591 case inSysWindow :
1592 break ;
1593 default:
1594 {
a3722eeb 1595 wxTopLevelWindowMac* win = wxFindWinFromMacWindow( window ) ;
8461e4c2
VZ
1596 if ( win )
1597 win->MacMouseUp( ev , windowPart ) ;
1598 }
1599 break;
1600 }
169935ad
SC
1601}
1602
72055702 1603long wxMacTranslateKey(unsigned char key, unsigned char code) ;
7c551d95 1604long wxMacTranslateKey(unsigned char key, unsigned char code)
9779893b 1605{
8461e4c2 1606 long retval = key ;
9779893b 1607 switch (key)
519cb848 1608 {
8461e4c2
VZ
1609 case 0x01 :
1610 retval = WXK_HOME;
1611 break;
1612 case 0x03 :
1613 retval = WXK_RETURN;
1614 break;
1615 case 0x04 :
1616 retval = WXK_END;
1617 break;
1618 case 0x05 :
1619 retval = WXK_HELP;
1620 break;
1621 case 0x08 :
1622 retval = WXK_BACK;
1623 break;
1624 case 0x09 :
1625 retval = WXK_TAB;
1626 break;
1627 case 0x0b :
1628 retval = WXK_PAGEUP;
1629 break;
1630 case 0x0c :
1631 retval = WXK_PAGEDOWN;
1632 break;
1633 case 0x0d :
1634 retval = WXK_RETURN;
1635 break;
1636 case 0x10 :
1637 {
1638 switch( code )
1639 {
1640 case 0x7a :
1641 retval = WXK_F1 ;
1642 break;
1643 case 0x78 :
1644 retval = WXK_F2 ;
1645 break;
1646 case 0x63 :
1647 retval = WXK_F3 ;
1648 break;
1649 case 0x76 :
1650 retval = WXK_F4 ;
1651 break;
1652 case 0x60 :
1653 retval = WXK_F5 ;
1654 break;
1655 case 0x61 :
1656 retval = WXK_F6 ;
1657 break;
1658 case 0x62:
1659 retval = WXK_F7 ;
1660 break;
1661 case 0x64 :
1662 retval = WXK_F8 ;
1663 break;
1664 case 0x65 :
1665 retval = WXK_F9 ;
1666 break;
1667 case 0x6D :
1668 retval = WXK_F10 ;
1669 break;
1670 case 0x67 :
1671 retval = WXK_F11 ;
1672 break;
1673 case 0x6F :
1674 retval = WXK_F12 ;
1675 break;
1676 case 0x69 :
1677 retval = WXK_F13 ;
1678 break;
1679 case 0x6B :
1680 retval = WXK_F14 ;
1681 break;
1682 case 0x71 :
1683 retval = WXK_F15 ;
1684 break;
1685 }
1686 }
1687 break ;
1688 case 0x1b :
1689 retval = WXK_ESCAPE ;
1690 break ;
1691 case 0x1c :
1692 retval = WXK_LEFT ;
1693 break ;
1694 case 0x1d :
1695 retval = WXK_RIGHT ;
1696 break ;
1697 case 0x1e :
1698 retval = WXK_UP ;
1699 break ;
1700 case 0x1f :
1701 retval = WXK_DOWN ;
1702 break ;
1703 case 0x7F :
1704 retval = WXK_DELETE ;
1705 default:
1706 break ;
1707 } // end switch
1708
1709 return retval;
169935ad
SC
1710}
1711
76a5e5d2 1712void wxApp::MacHandleKeyDownEvent( WXEVENTREF evr )
169935ad 1713{
76a5e5d2 1714 EventRecord* ev = (EventRecord*) evr ;
8461e4c2
VZ
1715 wxToolTip::RemoveToolTips() ;
1716
1717 UInt32 menuresult = UMAMenuEvent(ev) ;
1718 if ( HiWord( menuresult ) )
1719 {
1720 if ( !s_macIsInModalLoop )
1721 MacHandleMenuSelect( HiWord( menuresult ) , LoWord( menuresult ) ) ;
1722 }
1723 else
1724 {
1725 short keycode ;
1726 short keychar ;
1727 keychar = short(ev->message & charCodeMask);
1728 keycode = short(ev->message & keyCodeMask) >> 8 ;
35a8698b
SC
1729 // it is wxWindows Convention to have Ctrl Key Combinations at ASCII char value
1730 if ( ev->modifiers & controlKey && keychar >= 0 && keychar < 0x20 )
1731 {
1732 keychar += 0x40 ;
1733 }
e562df9b
SC
1734 long keyval = wxMacTranslateKey(keychar, keycode) ;
1735 bool handled = false ;
8461e4c2
VZ
1736 wxWindow* focus = wxWindow::FindFocus() ;
1737 if ( focus )
1738 {
8461e4c2
VZ
1739
1740 wxKeyEvent event(wxEVT_KEY_DOWN);
1741 event.m_shiftDown = ev->modifiers & shiftKey;
1742 event.m_controlDown = ev->modifiers & controlKey;
1743 event.m_altDown = ev->modifiers & optionKey;
1744 event.m_metaDown = ev->modifiers & cmdKey;
1745 event.m_keyCode = keyval;
1746 event.m_x = ev->where.h;
1747 event.m_y = ev->where.v;
1748 event.m_timeStamp = ev->when;
1749 event.SetEventObject(focus);
e562df9b 1750 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
35a8698b
SC
1751 if ( handled && event.GetSkipped() )
1752 handled = false ;
8461e4c2
VZ
1753 if ( !handled )
1754 {
ba2928c6 1755#if wxUSE_ACCEL
8461e4c2
VZ
1756 if (!handled)
1757 {
ba2928c6 1758 wxWindow *ancestor = focus;
8461e4c2
VZ
1759 while (ancestor)
1760 {
1761 int command = ancestor->GetAcceleratorTable()->GetCommand( event );
1762 if (command != -1)
1763 {
1764 wxCommandEvent command_event( wxEVT_COMMAND_MENU_SELECTED, command );
1765 handled = ancestor->GetEventHandler()->ProcessEvent( command_event );
1766 break;
1767 }
35a8698b 1768 if (ancestor->IsTopLevel())
8461e4c2
VZ
1769 break;
1770 ancestor = ancestor->GetParent();
1771 }
8461e4c2 1772 }
ba2928c6 1773#endif // wxUSE_ACCEL
8461e4c2
VZ
1774 }
1775 if (!handled)
1776 {
1777 wxKeyEvent event(wxEVT_CHAR);
1778 event.m_shiftDown = ev->modifiers & shiftKey;
1779 event.m_controlDown = ev->modifiers & controlKey;
1780 event.m_altDown = ev->modifiers & optionKey;
1781 event.m_metaDown = ev->modifiers & cmdKey;
1782 event.m_keyCode = keyval;
1783 event.m_x = ev->where.h;
1784 event.m_y = ev->where.v;
1785 event.m_timeStamp = ev->when;
1786 event.SetEventObject(focus);
1787 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
35a8698b
SC
1788 if ( handled && event.GetSkipped() )
1789 handled = false ;
8461e4c2
VZ
1790 }
1791 if ( !handled &&
1792 (keyval == WXK_TAB) &&
35a8698b
SC
1793// CS: copied the change below from wxGTK
1794// VZ: testing for wxTE_PROCESS_TAB shouldn't be done here the control may
1795// have this style, yet choose not to process this particular TAB in which
1796// case TAB must still work as a navigational character
1797#if 0
8461e4c2 1798 (!focus->HasFlag(wxTE_PROCESS_TAB)) &&
35a8698b 1799#endif
8461e4c2
VZ
1800 (focus->GetParent()) &&
1801 (focus->GetParent()->HasFlag( wxTAB_TRAVERSAL)) )
1802 {
1803 wxNavigationKeyEvent new_event;
1804 new_event.SetEventObject( focus );
1805 new_event.SetDirection( !event.ShiftDown() );
1806 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
1807 new_event.SetWindowChange( event.ControlDown() );
1808 new_event.SetCurrentFocus( focus );
1809 handled = focus->GetEventHandler()->ProcessEvent( new_event );
35a8698b
SC
1810 if ( handled && new_event.GetSkipped() )
1811 handled = false ;
8461e4c2 1812 }
e562df9b
SC
1813 }
1814 if ( !handled )
1815 {
1816 // if window is not having a focus still testing for default enter or cancel
1817 // TODO add the UMA version for ActiveNonFloatingWindow
1818 focus = wxFindWinFromMacWindow( FrontWindow() ) ;
1819 if ( focus )
1820 {
1821 if ( keyval == WXK_RETURN )
1822 {
1823 wxButton *def = wxDynamicCast(focus->GetDefaultItem(),
1824 wxButton);
1825 if ( def && def->IsEnabled() )
1826 {
1827 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, def->GetId() );
1828 event.SetEventObject(def);
1829 def->Command(event);
1830 return ;
1831 }
1832 }
8461e4c2 1833 /* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
e562df9b 1834 else if (keyval == WXK_ESCAPE || (keyval == '.' && ev->modifiers & cmdKey ) )
8461e4c2 1835 {
e562df9b
SC
1836 wxCommandEvent new_event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_CANCEL);
1837 new_event.SetEventObject( focus );
1838 handled = focus->GetEventHandler()->ProcessEvent( new_event );
8461e4c2 1839 }
e562df9b 1840 }
8461e4c2
VZ
1841 }
1842 }
169935ad
SC
1843}
1844
76a5e5d2 1845void wxApp::MacHandleKeyUpEvent( WXEVENTREF evr )
169935ad 1846{
76a5e5d2 1847 EventRecord* ev = (EventRecord*) evr ;
8461e4c2
VZ
1848 wxToolTip::RemoveToolTips() ;
1849
1850 UInt32 menuresult = UMAMenuEvent(ev) ;
1851 if ( HiWord( menuresult ) )
1852 {
1853 }
1854 else
1855 {
1856 short keycode ;
1857 short keychar ;
1858 keychar = short(ev->message & charCodeMask);
1859 keycode = short(ev->message & keyCodeMask) >> 8 ;
1860
1861 wxWindow* focus = wxWindow::FindFocus() ;
1862 if ( focus )
1863 {
1864 long keyval = wxMacTranslateKey(keychar, keycode) ;
1865
1866 wxKeyEvent event(wxEVT_KEY_UP);
1867 event.m_shiftDown = ev->modifiers & shiftKey;
1868 event.m_controlDown = ev->modifiers & controlKey;
1869 event.m_altDown = ev->modifiers & optionKey;
1870 event.m_metaDown = ev->modifiers & cmdKey;
1871 event.m_keyCode = keyval;
1872 event.m_x = ev->where.h;
1873 event.m_y = ev->where.v;
1874 event.m_timeStamp = ev->when;
1875 event.SetEventObject(focus);
1876 bool handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1877 }
1878 }
169935ad
SC
1879}
1880
76a5e5d2 1881void wxApp::MacHandleActivateEvent( WXEVENTREF evr )
169935ad 1882{
76a5e5d2 1883 EventRecord* ev = (EventRecord*) evr ;
8461e4c2
VZ
1884 WindowRef window = (WindowRef) ev->message ;
1885 if ( window )
1886 {
1887 bool activate = (ev->modifiers & activeFlag ) ;
1888 WindowClass wclass ;
72055702 1889 ::GetWindowClass ( window , &wclass ) ;
8461e4c2
VZ
1890 if ( wclass == kFloatingWindowClass )
1891 {
1892 // if it is a floater we activate/deactivate the front non-floating window instead
72055702 1893 window = ::FrontNonFloatingWindow() ;
8461e4c2 1894 }
a3722eeb 1895 wxTopLevelWindowMac* win = wxFindWinFromMacWindow( window ) ;
8461e4c2
VZ
1896 if ( win )
1897 win->MacActivate( ev , activate ) ;
1898 }
169935ad
SC
1899}
1900
76a5e5d2 1901void wxApp::MacHandleUpdateEvent( WXEVENTREF evr )
169935ad 1902{
76a5e5d2 1903 EventRecord* ev = (EventRecord*) evr ;
8461e4c2 1904 WindowRef window = (WindowRef) ev->message ;
a3722eeb 1905 wxTopLevelWindowMac * win = wxFindWinFromMacWindow( window ) ;
8461e4c2
VZ
1906 if ( win )
1907 {
0a67a93b 1908 if ( !wxPendingDelete.Member(win) )
a3722eeb 1909 win->MacUpdate( ev->when ) ;
8461e4c2
VZ
1910 }
1911 else
1912 {
1913 // since there is no way of telling this foreign window to update itself
1914 // we have to invalidate the update region otherwise we keep getting the same
1915 // event over and over again
1916 BeginUpdate( window ) ;
1917 EndUpdate( window ) ;
1918 }
169935ad
SC
1919}
1920
76a5e5d2 1921void wxApp::MacHandleDiskEvent( WXEVENTREF evr )
169935ad 1922{
76a5e5d2 1923 EventRecord* ev = (EventRecord*) evr ;
8461e4c2 1924 if ( HiWord( ev->message ) != noErr )
519cb848 1925 {
2f1ae414 1926 #if !TARGET_CARBON
8461e4c2
VZ
1927 OSErr err ;
1928 Point point ;
1929 SetPt( &point , 100 , 100 ) ;
9779893b 1930
8461e4c2
VZ
1931 err = DIBadMount( point , ev->message ) ;
1932 wxASSERT( err == noErr ) ;
2f1ae414 1933#endif
8461e4c2 1934 }
169935ad
SC
1935}
1936
76a5e5d2 1937void wxApp::MacHandleOSEvent( WXEVENTREF evr )
169935ad 1938{
76a5e5d2 1939 EventRecord* ev = (EventRecord*) evr ;
8461e4c2
VZ
1940 switch( ( ev->message & osEvtMessageMask ) >> 24 )
1941 {
1942 case suspendResumeMessage :
1943 {
1944 bool isResuming = ev->message & resumeFlag ;
5fde6fcc 1945#if !TARGET_CARBON
8461e4c2 1946 bool convertClipboard = ev->message & convertClipboardFlag ;
5fde6fcc 1947#else
8461e4c2 1948 bool convertClipboard = false;
5fde6fcc 1949#endif
8461e4c2
VZ
1950 bool doesActivate = UMAGetProcessModeDoesActivateOnFGSwitch() ;
1951 if ( isResuming )
1952 {
1953 WindowRef oldFrontWindow = NULL ;
1954 WindowRef newFrontWindow = NULL ;
1955
1956 // in case we don't take care of activating ourselves, we have to synchronize
1957 // our idea of the active window with the process manager's - which it already activated
1958
1959 if ( !doesActivate )
72055702 1960 oldFrontWindow = ::FrontNonFloatingWindow() ;
8461e4c2
VZ
1961
1962 MacResume( convertClipboard ) ;
1963
72055702 1964 newFrontWindow = ::FrontNonFloatingWindow() ;
8461e4c2
VZ
1965
1966 if ( oldFrontWindow )
1967 {
a3722eeb 1968 wxTopLevelWindowMac* win = wxFindWinFromMacWindow( oldFrontWindow ) ;
8461e4c2
VZ
1969 if ( win )
1970 win->MacActivate( ev , false ) ;
1971 }
1972 if ( newFrontWindow )
1973 {
a3722eeb 1974 wxTopLevelWindowMac* win = wxFindWinFromMacWindow( newFrontWindow ) ;
8461e4c2
VZ
1975 if ( win )
1976 win->MacActivate( ev , true ) ;
1977 }
1978 }
1979 else
1980 {
1981 MacSuspend( convertClipboard ) ;
1982
1983 // in case this suspending did close an active window, another one might
1984 // have surfaced -> lets deactivate that one
1985
72055702
SC
1986/* TODO : find out what to do on systems < 10 , perhaps FrontNonFloatingWindow
1987 WindowRef newActiveWindow = ::ActiveNonFloatingWindow() ;
8461e4c2
VZ
1988 if ( newActiveWindow )
1989 {
1990 wxWindow* win = wxFindWinFromMacWindow( newActiveWindow ) ;
1991 if ( win )
1992 win->MacActivate( ev , false ) ;
1993 }
72055702 1994*/
8461e4c2
VZ
1995 }
1996 }
1997 break ;
1998 case mouseMovedMessage :
1999 {
2000 WindowRef window;
2001
2002 wxWindow* currentMouseWindow = NULL ;
2003
2004 wxWindow::MacGetWindowFromPoint( wxPoint( ev->where.h , ev->where.v ) ,
2005 &currentMouseWindow ) ;
8461e4c2
VZ
2006 if ( currentMouseWindow != wxWindow::s_lastMouseWindow )
2007 {
2008 wxMouseEvent event ;
2009
2010 bool isDown = !(ev->modifiers & btnState) ; // 1 is for up
2011 bool controlDown = ev->modifiers & controlKey ; // for simulating right mouse
2012
2013 event.m_leftDown = isDown && !controlDown;
2014 event.m_middleDown = FALSE;
2015 event.m_rightDown = isDown && controlDown;
2016 event.m_shiftDown = ev->modifiers & shiftKey;
2017 event.m_controlDown = ev->modifiers & controlKey;
2018 event.m_altDown = ev->modifiers & optionKey;
2019 event.m_metaDown = ev->modifiers & cmdKey;
2020 event.m_x = ev->where.h;
2021 event.m_y = ev->where.v;
2022 event.m_timeStamp = ev->when;
2023 event.SetEventObject(this);
ed60b502 2024
8461e4c2
VZ
2025 if ( wxWindow::s_lastMouseWindow )
2026 {
ed60b502
RR
2027 wxMouseEvent eventleave(event);
2028 eventleave.SetEventType( wxEVT_LEAVE_WINDOW );
2029 wxWindow::s_lastMouseWindow->ScreenToClient( &eventleave.m_x, &eventleave.m_y );
d1bdc41d 2030 eventleave.SetEventObject( wxWindow::s_lastMouseWindow ) ;
ed60b502 2031
8461e4c2
VZ
2032 wxWindow::s_lastMouseWindow->GetEventHandler()->ProcessEvent(eventleave);
2033 }
2034 if ( currentMouseWindow )
2035 {
ed60b502
RR
2036 wxMouseEvent evententer(event);
2037 evententer.SetEventType( wxEVT_ENTER_WINDOW );
2038 currentMouseWindow->ScreenToClient( &evententer.m_x, &evententer.m_y );
d1bdc41d 2039 evententer.SetEventObject( currentMouseWindow ) ;
8461e4c2
VZ
2040 currentMouseWindow->GetEventHandler()->ProcessEvent(evententer);
2041 }
2042 wxWindow::s_lastMouseWindow = currentMouseWindow ;
2043 }
2044
2045 short windowPart = ::FindWindow(ev->where, &window);
2046
2047 switch (windowPart)
2048 {
2049 // fixes for setting the cursor back from dominic mazzoni
2050 case inMenuBar :
2051 UMAShowArrowCursor();
2052 break ;
2053 case inSysWindow :
2054 UMAShowArrowCursor();
2055 break ;
2056 default:
2057 {
6264b550
RR
2058 // if ( s_lastMouseDown == 0 )
2059 // ev->modifiers |= btnState ;
2060
2061 // Calling GetNextEvent with a zero event mask will always
2062 // pass back a null event. However, it fills the EventRecord
2063 // with the state of the modifier keys. This is needed since
2064 // the modifier state returned by WaitForNextEvent often is
2065 // wrong mouse move events. The attempt above to correct this
2066 // didn't always work (under OS X at least).
2067
2068 EventRecord tmp;
2069 ::GetNextEvent(0, &tmp);
2070 ev->modifiers = tmp.modifiers;
2071
a3722eeb 2072 wxTopLevelWindowMac* win = wxFindWinFromMacWindow( window ) ;
8461e4c2
VZ
2073 if ( win )
2074 win->MacMouseMoved( ev , windowPart ) ;
2075 else
2076 UMAShowArrowCursor();
2077
2078 }
2079 break;
2080 }
2081 }
2082 break ;
2083
2084 }
169935ad
SC
2085}
2086
519cb848 2087void wxApp::MacHandleMenuSelect( int macMenuId , int macMenuItemNum )
169935ad 2088{
8461e4c2
VZ
2089 if (macMenuId == 0)
2090 return; // no menu item selected
2091
2092 if (macMenuId == kwxMacAppleMenuId && macMenuItemNum > 1)
2093 {
2094 #if ! TARGET_CARBON
2095 Str255 deskAccessoryName ;
2096 GrafPtr savedPort ;
2097
2098 GetMenuItemText(GetMenuHandle(kwxMacAppleMenuId), macMenuItemNum, deskAccessoryName);
2099 GetPort(&savedPort);
2100 OpenDeskAcc(deskAccessoryName);
2101 SetPort(savedPort);
2102 #endif
2103 }
2104 else
2105 {
2106 wxWindow* frontwindow = wxFindWinFromMacWindow( ::FrontWindow() ) ;
2107 if ( frontwindow && wxMenuBar::MacGetInstalledMenuBar() )
2108 wxMenuBar::MacGetInstalledMenuBar()->MacMenuSelect( frontwindow->GetEventHandler() , 0 , macMenuId , macMenuItemNum ) ;
2109 }
2110 HiliteMenu(0);
169935ad
SC
2111}
2112
519cb848
SC
2113/*
2114long wxApp::MacTranslateKey(char key, int mods)
169935ad 2115{
169935ad
SC
2116}
2117
519cb848 2118void wxApp::MacAdjustCursor()
169935ad 2119{
169935ad
SC
2120}
2121
519cb848
SC
2122*/
2123/*
169935ad
SC
2124void
2125wxApp::macAdjustCursor()
2126{
519cb848 2127 if (ev->what != kHighLevelEvent)
169935ad 2128 {
8461e4c2
VZ
2129 wxWindow* theMacWxFrame = wxFrame::MacFindFrameOrDialog(::FrontWindow());
2130 if (theMacWxFrame)
2131 {
2132 if (!theMacWxFrame->MacAdjustCursor(ev->where))
2133 ::SetCursor(&(qd.arrow));
2134 }
169935ad
SC
2135 }
2136}
9779893b 2137*/