]> git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/toplevel.cpp
Enable stl compilation with wxMac - unicode no work on 10.2 though. Modded patch...
[wxWidgets.git] / src / mac / carbon / toplevel.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: mac/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for Mac
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 24.09.01
7 // RCS-ID: $Id$
8 // Copyright: (c) 2001-2004 Stefan Csomor
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "toplevel.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include "wx/app.h"
33 #include "wx/toplevel.h"
34 #include "wx/frame.h"
35 #include "wx/string.h"
36 #include "wx/log.h"
37 #include "wx/intl.h"
38 #include "wx/settings.h"
39 #endif //WX_PRECOMP
40
41 #include "wx/mac/uma.h"
42 #include "wx/mac/aga.h"
43 #include "wx/app.h"
44 #include "wx/tooltip.h"
45 #include "wx/dnd.h"
46 #if wxUSE_SYSTEM_OPTIONS
47 #include "wx/sysopt.h"
48 #endif
49
50 #include <ToolUtils.h>
51
52 //For targeting OSX
53 #include "wx/mac/private.h"
54
55 // ----------------------------------------------------------------------------
56 // globals
57 // ----------------------------------------------------------------------------
58
59 // list of all frames and modeless dialogs
60 wxWindowList wxModelessWindows;
61
62 static pascal long wxShapedMacWindowDef(short varCode, WindowRef window, SInt16 message, SInt32 param);
63
64 // ============================================================================
65 // wxTopLevelWindowMac implementation
66 // ============================================================================
67
68 BEGIN_EVENT_TABLE(wxTopLevelWindowMac, wxTopLevelWindowBase)
69 END_EVENT_TABLE()
70
71
72 // ---------------------------------------------------------------------------
73 // Carbon Events
74 // ---------------------------------------------------------------------------
75
76 extern long wxMacTranslateKey(unsigned char key, unsigned char code) ;
77
78 static const EventTypeSpec eventList[] =
79 {
80 // TODO remove control related event like key and mouse (except for WindowLeave events)
81 #if 1
82 { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent } ,
83
84 { kEventClassKeyboard, kEventRawKeyDown } ,
85 { kEventClassKeyboard, kEventRawKeyRepeat } ,
86 { kEventClassKeyboard, kEventRawKeyUp } ,
87 { kEventClassKeyboard, kEventRawKeyModifiersChanged } ,
88 #endif
89
90 { kEventClassWindow , kEventWindowShown } ,
91 { kEventClassWindow , kEventWindowActivated } ,
92 { kEventClassWindow , kEventWindowDeactivated } ,
93 { kEventClassWindow , kEventWindowBoundsChanging } ,
94 { kEventClassWindow , kEventWindowBoundsChanged } ,
95 { kEventClassWindow , kEventWindowClose } ,
96
97 // we have to catch these events on the toplevel window level, as controls don't get the
98 // raw mouse events anymore
99
100 { kEventClassMouse , kEventMouseDown } ,
101 { kEventClassMouse , kEventMouseUp } ,
102 { kEventClassMouse , kEventMouseWheelMoved } ,
103 { kEventClassMouse , kEventMouseMoved } ,
104 { kEventClassMouse , kEventMouseDragged } ,
105 } ;
106
107 static pascal OSStatus TextInputEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
108 {
109 OSStatus result = eventNotHandledErr ;
110
111 wxWindow* focus = wxWindow::FindFocus() ;
112 char charCode ;
113 UInt32 keyCode ;
114 UInt32 modifiers ;
115 Point point ;
116
117 EventRef rawEvent ;
118
119 GetEventParameter( event , kEventParamTextInputSendKeyboardEvent ,typeEventRef,NULL,sizeof(rawEvent),NULL,&rawEvent ) ;
120
121 GetEventParameter( rawEvent, kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
122 GetEventParameter( rawEvent, kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
123 GetEventParameter( rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
124 GetEventParameter( rawEvent, kEventParamMouseLocation, typeQDPoint, NULL,
125 sizeof( Point ), NULL, &point );
126
127 switch ( GetEventKind( event ) )
128 {
129 case kEventTextInputUnicodeForKeyEvent :
130 // this is only called when no default handler has jumped in, eg a wxControl on a floater window does not
131 // get its own kEventTextInputUnicodeForKeyEvent, so we route back the
132 wxControl* control = wxDynamicCast( focus , wxControl ) ;
133 if ( control )
134 {
135 ControlRef macControl = (ControlRef) control->GetHandle() ;
136 if ( macControl )
137 {
138 ::HandleControlKey( macControl , keyCode , charCode , modifiers ) ;
139 result = noErr ;
140 }
141 }
142 /*
143 // this may lead to double events sent to a window in case all handlers have skipped the key down event
144 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
145 UInt32 message = (keyCode << 8) + charCode;
146
147 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
148 focus , message , modifiers , when , point.h , point.v ) )
149 {
150 result = noErr ;
151 }
152 */
153 break ;
154 }
155
156 return result ;
157 }
158
159 static pascal OSStatus KeyboardEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
160 {
161 OSStatus result = eventNotHandledErr ;
162
163 wxWindow* focus = wxWindow::FindFocus() ;
164 if ( focus == NULL )
165 return result ;
166
167 char charCode ;
168 UInt32 keyCode ;
169 UInt32 modifiers ;
170 Point point ;
171 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
172
173 GetEventParameter( event, kEventParamKeyMacCharCodes, typeChar, NULL,sizeof(char), NULL,&charCode );
174 GetEventParameter( event, kEventParamKeyCode, typeUInt32, NULL, sizeof(UInt32), NULL, &keyCode );
175 GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
176 GetEventParameter( event, kEventParamMouseLocation, typeQDPoint, NULL,
177 sizeof( Point ), NULL, &point );
178
179 UInt32 message = (keyCode << 8) + charCode;
180 switch( GetEventKind( event ) )
181 {
182 case kEventRawKeyRepeat :
183 case kEventRawKeyDown :
184 {
185 WXEVENTREF formerEvent = wxTheApp->MacGetCurrentEvent() ;
186 WXEVENTHANDLERCALLREF formerHandler = wxTheApp->MacGetCurrentEventHandlerCallRef() ;
187 wxTheApp->MacSetCurrentEvent( event , handler ) ;
188 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
189 focus , message , modifiers , when , point.h , point.v ) )
190 {
191 result = noErr ;
192 }
193 wxTheApp->MacSetCurrentEvent( formerEvent , formerHandler ) ;
194 }
195 break ;
196 case kEventRawKeyUp :
197 if ( (focus != NULL) && wxTheApp->MacSendKeyUpEvent(
198 focus , message , modifiers , when , point.h , point.v ) )
199 {
200 result = noErr ;
201 }
202 break ;
203 case kEventRawKeyModifiersChanged :
204 {
205 wxKeyEvent event(wxEVT_KEY_DOWN);
206
207 event.m_shiftDown = modifiers & shiftKey;
208 event.m_controlDown = modifiers & controlKey;
209 event.m_altDown = modifiers & optionKey;
210 event.m_metaDown = modifiers & cmdKey;
211
212 event.m_x = point.h;
213 event.m_y = point.v;
214 event.m_timeStamp = when;
215 wxWindow* focus = wxWindow::FindFocus() ;
216 event.SetEventObject(focus);
217
218 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & controlKey )
219 {
220 event.m_keyCode = WXK_CONTROL ;
221 event.SetEventType( ( modifiers & controlKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
222 focus->GetEventHandler()->ProcessEvent( event ) ;
223 }
224 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & shiftKey )
225 {
226 event.m_keyCode = WXK_SHIFT ;
227 event.SetEventType( ( modifiers & shiftKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
228 focus->GetEventHandler()->ProcessEvent( event ) ;
229 }
230 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & optionKey )
231 {
232 event.m_keyCode = WXK_ALT ;
233 event.SetEventType( ( modifiers & optionKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
234 focus->GetEventHandler()->ProcessEvent( event ) ;
235 }
236 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & cmdKey )
237 {
238 event.m_keyCode = WXK_COMMAND ;
239 event.SetEventType( ( modifiers & cmdKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
240 focus->GetEventHandler()->ProcessEvent( event ) ;
241 }
242 wxTheApp->s_lastModifiers = modifiers ;
243 }
244 break ;
245 }
246
247 return result ;
248 }
249
250 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
251 // for windows that we didn't create (like eg Scrollbars in a databrowser) , or for controls where we did not handle the
252 // mouse down at all
253
254 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
255
256 wxWindow* g_MacLastWindow = NULL ;
257
258 static EventMouseButton lastButton = 0 ;
259
260 static void SetupMouseEvent( wxMouseEvent &wxevent , wxMacCarbonEvent &cEvent )
261 {
262 UInt32 modifiers = cEvent.GetParameter<UInt32>(kEventParamKeyModifiers, typeUInt32) ;
263 Point screenMouseLocation = cEvent.GetParameter<Point>(kEventParamMouseLocation) ;
264
265 // this parameter are not given for all events
266 EventMouseButton button = 0 ;
267 UInt32 clickCount = 0 ;
268 cEvent.GetParameter<EventMouseButton>(kEventParamMouseButton, typeMouseButton , &button) ;
269 cEvent.GetParameter<UInt32>(kEventParamClickCount, typeUInt32 , &clickCount ) ;
270
271 wxevent.m_x = screenMouseLocation.h;
272 wxevent.m_y = screenMouseLocation.v;
273 wxevent.m_shiftDown = modifiers & shiftKey;
274 wxevent.m_controlDown = modifiers & controlKey;
275 wxevent.m_altDown = modifiers & optionKey;
276 wxevent.m_metaDown = modifiers & cmdKey;
277 wxevent.SetTimestamp( cEvent.GetTicks() ) ;
278 // a control click is interpreted as a right click
279 if ( button == kEventMouseButtonPrimary && (modifiers & controlKey) )
280 {
281 button = kEventMouseButtonSecondary ;
282 }
283
284 // we must make sure that our synthetic 'right' button corresponds in
285 // mouse down, moved and mouse up, and does not deliver a right down and left up
286
287 if ( cEvent.GetKind() == kEventMouseDown )
288 lastButton = button ;
289
290 if ( button == 0 )
291 lastButton = 0 ;
292 else if ( lastButton )
293 button = lastButton ;
294
295 // determinate the correct down state, wx does not want a 'down' for a mouseUp event, while mac delivers
296 // this button
297 if ( button != 0 && cEvent.GetKind() != kEventMouseUp )
298 {
299 switch( button )
300 {
301 case kEventMouseButtonPrimary :
302 wxevent.m_leftDown = true ;
303 break ;
304 case kEventMouseButtonSecondary :
305 wxevent.m_rightDown = true ;
306 break ;
307 case kEventMouseButtonTertiary :
308 wxevent.m_middleDown = true ;
309 break ;
310 }
311 }
312 // translate into wx types
313 switch ( cEvent.GetKind() )
314 {
315 case kEventMouseDown :
316 switch( button )
317 {
318 case kEventMouseButtonPrimary :
319 wxevent.SetEventType(clickCount > 1 ? wxEVT_LEFT_DCLICK : wxEVT_LEFT_DOWN ) ;
320 break ;
321 case kEventMouseButtonSecondary :
322 wxevent.SetEventType( clickCount > 1 ? wxEVT_RIGHT_DCLICK : wxEVT_RIGHT_DOWN ) ;
323 break ;
324 case kEventMouseButtonTertiary :
325 wxevent.SetEventType(clickCount > 1 ? wxEVT_MIDDLE_DCLICK : wxEVT_MIDDLE_DOWN ) ;
326 break ;
327 }
328 break ;
329 case kEventMouseUp :
330 switch( button )
331 {
332 case kEventMouseButtonPrimary :
333 wxevent.SetEventType( wxEVT_LEFT_UP ) ;
334 break ;
335 case kEventMouseButtonSecondary :
336 wxevent.SetEventType( wxEVT_RIGHT_UP ) ;
337 break ;
338 case kEventMouseButtonTertiary :
339 wxevent.SetEventType( wxEVT_MIDDLE_UP ) ;
340 break ;
341 }
342 break ;
343 case kEventMouseWheelMoved :
344 {
345 wxevent.SetEventType(wxEVT_MOUSEWHEEL ) ;
346
347 // EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
348 SInt32 delta = cEvent.GetParameter<SInt32>(kEventParamMouseWheelDelta, typeLongInteger) ;
349
350 wxevent.m_wheelRotation = delta;
351 wxevent.m_wheelDelta = 1;
352 wxevent.m_linesPerAction = 1;
353 break ;
354 }
355 default :
356 wxevent.SetEventType(wxEVT_MOTION ) ;
357 break ;
358 }
359 }
360
361 ControlRef wxMacFindSubControl( Point location , ControlRef superControl , ControlPartCode *outPart )
362 {
363 if ( superControl )
364 {
365 UInt16 childrenCount = 0 ;
366 OSStatus err = CountSubControls( superControl , &childrenCount ) ;
367 if ( err == errControlIsNotEmbedder )
368 return NULL ;
369 wxASSERT_MSG( err == noErr , wxT("Unexpected error when accessing subcontrols") ) ;
370
371 for ( UInt16 i = childrenCount ; i >=1 ; --i )
372 {
373 ControlHandle sibling ;
374 err = GetIndexedSubControl( superControl , i , & sibling ) ;
375 if ( err == errControlIsNotEmbedder )
376 return NULL ;
377
378 wxASSERT_MSG( err == noErr , wxT("Unexpected error when accessing subcontrols") ) ;
379 if ( IsControlVisible( sibling ) )
380 {
381 Rect r ;
382 UMAGetControlBoundsInWindowCoords( sibling , &r ) ;
383 if ( MacPtInRect( location , &r ) )
384 {
385 ControlHandle child = wxMacFindSubControl( location , sibling , outPart ) ;
386 if ( child )
387 return child ;
388 else
389 {
390 Point testLocation = location ;
391 #if TARGET_API_MAC_OSX
392 testLocation.h -= r.left ;
393 testLocation.v -= r.top ;
394 #endif
395 *outPart = TestControl( sibling , testLocation ) ;
396 return sibling ;
397 }
398 }
399 }
400 }
401 }
402 return NULL ;
403 }
404
405 ControlRef wxMacFindControlUnderMouse( Point location , WindowRef window , ControlPartCode *outPart )
406 {
407 #if TARGET_API_MAC_OSX
408 if ( UMAGetSystemVersion() >= 0x1030 )
409 return FindControlUnderMouse( location , window , outPart ) ;
410 #endif
411 ControlRef rootControl = NULL ;
412 verify_noerr( GetRootControl( window , &rootControl ) ) ;
413 return wxMacFindSubControl( location , rootControl , outPart ) ;
414
415 }
416 pascal OSStatus wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
417 {
418
419 OSStatus result = eventNotHandledErr ;
420
421 wxMacCarbonEvent cEvent( event ) ;
422
423 Point screenMouseLocation = cEvent.GetParameter<Point>(kEventParamMouseLocation) ;
424 Point windowMouseLocation = screenMouseLocation ;
425
426 WindowRef window ;
427 short windowPart = ::FindWindow(screenMouseLocation, &window);
428
429 wxWindow* currentMouseWindow = NULL ;
430 ControlRef control = NULL ;
431
432 if ( window )
433 {
434 QDGlobalToLocalPoint( UMAGetWindowPort(window ) , &windowMouseLocation ) ;
435
436 if ( wxTheApp->s_captureWindow && wxTheApp->s_captureWindow->MacGetTopLevelWindowRef() == (WXWindow) window && windowPart == inContent )
437 {
438 currentMouseWindow = wxTheApp->s_captureWindow ;
439 }
440 else if ( (IsWindowActive(window) && windowPart == inContent) )
441 {
442 ControlPartCode part ;
443 control = wxMacFindControlUnderMouse( windowMouseLocation , window , &part ) ;
444 // if there is no control below the mouse position, send the event to the toplevel window itself
445 if ( control == 0 )
446 currentMouseWindow = (wxWindow*) data ;
447 else
448 {
449 currentMouseWindow = wxFindControlFromMacControl( control ) ;
450 if ( currentMouseWindow == NULL && cEvent.GetKind() == kEventMouseMoved )
451 {
452 // for wxToolBar to function we have to send certaint events to it
453 // instead of its children (wxToolBarTools)
454 ControlRef parent ;
455 GetSuperControl(control, &parent );
456 wxWindow *wxParent = wxFindControlFromMacControl( parent ) ;
457 if ( wxParent && wxParent->IsKindOf( CLASSINFO( wxToolBar ) ) )
458 currentMouseWindow = wxParent ;
459 }
460 }
461 }
462 }
463
464 wxMouseEvent wxevent(wxEVT_LEFT_DOWN);
465 SetupMouseEvent( wxevent , cEvent ) ;
466
467 // handle all enter / leave events
468
469 if ( currentMouseWindow != g_MacLastWindow )
470 {
471 if ( g_MacLastWindow )
472 {
473 wxMouseEvent eventleave(wxevent);
474 eventleave.SetEventType( wxEVT_LEAVE_WINDOW );
475 g_MacLastWindow->ScreenToClient( &eventleave.m_x, &eventleave.m_y );
476 eventleave.SetEventObject( g_MacLastWindow ) ;
477
478 #if wxUSE_TOOLTIPS
479 wxToolTip::RelayEvent( g_MacLastWindow , eventleave);
480 #endif // wxUSE_TOOLTIPS
481 g_MacLastWindow->GetEventHandler()->ProcessEvent(eventleave);
482 }
483 if ( currentMouseWindow )
484 {
485 wxMouseEvent evententer(wxevent);
486 evententer.SetEventType( wxEVT_ENTER_WINDOW );
487 currentMouseWindow->ScreenToClient( &evententer.m_x, &evententer.m_y );
488 evententer.SetEventObject( currentMouseWindow ) ;
489 #if wxUSE_TOOLTIPS
490 wxToolTip::RelayEvent( currentMouseWindow , evententer);
491 #endif // wxUSE_TOOLTIPS
492 currentMouseWindow->GetEventHandler()->ProcessEvent(evententer);
493 }
494 g_MacLastWindow = currentMouseWindow ;
495 }
496
497 if ( windowPart == inMenuBar )
498 {
499 // special case menu bar, as we are having a low-level runloop we must do it ourselves
500 if ( cEvent.GetKind() == kEventMouseDown )
501 {
502 ::MenuSelect( screenMouseLocation ) ;
503 result = noErr ;
504 }
505 } // if ( windowPart == inMenuBar )
506 else if ( currentMouseWindow )
507 {
508 currentMouseWindow->ScreenToClient( &wxevent.m_x , &wxevent.m_y ) ;
509
510 wxevent.SetEventObject( currentMouseWindow ) ;
511
512 // update cursor
513
514 wxWindow* cursorTarget = currentMouseWindow ;
515 wxPoint cursorPoint( wxevent.m_x , wxevent.m_y ) ;
516
517 while( cursorTarget && !cursorTarget->MacSetupCursor( cursorPoint ) )
518 {
519 cursorTarget = cursorTarget->GetParent() ;
520 if ( cursorTarget )
521 cursorPoint += cursorTarget->GetPosition() ;
522 }
523
524 // make tooltips current
525
526 #if wxUSE_TOOLTIPS
527 if ( wxevent.GetEventType() == wxEVT_MOTION
528 || wxevent.GetEventType() == wxEVT_ENTER_WINDOW
529 || wxevent.GetEventType() == wxEVT_LEAVE_WINDOW )
530 wxToolTip::RelayEvent( currentMouseWindow , wxevent);
531 #endif // wxUSE_TOOLTIPS
532 if ( currentMouseWindow->GetEventHandler()->ProcessEvent(wxevent) )
533 result = noErr;
534 else
535 {
536 // if the user code did _not_ handle the event, then perform the
537 // default processing
538 if ( wxevent.GetEventType() == wxEVT_LEFT_DOWN )
539 {
540 // ... that is set focus to this window
541 if (currentMouseWindow->AcceptsFocus() && wxWindow::FindFocus()!=currentMouseWindow)
542 currentMouseWindow->SetFocus();
543 }
544
545 ControlPartCode dummyPart ;
546 // if built-in find control is finding the wrong control (ie static box instead of overlaid
547 // button, we cannot let the standard handler do its job, but must handle manually
548
549 if ( ( cEvent.GetKind() == kEventMouseDown ) &&
550 (FindControlUnderMouse(windowMouseLocation , window , &dummyPart) !=
551 wxMacFindControlUnderMouse( windowMouseLocation , window , &dummyPart ) ) )
552 {
553 if ( currentMouseWindow->MacIsReallyEnabled() )
554 {
555 EventModifiers modifiers = cEvent.GetParameter<EventModifiers>(kEventParamKeyModifiers, typeUInt32) ;
556 Point clickLocation = windowMouseLocation ;
557 #if TARGET_API_MAC_OSX
558 currentMouseWindow->MacRootWindowToWindow( &clickLocation.h , &clickLocation.v ) ;
559 #endif
560 HandleControlClick( (ControlRef) currentMouseWindow->GetHandle() , clickLocation ,
561 modifiers , (ControlActionUPP ) -1 ) ;
562 }
563 result = noErr ;
564 }
565 }
566 if ( cEvent.GetKind() == kEventMouseUp && wxTheApp->s_captureWindow )
567 {
568 wxTheApp->s_captureWindow = NULL ;
569 // update cursor ?
570 }
571 } // else if ( currentMouseWindow )
572 else
573 {
574 // don't mess with controls we don't know about
575 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
576 // so we try sending them the correct control directly
577 wxTopLevelWindowMac* toplevelWindow = (wxTopLevelWindowMac*) data ;
578 if ( cEvent.GetKind() == kEventMouseDown && toplevelWindow && control )
579 {
580 EventModifiers modifiers = cEvent.GetParameter<EventModifiers>(kEventParamKeyModifiers, typeUInt32) ;
581 Point clickLocation = windowMouseLocation ;
582 #if TARGET_API_MAC_OSX
583 HIPoint hiPoint ;
584 hiPoint.x = clickLocation.h ;
585 hiPoint.y = clickLocation.v ;
586 HIViewConvertPoint( &hiPoint , (ControlRef) toplevelWindow->GetHandle() , control ) ;
587 clickLocation.h = (int)hiPoint.x ;
588 clickLocation.v = (int)hiPoint.y ;
589 #endif
590 HandleControlClick( control , clickLocation ,
591 modifiers , (ControlActionUPP ) -1 ) ;
592 result = noErr ;
593 }
594 }
595 return result ;
596 }
597
598 static pascal OSStatus wxMacTopLevelWindowEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
599 {
600 OSStatus result = eventNotHandledErr ;
601
602 wxMacCarbonEvent cEvent( event ) ;
603
604 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
605 wxTopLevelWindowMac* toplevelWindow = (wxTopLevelWindowMac*) data ;
606
607 switch( GetEventKind( event ) )
608 {
609 case kEventWindowActivated :
610 {
611 toplevelWindow->MacActivate( cEvent.GetTicks() , true) ;
612 wxActivateEvent wxevent(wxEVT_ACTIVATE, true , toplevelWindow->GetId());
613 wxevent.SetTimestamp( cEvent.GetTicks() ) ;
614 wxevent.SetEventObject(toplevelWindow);
615 toplevelWindow->GetEventHandler()->ProcessEvent(wxevent);
616 // we still sending an eventNotHandledErr in order to allow for default processing
617 break ;
618 }
619 case kEventWindowDeactivated :
620 {
621 toplevelWindow->MacActivate(cEvent.GetTicks() , false) ;
622 wxActivateEvent wxevent(wxEVT_ACTIVATE, false , toplevelWindow->GetId());
623 wxevent.SetTimestamp( cEvent.GetTicks() ) ;
624 wxevent.SetEventObject(toplevelWindow);
625 toplevelWindow->GetEventHandler()->ProcessEvent(wxevent);
626 // we still sending an eventNotHandledErr in order to allow for default processing
627 break ;
628 }
629 case kEventWindowShown :
630 toplevelWindow->Refresh() ;
631 result = noErr ;
632 break ;
633 case kEventWindowClose :
634 toplevelWindow->Close() ;
635 result = noErr ;
636 break ;
637 case kEventWindowBoundsChanged :
638 {
639 UInt32 attributes = cEvent.GetParameter<UInt32>(kEventParamAttributes,typeUInt32) ;
640 Rect newRect = cEvent.GetParameter<Rect>(kEventParamCurrentBounds) ;
641 wxRect r( newRect.left , newRect.top , newRect.right - newRect.left , newRect.bottom - newRect.top ) ;
642 if ( attributes & kWindowBoundsChangeSizeChanged )
643 {
644 // according to the other ports we handle this within the OS level
645 // resize event, not within a wxSizeEvent
646 wxFrame *frame = wxDynamicCast( toplevelWindow , wxFrame ) ;
647 if ( frame )
648 {
649 #if wxUSE_STATUSBAR
650 frame->PositionStatusBar();
651 #endif
652 #if wxUSE_TOOLBAR
653 frame->PositionToolBar();
654 #endif
655 }
656
657 wxSizeEvent event( r.GetSize() , toplevelWindow->GetId() ) ;
658 event.SetEventObject( toplevelWindow ) ;
659
660 toplevelWindow->GetEventHandler()->ProcessEvent(event) ;
661 }
662 if ( attributes & kWindowBoundsChangeOriginChanged )
663 {
664 wxMoveEvent event( r.GetLeftTop() , toplevelWindow->GetId() ) ;
665 event.SetEventObject( toplevelWindow ) ;
666 toplevelWindow->GetEventHandler()->ProcessEvent(event) ;
667 }
668 result = noErr ;
669 break ;
670 }
671 case kEventWindowBoundsChanging :
672 {
673 UInt32 attributes = cEvent.GetParameter<UInt32>(kEventParamAttributes,typeUInt32) ;
674 Rect newRect = cEvent.GetParameter<Rect>(kEventParamCurrentBounds) ;
675
676 if ( (attributes & kWindowBoundsChangeSizeChanged) || (attributes & kWindowBoundsChangeOriginChanged) )
677 {
678 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
679 int left , top , right , bottom ;
680 toplevelWindow->MacGetContentAreaInset( left , top , right , bottom ) ;
681 wxRect r( newRect.left - left , newRect.top - top ,
682 newRect.right - newRect.left + left + right , newRect.bottom - newRect.top + top + bottom ) ;
683 // this is a EVT_SIZING not a EVT_SIZE type !
684 wxSizeEvent wxevent( r , toplevelWindow->GetId() ) ;
685 wxevent.SetEventObject( toplevelWindow ) ;
686 wxRect adjustR = r ;
687 if ( toplevelWindow->GetEventHandler()->ProcessEvent(wxevent) )
688 adjustR = wxevent.GetRect() ;
689
690 if ( toplevelWindow->GetMaxWidth() != -1 && adjustR.GetWidth() > toplevelWindow->GetMaxWidth() )
691 adjustR.SetWidth( toplevelWindow->GetMaxWidth() ) ;
692 if ( toplevelWindow->GetMaxHeight() != -1 && adjustR.GetHeight() > toplevelWindow->GetMaxHeight() )
693 adjustR.SetHeight( toplevelWindow->GetMaxHeight() ) ;
694 if ( toplevelWindow->GetMinWidth() != -1 && adjustR.GetWidth() < toplevelWindow->GetMinWidth() )
695 adjustR.SetWidth( toplevelWindow->GetMinWidth() ) ;
696 if ( toplevelWindow->GetMinHeight() != -1 && adjustR.GetHeight() < toplevelWindow->GetMinHeight() )
697 adjustR.SetHeight( toplevelWindow->GetMinHeight() ) ;
698 const Rect adjustedRect = { adjustR.y + top , adjustR.x + left , adjustR.y + adjustR.height - bottom , adjustR.x + adjustR.width - right } ;
699 if ( !EqualRect( &newRect , &adjustedRect ) )
700 cEvent.SetParameter<Rect>( kEventParamCurrentBounds , &adjustedRect ) ;
701 }
702
703 result = noErr ;
704 break ;
705 }
706 default :
707 break ;
708 }
709 return result ;
710 }
711
712 pascal OSStatus wxMacTopLevelEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
713 {
714 OSStatus result = eventNotHandledErr ;
715
716 switch ( GetEventClass( event ) )
717 {
718 case kEventClassKeyboard :
719 result = KeyboardEventHandler( handler, event , data ) ;
720 break ;
721 case kEventClassTextInput :
722 result = TextInputEventHandler( handler, event , data ) ;
723 break ;
724 case kEventClassWindow :
725 result = wxMacTopLevelWindowEventHandler( handler, event , data ) ;
726 break ;
727 case kEventClassMouse :
728 result = wxMacTopLevelMouseEventHandler( handler, event , data ) ;
729 break ;
730 default :
731 break ;
732 }
733 return result ;
734 }
735
736 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTopLevelEventHandler )
737
738 // ---------------------------------------------------------------------------
739 // wxWindowMac utility functions
740 // ---------------------------------------------------------------------------
741
742 // Find an item given the Macintosh Window Reference
743
744 #if KEY_wxList_DEPRECATED
745 wxList wxWinMacWindowList(wxKEY_INTEGER);
746 wxTopLevelWindowMac *wxFindWinFromMacWindow(WindowRef inWindowRef)
747 {
748 wxNode *node = wxWinMacWindowList.Find((long)inWindowRef);
749 if (!node)
750 return NULL;
751 return (wxTopLevelWindowMac *)node->GetData();
752 }
753
754 void wxAssociateWinWithMacWindow(WindowRef inWindowRef, wxTopLevelWindowMac *win) ;
755 void wxAssociateWinWithMacWindow(WindowRef inWindowRef, wxTopLevelWindowMac *win)
756 {
757 // adding NULL WindowRef is (first) surely a result of an error and
758 // (secondly) breaks menu command processing
759 wxCHECK_RET( inWindowRef != (WindowRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
760
761 if ( !wxWinMacWindowList.Find((long)inWindowRef) )
762 wxWinMacWindowList.Append((long)inWindowRef, win);
763 }
764
765 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win) ;
766 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win)
767 {
768 wxWinMacWindowList.DeleteObject(win);
769 }
770 #else
771
772 WX_DECLARE_HASH_MAP(WindowRef, wxTopLevelWindowMac*, wxPointerHash, wxPointerEqual, MacWindowMap);
773
774 static MacWindowMap wxWinMacWindowList;
775
776 wxTopLevelWindowMac *wxFindWinFromMacWindow(WindowRef inWindowRef)
777 {
778 MacWindowMap::iterator node = wxWinMacWindowList.find(inWindowRef);
779
780 return (node == wxWinMacWindowList.end()) ? NULL : node->second;
781 }
782
783 void wxAssociateWinWithMacWindow(WindowRef inWindowRef, wxTopLevelWindowMac *win) ;
784 void wxAssociateWinWithMacWindow(WindowRef inWindowRef, wxTopLevelWindowMac *win)
785 {
786 // adding NULL WindowRef is (first) surely a result of an error and
787 // nothing else :-)
788 wxCHECK_RET( inWindowRef != (WindowRef) NULL, wxT("attempt to add a NULL WindowRef to window list") );
789
790 wxWinMacWindowList[inWindowRef] = win;
791 }
792
793 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win) ;
794 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac *win)
795 {
796 MacWindowMap::iterator it;
797 for ( it = wxWinMacWindowList.begin(); it != wxWinMacWindowList.end(); ++it )
798 {
799 if ( it->second == win )
800 {
801 wxWinMacWindowList.erase(it);
802 break;
803 }
804 }
805 }
806 #endif // deprecated wxList
807
808 // ----------------------------------------------------------------------------
809 // wxTopLevelWindowMac creation
810 // ----------------------------------------------------------------------------
811
812 wxTopLevelWindowMac *wxTopLevelWindowMac::s_macDeactivateWindow = NULL;
813
814 typedef struct
815 {
816 wxPoint m_position ;
817 wxSize m_size ;
818 } FullScreenData ;
819
820 void wxTopLevelWindowMac::Init()
821 {
822 m_iconized =
823 m_maximizeOnShow = FALSE;
824 m_macWindow = NULL ;
825 #if TARGET_API_MAC_OSX
826 m_macUsesCompositing = TRUE;
827 #else
828 m_macUsesCompositing = FALSE;
829 #endif
830 m_macEventHandler = NULL ;
831 m_macFullScreenData = NULL ;
832 }
833
834 class wxMacDeferredWindowDeleter : public wxObject
835 {
836 public :
837 wxMacDeferredWindowDeleter( WindowRef windowRef )
838 {
839 m_macWindow = windowRef ;
840 }
841 virtual ~wxMacDeferredWindowDeleter()
842 {
843 UMADisposeWindow( (WindowRef) m_macWindow ) ;
844 }
845 protected :
846 WindowRef m_macWindow ;
847 } ;
848
849 bool wxTopLevelWindowMac::Create(wxWindow *parent,
850 wxWindowID id,
851 const wxString& title,
852 const wxPoint& pos,
853 const wxSize& size,
854 long style,
855 const wxString& name)
856 {
857 // init our fields
858 Init();
859
860 m_windowStyle = style;
861
862 SetName(name);
863
864 m_windowId = id == -1 ? NewControlId() : id;
865 wxWindow::SetTitle( title ) ;
866
867 MacCreateRealWindow( title, pos , size , MacRemoveBordersFromStyle(style) , name ) ;
868
869 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
870
871 wxTopLevelWindows.Append(this);
872
873 if ( parent )
874 parent->AddChild(this);
875
876 return TRUE;
877 }
878
879 wxTopLevelWindowMac::~wxTopLevelWindowMac()
880 {
881 if ( m_macWindow )
882 {
883 wxToolTip::NotifyWindowDelete(m_macWindow) ;
884 wxPendingDelete.Append( new wxMacDeferredWindowDeleter( (WindowRef) m_macWindow ) ) ;
885 }
886
887 if ( m_macEventHandler )
888 {
889 ::RemoveEventHandler((EventHandlerRef) m_macEventHandler);
890 m_macEventHandler = NULL ;
891 }
892
893 wxRemoveMacWindowAssociation( this ) ;
894
895 if ( wxModelessWindows.Find(this) )
896 wxModelessWindows.DeleteObject(this);
897
898 FullScreenData *data = (FullScreenData *) m_macFullScreenData ;
899 delete data ;
900 m_macFullScreenData = NULL ;
901 }
902
903
904 // ----------------------------------------------------------------------------
905 // wxTopLevelWindowMac maximize/minimize
906 // ----------------------------------------------------------------------------
907
908 void wxTopLevelWindowMac::Maximize(bool maximize)
909 {
910 wxMacPortStateHelper help( (GrafPtr) GetWindowPort( (WindowRef) m_macWindow) ) ;
911 wxMacWindowClipper clip (this);
912 ZoomWindow( (WindowRef)m_macWindow , maximize ? inZoomOut : inZoomIn , false ) ;
913 }
914
915 bool wxTopLevelWindowMac::IsMaximized() const
916 {
917 return IsWindowInStandardState( (WindowRef)m_macWindow , NULL , NULL ) ;
918 }
919
920 void wxTopLevelWindowMac::Iconize(bool iconize)
921 {
922 if ( IsWindowCollapsable((WindowRef)m_macWindow) )
923 CollapseWindow((WindowRef)m_macWindow , iconize ) ;
924 }
925
926 bool wxTopLevelWindowMac::IsIconized() const
927 {
928 return IsWindowCollapsed((WindowRef)m_macWindow ) ;
929 }
930
931 void wxTopLevelWindowMac::Restore()
932 {
933 // not available on mac
934 }
935
936 // ----------------------------------------------------------------------------
937 // wxTopLevelWindowMac misc
938 // ----------------------------------------------------------------------------
939
940 wxPoint wxTopLevelWindowMac::GetClientAreaOrigin() const
941 {
942 return wxPoint(0,0) ;
943 }
944
945 void wxTopLevelWindowMac::SetIcon(const wxIcon& icon)
946 {
947 // this sets m_icon
948 wxTopLevelWindowBase::SetIcon(icon);
949 }
950
951 void wxTopLevelWindowMac::MacSetBackgroundBrush( const wxBrush &brush )
952 {
953 wxTopLevelWindowBase::MacSetBackgroundBrush( brush ) ;
954
955 if ( m_macBackgroundBrush.Ok() && m_macBackgroundBrush.GetStyle() != wxTRANSPARENT && m_macBackgroundBrush.MacGetBrushKind() == kwxMacBrushTheme )
956 {
957 SetThemeWindowBackground( (WindowRef) m_macWindow , m_macBackgroundBrush.MacGetTheme() , false ) ;
958 }
959 }
960
961 void wxTopLevelWindowMac::MacInstallTopLevelWindowEventHandler()
962 {
963 if ( m_macEventHandler != NULL )
964 {
965 verify_noerr( ::RemoveEventHandler( (EventHandlerRef) m_macEventHandler ) ) ;
966 }
967 InstallWindowEventHandler(MAC_WXHWND(m_macWindow), GetwxMacTopLevelEventHandlerUPP(),
968 GetEventTypeCount(eventList), eventList, this, (EventHandlerRef *)&m_macEventHandler);
969 }
970
971 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
972 const wxPoint& pos,
973 const wxSize& size,
974 long style,
975 const wxString& name )
976 {
977 OSStatus err = noErr ;
978 SetName(name);
979 m_windowStyle = style;
980 m_isShown = FALSE;
981
982 // create frame.
983
984 Rect theBoundsRect;
985
986 int x = (int)pos.x;
987 int y = (int)pos.y;
988
989 wxRect display = wxGetClientDisplayRect() ;
990
991 if ( x == wxDefaultPosition.x )
992 x = display.x ;
993
994 if ( y == wxDefaultPosition.y )
995 y = display.y ;
996
997 int w = WidthDefault(size.x);
998 int h = HeightDefault(size.y);
999
1000 ::SetRect(&theBoundsRect, x, y , x + w, y + h);
1001
1002 // translate the window attributes in the appropriate window class and attributes
1003
1004 WindowClass wclass = 0;
1005 WindowAttributes attr = kWindowNoAttributes ;
1006
1007 if ( HasFlag( wxFRAME_TOOL_WINDOW) )
1008 {
1009 if (
1010 HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ||
1011 HasFlag( wxSYSTEM_MENU ) || HasFlag( wxCAPTION ) ||
1012 HasFlag(wxTINY_CAPTION_HORIZ) || HasFlag(wxTINY_CAPTION_VERT)
1013 )
1014 {
1015 wclass = kFloatingWindowClass ;
1016 if ( HasFlag(wxTINY_CAPTION_VERT) )
1017 {
1018 attr |= kWindowSideTitlebarAttribute ;
1019 }
1020 }
1021 else
1022 {
1023 wclass = kPlainWindowClass ;
1024 }
1025 }
1026 else if ( HasFlag( wxCAPTION ) )
1027 {
1028 wclass = kDocumentWindowClass ;
1029 }
1030 #if defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
1031 else if ( HasFlag( wxFRAME_DRAWER ) )
1032 {
1033 wclass = kDrawerWindowClass;
1034 // Should this be left for compositing check below?
1035 // CreateNewWindow will fail without it, should wxDrawerWindow turn
1036 // on compositing before calling MacCreateRealWindow?
1037 attr |= kWindowCompositingAttribute;// | kWindowStandardHandlerAttribute;
1038 }
1039 #endif //10.2 and up
1040 else
1041 {
1042 if ( HasFlag( wxMINIMIZE_BOX ) || HasFlag( wxMAXIMIZE_BOX ) ||
1043 HasFlag( wxCLOSE_BOX ) || HasFlag( wxSYSTEM_MENU ) )
1044 {
1045 wclass = kDocumentWindowClass ;
1046 }
1047 else
1048 {
1049 wclass = kPlainWindowClass ;
1050 }
1051 }
1052
1053 if ( HasFlag( wxMINIMIZE_BOX ) )
1054 {
1055 attr |= kWindowCollapseBoxAttribute ;
1056 }
1057 if ( HasFlag( wxMAXIMIZE_BOX ) )
1058 {
1059 attr |= kWindowFullZoomAttribute ;
1060 }
1061 if ( HasFlag( wxRESIZE_BORDER ) )
1062 {
1063 attr |= kWindowResizableAttribute ;
1064 }
1065 if ( HasFlag( wxCLOSE_BOX) )
1066 {
1067 attr |= kWindowCloseBoxAttribute ;
1068 }
1069
1070 if (UMAGetSystemVersion() >= 0x1000)
1071 {
1072 // turn on live resizing (OS X only)
1073 attr |= kWindowLiveResizeAttribute;
1074 }
1075
1076 if (HasFlag(wxSTAY_ON_TOP))
1077 wclass = kUtilityWindowClass;
1078
1079 #if TARGET_API_MAC_OSX
1080 attr |= kWindowCompositingAttribute;
1081 #endif
1082
1083 if ( HasFlag(wxFRAME_SHAPED) )
1084 {
1085 WindowDefSpec customWindowDefSpec;
1086 customWindowDefSpec.defType = kWindowDefProcPtr;
1087 customWindowDefSpec.u.defProc = NewWindowDefUPP(wxShapedMacWindowDef);
1088
1089 err = ::CreateCustomWindow( &customWindowDefSpec, wclass,
1090 attr, &theBoundsRect,
1091 (WindowRef*) &m_macWindow);
1092 }
1093 else
1094 {
1095 err = ::CreateNewWindow( wclass , attr , &theBoundsRect , (WindowRef*)&m_macWindow ) ;
1096 }
1097
1098 wxCHECK_RET( err == noErr, wxT("Mac OS error when trying to create new window") );
1099
1100 // the create commands are only for content rect, so we have to set the size again as
1101 // structure bounds
1102 SetWindowBounds( (WindowRef) m_macWindow , kWindowStructureRgn , &theBoundsRect ) ;
1103
1104 wxAssociateWinWithMacWindow( (WindowRef) m_macWindow , this ) ;
1105 UMASetWTitle( (WindowRef) m_macWindow , title , m_font.GetEncoding() ) ;
1106 m_peer = new wxMacControl() ;
1107 #if TARGET_API_MAC_OSX
1108 // There is a bug in 10.2.X for ::GetRootControl returning the window view instead of
1109 // the content view, so we have to retrieve it explicitely
1110 HIViewFindByID( HIViewGetRoot( (WindowRef) m_macWindow ) , kHIViewWindowContentID ,
1111 m_peer->GetControlRefAddr() ) ;
1112 if ( !m_peer->Ok() )
1113 {
1114 // compatibility mode fallback
1115 GetRootControl( (WindowRef) m_macWindow , m_peer->GetControlRefAddr() ) ;
1116 }
1117 #else
1118 ::CreateRootControl( (WindowRef)m_macWindow , m_peer->GetControlRefAddr() ) ;
1119 #endif
1120 // the root control level handleer
1121 MacInstallEventHandler( (WXWidget) m_peer->GetControlRef() ) ;
1122
1123 // the frame window event handler
1124 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow)) ) ;
1125 MacInstallTopLevelWindowEventHandler() ;
1126
1127 m_macFocus = NULL ;
1128
1129 if ( HasFlag(wxFRAME_SHAPED) )
1130 {
1131 // default shape matches the window size
1132 wxRegion rgn(0, 0, w, h);
1133 SetShape(rgn);
1134 }
1135
1136 wxWindowCreateEvent event(this);
1137 GetEventHandler()->ProcessEvent(event);
1138 }
1139
1140 void wxTopLevelWindowMac::ClearBackground()
1141 {
1142 wxWindow::ClearBackground() ;
1143 }
1144
1145 // Raise the window to the top of the Z order
1146 void wxTopLevelWindowMac::Raise()
1147 {
1148 ::SelectWindow( (WindowRef)m_macWindow ) ;
1149 }
1150
1151 // Lower the window to the bottom of the Z order
1152 void wxTopLevelWindowMac::Lower()
1153 {
1154 ::SendBehind( (WindowRef)m_macWindow , NULL ) ;
1155 }
1156
1157
1158 void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp)
1159 {
1160 if(s_macDeactivateWindow)
1161 {
1162 wxLogDebug(wxT("Doing delayed deactivation of %p"),s_macDeactivateWindow);
1163 s_macDeactivateWindow->MacActivate(timestamp, false);
1164 }
1165 }
1166
1167 void wxTopLevelWindowMac::MacActivate( long timestamp , bool inIsActivating )
1168 {
1169 // wxLogDebug(wxT("TopLevel=%p::MacActivate"),this);
1170
1171 if(s_macDeactivateWindow==this)
1172 s_macDeactivateWindow=NULL;
1173 MacDelayedDeactivation(timestamp);
1174 MacPropagateHiliteChanged() ;
1175 }
1176
1177 void wxTopLevelWindowMac::SetTitle(const wxString& title)
1178 {
1179 wxWindow::SetTitle( title ) ;
1180 UMASetWTitle( (WindowRef)m_macWindow , title , m_font.GetEncoding() ) ;
1181 }
1182
1183 bool wxTopLevelWindowMac::Show(bool show)
1184 {
1185 if ( !wxTopLevelWindowBase::Show(show) )
1186 return FALSE;
1187
1188 if (show)
1189 {
1190 #if wxUSE_SYSTEM_OPTIONS //code contributed by Ryan Wilcox December 18, 2003
1191 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION ) == 1) )
1192 {
1193 ::ShowWindow( (WindowRef)m_macWindow );
1194 }
1195 else
1196 #endif
1197 {
1198 ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowShowTransitionAction,nil);
1199 }
1200 ::SelectWindow( (WindowRef)m_macWindow ) ;
1201 // as apps expect a size event to occur at this moment
1202 wxSizeEvent event( GetSize() , m_windowId);
1203 event.SetEventObject(this);
1204 GetEventHandler()->ProcessEvent(event);
1205 }
1206 else
1207 {
1208 #if wxUSE_SYSTEM_OPTIONS
1209 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION ) == 1) )
1210 {
1211 ::HideWindow((WindowRef) m_macWindow );
1212 }
1213 else
1214 #endif
1215 {
1216 ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowHideTransitionAction,nil);
1217 }
1218 }
1219
1220 MacPropagateVisibilityChanged() ;
1221
1222 return TRUE ;
1223 }
1224
1225 bool wxTopLevelWindowMac::ShowFullScreen(bool show, long style)
1226 {
1227 if ( show )
1228 {
1229 FullScreenData *data = (FullScreenData *)m_macFullScreenData ;
1230 delete data ;
1231 data = new FullScreenData() ;
1232
1233 m_macFullScreenData = data ;
1234 data->m_position = GetPosition() ;
1235 data->m_size = GetSize() ;
1236
1237 if ( style & wxFULLSCREEN_NOMENUBAR )
1238 {
1239 HideMenuBar() ;
1240 }
1241 int left , top , right , bottom ;
1242 wxRect client = wxGetClientDisplayRect() ;
1243
1244 int x, y, w, h ;
1245
1246 x = client.x ;
1247 y = client.y ;
1248 w = client.width ;
1249 h = client.height ;
1250
1251 MacGetContentAreaInset( left , top , right , bottom ) ;
1252
1253 if ( style & wxFULLSCREEN_NOCAPTION )
1254 {
1255 y -= top ;
1256 h += top ;
1257 }
1258 if ( style & wxFULLSCREEN_NOBORDER )
1259 {
1260 x -= left ;
1261 w += left + right ;
1262 h += bottom ;
1263 }
1264 if ( style & wxFULLSCREEN_NOTOOLBAR )
1265 {
1266 // TODO
1267 }
1268 if ( style & wxFULLSCREEN_NOSTATUSBAR )
1269 {
1270 // TODO
1271 }
1272 SetSize( x , y , w, h ) ;
1273 }
1274 else
1275 {
1276 ShowMenuBar() ;
1277 FullScreenData *data = (FullScreenData *) m_macFullScreenData ;
1278 SetPosition( data->m_position ) ;
1279 SetSize( data->m_size ) ;
1280 delete data ;
1281 m_macFullScreenData = NULL ;
1282 }
1283 return FALSE;
1284 }
1285
1286 bool wxTopLevelWindowMac::IsFullScreen() const
1287 {
1288 return m_macFullScreenData != NULL ;
1289 }
1290
1291 // we are still using coordinates of the content view, todo switch to structure bounds
1292
1293 void wxTopLevelWindowMac::MacGetContentAreaInset( int &left , int &top , int &right , int &bottom )
1294 {
1295 Rect content ;
1296 Rect structure ;
1297 GetWindowBounds( (WindowRef) m_macWindow, kWindowStructureRgn , &structure ) ;
1298 GetWindowBounds( (WindowRef) m_macWindow, kWindowContentRgn , &content ) ;
1299
1300 left = content.left - structure.left ;
1301 top = content.top - structure.top ;
1302 right = structure.right - content.right ;
1303 bottom = structure.bottom - content.bottom ;
1304 }
1305
1306 void wxTopLevelWindowMac::DoMoveWindow(int x, int y, int width, int height)
1307 {
1308 Rect bounds = { y , x , y + height , x + width } ;
1309 verify_noerr(SetWindowBounds( (WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
1310 }
1311
1312 void wxTopLevelWindowMac::DoGetPosition( int *x, int *y ) const
1313 {
1314 Rect bounds ;
1315 verify_noerr(GetWindowBounds((WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
1316 if(x) *x = bounds.left ;
1317 if(y) *y = bounds.top ;
1318 }
1319 void wxTopLevelWindowMac::DoGetSize( int *width, int *height ) const
1320 {
1321 Rect bounds ;
1322 verify_noerr(GetWindowBounds((WindowRef) m_macWindow, kWindowStructureRgn , &bounds )) ;
1323 if(width) *width = bounds.right - bounds.left ;
1324 if(height) *height = bounds.bottom - bounds.top ;
1325 }
1326
1327 void wxTopLevelWindowMac::DoGetClientSize( int *width, int *height ) const
1328 {
1329 Rect bounds ;
1330 verify_noerr(GetWindowBounds((WindowRef) m_macWindow, kWindowContentRgn , &bounds )) ;
1331 if(width) *width = bounds.right - bounds.left ;
1332 if(height) *height = bounds.bottom - bounds.top ;
1333 }
1334
1335 void wxTopLevelWindowMac::MacSetMetalAppearance( bool set )
1336 {
1337 #if TARGET_API_MAC_OSX
1338 UInt32 attr = 0 ;
1339 GetWindowAttributes((WindowRef) m_macWindow , &attr ) ;
1340 wxASSERT_MSG( attr & kWindowCompositingAttribute ,
1341 wxT("Cannot set metal appearance on a non-compositing window") ) ;
1342
1343 MacChangeWindowAttributes( set ? kWindowMetalAttribute : kWindowNoAttributes ,
1344 set ? kWindowNoAttributes : kWindowMetalAttribute ) ;
1345 #endif
1346 }
1347
1348 bool wxTopLevelWindowMac::MacGetMetalAppearance() const
1349 {
1350 #if TARGET_API_MAC_OSX
1351 return MacGetWindowAttributes() & kWindowMetalAttribute ;
1352 #else
1353 return false ;
1354 #endif
1355 }
1356
1357 void wxTopLevelWindowMac::MacChangeWindowAttributes( wxUint32 attributesToSet , wxUint32 attributesToClear )
1358 {
1359 ChangeWindowAttributes ( (WindowRef) m_macWindow , attributesToSet, attributesToClear ) ;
1360 }
1361
1362 wxUint32 wxTopLevelWindowMac::MacGetWindowAttributes() const
1363 {
1364 UInt32 attr = 0 ;
1365 GetWindowAttributes((WindowRef) m_macWindow , &attr ) ;
1366 return attr ;
1367 }
1368
1369 // ---------------------------------------------------------------------------
1370 // Shape implementation
1371 // ---------------------------------------------------------------------------
1372
1373
1374 bool wxTopLevelWindowMac::SetShape(const wxRegion& region)
1375 {
1376 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), FALSE,
1377 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1378
1379 // The empty region signifies that the shape should be removed from the
1380 // window.
1381 if ( region.IsEmpty() )
1382 {
1383 wxSize sz = GetClientSize();
1384 wxRegion rgn(0, 0, sz.x, sz.y);
1385 return SetShape(rgn);
1386 }
1387
1388 // Make a copy of the region
1389 RgnHandle shapeRegion = NewRgn();
1390 CopyRgn( (RgnHandle)region.GetWXHRGN(), shapeRegion );
1391
1392 // Dispose of any shape region we may already have
1393 RgnHandle oldRgn = (RgnHandle)GetWRefCon( (WindowRef)MacGetWindowRef() );
1394 if ( oldRgn )
1395 DisposeRgn(oldRgn);
1396
1397 // Save the region so we can use it later
1398 SetWRefCon((WindowRef)MacGetWindowRef(), (SInt32)shapeRegion);
1399
1400 // Tell the window manager that the window has changed shape
1401 ReshapeCustomWindow((WindowRef)MacGetWindowRef());
1402 return TRUE;
1403 }
1404
1405 // ---------------------------------------------------------------------------
1406 // Support functions for shaped windows, based on Apple's CustomWindow sample at
1407 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1408 // ---------------------------------------------------------------------------
1409
1410 static void wxShapedMacWindowGetPos(WindowRef window, Rect* inRect)
1411 {
1412 GetWindowPortBounds(window, inRect);
1413 Point pt = {inRect->left, inRect->top};
1414 QDLocalToGlobalPoint( GetWindowPort(window) , &pt ) ;
1415 inRect->top = pt.v;
1416 inRect->left = pt.h;
1417 inRect->bottom += pt.v;
1418 inRect->right += pt.h;
1419 }
1420
1421
1422 static SInt32 wxShapedMacWindowGetFeatures(WindowRef window, SInt32 param)
1423 {
1424 /*------------------------------------------------------
1425 Define which options your custom window supports.
1426 --------------------------------------------------------*/
1427 //just enable everything for our demo
1428 *(OptionBits*)param=//kWindowCanGrow|
1429 //kWindowCanZoom|
1430 //kWindowCanCollapse|
1431 //kWindowCanGetWindowRegion|
1432 //kWindowHasTitleBar|
1433 //kWindowSupportsDragHilite|
1434 kWindowCanDrawInCurrentPort|
1435 //kWindowCanMeasureTitle|
1436 kWindowWantsDisposeAtProcessDeath|
1437 kWindowSupportsGetGrowImageRegion|
1438 kWindowDefSupportsColorGrafPort;
1439 return 1;
1440 }
1441
1442 // The content region is left as a rectangle matching the window size, this is
1443 // so the origin in the paint event, and etc. still matches what the
1444 // programmer expects.
1445 static void wxShapedMacWindowContentRegion(WindowRef window, RgnHandle rgn)
1446 {
1447 SetEmptyRgn(rgn);
1448 wxTopLevelWindowMac* win = wxFindWinFromMacWindow(window);
1449 if (win)
1450 {
1451 Rect r ;
1452 wxShapedMacWindowGetPos(window, &r ) ;
1453 RectRgn( rgn , &r ) ;
1454 }
1455 }
1456
1457 // The structure region is set to the shape given to the SetShape method.
1458 static void wxShapedMacWindowStructureRegion(WindowRef window, RgnHandle rgn)
1459 {
1460 RgnHandle cachedRegion = (RgnHandle) GetWRefCon(window);
1461
1462 SetEmptyRgn(rgn);
1463 if (cachedRegion)
1464 {
1465 Rect windowRect;
1466 wxShapedMacWindowGetPos(window, &windowRect); //how big is the window
1467 CopyRgn(cachedRegion, rgn); //make a copy of our cached region
1468 OffsetRgn(rgn, windowRect.left, windowRect.top); // position it over window
1469 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1470 }
1471 }
1472
1473
1474
1475 static SInt32 wxShapedMacWindowGetRegion(WindowRef window, SInt32 param)
1476 {
1477 GetWindowRegionPtr rgnRec=(GetWindowRegionPtr)param;
1478
1479 switch(rgnRec->regionCode)
1480 {
1481 case kWindowStructureRgn:
1482 wxShapedMacWindowStructureRegion(window, rgnRec->winRgn);
1483 break;
1484 case kWindowContentRgn:
1485 wxShapedMacWindowContentRegion(window, rgnRec->winRgn);
1486 break;
1487 default:
1488 SetEmptyRgn(rgnRec->winRgn);
1489 } //switch
1490
1491 return noErr;
1492 }
1493
1494
1495 static SInt32 wxShapedMacWindowHitTest(WindowRef window,SInt32 param)
1496 {
1497 /*------------------------------------------------------
1498 Determine the region of the window which was hit
1499 --------------------------------------------------------*/
1500 Point hitPoint;
1501 static RgnHandle tempRgn=nil;
1502
1503 if(!tempRgn)
1504 tempRgn=NewRgn();
1505
1506 SetPt(&hitPoint,LoWord(param),HiWord(param));//get the point clicked
1507
1508 //Mac OS 8.5 or later
1509 wxShapedMacWindowStructureRegion(window, tempRgn);
1510 if (PtInRgn(hitPoint, tempRgn)) //in window content region?
1511 return wInContent;
1512
1513 return wNoHit;//no significant area was hit.
1514 }
1515
1516
1517 static pascal long wxShapedMacWindowDef(short varCode, WindowRef window, SInt16 message, SInt32 param)
1518 {
1519 switch(message)
1520 {
1521 case kWindowMsgHitTest:
1522 return wxShapedMacWindowHitTest(window,param);
1523
1524 case kWindowMsgGetFeatures:
1525 return wxShapedMacWindowGetFeatures(window,param);
1526
1527 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1528 case kWindowMsgGetRegion:
1529 return wxShapedMacWindowGetRegion(window,param);
1530 }
1531
1532 return 0;
1533 }
1534
1535 // ---------------------------------------------------------------------------
1536