]> git.saurik.com Git - wxWidgets.git/blob - src/mac/app.cpp
wxMac (debug) builds and runs wxMinimal again
[wxWidgets.git] / src / mac / app.cpp
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "app.h"
14 #endif
15
16 #include "wx/frame.h"
17 #include "wx/app.h"
18 #include "wx/utils.h"
19 #include "wx/gdicmn.h"
20 #include "wx/pen.h"
21 #include "wx/brush.h"
22 #include "wx/cursor.h"
23 #include "wx/icon.h"
24 #include "wx/palette.h"
25 #include "wx/dc.h"
26 #include "wx/dialog.h"
27 #include "wx/msgdlg.h"
28 #include "wx/log.h"
29 #include "wx/module.h"
30 #include "wx/memory.h"
31
32 #if wxUSE_WX_RESOURCES
33 #include "wx/resource.h"
34 #endif
35
36 #include <string.h>
37
38 // mac
39
40 #if __option(profile)
41 #include <profiler.h>
42 #endif
43
44 #include "apprsrc.h"
45
46 #include <wx/mac/uma.h>
47
48 extern char *wxBuffer;
49 extern wxList wxPendingDelete;
50 extern wxList *wxWinMacWindowList;
51 extern wxList *wxWinMacControlList;
52
53 extern wxApp *wxTheApp ;
54
55 #if !USE_SHARED_LIBRARY
56 IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
57 BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
58 EVT_IDLE(wxApp::OnIdle)
59 END_EVENT_TABLE()
60 #endif
61
62
63 const short kMacMinHeap = (29 * 1024) ;
64 // platform specific static variables
65
66 const short kwxMacMenuBarResource = 1 ;
67 const short kwxMacAppleMenuId = 1 ;
68
69 RgnHandle wxApp::s_macCursorRgn = NULL;
70 wxWindow* wxApp::s_captureWindow = NULL ;
71 int wxApp::s_lastMouseDown = 0 ;
72 long wxApp::sm_lastMessageTime = 0;
73
74 #ifdef __WXMAC__
75
76 bool wxApp::s_macDefaultEncodingIsPC = true ;
77 bool wxApp::s_macSupportPCMenuShortcuts = true ;
78 long wxApp::s_macAboutMenuItemId = wxID_ABOUT ;
79 wxString wxApp::s_macHelpMenuTitleName = "&Help" ;
80
81 OSErr AEHandleODoc( AppleEvent *event , AppleEvent *reply , long refcon )
82 {
83 wxApp* app = (wxApp*) refcon ;
84 return wxTheApp->MacHandleAEODoc( event , reply) ;
85 }
86
87 OSErr AEHandleOApp( AppleEvent *event , AppleEvent *reply , long refcon )
88 {
89 wxApp* app = (wxApp*) refcon ;
90 return wxTheApp->MacHandleAEOApp( event , reply ) ;
91 }
92
93 OSErr AEHandlePDoc( AppleEvent *event , AppleEvent *reply , long refcon )
94 {
95 wxApp* app = (wxApp*) refcon ;
96 return wxTheApp->MacHandleAEPDoc( event , reply ) ;
97 }
98
99 OSErr AEHandleQuit( AppleEvent *event , AppleEvent *reply , long refcon )
100 {
101 wxApp* app = (wxApp*) refcon ;
102 return wxTheApp->MacHandleAEQuit( event , reply) ;
103 }
104
105 OSErr wxApp::MacHandleAEODoc(AppleEvent *event , AppleEvent *reply)
106 {
107 ProcessSerialNumber PSN ;
108 PSN.highLongOfPSN = 0 ;
109 PSN.lowLongOfPSN = kCurrentProcess ;
110 SetFrontProcess( &PSN ) ;
111 return noErr ;
112 }
113
114 OSErr wxApp::MacHandleAEPDoc(AppleEvent *event , AppleEvent *reply)
115 {
116 return noErr ;
117 }
118
119 OSErr wxApp::MacHandleAEOApp(AppleEvent *event , AppleEvent *reply)
120 {
121 return noErr ;
122 }
123
124 OSErr wxApp::MacHandleAEQuit(AppleEvent *event , AppleEvent *reply)
125 {
126 wxWindow* win = GetTopWindow() ;
127 if ( win )
128 {
129 win->Close(TRUE ) ;
130 }
131 else
132 {
133 ExitMainLoop() ;
134 }
135 return noErr ;
136 }
137
138 char StringMac[] = "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
139 "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
140 "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xae\xaf"
141 "\xb1\xb4\xb5\xb6\xbb\xbc\xbe\xbf"
142 "\xc0\xc1\xc2\xc4\xc7\xc8\xc9\xcb\xcc\xcd\xce\xcf"
143 "\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd8\xca\xdb" ;
144
145 char StringANSI[] = "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8"
146 "\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC"
147 "\x86\xBA\xA2\xA3\xA7\x95\xB6\xDF\xAE\xA9\x99\xB4\xA8\xC6\xD8"
148 "\xB1\xA5\xB5\xF0\xAA\xBA\xE6\xF8"
149 "\xBF\xA1\xAC\x83\xAB\xBB\x85\xC0\xC3\xD5\x8C\x9C"
150 "\x96\x97\x93\x94\x91\x92\xF7\xFF\xA0\x80" ;
151
152 void wxMacConvertFromPC( const char *from , char *to , int len )
153 {
154 char *c ;
155 if ( from == to )
156 {
157 for( int i = 0 ; i < len ; ++ i )
158 {
159 c = strchr( StringANSI , *from ) ;
160 if ( c != NULL )
161 {
162 *to = StringMac[ c - StringANSI] ;
163 }
164 ++to ;
165 ++from ;
166 }
167 }
168 else
169 {
170 for( int i = 0 ; i < len ; ++ i )
171 {
172 c = strchr( StringANSI , *from ) ;
173 if ( c != NULL )
174 {
175 *to = StringMac[ c - StringANSI] ;
176 }
177 else
178 {
179 *to = *from ;
180 }
181 ++to ;
182 ++from ;
183 }
184 }
185 }
186
187 void wxMacConvertToPC( const char *from , char *to , int len )
188 {
189 char *c ;
190 if ( from == to )
191 {
192 for( int i = 0 ; i < len ; ++ i )
193 {
194 c = strchr( StringMac , *from ) ;
195 if ( c != NULL )
196 {
197 *to = StringANSI[ c - StringMac] ;
198 }
199 ++to ;
200 ++from ;
201 }
202 }
203 else
204 {
205 for( int i = 0 ; i < len ; ++ i )
206 {
207 c = strchr( StringMac , *from ) ;
208 if ( c != NULL )
209 {
210 *to = StringANSI[ c - StringMac] ;
211 }
212 else
213 {
214 *to = *from ;
215 }
216 ++to ;
217 ++from ;
218 }
219 }
220 }
221
222 void wxMacConvertFromPC( char * p )
223 {
224 char *ptr = p ;
225 int len = strlen ( p ) ;
226
227 wxMacConvertFromPC( ptr , ptr , len ) ;
228 }
229
230 void wxMacConvertFromPCForControls( char * p )
231 {
232 char *ptr = p ;
233 int len = strlen ( p ) ;
234
235 wxMacConvertFromPC( ptr , ptr , len ) ;
236 for ( int i = 0 ; i < strlen ( ptr ) ; i++ )
237 {
238 if ( ptr[i] == '&' && ptr[i]+1 != ' ' )
239 {
240 memmove( &ptr[i] , &ptr[i+1] , strlen( &ptr[i+1] ) + 1) ;
241 }
242 }
243 }
244
245 void wxMacConvertFromPC( unsigned char *p )
246 {
247 char *ptr = (char*) p + 1 ;
248 int len = p[0] ;
249
250 wxMacConvertFromPC( ptr , ptr , len ) ;
251 }
252
253 extern char *wxBuffer ;
254
255 wxString wxMacMakeMacStringFromPC( const char * p )
256 {
257 const char *ptr = p ;
258 int len = strlen ( p ) ;
259 char *buf = wxBuffer ;
260
261 if ( len >= BUFSIZ + 512 )
262 {
263 buf = new char [len+1] ;
264 }
265
266 wxMacConvertFromPC( ptr , buf , len ) ;
267 buf[len] = 0 ;
268 wxString result( buf ) ;
269 if ( buf != wxBuffer )
270 delete buf ;
271 return result ;
272 }
273
274
275 void wxMacConvertToPC( char * p )
276 {
277 char *ptr = p ;
278 int len = strlen ( p ) ;
279
280 wxMacConvertToPC( ptr , ptr , len ) ;
281 }
282
283 void wxMacConvertToPC( unsigned char *p )
284 {
285 char *ptr = (char*) p + 1 ;
286 int len = p[0] ;
287
288 wxMacConvertToPC( ptr , ptr , len ) ;
289 }
290
291 wxString wxMacMakePCStringFromMac( const char * p )
292 {
293 const char *ptr = p ;
294 int len = strlen ( p ) ;
295 char *buf = wxBuffer ;
296
297 if ( len >= BUFSIZ + 512 )
298 {
299 buf = new char [len+1] ;
300 }
301
302 wxMacConvertToPC( ptr , buf , len ) ;
303 buf[len] = 0 ;
304
305 wxString result( buf ) ;
306 if ( buf != wxBuffer )
307 delete buf ;
308 return result ;
309 }
310
311 #endif
312
313 bool wxApp::Initialize()
314 {
315 int error = 0 ;
316
317 // Mac-specific
318
319 UMAInitToolbox( 4 ) ;
320 UMAShowWatchCursor() ;
321
322 AEInstallEventHandler( kCoreEventClass , kAEOpenDocuments , NewAEEventHandlerProc(AEHandleODoc) , (long) wxTheApp , FALSE ) ;
323 AEInstallEventHandler( kCoreEventClass , kAEOpenApplication , NewAEEventHandlerProc(AEHandleOApp) , (long) wxTheApp , FALSE ) ;
324 AEInstallEventHandler( kCoreEventClass , kAEPrintDocuments , NewAEEventHandlerProc(AEHandlePDoc) , (long) wxTheApp , FALSE ) ;
325 AEInstallEventHandler( kCoreEventClass , kAEQuitApplication , NewAEEventHandlerProc(AEHandleQuit) , (long) wxTheApp , FALSE ) ;
326 #if 0
327 GUSISetup(GUSIwithInternetSockets);
328 #endif
329
330
331 // test the minimal configuration necessary
332
333 long theSystem ;
334 long theMachine;
335
336 if (Gestalt(gestaltMachineType, &theMachine) != noErr)
337 {
338 error = kMacSTRWrongMachine;
339 }
340 else if (theMachine < gestaltMacPlus)
341 {
342 error = kMacSTRWrongMachine;
343 }
344 else if (Gestalt(gestaltSystemVersion, &theSystem) != noErr )
345 {
346 error = kMacSTROldSystem ;
347 }
348 else if ( theSystem < 0x0750 )
349 {
350 error = kMacSTROldSystem ;
351 }
352 #if !TARGET_CARBON
353 else if ((long)GetApplLimit() - (long)ApplicationZone() < kMacMinHeap)
354 {
355 error = kMacSTRSmallSize;
356 }
357 #endif
358 /*
359 else
360 {
361 if ( !UMAHasAppearance() )
362 {
363 error = kMacSTRNoPre8Yet ;
364 }
365 }
366 */
367
368 // if we encountered any problems so far, give the error code and exit immediately
369
370 if ( error )
371 {
372 short itemHit;
373 Str255 message;
374
375 GetIndString(message, 128, error);
376 UMAShowArrowCursor() ;
377 ParamText("\pFatal Error", message, (ConstStr255Param)"\p", (ConstStr255Param)"\p");
378 itemHit = Alert(128, nil);
379 return FALSE ;
380 }
381
382 #if __option(profile)
383 ProfilerInit( collectDetailed, bestTimeBase , 20000 , 30 ) ;
384 #endif
385
386 // now avoid exceptions thrown for new (bad_alloc)
387
388 std::__throws_bad_alloc = FALSE ;
389
390 s_macCursorRgn = ::NewRgn() ;
391
392 #ifdef __WXMSW__
393 wxBuffer = new char[1500];
394 #else
395 wxBuffer = new char[BUFSIZ + 512];
396 #endif
397
398 /* No longer used
399 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
400
401 streambuf* sBuf = new wxDebugStreamBuf;
402 ostream* oStr = new ostream(sBuf) ;
403 wxDebugContext::SetStream(oStr, sBuf);
404 #endif
405 */
406
407 wxClassInfo::InitializeClasses();
408
409 wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING);
410 wxTheColourDatabase->Initialize();
411
412 wxInitializeStockLists();
413 wxInitializeStockObjects();
414
415 #if wxUSE_WX_RESOURCES
416 wxInitializeResourceSystem();
417 #endif
418
419 wxBitmap::InitStandardHandlers();
420
421 wxModule::RegisterModules();
422 if (!wxModule::InitializeModules())
423 return FALSE;
424
425 wxWinMacWindowList = new wxList(wxKEY_INTEGER);
426 wxWinMacControlList = new wxList(wxKEY_INTEGER);
427
428 UMAShowArrowCursor() ;
429
430 return TRUE;
431 }
432
433 void wxApp::CleanUp()
434 {
435 wxModule::CleanUpModules();
436
437 #if wxUSE_WX_RESOURCES
438 wxCleanUpResourceSystem();
439 #endif
440
441 wxDeleteStockObjects() ;
442
443 // Destroy all GDI lists, etc.
444
445 delete wxTheBrushList;
446 wxTheBrushList = NULL;
447
448 delete wxThePenList;
449 wxThePenList = NULL;
450
451 delete wxTheFontList;
452 wxTheFontList = NULL;
453
454 delete wxTheBitmapList;
455 wxTheBitmapList = NULL;
456
457 delete wxTheColourDatabase;
458 wxTheColourDatabase = NULL;
459
460 wxBitmap::CleanUpHandlers();
461
462 delete[] wxBuffer;
463 wxBuffer = NULL;
464
465 if (wxWinMacWindowList)
466 delete wxWinMacWindowList ;
467
468 wxClassInfo::CleanUpClasses();
469
470 #if __option(profile)
471 ProfilerDump( "\papp.prof" ) ;
472 ProfilerTerm() ;
473 #endif
474
475 delete wxTheApp;
476 wxTheApp = NULL;
477
478 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
479 // At this point we want to check if there are any memory
480 // blocks that aren't part of the wxDebugContext itself,
481 // as a special case. Then when dumping we need to ignore
482 // wxDebugContext, too.
483 if (wxDebugContext::CountObjectsLeft() > 0)
484 {
485 wxTrace("There were memory leaks.\n");
486 wxDebugContext::Dump();
487 wxDebugContext::PrintStatistics();
488 }
489 // wxDebugContext::SetStream(NULL, NULL);
490 #endif
491
492 // do it as the very last thing because everything else can log messages
493 wxLog::DontCreateOnDemand();
494 // do it as the very last thing because everything else can log messages
495 delete wxLog::SetActiveTarget(NULL);
496
497 ::PrClose() ;
498 if (s_macCursorRgn)
499 ::DisposeRgn(s_macCursorRgn);
500 #if 0
501 TerminateAE() ;
502 #endif
503 }
504
505 int wxEntry( int argc, char *argv[] )
506 {
507 if (!wxApp::Initialize())
508 return FALSE;
509 if (!wxTheApp)
510 {
511 if (!wxApp::GetInitializerFunction())
512 {
513 printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
514 return 0;
515 };
516
517 wxTheApp = (wxApp*) (* wxApp::GetInitializerFunction()) ();
518 };
519
520 if (!wxTheApp)
521 {
522 printf( "wxWindows error: wxTheApp == NULL\n" );
523 return 0;
524 };
525
526 #ifdef __WXMAC__
527 argc = 1 ; // currently we don't support files as parameters
528 #endif
529
530 wxTheApp->argc = argc;
531 wxTheApp->argv = argv;
532
533 // GUI-specific initialization, such as creating an app context.
534 wxTheApp->OnInitGui();
535
536 // we could try to get the open apple events here to adjust argc and argv better
537
538
539 // Here frames insert themselves automatically
540 // into wxTopLevelWindows by getting created
541 // in OnInit().
542
543 if (!wxTheApp->OnInit()) return 0;
544
545 int retValue = 0;
546
547 if (wxTheApp->Initialized()) retValue = wxTheApp->OnRun();
548
549 if (wxTheApp->GetTopWindow())
550 {
551 delete wxTheApp->GetTopWindow();
552 wxTheApp->SetTopWindow(NULL);
553 }
554
555 wxTheApp->DeletePendingObjects();
556
557 wxTheApp->OnExit();
558
559 wxApp::CleanUp();
560
561 return retValue;
562 };
563
564 // Static member initialization
565 wxAppInitializerFunction wxApp::m_appInitFn = (wxAppInitializerFunction) NULL;
566
567 wxApp::wxApp()
568 {
569 m_topWindow = NULL;
570 wxTheApp = this;
571 m_className = "";
572 m_wantDebugOutput = TRUE ;
573 m_appName = "";
574 argc = 0;
575 argv = NULL;
576
577 m_printMode = wxPRINT_WINDOWS;
578
579 m_exitOnFrameDelete = TRUE;
580 m_auto3D = TRUE;
581 }
582
583 bool wxApp::Initialized()
584 {
585 if (GetTopWindow())
586 return TRUE;
587 else
588 return FALSE;
589 }
590
591 int wxApp::MainLoop()
592 {
593 m_keepGoing = TRUE;
594
595 while (m_keepGoing)
596 {
597 MacDoOneEvent() ;
598 }
599
600 return 0;
601 }
602
603 // Returns TRUE if more time is needed.
604 bool wxApp::ProcessIdle()
605 {
606 wxIdleEvent event;
607 event.SetEventObject(this);
608 ProcessEvent(event);
609
610 return event.MoreRequested();
611 }
612
613 void wxApp::ExitMainLoop()
614 {
615 m_keepGoing = FALSE;
616 }
617
618 // Is a message/event pending?
619 bool wxApp::Pending()
620 {
621 EventRecord event ;
622
623 return EventAvail( everyEvent , &event ) ;
624 }
625
626 // Dispatch a message.
627 void wxApp::Dispatch()
628 {
629 MacDoOneEvent() ;
630 }
631
632 void wxApp::OnIdle(wxIdleEvent& event)
633 {
634 static bool inOnIdle = FALSE;
635
636 // Avoid recursion (via ProcessEvent default case)
637 if (inOnIdle)
638 return;
639
640 inOnIdle = TRUE;
641
642 // 'Garbage' collection of windows deleted with Close().
643 DeletePendingObjects();
644
645 // flush the logged messages if any
646 wxLog *pLog = wxLog::GetActiveTarget();
647 if ( pLog != NULL && pLog->HasPendingMessages() )
648 pLog->Flush();
649
650 // Send OnIdle events to all windows
651 bool needMore = SendIdleEvents();
652
653 if (needMore)
654 event.RequestMore(TRUE);
655
656 inOnIdle = FALSE;
657 }
658
659 // Send idle event to all top-level windows
660 bool wxApp::SendIdleEvents()
661 {
662 bool needMore = FALSE;
663 wxNode* node = wxTopLevelWindows.First();
664 while (node)
665 {
666 wxWindow* win = (wxWindow*) node->Data();
667 if (SendIdleEvents(win))
668 needMore = TRUE;
669
670 node = node->Next();
671 }
672 return needMore;
673 }
674
675 // Send idle event to window and all subwindows
676 bool wxApp::SendIdleEvents(wxWindow* win)
677 {
678 bool needMore = FALSE;
679
680 wxIdleEvent event;
681 event.SetEventObject(win);
682 win->ProcessEvent(event);
683
684 if (event.MoreRequested())
685 needMore = TRUE;
686
687 wxNode* node = win->GetChildren().First();
688 while (node)
689 {
690 wxWindow* win = (wxWindow*) node->Data();
691 if (SendIdleEvents(win))
692 needMore = TRUE;
693
694 node = node->Next();
695 }
696 return needMore ;
697 }
698
699 void wxApp::DeletePendingObjects()
700 {
701 wxNode *node = wxPendingDelete.First();
702 while (node)
703 {
704 wxObject *obj = (wxObject *)node->Data();
705
706 delete obj;
707
708 if (wxPendingDelete.Member(obj))
709 delete node;
710
711 // Deleting one object may have deleted other pending
712 // objects, so start from beginning of list again.
713 node = wxPendingDelete.First();
714 }
715 }
716
717 wxLog* wxApp::CreateLogTarget()
718 {
719 return new wxLogGui;
720 }
721
722 wxWindow* wxApp::GetTopWindow() const
723 {
724 if (m_topWindow)
725 return m_topWindow;
726 else if (wxTopLevelWindows.Number() > 0)
727 return (wxWindow*) wxTopLevelWindows.First()->Data();
728 else
729 return NULL;
730 }
731
732 void wxExit()
733 {
734 wxApp::CleanUp();
735 ::ExitToShell() ;
736 }
737
738 // Yield to other processes
739 bool wxYield()
740 {
741 // YieldToAnyThread() ;
742 SystemTask() ;
743 return TRUE;
744 }
745
746 // platform specifics
747
748 void wxApp::MacSuspend( bool convertClipboard )
749 {
750 s_lastMouseDown = 0 ;
751 if( convertClipboard )
752 {
753 MacConvertPrivateToPublicScrap() ;
754 }
755
756 UMAHideFloatingWindows() ;
757 }
758
759 void wxApp::MacResume( bool convertClipboard )
760 {
761 s_lastMouseDown = 0 ;
762 if( convertClipboard )
763 {
764 MacConvertPublicToPrivateScrap() ;
765 }
766
767 UMAShowFloatingWindows() ;
768 }
769
770 void wxApp::MacConvertPrivateToPublicScrap()
771 {
772 ::ZeroScrap();
773 ::TEToScrap();
774 }
775
776 void wxApp::MacConvertPublicToPrivateScrap()
777 {
778 ::TEFromScrap() ;
779 }
780
781 void wxApp::MacDoOneEvent()
782 {
783 EventRecord event ;
784
785 long sleepTime = ::GetCaretTime();
786
787 if (WaitNextEvent(everyEvent, &event,sleepTime, s_macCursorRgn))
788 {
789 MacHandleOneEvent( &event );
790 }
791 else
792 {
793 // idlers
794 WindowPtr window = UMAFrontWindow() ;
795 if ( window )
796 UMAIdleControls( window ) ;
797
798 wxTheApp->ProcessIdle() ;
799 }
800 if ( event.what != kHighLevelEvent )
801 SetRectRgn( s_macCursorRgn , event.where.h - 1 , event.where.v - 1, event.where.h + 1 , event.where.v + 1 ) ;
802
803 // repeaters
804
805 #if 0
806 wxMacProcessSocketEvents() ;
807 #endif
808 }
809
810 void wxApp::MacHandleOneEvent( EventRecord *ev )
811 {
812 m_macCurrentEvent = ev ;
813
814 wxApp::sm_lastMessageTime = ev->when ;
815
816 switch (ev->what)
817 {
818 case mouseDown:
819 MacHandleMouseDownEvent( ev ) ;
820 if ( ev->modifiers & controlKey )
821 s_lastMouseDown = 2;
822 else
823 s_lastMouseDown = 1;
824 break;
825 case mouseUp:
826 if ( s_lastMouseDown == 2 )
827 {
828 ev->modifiers |= controlKey ;
829 }
830 else
831 {
832 ev->modifiers &= ~controlKey ;
833 }
834 MacHandleMouseUpEvent( ev ) ;
835 s_lastMouseDown = 0;
836 break;
837 case activateEvt:
838 MacHandleActivateEvent( ev ) ;
839 break;
840 case updateEvt:
841 MacHandleUpdateEvent( ev ) ;
842 break;
843 case keyDown:
844 case autoKey:
845 MacHandleKeyDownEvent( ev ) ;
846 break;
847 case keyUp:
848 MacHandleKeyUpEvent( ev ) ;
849 break;
850 case diskEvt:
851 MacHandleDiskEvent( ev ) ;
852 break;
853 case osEvt:
854 MacHandleOSEvent( ev ) ;
855 break;
856 case kHighLevelEvent:
857 MacHandleHighLevelEvent( ev ) ;
858 break;
859 default:
860 break;
861 }
862 }
863
864 void wxApp::MacHandleHighLevelEvent( EventRecord *ev )
865 {
866 ::AEProcessAppleEvent( ev ) ;
867 }
868
869 bool s_macIsInModalLoop = false ;
870
871 void wxApp::MacHandleMouseDownEvent( EventRecord *ev )
872 {
873 WindowRef window;
874 WindowRef frontWindow = UMAFrontNonFloatingWindow() ;
875 WindowAttributes frontWindowAttributes = NULL ;
876 if ( frontWindow )
877 UMAGetWindowAttributes( frontWindow , &frontWindowAttributes ) ;
878
879 short windowPart = ::FindWindow(ev->where, &window);
880 wxWindow* win = wxFindWinFromMacWindow( window ) ;
881
882 switch (windowPart)
883 {
884 case inMenuBar :
885 if ( s_macIsInModalLoop )
886 {
887 SysBeep ( 30 ) ;
888 }
889 else
890 {
891 UInt32 menuresult = MenuSelect(ev->where) ;
892 MacHandleMenuSelect( HiWord( menuresult ) , LoWord( menuresult ) );
893 s_lastMouseDown = 0;
894 }
895 break ;
896 case inSysWindow :
897 SystemClick( ev , window ) ;
898 s_lastMouseDown = 0;
899 break ;
900 case inDrag :
901 if ( window != frontWindow && s_macIsInModalLoop && !(ev->modifiers & cmdKey ) )
902 {
903 SysBeep ( 30 ) ;
904 }
905 else
906 {
907 DragWindow(window, ev->where, &qd.screenBits.bounds);
908 if (win)
909 {
910 GrafPtr port ;
911 GetPort( &port ) ;
912 Point pt = { 0, 0 } ;
913 SetPort( window ) ;
914 SetOrigin( 0 , 0 ) ;
915 LocalToGlobal( &pt ) ;
916 SetPort( port ) ;
917 win->SetSize( pt.h , pt.v , -1 ,
918 -1 , wxSIZE_USE_EXISTING);
919 }
920 s_lastMouseDown = 0;
921 }
922 break ;
923 case inGoAway:
924 if (TrackGoAway(window, ev->where))
925 {
926 if ( win )
927 win->Close() ;
928 }
929 s_lastMouseDown = 0;
930 break;
931 case inGrow:
932 int growResult = GrowWindow(window , ev->where, &qd.screenBits.bounds);
933 if (growResult != 0)
934 {
935 int newWidth = LoWord(growResult);
936 int newHeight = HiWord(growResult);
937 int oldWidth, oldHeight;
938
939 win->GetSize(&oldWidth, &oldHeight);
940 if (newWidth == 0)
941 newWidth = oldWidth;
942 if (newHeight == 0)
943 newHeight = oldHeight;
944
945 if (win)
946 win->SetSize( -1, -1, newWidth, newHeight, wxSIZE_USE_EXISTING);
947 }
948 s_lastMouseDown = 0;
949 break;
950 case inZoomIn:
951 case inZoomOut:
952 if (TrackBox(window, ev->where, windowPart))
953 {
954 // TODO setup size event
955 ZoomWindow( window , windowPart , false ) ;
956 if (win)
957 win->SetSize( -1, -1, window->portRect.right-window->portRect.left ,
958 window->portRect.bottom-window->portRect.top, wxSIZE_USE_EXISTING);
959 }
960 s_lastMouseDown = 0;
961 break;
962 case inCollapseBox :
963 // TODO setup size event
964 s_lastMouseDown = 0;
965 break ;
966
967 case inContent :
968 if ( window != frontWindow )
969 {
970 if ( s_macIsInModalLoop )
971 {
972 SysBeep ( 30 ) ;
973 }
974 else if ( UMAIsWindowFloating( window ) )
975 {
976 if ( win )
977 win->MacMouseDown( ev , windowPart ) ;
978 }
979 else
980 {
981 UMASelectWindow( window ) ;
982 }
983 }
984 else
985 {
986 if ( win )
987 win->MacMouseDown( ev , windowPart ) ;
988 }
989 break ;
990
991 default:
992 break;
993 }
994 }
995
996 void wxApp::MacHandleMouseUpEvent( EventRecord *ev )
997 {
998 WindowRef window;
999
1000 short windowPart = ::FindWindow(ev->where, &window);
1001
1002 switch (windowPart)
1003 {
1004 case inMenuBar :
1005 break ;
1006 case inSysWindow :
1007 break ;
1008 default:
1009 {
1010 wxWindow* win = wxFindWinFromMacWindow( window ) ;
1011 if ( win )
1012 win->MacMouseUp( ev , windowPart ) ;
1013 }
1014 break;
1015 }
1016 }
1017
1018 long wxMacTranslateKey(char key, char code)
1019 {
1020 switch (key)
1021 {
1022 case 0x01 :
1023 key = WXK_HOME;
1024 break;
1025 case 0x03 :
1026 key = WXK_RETURN;
1027 break;
1028 case 0x04 :
1029 key = WXK_END;
1030 break;
1031 case 0x05 :
1032 key = WXK_HELP;
1033 break;
1034 case 0x08 :
1035 key = WXK_BACK;
1036 break;
1037 case 0x09 :
1038 key = WXK_TAB;
1039 break;
1040 case 0x0b :
1041 key = WXK_PAGEUP;
1042 break;
1043 case 0x0c :
1044 key = WXK_PAGEDOWN;
1045 break;
1046 case 0x0d :
1047 key = WXK_RETURN;
1048 break;
1049 case 0x10 :
1050 {
1051 switch( code )
1052 {
1053 case 0x7a :
1054 key = WXK_F1 ;
1055 break;
1056 case 0x78 :
1057 key = WXK_F2 ;
1058 break;
1059 case 0x63 :
1060 key = WXK_F3 ;
1061 break;
1062 case 0x76 :
1063 key = WXK_F4 ;
1064 break;
1065 case 0x60 :
1066 key = WXK_F5 ;
1067 break;
1068 case 0x61 :
1069 key = WXK_F6 ;
1070 break;
1071 case 0x62:
1072 key = WXK_F7 ;
1073 break;
1074 case 0x64 :
1075 key = WXK_F8 ;
1076 break;
1077 case 0x65 :
1078 key = WXK_F9 ;
1079 break;
1080 case 0x6D :
1081 key = WXK_F10 ;
1082 break;
1083 case 0x67 :
1084 key = WXK_F11 ;
1085 break;
1086 case 0x6F :
1087 key = WXK_F12 ;
1088 break;
1089 case 0x69 :
1090 key = WXK_F13 ;
1091 break;
1092 case 0x6B :
1093 key = WXK_F14 ;
1094 break;
1095 case 0x71 :
1096 key = WXK_F15 ;
1097 break;
1098 }
1099 }
1100 break ;
1101 case 0x1b :
1102 key = WXK_DELETE ;
1103 break ;
1104 case 0x1c :
1105 key = WXK_LEFT ;
1106 break ;
1107 case 0x1d :
1108 key = WXK_RIGHT ;
1109 break ;
1110 case 0x1e :
1111 key = WXK_UP ;
1112 break ;
1113 case 0x1f :
1114 key = WXK_DOWN ;
1115 break ;
1116 default:
1117 break ;
1118 } // end switch
1119
1120 return key;
1121 }
1122
1123 void wxApp::MacHandleKeyDownEvent( EventRecord *ev )
1124 {
1125 UInt32 menuresult = UMAMenuEvent(ev) ;
1126 if ( HiWord( menuresult ) )
1127 MacHandleMenuSelect( HiWord( menuresult ) , LoWord( menuresult ) ) ;
1128 else
1129 {
1130 short keycode ;
1131 short keychar ;
1132 keychar = short(ev->message & charCodeMask);
1133 keycode = short(ev->message & keyCodeMask) >> 8 ;
1134
1135 wxWindow* focus = wxWindow::FindFocus() ;
1136 if ( focus )
1137 {
1138 wxKeyEvent event(wxEVT_CHAR);
1139 event.m_shiftDown = ev->modifiers & shiftKey;
1140 event.m_controlDown = ev->modifiers & controlKey;
1141 event.m_altDown = ev->modifiers & optionKey;
1142 event.m_metaDown = ev->modifiers & cmdKey;
1143 event.m_keyCode = wxMacTranslateKey(keychar, keycode);
1144 event.m_x = ev->where.h;
1145 event.m_y = ev->where.v;
1146 event.m_timeStamp = ev->when;
1147 event.SetEventObject(focus);
1148 focus->GetEventHandler()->ProcessEvent( event ) ;
1149 }
1150 }
1151 }
1152
1153 void wxApp::MacHandleKeyUpEvent( EventRecord *ev )
1154 {
1155 // nothing to do
1156 }
1157
1158 void wxApp::MacHandleActivateEvent( EventRecord *ev )
1159 {
1160 WindowRef window = (WindowRef) ev->message ;
1161 if ( window )
1162 {
1163 bool activate = (ev->modifiers & activeFlag ) ;
1164 WindowClass wclass ;
1165 UMAGetWindowClass ( window , &wclass ) ;
1166 if ( wclass == kFloatingWindowClass )
1167 {
1168 // if it is a floater we activate/deactivate the front non-floating window instead
1169 window = UMAFrontNonFloatingWindow() ;
1170 }
1171 wxWindow* win = wxFindWinFromMacWindow( window ) ;
1172 if ( win )
1173 win->MacActivate( ev , activate ) ;
1174 }
1175 }
1176
1177 void wxApp::MacHandleUpdateEvent( EventRecord *ev )
1178 {
1179 WindowRef window = (WindowRef) ev->message ;
1180 wxWindow * win = wxFindWinFromMacWindow( window ) ;
1181 if ( win )
1182 {
1183 win->MacUpdate( ev ) ;
1184 }
1185 }
1186
1187 void wxApp::MacHandleDiskEvent( EventRecord *ev )
1188 {
1189 if ( HiWord( ev->message ) != noErr )
1190 {
1191 OSErr err ;
1192 Point point ;
1193 SetPt( &point , 100 , 100 ) ;
1194
1195 err = DIBadMount( point , ev->message ) ;
1196 wxASSERT( err == noErr ) ;
1197 }
1198 }
1199
1200 void wxApp::MacHandleOSEvent( EventRecord *ev )
1201 {
1202 switch( ( ev->message & osEvtMessageMask ) >> 24 )
1203 {
1204 case suspendResumeMessage :
1205 {
1206 bool isResuming = ev->message & resumeFlag ;
1207 bool convertClipboard = ev->message & convertClipboardFlag ;
1208 bool doesActivate = UMAGetProcessModeDoesActivateOnFGSwitch() ;
1209 if ( isResuming )
1210 {
1211 WindowRef oldFrontWindow = NULL ;
1212 WindowRef newFrontWindow = NULL ;
1213
1214 // in case we don't take care of activating ourselves, we have to synchronize
1215 // our idea of the active window with the process manager's - which it already activated
1216
1217 if ( !doesActivate )
1218 oldFrontWindow = UMAFrontNonFloatingWindow() ;
1219
1220 MacResume( convertClipboard ) ;
1221
1222 newFrontWindow = UMAFrontNonFloatingWindow() ;
1223
1224 if ( oldFrontWindow )
1225 {
1226 wxWindow* win = wxFindWinFromMacWindow( oldFrontWindow ) ;
1227 if ( win )
1228 win->MacActivate( ev , false ) ;
1229 }
1230 if ( newFrontWindow )
1231 {
1232 wxWindow* win = wxFindWinFromMacWindow( newFrontWindow ) ;
1233 if ( win )
1234 win->MacActivate( ev , true ) ;
1235 }
1236 }
1237 else
1238 {
1239 MacSuspend( convertClipboard ) ;
1240
1241 // in case this suspending did close an active window, another one might
1242 // have surfaced -> lets deactivate that one
1243
1244 WindowRef newActiveWindow = UMAGetActiveNonFloatingWindow() ;
1245 if ( newActiveWindow )
1246 {
1247 wxWindow* win = wxFindWinFromMacWindow( newActiveWindow ) ;
1248 if ( win )
1249 win->MacActivate( ev , false ) ;
1250 }
1251 }
1252 }
1253 break ;
1254 case mouseMovedMessage :
1255 {
1256 WindowRef window;
1257
1258 wxWindow* currentMouseWindow = NULL ;
1259
1260 MacGetWindowFromPoint( wxPoint( ev->where.h , ev->where.v ) , &currentMouseWindow ) ;
1261
1262 if ( currentMouseWindow != wxWindow::s_lastMouseWindow )
1263 {
1264 wxMouseEvent event ;
1265
1266 bool isDown = !(ev->modifiers & btnState) ; // 1 is for up
1267 bool controlDown = ev->modifiers & controlKey ; // for simulating right mouse
1268
1269 event.m_leftDown = isDown && !controlDown;
1270 event.m_middleDown = FALSE;
1271 event.m_rightDown = isDown && controlDown;
1272 event.m_shiftDown = ev->modifiers & shiftKey;
1273 event.m_controlDown = ev->modifiers & controlKey;
1274 event.m_altDown = ev->modifiers & optionKey;
1275 event.m_metaDown = ev->modifiers & cmdKey;
1276 event.m_x = ev->where.h;
1277 event.m_y = ev->where.v;
1278 event.m_timeStamp = ev->when;
1279 event.SetEventObject(this);
1280
1281 if ( wxWindow::s_lastMouseWindow )
1282 {
1283 wxMouseEvent eventleave(event ) ;
1284 eventleave.SetEventType( wxEVT_LEAVE_WINDOW ) ;
1285 wxWindow::s_lastMouseWindow->GetEventHandler()->ProcessEvent(eventleave);
1286 }
1287 if ( currentMouseWindow )
1288 {
1289 wxMouseEvent evententer(event ) ;
1290 evententer.SetEventType( wxEVT_ENTER_WINDOW ) ;
1291 currentMouseWindow->GetEventHandler()->ProcessEvent(evententer);
1292 }
1293 wxWindow::s_lastMouseWindow = currentMouseWindow ;
1294 }
1295
1296 short windowPart = ::FindWindow(ev->where, &window);
1297
1298 switch (windowPart)
1299 {
1300 case inMenuBar :
1301 break ;
1302 case inSysWindow :
1303 break ;
1304 default:
1305 {
1306 if ( s_lastMouseDown == 0 )
1307 ev->modifiers |= btnState ;
1308
1309 wxWindow* win = wxFindWinFromMacWindow( window ) ;
1310 if ( win )
1311 win->MacMouseMoved( ev , windowPart ) ;
1312 }
1313 break;
1314 }
1315 }
1316 break ;
1317
1318 }
1319 }
1320
1321 void wxApp::MacHandleMenuSelect( int macMenuId , int macMenuItemNum )
1322 {
1323 if (macMenuId == 0)
1324 return; // no menu item selected
1325
1326 if (macMenuId == kwxMacAppleMenuId && macMenuItemNum > 1)
1327 {
1328 #if ! TARGET_CARBON
1329 Str255 deskAccessoryName ;
1330 GrafPtr savedPort ;
1331
1332 GetMenuItemText(GetMenuHandle(kwxMacAppleMenuId), macMenuItemNum, deskAccessoryName);
1333 GetPort(&savedPort);
1334 OpenDeskAcc(deskAccessoryName);
1335 SetPort(savedPort);
1336 #endif
1337 }
1338 else
1339 {
1340 wxWindow* frontwindow = wxFindWinFromMacWindow( ::FrontWindow() ) ;
1341 if ( frontwindow && wxMenuBar::MacGetInstalledMenuBar() )
1342 wxMenuBar::MacGetInstalledMenuBar()->MacMenuSelect( frontwindow->GetEventHandler() , 0 , macMenuId , macMenuItemNum ) ;
1343 }
1344 HiliteMenu(0);
1345 }
1346
1347 /*
1348 long wxApp::MacTranslateKey(char key, int mods)
1349 {
1350 }
1351
1352 void wxApp::MacAdjustCursor()
1353 {
1354 }
1355
1356 */
1357 /*
1358 void
1359 wxApp::macAdjustCursor()
1360 {
1361 if (ev->what != kHighLevelEvent)
1362 {
1363 wxWindow* theMacWxFrame = wxFrame::MacFindFrameOrDialog(::FrontWindow());
1364 if (theMacWxFrame)
1365 {
1366 if (!theMacWxFrame->MacAdjustCursor(ev->where))
1367 ::SetCursor(&(qd.arrow));
1368 }
1369 }
1370 }
1371 */