1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/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 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/toplevel.h"
32 #include "wx/string.h"
35 #include "wx/settings.h"
36 #include "wx/strconv.h"
37 #include "wx/control.h"
40 #include "wx/mac/uma.h"
41 #include "wx/mac/aga.h"
42 #include "wx/tooltip.h"
45 #if wxUSE_SYSTEM_OPTIONS
46 #include "wx/sysopt.h"
50 #include <ToolUtils.h>
54 #include "wx/mac/private.h"
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 // trace mask for activation tracing messages
61 static const wxChar
*TRACE_ACTIVATE
= _T("activation");
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // list of all frames and modeless dialogs
68 wxWindowList wxModelessWindows
;
70 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
);
72 // ============================================================================
73 // wxTopLevelWindowMac implementation
74 // ============================================================================
76 BEGIN_EVENT_TABLE(wxTopLevelWindowMac
, wxTopLevelWindowBase
)
80 // ---------------------------------------------------------------------------
82 // ---------------------------------------------------------------------------
84 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
86 static const EventTypeSpec eventList
[] =
88 // TODO: remove control related event like key and mouse (except for WindowLeave events)
90 { kEventClassKeyboard
, kEventRawKeyDown
} ,
91 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
92 { kEventClassKeyboard
, kEventRawKeyUp
} ,
93 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
95 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
96 { kEventClassTextInput
, kEventTextInputUpdateActiveInputArea
} ,
98 { kEventClassWindow
, kEventWindowShown
} ,
99 { kEventClassWindow
, kEventWindowActivated
} ,
100 { kEventClassWindow
, kEventWindowDeactivated
} ,
101 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
102 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
103 { kEventClassWindow
, kEventWindowClose
} ,
105 // we have to catch these events on the toplevel window level,
106 // as controls don't get the raw mouse events anymore
108 { kEventClassMouse
, kEventMouseDown
} ,
109 { kEventClassMouse
, kEventMouseUp
} ,
110 { kEventClassMouse
, kEventMouseWheelMoved
} ,
111 { kEventClassMouse
, kEventMouseMoved
} ,
112 { kEventClassMouse
, kEventMouseDragged
} ,
115 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
117 OSStatus result
= eventNotHandledErr
;
118 // call DoFindFocus instead of FindFocus, because for Composite Windows(like WxGenericListCtrl)
119 // FindFocus does not return the actual focus window, but the enclosing window
120 wxWindow
* focus
= wxWindow::DoFindFocus();
122 focus
= (wxTopLevelWindowMac
*) data
;
124 unsigned char charCode
;
132 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
135 UInt32 dataSize
= 0 ;
136 if ( GetEventParameter( event
, kEventParamKeyUnicodes
, typeUnicodeText
, NULL
, 0 , &dataSize
, NULL
) == noErr
)
139 int numChars
= dataSize
/ sizeof( UniChar
) + 1;
141 UniChar
* charBuf
= buf
;
143 if ( numChars
* 2 > 4 )
144 charBuf
= new UniChar
[ numChars
] ;
145 GetEventParameter( event
, kEventParamKeyUnicodes
, typeUnicodeText
, NULL
, dataSize
, NULL
, charBuf
) ;
146 charBuf
[ numChars
- 1 ] = 0;
148 #if SIZEOF_WCHAR_T == 2
149 uniChar
= charBuf
[0] ;
151 wxMBConvUTF16 converter
;
152 converter
.MB2WC( uniChar
, (const char*)charBuf
, 2 ) ;
155 if ( numChars
* 2 > 4 )
160 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, sizeof(char), NULL
, &charCode
);
161 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
162 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
163 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
, sizeof(Point
), NULL
, &point
);
165 UInt32 message
= (keyCode
<< 8) + charCode
;
166 switch ( GetEventKind( event
) )
168 case kEventRawKeyRepeat
:
169 case kEventRawKeyDown
:
171 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
172 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
173 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
174 if ( /* focus && */ wxTheApp
->MacSendKeyDownEvent(
175 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChar
[0] ) )
179 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
183 case kEventRawKeyUp
:
184 if ( /* focus && */ wxTheApp
->MacSendKeyUpEvent(
185 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChar
[0] ) )
191 case kEventRawKeyModifiersChanged
:
193 wxKeyEvent
event(wxEVT_KEY_DOWN
);
195 event
.m_shiftDown
= modifiers
& shiftKey
;
196 event
.m_controlDown
= modifiers
& controlKey
;
197 event
.m_altDown
= modifiers
& optionKey
;
198 event
.m_metaDown
= modifiers
& cmdKey
;
203 event
.m_uniChar
= uniChar
[0] ;
206 event
.SetTimestamp(when
);
207 event
.SetEventObject(focus
);
209 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & controlKey
)
211 event
.m_keyCode
= WXK_CONTROL
;
212 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
213 focus
->GetEventHandler()->ProcessEvent( event
) ;
215 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & shiftKey
)
217 event
.m_keyCode
= WXK_SHIFT
;
218 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
219 focus
->GetEventHandler()->ProcessEvent( event
) ;
221 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & optionKey
)
223 event
.m_keyCode
= WXK_ALT
;
224 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
225 focus
->GetEventHandler()->ProcessEvent( event
) ;
227 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & cmdKey
)
229 event
.m_keyCode
= WXK_COMMAND
;
230 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
231 focus
->GetEventHandler()->ProcessEvent( event
) ;
234 wxApp::s_lastModifiers
= modifiers
;
245 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
246 // for windows that we didn't create (like eg Scrollbars in a databrowser), or for controls where we did not handle the
249 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
251 wxWindow
* g_MacLastWindow
= NULL
;
253 static EventMouseButton lastButton
= 0 ;
255 static void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
)
257 UInt32 modifiers
= cEvent
.GetParameter
<UInt32
>(kEventParamKeyModifiers
, typeUInt32
) ;
258 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
260 // this parameter are not given for all events
261 EventMouseButton button
= 0 ;
262 UInt32 clickCount
= 0 ;
263 cEvent
.GetParameter
<EventMouseButton
>( kEventParamMouseButton
, typeMouseButton
, &button
) ;
264 cEvent
.GetParameter
<UInt32
>( kEventParamClickCount
, typeUInt32
, &clickCount
) ;
266 wxevent
.m_x
= screenMouseLocation
.h
;
267 wxevent
.m_y
= screenMouseLocation
.v
;
268 wxevent
.m_shiftDown
= modifiers
& shiftKey
;
269 wxevent
.m_controlDown
= modifiers
& controlKey
;
270 wxevent
.m_altDown
= modifiers
& optionKey
;
271 wxevent
.m_metaDown
= modifiers
& cmdKey
;
272 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
274 // a control click is interpreted as a right click
275 if ( button
== kEventMouseButtonPrimary
&& (modifiers
& controlKey
) )
276 button
= kEventMouseButtonSecondary
;
278 // otherwise we report double clicks by connecting a left click with a ctrl-left click
279 if ( clickCount
> 1 && button
!= lastButton
)
282 // we must make sure that our synthetic 'right' button corresponds in
283 // mouse down, moved and mouse up, and does not deliver a right down and left up
285 if ( cEvent
.GetKind() == kEventMouseDown
)
286 lastButton
= button
;
290 else if ( lastButton
)
291 button
= lastButton
;
293 // determine the correct down state, wx does not want a 'down' for a mouseUp event,
294 // while mac delivers this button
295 if ( button
!= 0 && cEvent
.GetKind() != kEventMouseUp
)
299 case kEventMouseButtonPrimary
:
300 wxevent
.m_leftDown
= true ;
303 case kEventMouseButtonSecondary
:
304 wxevent
.m_rightDown
= true ;
307 case kEventMouseButtonTertiary
:
308 wxevent
.m_middleDown
= true ;
316 // translate into wx types
317 switch ( cEvent
.GetKind() )
319 case kEventMouseDown
:
322 case kEventMouseButtonPrimary
:
323 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
) ;
326 case kEventMouseButtonSecondary
:
327 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
) ;
330 case kEventMouseButtonTertiary
:
331 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
) ;
342 case kEventMouseButtonPrimary
:
343 wxevent
.SetEventType( wxEVT_LEFT_UP
) ;
346 case kEventMouseButtonSecondary
:
347 wxevent
.SetEventType( wxEVT_RIGHT_UP
) ;
350 case kEventMouseButtonTertiary
:
351 wxevent
.SetEventType( wxEVT_MIDDLE_UP
) ;
359 case kEventMouseWheelMoved
:
361 wxevent
.SetEventType( wxEVT_MOUSEWHEEL
) ;
363 // EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
364 SInt32 delta
= cEvent
.GetParameter
<SInt32
>(kEventParamMouseWheelDelta
, typeLongInteger
) ;
366 wxevent
.m_wheelRotation
= delta
;
367 wxevent
.m_wheelDelta
= 1;
368 wxevent
.m_linesPerAction
= 1;
373 wxevent
.SetEventType( wxEVT_MOTION
) ;
378 ControlRef
wxMacFindSubControl( wxTopLevelWindowMac
* toplevelWindow
, const Point
& location
, ControlRef superControl
, ControlPartCode
*outPart
)
382 UInt16 childrenCount
= 0 ;
383 ControlHandle sibling
;
385 OSStatus err
= CountSubControls( superControl
, &childrenCount
) ;
386 if ( err
== errControlIsNotEmbedder
)
389 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
391 for ( UInt16 i
= childrenCount
; i
>=1 ; --i
)
393 err
= GetIndexedSubControl( superControl
, i
, & sibling
) ;
394 if ( err
== errControlIsNotEmbedder
)
397 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
398 if ( IsControlVisible( sibling
) )
400 UMAGetControlBoundsInWindowCoords( sibling
, &r
) ;
401 if ( MacPtInRect( location
, &r
) )
403 ControlHandle child
= wxMacFindSubControl( toplevelWindow
, location
, sibling
, outPart
) ;
410 Point testLocation
= location
;
412 if ( toplevelWindow
&& toplevelWindow
->MacUsesCompositing() )
414 testLocation
.h
-= r
.left
;
415 testLocation
.v
-= r
.top
;
418 *outPart
= TestControl( sibling
, testLocation
) ;
430 ControlRef
wxMacFindControlUnderMouse( wxTopLevelWindowMac
* toplevelWindow
, const Point
& location
, WindowRef window
, ControlPartCode
*outPart
)
432 #if TARGET_API_MAC_OSX
433 if ( UMAGetSystemVersion() >= 0x1030 && ( toplevelWindow
== 0 || toplevelWindow
->MacUsesCompositing() ) )
434 return FindControlUnderMouse( location
, window
, outPart
) ;
437 ControlRef rootControl
= NULL
;
438 verify_noerr( GetRootControl( window
, &rootControl
) ) ;
440 return wxMacFindSubControl( toplevelWindow
, location
, rootControl
, outPart
) ;
443 #define NEW_CAPTURE_HANDLING 1
445 pascal OSStatus
wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
447 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
449 OSStatus result
= eventNotHandledErr
;
451 wxMacCarbonEvent
cEvent( event
) ;
453 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
454 Point windowMouseLocation
= screenMouseLocation
;
456 WindowRef window
= NULL
;
457 short windowPart
= ::FindWindow(screenMouseLocation
, &window
);
459 wxWindow
* currentMouseWindow
= NULL
;
460 ControlRef control
= NULL
;
462 #if NEW_CAPTURE_HANDLING
463 if ( wxApp::s_captureWindow
)
465 window
= (WindowRef
) wxApp::s_captureWindow
->MacGetTopLevelWindowRef() ;
466 windowPart
= inContent
;
472 QDGlobalToLocalPoint( UMAGetWindowPort(window
) , &windowMouseLocation
) ;
474 if ( wxApp::s_captureWindow
475 #if !NEW_CAPTURE_HANDLING
476 && wxApp::s_captureWindow
->MacGetTopLevelWindowRef() == (WXWindow
) window
&& windowPart
== inContent
480 currentMouseWindow
= wxApp::s_captureWindow
;
482 else if ( (IsWindowActive(window
) && windowPart
== inContent
) )
484 ControlPartCode part
;
485 control
= wxMacFindControlUnderMouse( toplevelWindow
, windowMouseLocation
, window
, &part
) ;
486 // if there is no control below the mouse position, send the event to the toplevel window itself
489 currentMouseWindow
= (wxWindow
*) data
;
493 currentMouseWindow
= wxFindControlFromMacControl( control
) ;
494 if ( currentMouseWindow
== NULL
&& cEvent
.GetKind() == kEventMouseMoved
)
497 // for wxToolBar to function we have to send certaint events to it
498 // instead of its children (wxToolBarTools)
500 GetSuperControl(control
, &parent
);
501 wxWindow
*wxParent
= wxFindControlFromMacControl( parent
) ;
502 if ( wxParent
&& wxParent
->IsKindOf( CLASSINFO( wxToolBar
) ) )
503 currentMouseWindow
= wxParent
;
508 // disabled windows must not get any input messages
509 if ( currentMouseWindow
&& !currentMouseWindow
->MacIsReallyEnabled() )
510 currentMouseWindow
= NULL
;
514 wxMouseEvent
wxevent(wxEVT_LEFT_DOWN
);
515 SetupMouseEvent( wxevent
, cEvent
) ;
517 // handle all enter / leave events
519 if ( currentMouseWindow
!= g_MacLastWindow
)
521 if ( g_MacLastWindow
)
523 wxMouseEvent
eventleave(wxevent
);
524 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
525 g_MacLastWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
526 eventleave
.SetEventObject( g_MacLastWindow
) ;
527 wxevent
.SetId( g_MacLastWindow
->GetId() ) ;
530 wxToolTip::RelayEvent( g_MacLastWindow
, eventleave
);
533 g_MacLastWindow
->GetEventHandler()->ProcessEvent(eventleave
);
536 if ( currentMouseWindow
)
538 wxMouseEvent
evententer(wxevent
);
539 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
540 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
541 evententer
.SetEventObject( currentMouseWindow
) ;
542 wxevent
.SetId( currentMouseWindow
->GetId() ) ;
545 wxToolTip::RelayEvent( currentMouseWindow
, evententer
);
548 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
551 g_MacLastWindow
= currentMouseWindow
;
554 if ( windowPart
== inMenuBar
)
556 // special case menu bar, as we are having a low-level runloop we must do it ourselves
557 if ( cEvent
.GetKind() == kEventMouseDown
)
559 ::MenuSelect( screenMouseLocation
) ;
563 else if ( currentMouseWindow
)
565 wxWindow
*currentMouseWindowParent
= currentMouseWindow
->GetParent();
567 currentMouseWindow
->ScreenToClient( &wxevent
.m_x
, &wxevent
.m_y
) ;
569 wxevent
.SetEventObject( currentMouseWindow
) ;
570 wxevent
.SetId( currentMouseWindow
->GetId() ) ;
572 // make tooltips current
575 if ( wxevent
.GetEventType() == wxEVT_MOTION
)
576 wxToolTip::RelayEvent( currentMouseWindow
, wxevent
);
579 if ( currentMouseWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
581 if ((currentMouseWindowParent
!= NULL
) &&
582 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
583 currentMouseWindow
= NULL
;
589 // if the user code did _not_ handle the event, then perform the
590 // default processing
591 if ( wxevent
.GetEventType() == wxEVT_LEFT_DOWN
)
593 // ... that is set focus to this window
594 if (currentMouseWindow
->AcceptsFocus() && wxWindow::FindFocus()!=currentMouseWindow
)
595 currentMouseWindow
->SetFocus();
598 ControlPartCode dummyPart
;
599 // if built-in find control is finding the wrong control (ie static box instead of overlaid
600 // button, we cannot let the standard handler do its job, but must handle manually
602 if ( ( cEvent
.GetKind() == kEventMouseDown
)
605 (FindControlUnderMouse(windowMouseLocation
, window
, &dummyPart
) !=
606 wxMacFindControlUnderMouse( toplevelWindow
, windowMouseLocation
, window
, &dummyPart
) )
610 if ( currentMouseWindow
->MacIsReallyEnabled() )
612 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
613 Point clickLocation
= windowMouseLocation
;
615 if ( toplevelWindow
->MacUsesCompositing() )
616 currentMouseWindow
->MacRootWindowToWindow( &clickLocation
.h
, &clickLocation
.v
) ;
618 HandleControlClick( (ControlRef
) currentMouseWindow
->GetHandle() , clickLocation
,
619 modifiers
, (ControlActionUPP
) -1 ) ;
621 if ((currentMouseWindowParent
!= NULL
) &&
622 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
624 currentMouseWindow
= NULL
;
632 if ( cEvent
.GetKind() == kEventMouseUp
&& wxApp::s_captureWindow
)
634 wxApp::s_captureWindow
= NULL
;
640 wxWindow
* cursorTarget
= currentMouseWindow
;
641 wxPoint
cursorPoint( wxevent
.m_x
, wxevent
.m_y
) ;
643 while ( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
645 cursorTarget
= cursorTarget
->GetParent() ;
647 cursorPoint
+= cursorTarget
->GetPosition();
651 else // currentMouseWindow == NULL
653 // don't mess with controls we don't know about
654 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
655 // so we try sending them the correct control directly
656 if ( cEvent
.GetKind() == kEventMouseDown
&& toplevelWindow
&& control
)
658 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
659 Point clickLocation
= windowMouseLocation
;
660 #if TARGET_API_MAC_OSX
661 if ( toplevelWindow
->MacUsesCompositing() )
664 hiPoint
.x
= clickLocation
.h
;
665 hiPoint
.y
= clickLocation
.v
;
666 HIViewConvertPoint( &hiPoint
, (ControlRef
) toplevelWindow
->GetHandle() , control
) ;
667 clickLocation
.h
= (int)hiPoint
.x
;
668 clickLocation
.v
= (int)hiPoint
.y
;
670 #endif // TARGET_API_MAC_OSX
672 HandleControlClick( control
, clickLocation
, modifiers
, (ControlActionUPP
) -1 ) ;
680 static pascal OSStatus
wxMacTopLevelWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
682 OSStatus result
= eventNotHandledErr
;
684 wxMacCarbonEvent
cEvent( event
) ;
686 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
687 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
689 switch ( GetEventKind( event
) )
691 case kEventWindowActivated
:
693 toplevelWindow
->MacActivate( cEvent
.GetTicks() , true) ;
694 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, true , toplevelWindow
->GetId());
695 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
696 wxevent
.SetEventObject(toplevelWindow
);
697 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
698 // we still sending an eventNotHandledErr in order to allow for default processing
702 case kEventWindowDeactivated
:
704 toplevelWindow
->MacActivate(cEvent
.GetTicks() , false) ;
705 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, false , toplevelWindow
->GetId());
706 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
707 wxevent
.SetEventObject(toplevelWindow
);
708 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
709 // we still sending an eventNotHandledErr in order to allow for default processing
713 case kEventWindowShown
:
714 toplevelWindow
->Refresh() ;
718 case kEventWindowClose
:
719 toplevelWindow
->Close() ;
723 case kEventWindowBoundsChanged
:
725 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
, typeUInt32
) ;
726 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
727 wxRect
r( newRect
.left
, newRect
.top
, newRect
.right
- newRect
.left
, newRect
.bottom
- newRect
.top
) ;
728 if ( attributes
& kWindowBoundsChangeSizeChanged
)
730 // according to the other ports we handle this within the OS level
731 // resize event, not within a wxSizeEvent
732 wxFrame
*frame
= wxDynamicCast( toplevelWindow
, wxFrame
) ;
735 frame
->PositionBars();
738 wxSizeEvent
event( r
.GetSize() , toplevelWindow
->GetId() ) ;
739 event
.SetEventObject( toplevelWindow
) ;
741 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
742 toplevelWindow
->wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
745 if ( attributes
& kWindowBoundsChangeOriginChanged
)
747 wxMoveEvent
event( r
.GetLeftTop() , toplevelWindow
->GetId() ) ;
748 event
.SetEventObject( toplevelWindow
) ;
749 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
756 case kEventWindowBoundsChanging
:
758 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
759 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
761 if ( (attributes
& kWindowBoundsChangeSizeChanged
) || (attributes
& kWindowBoundsChangeOriginChanged
) )
763 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
764 int left
, top
, right
, bottom
;
765 toplevelWindow
->MacGetContentAreaInset( left
, top
, right
, bottom
) ;
770 newRect
.right
- newRect
.left
+ left
+ right
,
771 newRect
.bottom
- newRect
.top
+ top
+ bottom
) ;
773 // this is a EVT_SIZING not a EVT_SIZE type !
774 wxSizeEvent
wxevent( r
, toplevelWindow
->GetId() ) ;
775 wxevent
.SetEventObject( toplevelWindow
) ;
777 if ( toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
778 adjustR
= wxevent
.GetRect() ;
780 if ( toplevelWindow
->GetMaxWidth() != -1 && adjustR
.GetWidth() > toplevelWindow
->GetMaxWidth() )
781 adjustR
.SetWidth( toplevelWindow
->GetMaxWidth() ) ;
782 if ( toplevelWindow
->GetMaxHeight() != -1 && adjustR
.GetHeight() > toplevelWindow
->GetMaxHeight() )
783 adjustR
.SetHeight( toplevelWindow
->GetMaxHeight() ) ;
784 if ( toplevelWindow
->GetMinWidth() != -1 && adjustR
.GetWidth() < toplevelWindow
->GetMinWidth() )
785 adjustR
.SetWidth( toplevelWindow
->GetMinWidth() ) ;
786 if ( toplevelWindow
->GetMinHeight() != -1 && adjustR
.GetHeight() < toplevelWindow
->GetMinHeight() )
787 adjustR
.SetHeight( toplevelWindow
->GetMinHeight() ) ;
788 const Rect adjustedRect
= { adjustR
.y
+ top
, adjustR
.x
+ left
, adjustR
.y
+ adjustR
.height
- bottom
, adjustR
.x
+ adjustR
.width
- right
} ;
789 if ( !EqualRect( &newRect
, &adjustedRect
) )
790 cEvent
.SetParameter
<Rect
>( kEventParamCurrentBounds
, &adjustedRect
) ;
791 toplevelWindow
->wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
805 // mix this in from window.cpp
806 pascal OSStatus
wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
) ;
808 pascal OSStatus
wxMacTopLevelEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
810 OSStatus result
= eventNotHandledErr
;
812 switch ( GetEventClass( event
) )
814 case kEventClassTextInput
:
815 result
= wxMacUnicodeTextEventHandler( handler
, event
, data
) ;
818 case kEventClassKeyboard
:
819 result
= KeyboardEventHandler( handler
, event
, data
) ;
822 case kEventClassWindow
:
823 result
= wxMacTopLevelWindowEventHandler( handler
, event
, data
) ;
826 case kEventClassMouse
:
827 result
= wxMacTopLevelMouseEventHandler( handler
, event
, data
) ;
837 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTopLevelEventHandler
)
839 // ---------------------------------------------------------------------------
840 // wxWindowMac utility functions
841 // ---------------------------------------------------------------------------
843 // Find an item given the Macintosh Window Reference
845 WX_DECLARE_HASH_MAP(WindowRef
, wxTopLevelWindowMac
*, wxPointerHash
, wxPointerEqual
, MacWindowMap
);
847 static MacWindowMap wxWinMacWindowList
;
849 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
851 MacWindowMap::iterator node
= wxWinMacWindowList
.find(inWindowRef
);
853 return (node
== wxWinMacWindowList
.end()) ? NULL
: node
->second
;
856 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
) ;
857 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
)
859 // adding NULL WindowRef is (first) surely a result of an error and
861 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
863 wxWinMacWindowList
[inWindowRef
] = win
;
866 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
867 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
869 MacWindowMap::iterator it
;
870 for ( it
= wxWinMacWindowList
.begin(); it
!= wxWinMacWindowList
.end(); ++it
)
872 if ( it
->second
== win
)
874 wxWinMacWindowList
.erase(it
);
880 // ----------------------------------------------------------------------------
881 // wxTopLevelWindowMac creation
882 // ----------------------------------------------------------------------------
884 wxTopLevelWindowMac
*wxTopLevelWindowMac::s_macDeactivateWindow
= NULL
;
890 bool m_wasResizable
;
894 void wxTopLevelWindowMac::Init()
897 m_maximizeOnShow
= false;
900 #if TARGET_API_MAC_OSX
901 m_macUsesCompositing
= ( UMAGetSystemVersion() >= 0x1030 );
903 m_macUsesCompositing
= false;
906 m_macEventHandler
= NULL
;
907 m_macFullScreenData
= NULL
;
910 class wxMacDeferredWindowDeleter
: public wxObject
913 wxMacDeferredWindowDeleter( WindowRef windowRef
)
915 m_macWindow
= windowRef
;
918 virtual ~wxMacDeferredWindowDeleter()
920 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
924 WindowRef m_macWindow
;
927 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
929 const wxString
& title
,
933 const wxString
& name
)
938 m_windowStyle
= style
;
942 m_windowId
= id
== -1 ? NewControlId() : id
;
943 wxWindow::SetLabel( title
) ;
945 MacCreateRealWindow( title
, pos
, size
, MacRemoveBordersFromStyle(style
) , name
) ;
947 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
949 if (GetExtraStyle() & wxFRAME_EX_METAL
)
950 MacSetMetalAppearance(true);
952 wxTopLevelWindows
.Append(this);
955 parent
->AddChild(this);
960 wxTopLevelWindowMac::~wxTopLevelWindowMac()
965 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
967 wxPendingDelete
.Append( new wxMacDeferredWindowDeleter( (WindowRef
) m_macWindow
) ) ;
970 if ( m_macEventHandler
)
972 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
973 m_macEventHandler
= NULL
;
976 wxRemoveMacWindowAssociation( this ) ;
978 if ( wxModelessWindows
.Find(this) )
979 wxModelessWindows
.DeleteObject(this);
981 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
983 m_macFullScreenData
= NULL
;
987 // ----------------------------------------------------------------------------
988 // wxTopLevelWindowMac maximize/minimize
989 // ----------------------------------------------------------------------------
991 void wxTopLevelWindowMac::Maximize(bool maximize
)
993 // TODO: check if this is still necessary
995 wxMacPortStateHelper
help( (GrafPtr
)GetWindowPort( (WindowRef
)m_macWindow
) ) ;
996 wxMacWindowClipper
clip( this );
999 if ( !IsWindowInStandardState( (WindowRef
)m_macWindow
, NULL
, NULL
) )
1003 GetWindowBounds((WindowRef
)m_macWindow
, kWindowGlobalPortRgn
, &rect
);
1004 SetWindowIdealUserState((WindowRef
)m_macWindow
, &rect
);
1005 SetWindowUserState((WindowRef
)m_macWindow
, &rect
);
1007 ZoomWindow( (WindowRef
)m_macWindow
, maximize
? inZoomOut
: inZoomIn
, false ) ;
1009 Point idealSize
= { 0 , 0 } ;
1013 GetAvailableWindowPositioningBounds(GetMainDevice(),&rect
) ;
1014 idealSize
.h
= rect
.right
- rect
.left
;
1015 idealSize
.v
= rect
.bottom
- rect
.top
;
1017 ZoomWindowIdeal( (WindowRef
)m_macWindow
, maximize
? inZoomOut
: inZoomIn
, &idealSize
) ;
1021 bool wxTopLevelWindowMac::IsMaximized() const
1023 return IsWindowInStandardState( (WindowRef
)m_macWindow
, NULL
, NULL
) ;
1026 void wxTopLevelWindowMac::Iconize(bool iconize
)
1028 if ( IsWindowCollapsable( (WindowRef
)m_macWindow
) )
1029 CollapseWindow( (WindowRef
)m_macWindow
, iconize
) ;
1032 bool wxTopLevelWindowMac::IsIconized() const
1034 return IsWindowCollapsed((WindowRef
)m_macWindow
) ;
1037 void wxTopLevelWindowMac::Restore()
1039 if ( IsMaximized() )
1041 else if ( IsIconized() )
1045 // ----------------------------------------------------------------------------
1046 // wxTopLevelWindowMac misc
1047 // ----------------------------------------------------------------------------
1049 wxPoint
wxTopLevelWindowMac::GetClientAreaOrigin() const
1051 return wxPoint(0, 0) ;
1054 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
1057 wxTopLevelWindowBase::SetIcon(icon
);
1060 void wxTopLevelWindowMac::MacSetBackgroundBrush( const wxBrush
&brush
)
1062 wxTopLevelWindowBase::MacSetBackgroundBrush( brush
) ;
1064 if ( m_macBackgroundBrush
.Ok() && m_macBackgroundBrush
.GetStyle() != wxTRANSPARENT
&& m_macBackgroundBrush
.MacGetBrushKind() == kwxMacBrushTheme
)
1066 SetThemeWindowBackground( (WindowRef
) m_macWindow
, m_macBackgroundBrush
.MacGetTheme() , false ) ;
1070 void wxTopLevelWindowMac::MacInstallTopLevelWindowEventHandler()
1072 if ( m_macEventHandler
!= NULL
)
1074 verify_noerr( ::RemoveEventHandler( (EventHandlerRef
) m_macEventHandler
) ) ;
1077 InstallWindowEventHandler(
1078 MAC_WXHWND(m_macWindow
), GetwxMacTopLevelEventHandlerUPP(),
1079 GetEventTypeCount(eventList
), eventList
, this, (EventHandlerRef
*)&m_macEventHandler
);
1082 void wxTopLevelWindowMac::MacCreateRealWindow(
1083 const wxString
& title
,
1087 const wxString
& name
)
1089 OSStatus err
= noErr
;
1091 m_windowStyle
= style
;
1099 wxRect display
= wxGetClientDisplayRect() ;
1101 if ( x
== wxDefaultPosition
.x
)
1104 if ( y
== wxDefaultPosition
.y
)
1107 int w
= WidthDefault(size
.x
);
1108 int h
= HeightDefault(size
.y
);
1110 ::SetRect(&theBoundsRect
, x
, y
, x
+ w
, y
+ h
);
1112 // translate the window attributes in the appropriate window class and attributes
1113 WindowClass wclass
= 0;
1114 WindowAttributes attr
= kWindowNoAttributes
;
1115 WindowGroupRef group
= NULL
;
1117 if ( HasFlag( wxFRAME_TOOL_WINDOW
) )
1120 HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
1121 HasFlag( wxSYSTEM_MENU
) || HasFlag( wxCAPTION
) ||
1122 HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
)
1125 wclass
= kFloatingWindowClass
;
1127 if ( HasFlag(wxTINY_CAPTION_VERT
) )
1128 attr
|= kWindowSideTitlebarAttribute
;
1132 wclass
= kPlainWindowClass
;
1135 else if ( HasFlag( wxCAPTION
) )
1137 wclass
= kDocumentWindowClass
;
1138 attr
|= kWindowInWindowMenuAttribute
;
1140 #if defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
1141 else if ( HasFlag( wxFRAME_DRAWER
) )
1143 wclass
= kDrawerWindowClass
;
1144 // we must force compositing on a drawer
1145 m_macUsesCompositing
= true ;
1147 #endif //10.2 and up
1150 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
1151 HasFlag( wxCLOSE_BOX
) || HasFlag( wxSYSTEM_MENU
) )
1153 wclass
= kDocumentWindowClass
;
1157 wclass
= kPlainWindowClass
;
1161 if ( wclass
!= kPlainWindowClass
)
1163 if ( HasFlag( wxMINIMIZE_BOX
) )
1164 attr
|= kWindowCollapseBoxAttribute
;
1166 if ( HasFlag( wxMAXIMIZE_BOX
) )
1167 attr
|= kWindowFullZoomAttribute
;
1169 if ( HasFlag( wxRESIZE_BORDER
) )
1170 attr
|= kWindowResizableAttribute
;
1172 if ( HasFlag( wxCLOSE_BOX
) )
1173 attr
|= kWindowCloseBoxAttribute
;
1176 // turn on live resizing (OS X only)
1177 if (UMAGetSystemVersion() >= 0x1000)
1178 attr
|= kWindowLiveResizeAttribute
;
1180 if ( HasFlag(wxSTAY_ON_TOP
) )
1181 group
= GetWindowGroupOfClass(kUtilityWindowClass
) ;
1183 #if TARGET_API_MAC_OSX
1184 if ( m_macUsesCompositing
)
1185 attr
|= kWindowCompositingAttribute
;
1188 if ( HasFlag(wxFRAME_SHAPED
) )
1190 WindowDefSpec customWindowDefSpec
;
1191 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
1192 customWindowDefSpec
.u
.defProc
= NewWindowDefUPP(wxShapedMacWindowDef
);
1194 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
1195 attr
, &theBoundsRect
,
1196 (WindowRef
*) &m_macWindow
);
1200 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
1203 if ( err
== noErr
&& m_macWindow
!= NULL
&& group
!= NULL
)
1204 SetWindowGroup( (WindowRef
) m_macWindow
, group
) ;
1206 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
1208 // the create commands are only for content rect,
1209 // so we have to set the size again as structure bounds
1210 SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &theBoundsRect
) ;
1212 wxAssociateWinWithMacWindow( (WindowRef
) m_macWindow
, this ) ;
1213 UMASetWTitle( (WindowRef
) m_macWindow
, title
, m_font
.GetEncoding() ) ;
1214 m_peer
= new wxMacControl(this , true /*isRootControl*/) ;
1216 #if TARGET_API_MAC_OSX
1217 if ( m_macUsesCompositing
)
1219 // There is a bug in 10.2.X for ::GetRootControl returning the window view instead of
1220 // the content view, so we have to retrieve it explicitly
1221 HIViewFindByID( HIViewGetRoot( (WindowRef
) m_macWindow
) , kHIViewWindowContentID
,
1222 m_peer
->GetControlRefAddr() ) ;
1223 if ( !m_peer
->Ok() )
1225 // compatibility mode fallback
1226 GetRootControl( (WindowRef
) m_macWindow
, m_peer
->GetControlRefAddr() ) ;
1231 ::CreateRootControl( (WindowRef
)m_macWindow
, m_peer
->GetControlRefAddr() ) ;
1234 // the root control level handler
1235 MacInstallEventHandler( (WXWidget
) m_peer
->GetControlRef() ) ;
1237 // Causes the inner part of the window not to be metal
1238 // if the style is used before window creation.
1239 #if 0 // TARGET_API_MAC_OSX
1240 if ( m_macUsesCompositing
&& m_macWindow
!= NULL
)
1242 if ( GetExtraStyle() & wxFRAME_EX_METAL
)
1243 MacSetMetalAppearance( true ) ;
1247 // the frame window event handler
1248 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow
)) ) ;
1249 MacInstallTopLevelWindowEventHandler() ;
1251 DoSetWindowVariant( m_windowVariant
) ;
1255 if ( HasFlag(wxFRAME_SHAPED
) )
1257 // default shape matches the window size
1258 wxRegion
rgn( 0, 0, w
, h
);
1262 wxWindowCreateEvent
event(this);
1263 GetEventHandler()->ProcessEvent(event
);
1266 void wxTopLevelWindowMac::ClearBackground()
1268 wxWindow::ClearBackground() ;
1271 // Raise the window to the top of the Z order
1272 void wxTopLevelWindowMac::Raise()
1274 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1277 // Lower the window to the bottom of the Z order
1278 void wxTopLevelWindowMac::Lower()
1280 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
1283 void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp
)
1285 if (s_macDeactivateWindow
)
1287 wxLogTrace(TRACE_ACTIVATE
,
1288 wxT("Doing delayed deactivation of %p"),
1289 s_macDeactivateWindow
);
1291 s_macDeactivateWindow
->MacActivate(timestamp
, false);
1295 void wxTopLevelWindowMac::MacActivate( long timestamp
, bool inIsActivating
)
1297 wxLogTrace(TRACE_ACTIVATE
, wxT("TopLevel=%p::MacActivate"), this);
1299 if (s_macDeactivateWindow
== this)
1300 s_macDeactivateWindow
= NULL
;
1302 MacDelayedDeactivation(timestamp
);
1303 MacPropagateHiliteChanged() ;
1306 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
1308 wxWindow::SetLabel( title
) ;
1309 UMASetWTitle( (WindowRef
)m_macWindow
, title
, m_font
.GetEncoding() ) ;
1312 wxString
wxTopLevelWindowMac::GetTitle() const
1314 return wxWindow::GetLabel();
1317 bool wxTopLevelWindowMac::Show(bool show
)
1319 if ( !wxTopLevelWindowBase::Show(show
) )
1322 bool plainTransition
= false;
1324 #if wxUSE_SYSTEM_OPTIONS
1325 // code contributed by Ryan Wilcox December 18, 2003
1326 plainTransition
= UMAGetSystemVersion() >= 0x1000 ;
1327 if ( wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) )
1328 plainTransition
= ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1 ) ;
1333 if ( plainTransition
)
1334 ::ShowWindow( (WindowRef
)m_macWindow
);
1336 ::TransitionWindow( (WindowRef
)m_macWindow
, kWindowZoomTransitionEffect
, kWindowShowTransitionAction
, NULL
);
1338 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1340 // because apps expect a size event to occur at this moment
1341 wxSizeEvent
event(GetSize() , m_windowId
);
1342 event
.SetEventObject(this);
1343 GetEventHandler()->ProcessEvent(event
);
1347 if ( plainTransition
)
1348 ::HideWindow( (WindowRef
)m_macWindow
);
1350 ::TransitionWindow( (WindowRef
)m_macWindow
, kWindowZoomTransitionEffect
, kWindowHideTransitionAction
, NULL
);
1353 MacPropagateVisibilityChanged() ;
1358 bool wxTopLevelWindowMac::ShowFullScreen(bool show
, long style
)
1362 FullScreenData
*data
= (FullScreenData
*)m_macFullScreenData
;
1364 data
= new FullScreenData() ;
1366 m_macFullScreenData
= data
;
1367 data
->m_position
= GetPosition() ;
1368 data
->m_size
= GetSize() ;
1369 data
->m_wasResizable
= MacGetWindowAttributes() & kWindowResizableAttribute
;
1371 if ( style
& wxFULLSCREEN_NOMENUBAR
)
1374 wxRect client
= wxGetClientDisplayRect() ;
1376 int left
, top
, right
, bottom
;
1384 MacGetContentAreaInset( left
, top
, right
, bottom
) ;
1386 if ( style
& wxFULLSCREEN_NOCAPTION
)
1392 if ( style
& wxFULLSCREEN_NOBORDER
)
1399 if ( style
& wxFULLSCREEN_NOTOOLBAR
)
1404 if ( style
& wxFULLSCREEN_NOSTATUSBAR
)
1409 SetSize( x
, y
, w
, h
) ;
1410 if ( data
->m_wasResizable
)
1411 MacChangeWindowAttributes( kWindowNoAttributes
, kWindowResizableAttribute
) ;
1416 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1417 if ( data
->m_wasResizable
)
1418 MacChangeWindowAttributes( kWindowResizableAttribute
, kWindowNoAttributes
) ;
1419 SetPosition( data
->m_position
) ;
1420 SetSize( data
->m_size
) ;
1423 m_macFullScreenData
= NULL
;
1429 bool wxTopLevelWindowMac::IsFullScreen() const
1431 return m_macFullScreenData
!= NULL
;
1435 bool wxTopLevelWindowMac::SetTransparent(wxByte alpha
)
1437 WindowRef handle
= GetControlOwner((OpaqueControlRef
*)GetHandle());
1438 OSStatus result
= SetWindowAlpha(handle
, float(alpha
)/255.0);
1439 return result
== noErr
;
1443 bool wxTopLevelWindowMac::CanSetTransparent()
1449 void wxTopLevelWindowMac::SetExtraStyle(long exStyle
)
1451 if ( GetExtraStyle() == exStyle
)
1454 wxTopLevelWindowBase::SetExtraStyle( exStyle
) ;
1456 #if TARGET_API_MAC_OSX
1457 if ( m_macUsesCompositing
&& m_macWindow
!= NULL
)
1459 bool metal
= GetExtraStyle() & wxFRAME_EX_METAL
;
1460 if ( MacGetMetalAppearance() != metal
)
1461 MacSetMetalAppearance( metal
) ;
1466 // TODO: switch to structure bounds -
1467 // we are still using coordinates of the content view
1469 void wxTopLevelWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1471 Rect content
, structure
;
1473 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &structure
) ;
1474 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowContentRgn
, &content
) ;
1476 left
= content
.left
- structure
.left
;
1477 top
= content
.top
- structure
.top
;
1478 right
= structure
.right
- content
.right
;
1479 bottom
= structure
.bottom
- content
.bottom
;
1482 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1484 m_cachedClippedRectValid
= false ;
1485 Rect bounds
= { y
, x
, y
+ height
, x
+ width
} ;
1486 verify_noerr(SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1487 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
1490 void wxTopLevelWindowMac::DoGetPosition( int *x
, int *y
) const
1494 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1502 void wxTopLevelWindowMac::DoGetSize( int *width
, int *height
) const
1506 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1509 *width
= bounds
.right
- bounds
.left
;
1511 *height
= bounds
.bottom
- bounds
.top
;
1514 void wxTopLevelWindowMac::DoGetClientSize( int *width
, int *height
) const
1518 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowContentRgn
, &bounds
)) ;
1521 *width
= bounds
.right
- bounds
.left
;
1523 *height
= bounds
.bottom
- bounds
.top
;
1526 void wxTopLevelWindowMac::MacSetMetalAppearance( bool set
)
1528 #if TARGET_API_MAC_OSX
1529 wxASSERT_MSG( m_macUsesCompositing
,
1530 wxT("Cannot set metal appearance on a non-compositing window") ) ;
1532 MacChangeWindowAttributes( set
? kWindowMetalAttribute
: kWindowNoAttributes
,
1533 set
? kWindowNoAttributes
: kWindowMetalAttribute
) ;
1537 bool wxTopLevelWindowMac::MacGetMetalAppearance() const
1539 #if TARGET_API_MAC_OSX
1540 return MacGetWindowAttributes() & kWindowMetalAttribute
;
1546 void wxTopLevelWindowMac::MacChangeWindowAttributes( wxUint32 attributesToSet
, wxUint32 attributesToClear
)
1548 ChangeWindowAttributes( (WindowRef
)m_macWindow
, attributesToSet
, attributesToClear
) ;
1551 wxUint32
wxTopLevelWindowMac::MacGetWindowAttributes() const
1554 GetWindowAttributes( (WindowRef
) m_macWindow
, &attr
) ;
1559 void wxTopLevelWindowMac::MacPerformUpdates()
1561 #if TARGET_API_MAC_OSX
1562 if ( m_macUsesCompositing
)
1564 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1565 // for composited windows this also triggers a redraw of all
1566 // invalid views in the window
1567 if ( UMAGetSystemVersion() >= 0x1030 )
1568 HIWindowFlush((WindowRef
) m_macWindow
) ;
1572 // the only way to trigger the redrawing on earlier systems is to call
1575 EventRef currentEvent
= (EventRef
) wxTheApp
->MacGetCurrentEvent() ;
1576 UInt32 currentEventClass
= 0 ;
1577 UInt32 currentEventKind
= 0 ;
1578 if ( currentEvent
!= NULL
)
1580 currentEventClass
= ::GetEventClass( currentEvent
) ;
1581 currentEventKind
= ::GetEventKind( currentEvent
) ;
1584 if ( currentEventClass
!= kEventClassMenu
)
1586 // when tracking a menu, strange redraw errors occur if we flush now, so leave..
1588 OSStatus status
= noErr
;
1589 status
= ReceiveNextEvent( 0 , NULL
, kEventDurationNoWait
, false , &theEvent
) ;
1596 BeginUpdate( (WindowRef
) m_macWindow
) ;
1598 RgnHandle updateRgn
= NewRgn();
1601 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), updateRgn
);
1602 UpdateControls( (WindowRef
)m_macWindow
, updateRgn
) ;
1604 // if ( !EmptyRgn( updateRgn ) )
1605 // MacDoRedraw( updateRgn , 0 , true) ;
1607 DisposeRgn( updateRgn
);
1610 EndUpdate( (WindowRef
)m_macWindow
) ;
1611 QDFlushPortBuffer( GetWindowPort( (WindowRef
)m_macWindow
) , NULL
) ;
1615 // Attracts the users attention to this window if the application is
1616 // inactive (should be called when a background event occurs)
1618 static pascal void wxMacNMResponse( NMRecPtr ptr
)
1621 DisposePtr( (Ptr
)ptr
) ;
1624 void wxTopLevelWindowMac::RequestUserAttention(int flags
)
1626 NMRecPtr notificationRequest
= (NMRecPtr
) NewPtr( sizeof( NMRec
) ) ;
1627 static wxMacNMUPP
nmupp( wxMacNMResponse
);
1629 memset( notificationRequest
, 0 , sizeof(*notificationRequest
) ) ;
1630 notificationRequest
->qType
= nmType
;
1631 notificationRequest
->nmMark
= 1 ;
1632 notificationRequest
->nmIcon
= 0 ;
1633 notificationRequest
->nmSound
= 0 ;
1634 notificationRequest
->nmStr
= NULL
;
1635 notificationRequest
->nmResp
= nmupp
;
1637 verify_noerr( NMInstall( notificationRequest
) ) ;
1640 // ---------------------------------------------------------------------------
1641 // Shape implementation
1642 // ---------------------------------------------------------------------------
1645 bool wxTopLevelWindowMac::SetShape(const wxRegion
& region
)
1647 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), false,
1648 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1650 // The empty region signifies that the shape
1651 // should be removed from the window.
1652 if ( region
.IsEmpty() )
1654 wxSize sz
= GetClientSize();
1655 wxRegion
rgn(0, 0, sz
.x
, sz
.y
);
1656 if ( rgn
.IsEmpty() )
1659 return SetShape(rgn
);
1662 // Make a copy of the region
1663 RgnHandle shapeRegion
= NewRgn();
1664 CopyRgn( (RgnHandle
)region
.GetWXHRGN(), shapeRegion
);
1666 // Dispose of any shape region we may already have
1667 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
)MacGetWindowRef() );
1671 // Save the region so we can use it later
1672 SetWRefCon((WindowRef
)MacGetWindowRef(), (SInt32
)shapeRegion
);
1674 // inform the window manager that the window has changed shape
1675 ReshapeCustomWindow((WindowRef
)MacGetWindowRef());
1680 // ---------------------------------------------------------------------------
1681 // Support functions for shaped windows, based on Apple's CustomWindow sample at
1682 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1683 // ---------------------------------------------------------------------------
1685 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
1687 GetWindowPortBounds(window
, inRect
);
1688 Point pt
= { inRect
->left
, inRect
->top
};
1690 QDLocalToGlobalPoint( GetWindowPort(window
), &pt
) ;
1692 inRect
->left
= pt
.h
;
1693 inRect
->bottom
+= pt
.v
;
1694 inRect
->right
+= pt
.h
;
1697 static SInt32
wxShapedMacWindowGetFeatures(WindowRef window
, SInt32 param
)
1699 /*------------------------------------------------------
1700 Define which options your custom window supports.
1701 --------------------------------------------------------*/
1702 //just enable everything for our demo
1703 *(OptionBits
*)param
=
1706 //kWindowCanCollapse |
1707 //kWindowCanGetWindowRegion |
1708 //kWindowHasTitleBar |
1709 //kWindowSupportsDragHilite |
1710 kWindowCanDrawInCurrentPort
|
1711 //kWindowCanMeasureTitle |
1712 kWindowWantsDisposeAtProcessDeath
|
1713 kWindowSupportsGetGrowImageRegion
|
1714 kWindowDefSupportsColorGrafPort
;
1719 // The content region is left as a rectangle matching the window size, this is
1720 // so the origin in the paint event, and etc. still matches what the
1721 // programmer expects.
1722 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1725 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow(window
);
1729 wxShapedMacWindowGetPos( window
, &r
) ;
1730 RectRgn( rgn
, &r
) ;
1734 // The structure region is set to the shape given to the SetShape method.
1735 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1737 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1743 wxShapedMacWindowGetPos(window
, &windowRect
); // how big is the window
1744 CopyRgn(cachedRegion
, rgn
); // make a copy of our cached region
1745 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1746 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1750 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1752 GetWindowRegionPtr rgnRec
= (GetWindowRegionPtr
)param
;
1757 switch (rgnRec
->regionCode
)
1759 case kWindowStructureRgn
:
1760 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1763 case kWindowContentRgn
:
1764 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1768 SetEmptyRgn(rgnRec
->winRgn
);
1775 // Determine the region of the window which was hit
1777 static SInt32
wxShapedMacWindowHitTest(WindowRef window
, SInt32 param
)
1780 static RgnHandle tempRgn
= NULL
;
1782 if (tempRgn
== NULL
)
1785 // get the point clicked
1786 SetPt( &hitPoint
, LoWord(param
), HiWord(param
) );
1788 // Mac OS 8.5 or later
1789 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1790 if (PtInRgn( hitPoint
, tempRgn
)) //in window content region?
1793 // no significant area was hit
1797 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
)
1801 case kWindowMsgHitTest
:
1802 return wxShapedMacWindowHitTest(window
, param
);
1804 case kWindowMsgGetFeatures
:
1805 return wxShapedMacWindowGetFeatures(window
, param
);
1807 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1808 case kWindowMsgGetRegion
:
1809 return wxShapedMacWindowGetRegion(window
, param
);