1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: mac/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for Mac
4 // Author: Stefan Csomor
8 // Copyright: (c) 2001-2004 Stefan Csomor
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "toplevel.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/toplevel.h"
35 #include "wx/string.h"
38 #include "wx/settings.h"
39 #include "wx/strconv.h"
40 #include "wx/control.h"
43 #include "wx/mac/uma.h"
44 #include "wx/mac/aga.h"
46 #include "wx/tooltip.h"
48 #if wxUSE_SYSTEM_OPTIONS
49 #include "wx/sysopt.h"
52 #include <ToolUtils.h>
55 #include "wx/mac/private.h"
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 // list of all frames and modeless dialogs
62 wxWindowList wxModelessWindows
;
64 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
);
66 // ============================================================================
67 // wxTopLevelWindowMac implementation
68 // ============================================================================
70 BEGIN_EVENT_TABLE(wxTopLevelWindowMac
, wxTopLevelWindowBase
)
74 // ---------------------------------------------------------------------------
76 // ---------------------------------------------------------------------------
78 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
80 static const EventTypeSpec eventList
[] =
82 // TODO remove control related event like key and mouse (except for WindowLeave events)
84 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
86 { kEventClassKeyboard
, kEventRawKeyDown
} ,
87 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
88 { kEventClassKeyboard
, kEventRawKeyUp
} ,
89 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
92 { kEventClassWindow
, kEventWindowShown
} ,
93 { kEventClassWindow
, kEventWindowActivated
} ,
94 { kEventClassWindow
, kEventWindowDeactivated
} ,
95 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
96 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
97 { kEventClassWindow
, kEventWindowClose
} ,
99 // we have to catch these events on the toplevel window level, as controls don't get the
100 // raw mouse events anymore
102 { kEventClassMouse
, kEventMouseDown
} ,
103 { kEventClassMouse
, kEventMouseUp
} ,
104 { kEventClassMouse
, kEventMouseWheelMoved
} ,
105 { kEventClassMouse
, kEventMouseMoved
} ,
106 { kEventClassMouse
, kEventMouseDragged
} ,
109 static pascal OSStatus
TextInputEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
111 OSStatus result
= eventNotHandledErr
;
113 wxWindow
* focus
= wxWindow::FindFocus() ;
121 GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
123 GetEventParameter( rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
124 GetEventParameter( rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
125 GetEventParameter( rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
126 GetEventParameter( rawEvent
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
127 sizeof( Point
), NULL
, &point
);
129 switch ( GetEventKind( event
) )
131 case kEventTextInputUnicodeForKeyEvent
:
132 // this is only called when no default handler has jumped in, eg a wxControl on a floater window does not
133 // get its own kEventTextInputUnicodeForKeyEvent, so we route back the
134 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
137 ControlRef macControl
= (ControlRef
) control
->GetHandle() ;
140 ::HandleControlKey( macControl
, keyCode
, charCode
, modifiers
) ;
145 // this may lead to double events sent to a window in case all handlers have skipped the key down event
146 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
147 UInt32 message = (keyCode << 8) + charCode;
149 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
150 focus , message , modifiers , when , point.h , point.v ) )
161 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
163 OSStatus result
= eventNotHandledErr
;
164 // call DoFindFocus instead of FindFocus, because for Composite Windows(like WxGenericListCtrl)
165 // FindFocus does not return the actual focus window,but the enclosing window
166 wxWindow
* focus
= wxWindow::DoFindFocus();
175 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
178 UInt32 dataSize
= 0 ;
179 if ( GetEventParameter( event
, kEventParamKeyUnicodes
, typeUnicodeText
, NULL
, 0 , &dataSize
, NULL
) == noErr
)
183 UniChar
* charBuf
= buf
;
186 charBuf
= new UniChar
[ dataSize
/ sizeof( UniChar
) ] ;
187 GetEventParameter( event
, kEventParamKeyUnicodes
, typeUnicodeText
, NULL
, dataSize
, NULL
, charBuf
) ;
188 #if SIZEOF_WCHAR_T == 2
189 uniChar
= charBuf
[0] ;
191 wxMBConvUTF16BE converter
;
192 converter
.MB2WC( &uniChar
, (const char*)charBuf
, 1 ) ;
199 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
200 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
201 GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
202 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
203 sizeof( Point
), NULL
, &point
);
205 UInt32 message
= (keyCode
<< 8) + charCode
;
206 switch( GetEventKind( event
) )
208 case kEventRawKeyRepeat
:
209 case kEventRawKeyDown
:
211 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
212 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
213 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
214 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyDownEvent(
215 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChar
) )
219 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
222 case kEventRawKeyUp
:
223 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyUpEvent(
224 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChar
) )
229 case kEventRawKeyModifiersChanged
:
231 wxKeyEvent
event(wxEVT_KEY_DOWN
);
233 event
.m_shiftDown
= modifiers
& shiftKey
;
234 event
.m_controlDown
= modifiers
& controlKey
;
235 event
.m_altDown
= modifiers
& optionKey
;
236 event
.m_metaDown
= modifiers
& cmdKey
;
238 event
.m_uniChar
= uniChar
;
242 event
.SetTimestamp(when
);
243 event
.SetEventObject(focus
);
245 if ( focus
&& (modifiers
^ wxApp::s_lastModifiers
) & controlKey
)
247 event
.m_keyCode
= WXK_CONTROL
;
248 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
249 focus
->GetEventHandler()->ProcessEvent( event
) ;
251 if ( focus
&& (modifiers
^ wxApp::s_lastModifiers
) & shiftKey
)
253 event
.m_keyCode
= WXK_SHIFT
;
254 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
255 focus
->GetEventHandler()->ProcessEvent( event
) ;
257 if ( focus
&& (modifiers
^ wxApp::s_lastModifiers
) & optionKey
)
259 event
.m_keyCode
= WXK_ALT
;
260 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
261 focus
->GetEventHandler()->ProcessEvent( event
) ;
263 if ( focus
&& (modifiers
^ wxApp::s_lastModifiers
) & cmdKey
)
265 event
.m_keyCode
= WXK_COMMAND
;
266 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
267 focus
->GetEventHandler()->ProcessEvent( event
) ;
269 wxApp::s_lastModifiers
= modifiers
;
277 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
278 // for windows that we didn't create (like eg Scrollbars in a databrowser) , or for controls where we did not handle the
281 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
283 wxWindow
* g_MacLastWindow
= NULL
;
285 static EventMouseButton lastButton
= 0 ;
287 static void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
)
289 UInt32 modifiers
= cEvent
.GetParameter
<UInt32
>(kEventParamKeyModifiers
, typeUInt32
) ;
290 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
292 // this parameter are not given for all events
293 EventMouseButton button
= 0 ;
294 UInt32 clickCount
= 0 ;
295 cEvent
.GetParameter
<EventMouseButton
>(kEventParamMouseButton
, typeMouseButton
, &button
) ;
296 cEvent
.GetParameter
<UInt32
>(kEventParamClickCount
, typeUInt32
, &clickCount
) ;
298 wxevent
.m_x
= screenMouseLocation
.h
;
299 wxevent
.m_y
= screenMouseLocation
.v
;
300 wxevent
.m_shiftDown
= modifiers
& shiftKey
;
301 wxevent
.m_controlDown
= modifiers
& controlKey
;
302 wxevent
.m_altDown
= modifiers
& optionKey
;
303 wxevent
.m_metaDown
= modifiers
& cmdKey
;
304 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
305 // a control click is interpreted as a right click
306 if ( button
== kEventMouseButtonPrimary
&& (modifiers
& controlKey
) )
308 button
= kEventMouseButtonSecondary
;
311 // otherwise we report double clicks by connecting a left click with a ctrl-left click
312 if ( clickCount
> 1 && button
!= lastButton
)
315 // we must make sure that our synthetic 'right' button corresponds in
316 // mouse down, moved and mouse up, and does not deliver a right down and left up
318 if ( cEvent
.GetKind() == kEventMouseDown
)
319 lastButton
= button
;
323 else if ( lastButton
)
324 button
= lastButton
;
326 // determinate the correct down state, wx does not want a 'down' for a mouseUp event, while mac delivers
328 if ( button
!= 0 && cEvent
.GetKind() != kEventMouseUp
)
332 case kEventMouseButtonPrimary
:
333 wxevent
.m_leftDown
= true ;
335 case kEventMouseButtonSecondary
:
336 wxevent
.m_rightDown
= true ;
338 case kEventMouseButtonTertiary
:
339 wxevent
.m_middleDown
= true ;
343 // translate into wx types
344 switch ( cEvent
.GetKind() )
346 case kEventMouseDown
:
349 case kEventMouseButtonPrimary
:
350 wxevent
.SetEventType(clickCount
> 1 ? wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
) ;
352 case kEventMouseButtonSecondary
:
353 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
) ;
355 case kEventMouseButtonTertiary
:
356 wxevent
.SetEventType(clickCount
> 1 ? wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
) ;
363 case kEventMouseButtonPrimary
:
364 wxevent
.SetEventType( wxEVT_LEFT_UP
) ;
366 case kEventMouseButtonSecondary
:
367 wxevent
.SetEventType( wxEVT_RIGHT_UP
) ;
369 case kEventMouseButtonTertiary
:
370 wxevent
.SetEventType( wxEVT_MIDDLE_UP
) ;
374 case kEventMouseWheelMoved
:
376 wxevent
.SetEventType(wxEVT_MOUSEWHEEL
) ;
378 // EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
379 SInt32 delta
= cEvent
.GetParameter
<SInt32
>(kEventParamMouseWheelDelta
, typeLongInteger
) ;
381 wxevent
.m_wheelRotation
= delta
;
382 wxevent
.m_wheelDelta
= 1;
383 wxevent
.m_linesPerAction
= 1;
387 wxevent
.SetEventType(wxEVT_MOTION
) ;
392 ControlRef
wxMacFindSubControl( wxTopLevelWindowMac
* toplevelWindow
, Point location
, ControlRef superControl
, ControlPartCode
*outPart
)
396 UInt16 childrenCount
= 0 ;
397 OSStatus err
= CountSubControls( superControl
, &childrenCount
) ;
398 if ( err
== errControlIsNotEmbedder
)
400 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
402 for ( UInt16 i
= childrenCount
; i
>=1 ; --i
)
404 ControlHandle sibling
;
405 err
= GetIndexedSubControl( superControl
, i
, & sibling
) ;
406 if ( err
== errControlIsNotEmbedder
)
409 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
410 if ( IsControlVisible( sibling
) )
413 UMAGetControlBoundsInWindowCoords( sibling
, &r
) ;
414 if ( MacPtInRect( location
, &r
) )
416 ControlHandle child
= wxMacFindSubControl( toplevelWindow
, location
, sibling
, outPart
) ;
421 Point testLocation
= location
;
423 if ( toplevelWindow
&& toplevelWindow
->MacUsesCompositing() )
425 testLocation
.h
-= r
.left
;
426 testLocation
.v
-= r
.top
;
429 *outPart
= TestControl( sibling
, testLocation
) ;
439 ControlRef
wxMacFindControlUnderMouse( wxTopLevelWindowMac
* toplevelWindow
, Point location
, WindowRef window
, ControlPartCode
*outPart
)
441 #if TARGET_API_MAC_OSX
442 if ( UMAGetSystemVersion() >= 0x1030 && ( toplevelWindow
== 0 || toplevelWindow
->MacUsesCompositing() ) )
443 return FindControlUnderMouse( location
, window
, outPart
) ;
445 ControlRef rootControl
= NULL
;
446 verify_noerr( GetRootControl( window
, &rootControl
) ) ;
447 return wxMacFindSubControl( toplevelWindow
, location
, rootControl
, outPart
) ;
450 pascal OSStatus
wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
452 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
454 OSStatus result
= eventNotHandledErr
;
456 wxMacCarbonEvent
cEvent( event
) ;
458 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
459 Point windowMouseLocation
= screenMouseLocation
;
462 short windowPart
= ::FindWindow(screenMouseLocation
, &window
);
464 wxWindow
* currentMouseWindow
= NULL
;
465 ControlRef control
= NULL
;
469 QDGlobalToLocalPoint( UMAGetWindowPort(window
) , &windowMouseLocation
) ;
471 if ( wxApp::s_captureWindow
&& wxApp::s_captureWindow
->MacGetTopLevelWindowRef() == (WXWindow
) window
&& windowPart
== inContent
)
473 currentMouseWindow
= wxApp::s_captureWindow
;
475 else if ( (IsWindowActive(window
) && windowPart
== inContent
) )
477 ControlPartCode part
;
478 control
= wxMacFindControlUnderMouse( toplevelWindow
, windowMouseLocation
, window
, &part
) ;
479 // if there is no control below the mouse position, send the event to the toplevel window itself
481 currentMouseWindow
= (wxWindow
*) data
;
484 currentMouseWindow
= wxFindControlFromMacControl( control
) ;
485 if ( currentMouseWindow
== NULL
&& cEvent
.GetKind() == kEventMouseMoved
)
488 // for wxToolBar to function we have to send certaint events to it
489 // instead of its children (wxToolBarTools)
491 GetSuperControl(control
, &parent
);
492 wxWindow
*wxParent
= wxFindControlFromMacControl( parent
) ;
493 if ( wxParent
&& wxParent
->IsKindOf( CLASSINFO( wxToolBar
) ) )
494 currentMouseWindow
= wxParent
;
501 wxMouseEvent
wxevent(wxEVT_LEFT_DOWN
);
502 SetupMouseEvent( wxevent
, cEvent
) ;
504 // handle all enter / leave events
506 if ( currentMouseWindow
!= g_MacLastWindow
)
508 if ( g_MacLastWindow
)
510 wxMouseEvent
eventleave(wxevent
);
511 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
512 g_MacLastWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
513 eventleave
.SetEventObject( g_MacLastWindow
) ;
516 wxToolTip::RelayEvent( g_MacLastWindow
, eventleave
);
517 #endif // wxUSE_TOOLTIPS
518 g_MacLastWindow
->GetEventHandler()->ProcessEvent(eventleave
);
520 if ( currentMouseWindow
)
522 wxMouseEvent
evententer(wxevent
);
523 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
524 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
525 evententer
.SetEventObject( currentMouseWindow
) ;
527 wxToolTip::RelayEvent( currentMouseWindow
, evententer
);
528 #endif // wxUSE_TOOLTIPS
529 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
531 g_MacLastWindow
= currentMouseWindow
;
534 if ( windowPart
== inMenuBar
)
536 // special case menu bar, as we are having a low-level runloop we must do it ourselves
537 if ( cEvent
.GetKind() == kEventMouseDown
)
539 ::MenuSelect( screenMouseLocation
) ;
542 } // if ( windowPart == inMenuBar )
543 else if ( currentMouseWindow
)
545 wxWindow
*currentMouseWindowParent
= currentMouseWindow
->GetParent();
547 currentMouseWindow
->ScreenToClient( &wxevent
.m_x
, &wxevent
.m_y
) ;
549 wxevent
.SetEventObject( currentMouseWindow
) ;
551 // make tooltips current
554 if ( wxevent
.GetEventType() == wxEVT_MOTION
555 || wxevent
.GetEventType() == wxEVT_ENTER_WINDOW
556 || wxevent
.GetEventType() == wxEVT_LEAVE_WINDOW
)
557 wxToolTip::RelayEvent( currentMouseWindow
, wxevent
);
558 #endif // wxUSE_TOOLTIPS
559 if ( currentMouseWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
561 if ((currentMouseWindowParent
!= NULL
) &&
562 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
563 currentMouseWindow
= NULL
;
569 // if the user code did _not_ handle the event, then perform the
570 // default processing
571 if ( wxevent
.GetEventType() == wxEVT_LEFT_DOWN
)
573 // ... that is set focus to this window
574 if (currentMouseWindow
->AcceptsFocus() && wxWindow::FindFocus()!=currentMouseWindow
)
575 currentMouseWindow
->SetFocus();
578 ControlPartCode dummyPart
;
579 // if built-in find control is finding the wrong control (ie static box instead of overlaid
580 // button, we cannot let the standard handler do its job, but must handle manually
582 if ( ( cEvent
.GetKind() == kEventMouseDown
)
585 (FindControlUnderMouse(windowMouseLocation
, window
, &dummyPart
) !=
586 wxMacFindControlUnderMouse( toplevelWindow
, windowMouseLocation
, window
, &dummyPart
) )
590 if ( currentMouseWindow
->MacIsReallyEnabled() )
592 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
593 Point clickLocation
= windowMouseLocation
;
595 if ( toplevelWindow
->MacUsesCompositing() )
596 currentMouseWindow
->MacRootWindowToWindow( &clickLocation
.h
, &clickLocation
.v
) ;
598 HandleControlClick( (ControlRef
) currentMouseWindow
->GetHandle() , clickLocation
,
599 modifiers
, (ControlActionUPP
) -1 ) ;
601 if ((currentMouseWindowParent
!= NULL
) &&
602 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
603 currentMouseWindow
= NULL
;
608 if ( cEvent
.GetKind() == kEventMouseUp
&& wxApp::s_captureWindow
)
610 wxApp::s_captureWindow
= NULL
;
616 wxWindow
* cursorTarget
= currentMouseWindow
;
617 wxPoint
cursorPoint( wxevent
.m_x
, wxevent
.m_y
) ;
619 while( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
621 cursorTarget
= cursorTarget
->GetParent() ;
623 cursorPoint
+= cursorTarget
->GetPosition();
626 } // else if ( currentMouseWindow )
629 // don't mess with controls we don't know about
630 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
631 // so we try sending them the correct control directly
632 if ( cEvent
.GetKind() == kEventMouseDown
&& toplevelWindow
&& control
)
634 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
635 Point clickLocation
= windowMouseLocation
;
636 if ( toplevelWindow
->MacUsesCompositing() )
640 hiPoint
.x
= clickLocation
.h
;
641 hiPoint
.y
= clickLocation
.v
;
642 HIViewConvertPoint( &hiPoint
, (ControlRef
) toplevelWindow
->GetHandle() , control
) ;
643 clickLocation
.h
= (int)hiPoint
.x
;
644 clickLocation
.v
= (int)hiPoint
.y
;
647 HandleControlClick( control
, clickLocation
,
648 modifiers
, (ControlActionUPP
) -1 ) ;
655 static pascal OSStatus
wxMacTopLevelWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
657 OSStatus result
= eventNotHandledErr
;
659 wxMacCarbonEvent
cEvent( event
) ;
661 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
662 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
664 switch( GetEventKind( event
) )
666 case kEventWindowActivated
:
668 toplevelWindow
->MacActivate( cEvent
.GetTicks() , true) ;
669 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, true , toplevelWindow
->GetId());
670 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
671 wxevent
.SetEventObject(toplevelWindow
);
672 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
673 // we still sending an eventNotHandledErr in order to allow for default processing
676 case kEventWindowDeactivated
:
678 toplevelWindow
->MacActivate(cEvent
.GetTicks() , false) ;
679 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, false , toplevelWindow
->GetId());
680 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
681 wxevent
.SetEventObject(toplevelWindow
);
682 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
683 // we still sending an eventNotHandledErr in order to allow for default processing
686 case kEventWindowShown
:
687 toplevelWindow
->Refresh() ;
690 case kEventWindowClose
:
691 toplevelWindow
->Close() ;
694 case kEventWindowBoundsChanged
:
696 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
697 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
698 wxRect
r( newRect
.left
, newRect
.top
, newRect
.right
- newRect
.left
, newRect
.bottom
- newRect
.top
) ;
699 if ( attributes
& kWindowBoundsChangeSizeChanged
)
701 // according to the other ports we handle this within the OS level
702 // resize event, not within a wxSizeEvent
703 wxFrame
*frame
= wxDynamicCast( toplevelWindow
, wxFrame
) ;
707 frame
->PositionStatusBar();
710 frame
->PositionToolBar();
714 wxSizeEvent
event( r
.GetSize() , toplevelWindow
->GetId() ) ;
715 event
.SetEventObject( toplevelWindow
) ;
717 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
718 toplevelWindow
->wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
720 if ( attributes
& kWindowBoundsChangeOriginChanged
)
722 wxMoveEvent
event( r
.GetLeftTop() , toplevelWindow
->GetId() ) ;
723 event
.SetEventObject( toplevelWindow
) ;
724 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
729 case kEventWindowBoundsChanging
:
731 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
732 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
734 if ( (attributes
& kWindowBoundsChangeSizeChanged
) || (attributes
& kWindowBoundsChangeOriginChanged
) )
736 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
737 int left
, top
, right
, bottom
;
738 toplevelWindow
->MacGetContentAreaInset( left
, top
, right
, bottom
) ;
739 wxRect
r( newRect
.left
- left
, newRect
.top
- top
,
740 newRect
.right
- newRect
.left
+ left
+ right
, newRect
.bottom
- newRect
.top
+ top
+ bottom
) ;
741 // this is a EVT_SIZING not a EVT_SIZE type !
742 wxSizeEvent
wxevent( r
, toplevelWindow
->GetId() ) ;
743 wxevent
.SetEventObject( toplevelWindow
) ;
745 if ( toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
746 adjustR
= wxevent
.GetRect() ;
748 if ( toplevelWindow
->GetMaxWidth() != -1 && adjustR
.GetWidth() > toplevelWindow
->GetMaxWidth() )
749 adjustR
.SetWidth( toplevelWindow
->GetMaxWidth() ) ;
750 if ( toplevelWindow
->GetMaxHeight() != -1 && adjustR
.GetHeight() > toplevelWindow
->GetMaxHeight() )
751 adjustR
.SetHeight( toplevelWindow
->GetMaxHeight() ) ;
752 if ( toplevelWindow
->GetMinWidth() != -1 && adjustR
.GetWidth() < toplevelWindow
->GetMinWidth() )
753 adjustR
.SetWidth( toplevelWindow
->GetMinWidth() ) ;
754 if ( toplevelWindow
->GetMinHeight() != -1 && adjustR
.GetHeight() < toplevelWindow
->GetMinHeight() )
755 adjustR
.SetHeight( toplevelWindow
->GetMinHeight() ) ;
756 const Rect adjustedRect
= { adjustR
.y
+ top
, adjustR
.x
+ left
, adjustR
.y
+ adjustR
.height
- bottom
, adjustR
.x
+ adjustR
.width
- right
} ;
757 if ( !EqualRect( &newRect
, &adjustedRect
) )
758 cEvent
.SetParameter
<Rect
>( kEventParamCurrentBounds
, &adjustedRect
) ;
759 toplevelWindow
->wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
771 pascal OSStatus
wxMacTopLevelEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
773 OSStatus result
= eventNotHandledErr
;
775 switch ( GetEventClass( event
) )
777 case kEventClassKeyboard
:
778 result
= KeyboardEventHandler( handler
, event
, data
) ;
780 case kEventClassTextInput
:
781 result
= TextInputEventHandler( handler
, event
, data
) ;
783 case kEventClassWindow
:
784 result
= wxMacTopLevelWindowEventHandler( handler
, event
, data
) ;
786 case kEventClassMouse
:
787 result
= wxMacTopLevelMouseEventHandler( handler
, event
, data
) ;
795 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTopLevelEventHandler
)
797 // ---------------------------------------------------------------------------
798 // wxWindowMac utility functions
799 // ---------------------------------------------------------------------------
801 // Find an item given the Macintosh Window Reference
803 #if KEY_wxList_DEPRECATED
804 wxList
wxWinMacWindowList(wxKEY_INTEGER
);
805 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
807 wxNode
*node
= wxWinMacWindowList
.Find((long)inWindowRef
);
810 return (wxTopLevelWindowMac
*)node
->GetData();
813 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
) ;
814 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
)
816 // adding NULL WindowRef is (first) surely a result of an error and
817 // (secondly) breaks menu command processing
818 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
820 if ( !wxWinMacWindowList
.Find((long)inWindowRef
) )
821 wxWinMacWindowList
.Append((long)inWindowRef
, win
);
824 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
825 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
827 wxWinMacWindowList
.DeleteObject(win
);
831 WX_DECLARE_HASH_MAP(WindowRef
, wxTopLevelWindowMac
*, wxPointerHash
, wxPointerEqual
, MacWindowMap
);
833 static MacWindowMap wxWinMacWindowList
;
835 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
837 MacWindowMap::iterator node
= wxWinMacWindowList
.find(inWindowRef
);
839 return (node
== wxWinMacWindowList
.end()) ? NULL
: node
->second
;
842 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
) ;
843 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
)
845 // adding NULL WindowRef is (first) surely a result of an error and
847 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
849 wxWinMacWindowList
[inWindowRef
] = win
;
852 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
853 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
855 MacWindowMap::iterator it
;
856 for ( it
= wxWinMacWindowList
.begin(); it
!= wxWinMacWindowList
.end(); ++it
)
858 if ( it
->second
== win
)
860 wxWinMacWindowList
.erase(it
);
865 #endif // deprecated wxList
867 // ----------------------------------------------------------------------------
868 // wxTopLevelWindowMac creation
869 // ----------------------------------------------------------------------------
871 wxTopLevelWindowMac
*wxTopLevelWindowMac::s_macDeactivateWindow
= NULL
;
879 void wxTopLevelWindowMac::Init()
882 m_maximizeOnShow
= FALSE
;
884 #if TARGET_API_MAC_OSX
885 if ( UMAGetSystemVersion() >= 0x1030 )
887 m_macUsesCompositing
= TRUE
;
892 m_macUsesCompositing
= FALSE
;
894 m_macEventHandler
= NULL
;
895 m_macFullScreenData
= NULL
;
898 class wxMacDeferredWindowDeleter
: public wxObject
901 wxMacDeferredWindowDeleter( WindowRef windowRef
)
903 m_macWindow
= windowRef
;
905 virtual ~wxMacDeferredWindowDeleter()
907 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
910 WindowRef m_macWindow
;
913 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
915 const wxString
& title
,
919 const wxString
& name
)
924 m_windowStyle
= style
;
928 m_windowId
= id
== -1 ? NewControlId() : id
;
929 wxWindow::SetTitle( title
) ;
931 MacCreateRealWindow( title
, pos
, size
, MacRemoveBordersFromStyle(style
) , name
) ;
933 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
935 if (GetExtraStyle() & wxFRAME_EX_METAL
)
936 MacSetMetalAppearance(true);
938 wxTopLevelWindows
.Append(this);
941 parent
->AddChild(this);
946 wxTopLevelWindowMac::~wxTopLevelWindowMac()
951 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
953 wxPendingDelete
.Append( new wxMacDeferredWindowDeleter( (WindowRef
) m_macWindow
) ) ;
956 if ( m_macEventHandler
)
958 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
959 m_macEventHandler
= NULL
;
962 wxRemoveMacWindowAssociation( this ) ;
964 if ( wxModelessWindows
.Find(this) )
965 wxModelessWindows
.DeleteObject(this);
967 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
969 m_macFullScreenData
= NULL
;
973 // ----------------------------------------------------------------------------
974 // wxTopLevelWindowMac maximize/minimize
975 // ----------------------------------------------------------------------------
977 void wxTopLevelWindowMac::Maximize(bool maximize
)
979 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( (WindowRef
) m_macWindow
) ) ;
980 wxMacWindowClipper
clip (this);
981 ZoomWindow( (WindowRef
)m_macWindow
, maximize
? inZoomOut
: inZoomIn
, false ) ;
984 bool wxTopLevelWindowMac::IsMaximized() const
986 return IsWindowInStandardState( (WindowRef
)m_macWindow
, NULL
, NULL
) ;
989 void wxTopLevelWindowMac::Iconize(bool iconize
)
991 if ( IsWindowCollapsable((WindowRef
)m_macWindow
) )
992 CollapseWindow((WindowRef
)m_macWindow
, iconize
) ;
995 bool wxTopLevelWindowMac::IsIconized() const
997 return IsWindowCollapsed((WindowRef
)m_macWindow
) ;
1000 void wxTopLevelWindowMac::Restore()
1002 // not available on mac
1005 // ----------------------------------------------------------------------------
1006 // wxTopLevelWindowMac misc
1007 // ----------------------------------------------------------------------------
1009 wxPoint
wxTopLevelWindowMac::GetClientAreaOrigin() const
1011 return wxPoint(0,0) ;
1014 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
1017 wxTopLevelWindowBase::SetIcon(icon
);
1020 void wxTopLevelWindowMac::MacSetBackgroundBrush( const wxBrush
&brush
)
1022 wxTopLevelWindowBase::MacSetBackgroundBrush( brush
) ;
1024 if ( m_macBackgroundBrush
.Ok() && m_macBackgroundBrush
.GetStyle() != wxTRANSPARENT
&& m_macBackgroundBrush
.MacGetBrushKind() == kwxMacBrushTheme
)
1026 SetThemeWindowBackground( (WindowRef
) m_macWindow
, m_macBackgroundBrush
.MacGetTheme() , false ) ;
1030 void wxTopLevelWindowMac::MacInstallTopLevelWindowEventHandler()
1032 if ( m_macEventHandler
!= NULL
)
1034 verify_noerr( ::RemoveEventHandler( (EventHandlerRef
) m_macEventHandler
) ) ;
1036 InstallWindowEventHandler(MAC_WXHWND(m_macWindow
), GetwxMacTopLevelEventHandlerUPP(),
1037 GetEventTypeCount(eventList
), eventList
, this, (EventHandlerRef
*)&m_macEventHandler
);
1040 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString
& title
,
1044 const wxString
& name
)
1046 OSStatus err
= noErr
;
1048 m_windowStyle
= style
;
1058 wxRect display
= wxGetClientDisplayRect() ;
1060 if ( x
== wxDefaultPosition
.x
)
1063 if ( y
== wxDefaultPosition
.y
)
1066 int w
= WidthDefault(size
.x
);
1067 int h
= HeightDefault(size
.y
);
1069 ::SetRect(&theBoundsRect
, x
, y
, x
+ w
, y
+ h
);
1071 // translate the window attributes in the appropriate window class and attributes
1073 WindowClass wclass
= 0;
1074 WindowAttributes attr
= kWindowNoAttributes
;
1075 WindowGroupRef group
= NULL
;
1077 if ( HasFlag( wxFRAME_TOOL_WINDOW
) )
1080 HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
1081 HasFlag( wxSYSTEM_MENU
) || HasFlag( wxCAPTION
) ||
1082 HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
)
1085 wclass
= kFloatingWindowClass
;
1086 if ( HasFlag(wxTINY_CAPTION_VERT
) )
1088 attr
|= kWindowSideTitlebarAttribute
;
1093 wclass
= kPlainWindowClass
;
1096 else if ( HasFlag( wxCAPTION
) )
1098 wclass
= kDocumentWindowClass
;
1100 #if defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
1101 else if ( HasFlag( wxFRAME_DRAWER
) )
1103 wclass
= kDrawerWindowClass
;
1104 // we must force compositing on a drawer
1105 m_macUsesCompositing
= TRUE
;
1107 #endif //10.2 and up
1110 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
1111 HasFlag( wxCLOSE_BOX
) || HasFlag( wxSYSTEM_MENU
) )
1113 wclass
= kDocumentWindowClass
;
1117 wclass
= kPlainWindowClass
;
1121 if ( HasFlag( wxMINIMIZE_BOX
) && wclass
!= kPlainWindowClass
)
1123 attr
|= kWindowCollapseBoxAttribute
;
1125 if ( HasFlag( wxMAXIMIZE_BOX
) && wclass
!= kPlainWindowClass
)
1127 attr
|= kWindowFullZoomAttribute
;
1129 if ( HasFlag( wxRESIZE_BORDER
) && wclass
!= kPlainWindowClass
)
1131 attr
|= kWindowResizableAttribute
;
1133 if ( HasFlag( wxCLOSE_BOX
) && wclass
!= kPlainWindowClass
)
1135 attr
|= kWindowCloseBoxAttribute
;
1138 if (UMAGetSystemVersion() >= 0x1000)
1140 // turn on live resizing (OS X only)
1141 attr
|= kWindowLiveResizeAttribute
;
1144 if ( HasFlag(wxSTAY_ON_TOP
) )
1146 group
= GetWindowGroupOfClass(kUtilityWindowClass
) ;
1149 #if TARGET_API_MAC_OSX
1150 if ( m_macUsesCompositing
)
1151 attr
|= kWindowCompositingAttribute
;
1154 if ( HasFlag(wxFRAME_SHAPED
) )
1156 WindowDefSpec customWindowDefSpec
;
1157 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
1158 customWindowDefSpec
.u
.defProc
= NewWindowDefUPP(wxShapedMacWindowDef
);
1160 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
1161 attr
, &theBoundsRect
,
1162 (WindowRef
*) &m_macWindow
);
1166 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
1169 if ( err
== noErr
&& m_macWindow
!= NULL
&& group
!= NULL
)
1170 SetWindowGroup( (WindowRef
) m_macWindow
, group
) ;
1172 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
1174 // the create commands are only for content rect, so we have to set the size again as
1176 SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &theBoundsRect
) ;
1178 wxAssociateWinWithMacWindow( (WindowRef
) m_macWindow
, this ) ;
1179 UMASetWTitle( (WindowRef
) m_macWindow
, title
, m_font
.GetEncoding() ) ;
1180 m_peer
= new wxMacControl(this , true /*isRootControl*/) ;
1181 #if TARGET_API_MAC_OSX
1183 if ( m_macUsesCompositing
)
1185 // There is a bug in 10.2.X for ::GetRootControl returning the window view instead of
1186 // the content view, so we have to retrieve it explicitely
1187 HIViewFindByID( HIViewGetRoot( (WindowRef
) m_macWindow
) , kHIViewWindowContentID
,
1188 m_peer
->GetControlRefAddr() ) ;
1189 if ( !m_peer
->Ok() )
1191 // compatibility mode fallback
1192 GetRootControl( (WindowRef
) m_macWindow
, m_peer
->GetControlRefAddr() ) ;
1197 ::CreateRootControl( (WindowRef
)m_macWindow
, m_peer
->GetControlRefAddr() ) ;
1199 // the root control level handleer
1200 MacInstallEventHandler( (WXWidget
) m_peer
->GetControlRef() ) ;
1202 // the frame window event handler
1203 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow
)) ) ;
1204 MacInstallTopLevelWindowEventHandler() ;
1206 DoSetWindowVariant( m_windowVariant
) ;
1210 if ( HasFlag(wxFRAME_SHAPED
) )
1212 // default shape matches the window size
1213 wxRegion
rgn(0, 0, w
, h
);
1217 wxWindowCreateEvent
event(this);
1218 GetEventHandler()->ProcessEvent(event
);
1221 void wxTopLevelWindowMac::ClearBackground()
1223 wxWindow::ClearBackground() ;
1226 // Raise the window to the top of the Z order
1227 void wxTopLevelWindowMac::Raise()
1229 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1232 // Lower the window to the bottom of the Z order
1233 void wxTopLevelWindowMac::Lower()
1235 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
1239 void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp
)
1241 if(s_macDeactivateWindow
)
1243 wxLogDebug(wxT("Doing delayed deactivation of %p"),s_macDeactivateWindow
);
1244 s_macDeactivateWindow
->MacActivate(timestamp
, false);
1248 void wxTopLevelWindowMac::MacActivate( long timestamp
, bool inIsActivating
)
1250 // wxLogDebug(wxT("TopLevel=%p::MacActivate"),this);
1252 if(s_macDeactivateWindow
==this)
1253 s_macDeactivateWindow
=NULL
;
1254 MacDelayedDeactivation(timestamp
);
1255 MacPropagateHiliteChanged() ;
1258 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
1260 wxWindow::SetTitle( title
) ;
1261 UMASetWTitle( (WindowRef
)m_macWindow
, title
, m_font
.GetEncoding() ) ;
1264 bool wxTopLevelWindowMac::Show(bool show
)
1266 if ( !wxTopLevelWindowBase::Show(show
) )
1271 #if wxUSE_SYSTEM_OPTIONS //code contributed by Ryan Wilcox December 18, 2003
1272 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1) )
1274 ::ShowWindow( (WindowRef
)m_macWindow
);
1279 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowShowTransitionAction
,nil
);
1281 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1282 // as apps expect a size event to occur at this moment
1283 wxSizeEvent
event( GetSize() , m_windowId
);
1284 event
.SetEventObject(this);
1285 GetEventHandler()->ProcessEvent(event
);
1289 #if wxUSE_SYSTEM_OPTIONS
1290 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1) )
1292 ::HideWindow((WindowRef
) m_macWindow
);
1297 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowHideTransitionAction
,nil
);
1301 MacPropagateVisibilityChanged() ;
1306 bool wxTopLevelWindowMac::ShowFullScreen(bool show
, long style
)
1310 FullScreenData
*data
= (FullScreenData
*)m_macFullScreenData
;
1312 data
= new FullScreenData() ;
1314 m_macFullScreenData
= data
;
1315 data
->m_position
= GetPosition() ;
1316 data
->m_size
= GetSize() ;
1318 if ( style
& wxFULLSCREEN_NOMENUBAR
)
1322 int left
, top
, right
, bottom
;
1323 wxRect client
= wxGetClientDisplayRect() ;
1332 MacGetContentAreaInset( left
, top
, right
, bottom
) ;
1334 if ( style
& wxFULLSCREEN_NOCAPTION
)
1339 if ( style
& wxFULLSCREEN_NOBORDER
)
1345 if ( style
& wxFULLSCREEN_NOTOOLBAR
)
1349 if ( style
& wxFULLSCREEN_NOSTATUSBAR
)
1353 SetSize( x
, y
, w
, h
) ;
1358 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1359 SetPosition( data
->m_position
) ;
1360 SetSize( data
->m_size
) ;
1362 m_macFullScreenData
= NULL
;
1367 bool wxTopLevelWindowMac::IsFullScreen() const
1369 return m_macFullScreenData
!= NULL
;
1372 // we are still using coordinates of the content view, todo switch to structure bounds
1374 void wxTopLevelWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1378 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &structure
) ;
1379 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowContentRgn
, &content
) ;
1381 left
= content
.left
- structure
.left
;
1382 top
= content
.top
- structure
.top
;
1383 right
= structure
.right
- content
.right
;
1384 bottom
= structure
.bottom
- content
.bottom
;
1387 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1389 m_cachedClippedRectValid
= false ;
1390 Rect bounds
= { y
, x
, y
+ height
, x
+ width
} ;
1391 verify_noerr(SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1392 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1395 void wxTopLevelWindowMac::DoGetPosition( int *x
, int *y
) const
1398 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1399 if(x
) *x
= bounds
.left
;
1400 if(y
) *y
= bounds
.top
;
1402 void wxTopLevelWindowMac::DoGetSize( int *width
, int *height
) const
1405 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1406 if(width
) *width
= bounds
.right
- bounds
.left
;
1407 if(height
) *height
= bounds
.bottom
- bounds
.top
;
1410 void wxTopLevelWindowMac::DoGetClientSize( int *width
, int *height
) const
1413 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowContentRgn
, &bounds
)) ;
1414 if(width
) *width
= bounds
.right
- bounds
.left
;
1415 if(height
) *height
= bounds
.bottom
- bounds
.top
;
1418 void wxTopLevelWindowMac::MacSetMetalAppearance( bool set
)
1420 #if TARGET_API_MAC_OSX
1421 wxASSERT_MSG( m_macUsesCompositing
,
1422 wxT("Cannot set metal appearance on a non-compositing window") ) ;
1424 MacChangeWindowAttributes( set
? kWindowMetalAttribute
: kWindowNoAttributes
,
1425 set
? kWindowNoAttributes
: kWindowMetalAttribute
) ;
1429 bool wxTopLevelWindowMac::MacGetMetalAppearance() const
1431 #if TARGET_API_MAC_OSX
1432 return MacGetWindowAttributes() & kWindowMetalAttribute
;
1438 void wxTopLevelWindowMac::MacChangeWindowAttributes( wxUint32 attributesToSet
, wxUint32 attributesToClear
)
1440 ChangeWindowAttributes ( (WindowRef
) m_macWindow
, attributesToSet
, attributesToClear
) ;
1443 wxUint32
wxTopLevelWindowMac::MacGetWindowAttributes() const
1446 GetWindowAttributes((WindowRef
) m_macWindow
, &attr
) ;
1450 void wxTopLevelWindowMac::MacPerformUpdates()
1452 #if TARGET_API_MAC_OSX
1453 if ( m_macUsesCompositing
)
1455 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1456 // for composited windows this also triggers a redraw of all
1457 // invalid views in the window
1458 if( UMAGetSystemVersion() >= 0x1030 )
1459 HIWindowFlush((WindowRef
) m_macWindow
) ;
1463 // the only way to trigger the redrawing on earlier systems is to call
1466 EventRef currentEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
1467 UInt32 currentEventClass
= 0 ;
1468 UInt32 currentEventKind
= 0 ;
1469 if ( currentEvent
!= NULL
)
1471 currentEventClass
= ::GetEventClass( currentEvent
) ;
1472 currentEventKind
= ::GetEventKind( currentEvent
) ;
1474 if ( currentEventClass
!= kEventClassMenu
)
1476 // when tracking a menu, strange redraw errors occur if we flush now, so leave..
1478 OSStatus status
= noErr
;
1479 status
= ReceiveNextEvent( 0 , NULL
, kEventDurationNoWait
, false , &theEvent
) ;
1486 BeginUpdate( (WindowRef
) m_macWindow
) ;
1488 RgnHandle updateRgn
= NewRgn();
1491 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), updateRgn
);
1492 UpdateControls( (WindowRef
)m_macWindow
, updateRgn
) ;
1493 // if ( !EmptyRgn( updateRgn ) )
1494 // MacDoRedraw( updateRgn , 0 , true) ;
1495 DisposeRgn( updateRgn
);
1497 EndUpdate( (WindowRef
)m_macWindow
) ;
1498 QDFlushPortBuffer( GetWindowPort( (WindowRef
)m_macWindow
) , NULL
) ;
1502 // Attracts the users attention to this window if the application is
1503 // inactive (should be called when a background event occurs)
1505 static pascal void wxMacNMResponse( NMRecPtr ptr
)
1508 DisposePtr( (Ptr
) ptr
) ;
1512 void wxTopLevelWindowMac::RequestUserAttention(int flags
)
1514 NMRecPtr notificationRequest
= (NMRecPtr
) NewPtr( sizeof( NMRec
) ) ;
1515 static wxMacNMUPP
nmupp( wxMacNMResponse
)
1517 memset( notificationRequest
, 0 , sizeof(*notificationRequest
) ) ;
1518 notificationRequest
->qType
= nmType
;
1519 notificationRequest
->nmMark
= 1 ;
1520 notificationRequest
->nmIcon
= 0 ;
1521 notificationRequest
->nmSound
= 0 ;
1522 notificationRequest
->nmStr
= NULL
;
1523 notificationRequest
->nmResp
= nmupp
;
1524 verify_noerr( NMInstall( notificationRequest
) ) ;
1527 // ---------------------------------------------------------------------------
1528 // Shape implementation
1529 // ---------------------------------------------------------------------------
1532 bool wxTopLevelWindowMac::SetShape(const wxRegion
& region
)
1534 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), FALSE
,
1535 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1537 // The empty region signifies that the shape should be removed from the
1539 if ( region
.IsEmpty() )
1541 wxSize sz
= GetClientSize();
1542 wxRegion
rgn(0, 0, sz
.x
, sz
.y
);
1543 return SetShape(rgn
);
1546 // Make a copy of the region
1547 RgnHandle shapeRegion
= NewRgn();
1548 CopyRgn( (RgnHandle
)region
.GetWXHRGN(), shapeRegion
);
1550 // Dispose of any shape region we may already have
1551 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
)MacGetWindowRef() );
1555 // Save the region so we can use it later
1556 SetWRefCon((WindowRef
)MacGetWindowRef(), (SInt32
)shapeRegion
);
1558 // Tell the window manager that the window has changed shape
1559 ReshapeCustomWindow((WindowRef
)MacGetWindowRef());
1563 // ---------------------------------------------------------------------------
1564 // Support functions for shaped windows, based on Apple's CustomWindow sample at
1565 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1566 // ---------------------------------------------------------------------------
1568 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
1570 GetWindowPortBounds(window
, inRect
);
1571 Point pt
= {inRect
->left
, inRect
->top
};
1572 QDLocalToGlobalPoint( GetWindowPort(window
) , &pt
) ;
1574 inRect
->left
= pt
.h
;
1575 inRect
->bottom
+= pt
.v
;
1576 inRect
->right
+= pt
.h
;
1580 static SInt32
wxShapedMacWindowGetFeatures(WindowRef window
, SInt32 param
)
1582 /*------------------------------------------------------
1583 Define which options your custom window supports.
1584 --------------------------------------------------------*/
1585 //just enable everything for our demo
1586 *(OptionBits
*)param
=//kWindowCanGrow|
1588 //kWindowCanCollapse|
1589 //kWindowCanGetWindowRegion|
1590 //kWindowHasTitleBar|
1591 //kWindowSupportsDragHilite|
1592 kWindowCanDrawInCurrentPort
|
1593 //kWindowCanMeasureTitle|
1594 kWindowWantsDisposeAtProcessDeath
|
1595 kWindowSupportsGetGrowImageRegion
|
1596 kWindowDefSupportsColorGrafPort
;
1600 // The content region is left as a rectangle matching the window size, this is
1601 // so the origin in the paint event, and etc. still matches what the
1602 // programmer expects.
1603 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1606 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow(window
);
1610 wxShapedMacWindowGetPos(window
, &r
) ;
1611 RectRgn( rgn
, &r
) ;
1615 // The structure region is set to the shape given to the SetShape method.
1616 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1618 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1624 wxShapedMacWindowGetPos(window
, &windowRect
); //how big is the window
1625 CopyRgn(cachedRegion
, rgn
); //make a copy of our cached region
1626 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1627 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1633 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1635 GetWindowRegionPtr rgnRec
=(GetWindowRegionPtr
)param
;
1637 switch(rgnRec
->regionCode
)
1639 case kWindowStructureRgn
:
1640 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1642 case kWindowContentRgn
:
1643 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1646 SetEmptyRgn(rgnRec
->winRgn
);
1653 static SInt32
wxShapedMacWindowHitTest(WindowRef window
,SInt32 param
)
1655 /*------------------------------------------------------
1656 Determine the region of the window which was hit
1657 --------------------------------------------------------*/
1659 static RgnHandle tempRgn
=nil
;
1664 SetPt(&hitPoint
,LoWord(param
),HiWord(param
));//get the point clicked
1666 //Mac OS 8.5 or later
1667 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1668 if (PtInRgn(hitPoint
, tempRgn
)) //in window content region?
1671 return wNoHit
;//no significant area was hit.
1675 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
)
1679 case kWindowMsgHitTest
:
1680 return wxShapedMacWindowHitTest(window
,param
);
1682 case kWindowMsgGetFeatures
:
1683 return wxShapedMacWindowGetFeatures(window
,param
);
1685 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1686 case kWindowMsgGetRegion
:
1687 return wxShapedMacWindowGetRegion(window
,param
);
1693 // ---------------------------------------------------------------------------