1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/nonownedwnd.cpp
3 // Purpose: implementation of wxNonOwnedWindow
4 // Author: Stefan Csomor
6 // RCS-ID: $Id: nonownedwnd.cpp 50329 2007-11-29 17:00:58Z VS $
7 // Copyright: (c) Stefan Csomor 2008
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #include "wx/hashmap.h"
19 #include "wx/evtloop.h"
20 #include "wx/tooltip.h"
21 #include "wx/nonownedwnd.h"
23 #include "wx/osx/private.h"
24 #include "wx/settings.h"
27 #if wxUSE_SYSTEM_OPTIONS
28 #include "wx/sysopt.h"
31 // ============================================================================
32 // wxNonOwnedWindow implementation
33 // ============================================================================
35 // unified title and toolbar constant - not in Tiger headers, so we duplicate it here
36 #define kWindowUnifiedTitleAndToolbarAttribute (1 << 7)
38 IMPLEMENT_DYNAMIC_CLASS( wxNonOwnedWindowCarbonImpl
, wxNonOwnedWindowImpl
)
40 WXWindow
wxNonOwnedWindowCarbonImpl::GetWXWindow() const
42 return (WXWindow
) m_macWindow
;
44 void wxNonOwnedWindowCarbonImpl::Raise()
46 ::SelectWindow( m_macWindow
) ;
49 void wxNonOwnedWindowCarbonImpl::Lower()
51 ::SendBehind( m_macWindow
, NULL
) ;
54 void wxNonOwnedWindowCarbonImpl::ShowWithoutActivating()
56 bool plainTransition
= true;
58 #if wxUSE_SYSTEM_OPTIONS
59 if ( wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) )
60 plainTransition
= ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1 ) ;
63 if ( plainTransition
)
64 ::ShowWindow( (WindowRef
)m_macWindow
);
66 ::TransitionWindow( (WindowRef
)m_macWindow
, kWindowZoomTransitionEffect
, kWindowShowTransitionAction
, NULL
);
69 bool wxNonOwnedWindowCarbonImpl::Show(bool show
)
71 bool plainTransition
= true;
73 #if wxUSE_SYSTEM_OPTIONS
74 if ( wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) )
75 plainTransition
= ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1 ) ;
80 ShowWithoutActivating();
81 ::SelectWindow( (WindowRef
)m_macWindow
) ;
86 if ( plainTransition
)
87 ::HideWindow( (WindowRef
)m_macWindow
);
89 ::TransitionWindow( (WindowRef
)m_macWindow
, kWindowZoomTransitionEffect
, kWindowHideTransitionAction
, NULL
);
95 void wxNonOwnedWindowCarbonImpl::Update()
97 HIWindowFlush(m_macWindow
) ;
100 bool wxNonOwnedWindowCarbonImpl::SetTransparent(wxByte alpha
)
102 OSStatus result
= SetWindowAlpha((WindowRef
)m_macWindow
, (CGFloat
)((alpha
)/255.0));
103 return result
== noErr
;
106 bool wxNonOwnedWindowCarbonImpl::SetBackgroundColour(const wxColour
& col
)
108 if ( col
== wxColour(wxMacCreateCGColorFromHITheme(kThemeBrushDocumentWindowBackground
)) )
110 SetThemeWindowBackground( (WindowRef
) m_macWindow
, kThemeBrushDocumentWindowBackground
, false ) ;
111 m_wxPeer
->SetBackgroundStyle(wxBG_STYLE_SYSTEM
);
112 // call directly if object is not yet completely constructed
113 if ( m_wxPeer
->GetNonOwnedPeer() == NULL
)
114 SetBackgroundStyle(wxBG_STYLE_SYSTEM
);
116 else if ( col
== wxColour(wxMacCreateCGColorFromHITheme(kThemeBrushDialogBackgroundActive
)) )
118 SetThemeWindowBackground( (WindowRef
) m_macWindow
, kThemeBrushDialogBackgroundActive
, false ) ;
119 m_wxPeer
->SetBackgroundStyle(wxBG_STYLE_SYSTEM
);
120 // call directly if object is not yet completely constructed
121 if ( m_wxPeer
->GetNonOwnedPeer() == NULL
)
122 SetBackgroundStyle(wxBG_STYLE_SYSTEM
);
127 void wxNonOwnedWindowCarbonImpl::SetExtraStyle( long exStyle
)
129 if ( m_macWindow
!= NULL
)
131 bool metal
= exStyle
& wxFRAME_EX_METAL
;
133 if ( MacGetMetalAppearance() != metal
)
135 if ( MacGetUnifiedAppearance() )
136 MacSetUnifiedAppearance( !metal
) ;
138 MacSetMetalAppearance( metal
) ;
143 bool wxNonOwnedWindowCarbonImpl::SetBackgroundStyle(wxBackgroundStyle style
)
145 if ( style
== wxBG_STYLE_TRANSPARENT
)
147 OSStatus err
= HIWindowChangeFeatures( m_macWindow
, 0, kWindowIsOpaque
);
149 err
= ReshapeCustomWindow( m_macWindow
);
156 bool wxNonOwnedWindowCarbonImpl::CanSetTransparent()
161 void wxNonOwnedWindowCarbonImpl::GetContentArea( int &left
, int &top
, int &width
, int &height
) const
163 Rect content
, structure
;
165 GetWindowBounds( m_macWindow
, kWindowStructureRgn
, &structure
) ;
166 GetWindowBounds( m_macWindow
, kWindowContentRgn
, &content
) ;
168 left
= content
.left
- structure
.left
;
169 top
= content
.top
- structure
.top
;
170 width
= content
.right
- content
.left
;
171 height
= content
.bottom
- content
.top
;
174 void wxNonOwnedWindowCarbonImpl::MoveWindow(int x
, int y
, int width
, int height
)
176 Rect bounds
= { y
, x
, y
+ height
, x
+ width
} ;
177 verify_noerr(SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
180 void wxNonOwnedWindowCarbonImpl::GetPosition( int &x
, int &y
) const
184 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
190 void wxNonOwnedWindowCarbonImpl::GetSize( int &width
, int &height
) const
194 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
196 width
= bounds
.right
- bounds
.left
;
197 height
= bounds
.bottom
- bounds
.top
;
200 bool wxNonOwnedWindowCarbonImpl::MacGetUnifiedAppearance() const
202 return MacGetWindowAttributes() & kWindowUnifiedTitleAndToolbarAttribute
;
205 void wxNonOwnedWindowCarbonImpl::MacChangeWindowAttributes( wxUint32 attributesToSet
, wxUint32 attributesToClear
)
207 ChangeWindowAttributes( m_macWindow
, attributesToSet
, attributesToClear
) ;
210 wxUint32
wxNonOwnedWindowCarbonImpl::MacGetWindowAttributes() const
213 GetWindowAttributes( m_macWindow
, &attr
) ;
217 void wxNonOwnedWindowCarbonImpl::MacSetMetalAppearance( bool set
)
219 if ( MacGetUnifiedAppearance() )
220 MacSetUnifiedAppearance( false ) ;
222 MacChangeWindowAttributes( set
? kWindowMetalAttribute
: kWindowNoAttributes
,
223 set
? kWindowNoAttributes
: kWindowMetalAttribute
) ;
226 bool wxNonOwnedWindowCarbonImpl::MacGetMetalAppearance() const
228 return MacGetWindowAttributes() & kWindowMetalAttribute
;
231 void wxNonOwnedWindowCarbonImpl::MacSetUnifiedAppearance( bool set
)
233 if ( MacGetMetalAppearance() )
234 MacSetMetalAppearance( false ) ;
236 MacChangeWindowAttributes( set
? kWindowUnifiedTitleAndToolbarAttribute
: kWindowNoAttributes
,
237 set
? kWindowNoAttributes
: kWindowUnifiedTitleAndToolbarAttribute
) ;
239 // For some reason, Tiger uses white as the background color for this appearance,
240 // while most apps using it use the typical striped background. Restore that behavior
242 // TODO: Determine if we need this on Leopard as well. (should be harmless either way,
244 // since when creating the peering is not yet completely set-up we call both setters
246 m_wxPeer
->SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
) ) ;
247 SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
) ) ;
251 // ----------------------------------------------------------------------------
253 // ----------------------------------------------------------------------------
255 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
);
258 // ---------------------------------------------------------------------------
260 // ---------------------------------------------------------------------------
262 static const EventTypeSpec eventList
[] =
264 // TODO: remove control related event like key and mouse (except for WindowLeave events)
266 { kEventClassKeyboard
, kEventRawKeyDown
} ,
267 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
268 { kEventClassKeyboard
, kEventRawKeyUp
} ,
269 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
271 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
272 { kEventClassTextInput
, kEventTextInputUpdateActiveInputArea
} ,
274 { kEventClassWindow
, kEventWindowShown
} ,
275 { kEventClassWindow
, kEventWindowActivated
} ,
276 { kEventClassWindow
, kEventWindowDeactivated
} ,
277 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
278 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
279 { kEventClassWindow
, kEventWindowClose
} ,
280 { kEventClassWindow
, kEventWindowGetRegion
} ,
282 // we have to catch these events on the toplevel window level,
283 // as controls don't get the raw mouse events anymore
285 { kEventClassMouse
, kEventMouseDown
} ,
286 { kEventClassMouse
, kEventMouseUp
} ,
287 { kEventClassMouse
, kEventMouseWheelMoved
} ,
288 { kEventClassMouse
, kEventMouseMoved
} ,
289 { kEventClassMouse
, kEventMouseDragged
} ,
292 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
294 OSStatus result
= eventNotHandledErr
;
295 // call DoFindFocus instead of FindFocus, because for Composite Windows(like WxGenericListCtrl)
296 // FindFocus does not return the actual focus window, but the enclosing window
297 wxWindow
* focus
= wxWindow::DoFindFocus();
299 focus
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
301 unsigned char charCode
;
309 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
312 ByteCount dataSize
= 0 ;
313 if ( GetEventParameter( event
, kEventParamKeyUnicodes
, typeUnicodeText
, NULL
, 0 , &dataSize
, NULL
) == noErr
)
316 int numChars
= dataSize
/ sizeof( UniChar
) + 1;
318 UniChar
* charBuf
= buf
;
320 if ( numChars
* 2 > 4 )
321 charBuf
= new UniChar
[ numChars
] ;
322 GetEventParameter( event
, kEventParamKeyUnicodes
, typeUnicodeText
, NULL
, dataSize
, NULL
, charBuf
) ;
323 charBuf
[ numChars
- 1 ] = 0;
325 #if SIZEOF_WCHAR_T == 2
326 uniChar
= charBuf
[0] ;
328 wxMBConvUTF16 converter
;
329 converter
.MB2WC( uniChar
, (const char*)charBuf
, 2 ) ;
332 if ( numChars
* 2 > 4 )
337 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, sizeof(char), NULL
, &charCode
);
338 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
339 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
340 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
, sizeof(Point
), NULL
, &point
);
342 UInt32 message
= (keyCode
<< 8) + charCode
;
343 switch ( GetEventKind( event
) )
345 case kEventRawKeyRepeat
:
346 case kEventRawKeyDown
:
348 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
349 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
350 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
351 if ( /* focus && */ wxTheApp
->MacSendKeyDownEvent(
352 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChar
[0] ) )
356 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
360 case kEventRawKeyUp
:
361 if ( /* focus && */ wxTheApp
->MacSendKeyUpEvent(
362 focus
, message
, modifiers
, when
, point
.h
, point
.v
, uniChar
[0] ) )
368 case kEventRawKeyModifiersChanged
:
370 wxKeyEvent
event(wxEVT_KEY_DOWN
);
372 event
.m_shiftDown
= modifiers
& shiftKey
;
373 event
.m_controlDown
= modifiers
& controlKey
;
374 event
.m_altDown
= modifiers
& optionKey
;
375 event
.m_metaDown
= modifiers
& cmdKey
;
380 event
.m_uniChar
= uniChar
[0] ;
383 event
.SetTimestamp(when
);
384 event
.SetEventObject(focus
);
386 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & controlKey
)
388 event
.m_keyCode
= WXK_CONTROL
;
389 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
390 focus
->HandleWindowEvent( event
) ;
392 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & shiftKey
)
394 event
.m_keyCode
= WXK_SHIFT
;
395 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
396 focus
->HandleWindowEvent( event
) ;
398 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & optionKey
)
400 event
.m_keyCode
= WXK_ALT
;
401 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
402 focus
->HandleWindowEvent( event
) ;
404 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & cmdKey
)
406 event
.m_keyCode
= WXK_COMMAND
;
407 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
408 focus
->HandleWindowEvent( event
) ;
411 wxApp::s_lastModifiers
= modifiers
;
422 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
423 // for windows that we didn't create (like eg Scrollbars in a databrowser), or for controls where we did not handle the
426 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
428 EventMouseButton g_lastButton
= 0 ;
429 bool g_lastButtonWasFakeRight
= false ;
431 void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
)
433 UInt32 modifiers
= cEvent
.GetParameter
<UInt32
>(kEventParamKeyModifiers
, typeUInt32
) ;
434 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
436 // these parameters are not given for all events
437 EventMouseButton button
= 0 ;
438 UInt32 clickCount
= 0 ;
439 UInt32 mouseChord
= 0;
441 cEvent
.GetParameter
<EventMouseButton
>( kEventParamMouseButton
, typeMouseButton
, &button
) ;
442 cEvent
.GetParameter
<UInt32
>( kEventParamClickCount
, typeUInt32
, &clickCount
) ;
443 // the chord is the state of the buttons pressed currently
444 cEvent
.GetParameter
<UInt32
>( kEventParamMouseChord
, typeUInt32
, &mouseChord
) ;
446 wxevent
.m_x
= screenMouseLocation
.h
;
447 wxevent
.m_y
= screenMouseLocation
.v
;
448 wxevent
.m_shiftDown
= modifiers
& shiftKey
;
449 wxevent
.m_controlDown
= modifiers
& controlKey
;
450 wxevent
.m_altDown
= modifiers
& optionKey
;
451 wxevent
.m_metaDown
= modifiers
& cmdKey
;
452 wxevent
.m_clickCount
= clickCount
;
453 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
455 // a control click is interpreted as a right click
456 bool thisButtonIsFakeRight
= false ;
457 if ( button
== kEventMouseButtonPrimary
&& (modifiers
& controlKey
) )
459 button
= kEventMouseButtonSecondary
;
460 thisButtonIsFakeRight
= true ;
463 // otherwise we report double clicks by connecting a left click with a ctrl-left click
464 if ( clickCount
> 1 && button
!= g_lastButton
)
467 // we must make sure that our synthetic 'right' button corresponds in
468 // mouse down, moved and mouse up, and does not deliver a right down and left up
470 if ( cEvent
.GetKind() == kEventMouseDown
)
472 g_lastButton
= button
;
473 g_lastButtonWasFakeRight
= thisButtonIsFakeRight
;
479 g_lastButtonWasFakeRight
= false ;
481 else if ( g_lastButton
== kEventMouseButtonSecondary
&& g_lastButtonWasFakeRight
)
482 button
= g_lastButton
;
484 // Adjust the chord mask to remove the primary button and add the
485 // secondary button. It is possible that the secondary button is
486 // already pressed, e.g. on a mouse connected to a laptop, but this
487 // possibility is ignored here:
488 if( thisButtonIsFakeRight
&& ( mouseChord
& 1U ) )
489 mouseChord
= ((mouseChord
& ~1U) | 2U);
492 wxevent
.m_leftDown
= true ;
494 wxevent
.m_rightDown
= true ;
496 wxevent
.m_middleDown
= true ;
498 // translate into wx types
499 switch ( cEvent
.GetKind() )
501 case kEventMouseDown
:
504 case kEventMouseButtonPrimary
:
505 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
) ;
508 case kEventMouseButtonSecondary
:
509 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
) ;
512 case kEventMouseButtonTertiary
:
513 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
) ;
524 case kEventMouseButtonPrimary
:
525 wxevent
.SetEventType( wxEVT_LEFT_UP
) ;
528 case kEventMouseButtonSecondary
:
529 wxevent
.SetEventType( wxEVT_RIGHT_UP
) ;
532 case kEventMouseButtonTertiary
:
533 wxevent
.SetEventType( wxEVT_MIDDLE_UP
) ;
541 case kEventMouseWheelMoved
:
543 wxevent
.SetEventType( wxEVT_MOUSEWHEEL
) ;
545 EventMouseWheelAxis axis
= cEvent
.GetParameter
<EventMouseWheelAxis
>(kEventParamMouseWheelAxis
, typeMouseWheelAxis
) ;
546 SInt32 delta
= cEvent
.GetParameter
<SInt32
>(kEventParamMouseWheelDelta
, typeSInt32
) ;
548 wxevent
.m_wheelRotation
= delta
;
549 wxevent
.m_wheelDelta
= 1;
550 wxevent
.m_linesPerAction
= 1;
551 if ( axis
== kEventMouseWheelAxisX
)
552 wxevent
.m_wheelAxis
= 1;
556 case kEventMouseEntered
:
557 case kEventMouseExited
:
558 case kEventMouseDragged
:
559 case kEventMouseMoved
:
560 wxevent
.SetEventType( wxEVT_MOTION
) ;
567 #define NEW_CAPTURE_HANDLING 1
570 wxMacTopLevelMouseEventHandler(EventHandlerCallRef
WXUNUSED(handler
),
574 wxNonOwnedWindow
* toplevelWindow
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
576 OSStatus result
= eventNotHandledErr
;
578 wxMacCarbonEvent
cEvent( event
) ;
580 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
581 Point windowMouseLocation
= screenMouseLocation
;
583 WindowRef window
= NULL
;
584 short windowPart
= ::FindWindow(screenMouseLocation
, &window
);
586 wxWindow
* currentMouseWindow
= NULL
;
587 ControlRef control
= NULL
;
589 #if NEW_CAPTURE_HANDLING
590 if ( wxApp::s_captureWindow
)
592 window
= (WindowRef
) wxApp::s_captureWindow
->MacGetTopLevelWindowRef() ;
593 windowPart
= inContent
;
599 QDGlobalToLocalPoint( GetWindowPort( window
), &windowMouseLocation
);
601 if ( wxApp::s_captureWindow
602 #if !NEW_CAPTURE_HANDLING
603 && wxApp::s_captureWindow
->MacGetTopLevelWindowRef() == (WXWindow
) window
&& windowPart
== inContent
607 currentMouseWindow
= wxApp::s_captureWindow
;
609 else if ( (IsWindowActive(window
) && windowPart
== inContent
) )
611 ControlPartCode part
;
612 control
= FindControlUnderMouse( windowMouseLocation
, window
, &part
) ;
613 // if there is no control below the mouse position, send the event to the toplevel window itself
616 currentMouseWindow
= (wxWindow
*) toplevelWindow
;
620 currentMouseWindow
= (wxWindow
*) wxFindWindowFromWXWidget( (WXWidget
) control
) ;
621 #ifndef __WXUNIVERSAL__
622 if ( currentMouseWindow
== NULL
&& cEvent
.GetKind() == kEventMouseMoved
)
625 // for wxToolBar to function we have to send certaint events to it
626 // instead of its children (wxToolBarTools)
628 GetSuperControl(control
, &parent
);
629 wxWindow
*wxparent
= (wxWindow
*) wxFindWindowFromWXWidget((WXWidget
) parent
) ;
630 if ( wxparent
&& wxparent
->IsKindOf( CLASSINFO( wxToolBar
) ) )
631 currentMouseWindow
= wxparent
;
637 // disabled windows must not get any input messages
638 if ( currentMouseWindow
&& !currentMouseWindow
->MacIsReallyEnabled() )
639 currentMouseWindow
= NULL
;
643 wxMouseEvent
wxevent(wxEVT_LEFT_DOWN
);
644 SetupMouseEvent( wxevent
, cEvent
) ;
646 // handle all enter / leave events
648 if ( currentMouseWindow
!= g_MacLastWindow
)
650 if ( g_MacLastWindow
)
652 wxMouseEvent
eventleave(wxevent
);
653 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
654 g_MacLastWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
655 eventleave
.SetEventObject( g_MacLastWindow
) ;
656 wxevent
.SetId( g_MacLastWindow
->GetId() ) ;
659 wxToolTip::RelayEvent( g_MacLastWindow
, eventleave
);
662 g_MacLastWindow
->HandleWindowEvent(eventleave
);
665 if ( currentMouseWindow
)
667 wxMouseEvent
evententer(wxevent
);
668 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
669 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
670 evententer
.SetEventObject( currentMouseWindow
) ;
671 wxevent
.SetId( currentMouseWindow
->GetId() ) ;
674 wxToolTip::RelayEvent( currentMouseWindow
, evententer
);
677 currentMouseWindow
->HandleWindowEvent(evententer
);
680 g_MacLastWindow
= currentMouseWindow
;
683 if ( windowPart
== inMenuBar
)
685 // special case menu bar, as we are having a low-level runloop we must do it ourselves
686 if ( cEvent
.GetKind() == kEventMouseDown
)
688 ::MenuSelect( screenMouseLocation
) ;
693 else if ( window
&& windowPart
== inProxyIcon
)
695 // special case proxy icon bar, as we are having a low-level runloop we must do it ourselves
696 if ( cEvent
.GetKind() == kEventMouseDown
)
698 if ( ::TrackWindowProxyDrag( window
, screenMouseLocation
) != errUserWantsToDragWindow
)
700 // TODO Track change of file path and report back
705 else if ( currentMouseWindow
)
707 wxWindow
*currentMouseWindowParent
= currentMouseWindow
->GetParent();
709 currentMouseWindow
->ScreenToClient( &wxevent
.m_x
, &wxevent
.m_y
) ;
711 wxevent
.SetEventObject( currentMouseWindow
) ;
712 wxevent
.SetId( currentMouseWindow
->GetId() ) ;
714 // make tooltips current
717 if ( wxevent
.GetEventType() == wxEVT_MOTION
)
718 wxToolTip::RelayEvent( currentMouseWindow
, wxevent
);
721 if ( currentMouseWindow
->HandleWindowEvent(wxevent
) )
723 if ((currentMouseWindowParent
!= NULL
) &&
724 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
725 currentMouseWindow
= NULL
;
731 // if the user code did _not_ handle the event, then perform the
732 // default processing
733 if ( wxevent
.GetEventType() == wxEVT_LEFT_DOWN
)
735 // ... that is set focus to this window
736 if (currentMouseWindow
->CanAcceptFocus() && wxWindow::FindFocus()!=currentMouseWindow
)
737 currentMouseWindow
->SetFocus();
741 if ( cEvent
.GetKind() == kEventMouseUp
&& wxApp::s_captureWindow
)
743 wxApp::s_captureWindow
= NULL
;
749 wxWindow
* cursorTarget
= currentMouseWindow
;
750 wxPoint
cursorPoint( wxevent
.m_x
, wxevent
.m_y
) ;
752 extern wxCursor gGlobalCursor
;
754 if (!gGlobalCursor
.IsOk())
756 while ( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
758 cursorTarget
= cursorTarget
->GetParent() ;
760 cursorPoint
+= cursorTarget
->GetPosition();
765 else // currentMouseWindow == NULL
767 if (toplevelWindow
&& !control
)
769 extern wxCursor gGlobalCursor
;
770 if (!gGlobalCursor
.IsOk())
772 // update cursor when over toolbar and titlebar etc.
773 wxSTANDARD_CURSOR
->MacInstall() ;
777 // don't mess with controls we don't know about
778 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
779 // so we try sending them the correct control directly
780 if ( cEvent
.GetKind() == kEventMouseDown
&& toplevelWindow
&& control
)
782 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
783 Point clickLocation
= windowMouseLocation
;
786 hiPoint
.x
= clickLocation
.h
;
787 hiPoint
.y
= clickLocation
.v
;
788 HIViewConvertPoint( &hiPoint
, (ControlRef
) toplevelWindow
->GetHandle() , control
) ;
789 clickLocation
.h
= (int)hiPoint
.x
;
790 clickLocation
.v
= (int)hiPoint
.y
;
792 HandleControlClick( control
, clickLocation
, modifiers
, (ControlActionUPP
) -1 ) ;
800 static pascal OSStatus
801 wxNonOwnedWindowEventHandler(EventHandlerCallRef
WXUNUSED(handler
),
805 OSStatus result
= eventNotHandledErr
;
807 wxMacCarbonEvent
cEvent( event
) ;
809 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
810 wxNonOwnedWindow
* toplevelWindow
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
812 switch ( GetEventKind( event
) )
814 case kEventWindowActivated
:
816 toplevelWindow
->HandleActivated( cEvent
.GetTicks() , true) ;
817 // we still sending an eventNotHandledErr in order to allow for default processing
821 case kEventWindowDeactivated
:
823 toplevelWindow
->HandleActivated( cEvent
.GetTicks() , false) ;
824 // we still sending an eventNotHandledErr in order to allow for default processing
828 case kEventWindowShown
:
829 toplevelWindow
->Refresh() ;
833 case kEventWindowClose
:
834 toplevelWindow
->Close() ;
838 case kEventWindowBoundsChanged
:
840 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
, typeUInt32
) ;
841 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
842 wxRect
r( newRect
.left
, newRect
.top
, newRect
.right
- newRect
.left
, newRect
.bottom
- newRect
.top
) ;
843 if ( attributes
& kWindowBoundsChangeSizeChanged
)
845 toplevelWindow
->HandleResized(cEvent
.GetTicks() ) ;
848 if ( attributes
& kWindowBoundsChangeOriginChanged
)
850 toplevelWindow
->HandleMoved(cEvent
.GetTicks() ) ;
857 case kEventWindowBoundsChanging
:
859 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
860 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
862 if ( (attributes
& kWindowBoundsChangeSizeChanged
) || (attributes
& kWindowBoundsChangeOriginChanged
) )
864 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
865 int left
, top
, width
, height
;
869 toplevelWindow
->GetNonOwnedPeer()->GetContentArea(left
, top
, width
, height
);
870 toplevelWindow
->GetNonOwnedPeer()->GetSize(swidth
, sheight
);
871 int deltawidth
= swidth
- width
;
872 int deltaheight
= sheight
- height
;
876 newRect
.right
- newRect
.left
+ deltawidth
,
877 newRect
.bottom
- newRect
.top
+ deltaheight
) ;
879 toplevelWindow
->HandleResizing( cEvent
.GetTicks(), &adjustR
);
881 const Rect adjustedRect
= { adjustR
.y
+ top
, adjustR
.x
+ left
, adjustR
.y
+ top
+ adjustR
.height
- deltaheight
,
882 adjustR
.x
+ left
+ adjustR
.width
- deltawidth
} ;
883 if ( !EqualRect( &newRect
, &adjustedRect
) )
884 cEvent
.SetParameter
<Rect
>( kEventParamCurrentBounds
, &adjustedRect
) ;
891 case kEventWindowGetRegion
:
893 if ( toplevelWindow
->GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT
)
895 WindowRegionCode windowRegionCode
;
897 // Fetch the region code that is being queried
898 GetEventParameter( event
,
899 kEventParamWindowRegionCode
,
900 typeWindowRegionCode
, NULL
,
901 sizeof windowRegionCode
, NULL
,
902 &windowRegionCode
) ;
904 // If it is the opaque region code then set the
905 // region to empty and return noErr to stop event
907 if ( windowRegionCode
== kWindowOpaqueRgn
) {
909 GetEventParameter( event
,
910 kEventParamRgnHandle
,
911 typeQDRgnHandle
, NULL
,
914 SetEmptyRgn(region
) ;
928 // mix this in from window.cpp
929 pascal OSStatus
wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
) ;
931 pascal OSStatus
wxNonOwnedEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
933 OSStatus result
= eventNotHandledErr
;
935 switch ( GetEventClass( event
) )
937 case kEventClassTextInput
:
939 // TODO remove as soon as all events are on implementation classes only
940 wxNonOwnedWindow
* toplevelWindow
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
942 result
= wxMacUnicodeTextEventHandler( handler
, event
, toplevelWindow
) ;
946 case kEventClassKeyboard
:
947 result
= KeyboardEventHandler( handler
, event
, data
) ;
950 case kEventClassWindow
:
951 result
= wxNonOwnedWindowEventHandler( handler
, event
, data
) ;
954 case kEventClassMouse
:
955 result
= wxMacTopLevelMouseEventHandler( handler
, event
, data
) ;
965 DEFINE_ONE_SHOT_HANDLER_GETTER( wxNonOwnedEventHandler
)
967 // ---------------------------------------------------------------------------
968 // Support functions for shaped windows, based on Apple's CustomWindow sample at
969 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
970 // ---------------------------------------------------------------------------
972 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
974 GetWindowPortBounds(window
, inRect
);
975 Point pt
= { inRect
->top
,inRect
->left
};
976 QDLocalToGlobalPoint( GetWindowPort( window
), &pt
);
977 inRect
->bottom
+= pt
.v
- inRect
->top
;
978 inRect
->right
+= pt
.h
- inRect
->left
;
983 static SInt32
wxShapedMacWindowGetFeatures(WindowRef
WXUNUSED(window
), SInt32 param
)
985 /*------------------------------------------------------
986 Define which options your custom window supports.
987 --------------------------------------------------------*/
988 //just enable everything for our demo
989 *(OptionBits
*)param
=
993 //kWindowCanGetWindowRegion |
994 //kWindowHasTitleBar |
995 //kWindowSupportsDragHilite |
996 kWindowCanDrawInCurrentPort
|
997 //kWindowCanMeasureTitle |
998 kWindowWantsDisposeAtProcessDeath
|
999 kWindowSupportsGetGrowImageRegion
|
1000 kWindowDefSupportsColorGrafPort
;
1005 // The content region is left as a rectangle matching the window size, this is
1006 // so the origin in the paint event, and etc. still matches what the
1007 // programmer expects.
1008 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1011 wxNonOwnedWindow
* win
= wxNonOwnedWindow::GetFromWXWindow((WXWindow
)window
);
1015 wxShapedMacWindowGetPos( window
, &r
) ;
1016 RectRgn( rgn
, &r
) ;
1020 // The structure region is set to the shape given to the SetShape method.
1021 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1023 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1029 wxShapedMacWindowGetPos(window
, &windowRect
); // how big is the window
1030 CopyRgn(cachedRegion
, rgn
); // make a copy of our cached region
1031 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1032 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1036 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1038 GetWindowRegionPtr rgnRec
= (GetWindowRegionPtr
)param
;
1043 switch (rgnRec
->regionCode
)
1045 case kWindowStructureRgn
:
1046 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1049 case kWindowContentRgn
:
1050 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1054 SetEmptyRgn(rgnRec
->winRgn
);
1061 // Determine the region of the window which was hit
1063 static SInt32
wxShapedMacWindowHitTest(WindowRef window
, SInt32 param
)
1066 static RgnHandle tempRgn
= NULL
;
1068 if (tempRgn
== NULL
)
1071 // get the point clicked
1072 SetPt( &hitPoint
, LoWord(param
), HiWord(param
) );
1074 // Mac OS 8.5 or later
1075 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1076 if (PtInRgn( hitPoint
, tempRgn
)) //in window content region?
1079 // no significant area was hit
1083 static pascal long wxShapedMacWindowDef(short WXUNUSED(varCode
), WindowRef window
, SInt16 message
, SInt32 param
)
1087 case kWindowMsgHitTest
:
1088 return wxShapedMacWindowHitTest(window
, param
);
1090 case kWindowMsgGetFeatures
:
1091 return wxShapedMacWindowGetFeatures(window
, param
);
1093 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1094 case kWindowMsgGetRegion
:
1095 return wxShapedMacWindowGetRegion(window
, param
);
1108 wxPoint m_position
;
1110 bool m_wasResizable
;
1113 wxNonOwnedWindowCarbonImpl::wxNonOwnedWindowCarbonImpl()
1117 wxNonOwnedWindowCarbonImpl::wxNonOwnedWindowCarbonImpl( wxNonOwnedWindow
* nonownedwnd
) : wxNonOwnedWindowImpl( nonownedwnd
)
1119 m_macEventHandler
= NULL
;
1121 m_macFullScreenData
= NULL
;
1124 wxNonOwnedWindowCarbonImpl::~wxNonOwnedWindowCarbonImpl()
1127 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
1130 if ( m_macEventHandler
)
1132 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
1133 m_macEventHandler
= NULL
;
1137 DisposeWindow( m_macWindow
);
1139 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1141 m_macFullScreenData
= NULL
;
1147 void wxNonOwnedWindowCarbonImpl::WillBeDestroyed()
1149 if ( m_macEventHandler
)
1151 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
1152 m_macEventHandler
= NULL
;
1156 void wxNonOwnedWindowInstallTopLevelWindowEventHandler(WindowRef window
, EventHandlerRef
* handler
, void *ref
)
1158 InstallWindowEventHandler(window
, GetwxNonOwnedEventHandlerUPP(),
1159 GetEventTypeCount(eventList
), eventList
, ref
, handler
);
1162 bool wxNonOwnedWindowCarbonImpl::SetShape(const wxRegion
& region
)
1164 // Make a copy of the region
1165 RgnHandle shapeRegion
= NewRgn();
1166 HIShapeGetAsQDRgn( region
.GetWXHRGN(), shapeRegion
);
1168 // Dispose of any shape region we may already have
1169 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
) m_wxPeer
->GetWXWindow() );
1173 // Save the region so we can use it later
1174 SetWRefCon((WindowRef
) m_wxPeer
->GetWXWindow(), (URefCon
)shapeRegion
);
1176 // inform the window manager that the window has changed shape
1177 ReshapeCustomWindow((WindowRef
) m_wxPeer
->GetWXWindow());
1183 void wxNonOwnedWindowCarbonImpl::MacInstallTopLevelWindowEventHandler()
1185 if ( m_macEventHandler
!= NULL
)
1187 verify_noerr( ::RemoveEventHandler( (EventHandlerRef
) m_macEventHandler
) ) ;
1189 wxNonOwnedWindowInstallTopLevelWindowEventHandler(MAC_WXHWND(m_macWindow
),(EventHandlerRef
*)&m_macEventHandler
,this);
1192 void wxNonOwnedWindowCarbonImpl::Create(
1196 long style
, long extraStyle
,
1197 const wxString
& WXUNUSED(name
) )
1200 OSStatus err
= noErr
;
1209 ::SetRect(&theBoundsRect
, x
, y
, x
+ w
, y
+ h
);
1211 // translate the window attributes in the appropriate window class and attributes
1212 WindowClass wclass
= 0;
1213 WindowAttributes attr
= kWindowNoAttributes
;
1214 WindowGroupRef group
= NULL
;
1215 bool activationScopeSet
= false;
1216 WindowActivationScope activationScope
= kWindowActivationScopeNone
;
1218 if ( style
& wxFRAME_TOOL_WINDOW
)
1221 ( style
& wxMINIMIZE_BOX
) || ( style
& wxMAXIMIZE_BOX
) ||
1222 ( style
& wxSYSTEM_MENU
) || ( style
& wxCAPTION
) ||
1223 ( style
&wxTINY_CAPTION_HORIZ
) || ( style
&wxTINY_CAPTION_VERT
)
1226 if ( ( style
& wxSTAY_ON_TOP
) )
1227 wclass
= kUtilityWindowClass
;
1229 wclass
= kFloatingWindowClass
;
1231 if ( ( style
&wxTINY_CAPTION_VERT
) )
1232 attr
|= kWindowSideTitlebarAttribute
;
1236 if ( style
& wxNO_BORDER
)
1238 wclass
= kSimpleWindowClass
;
1242 wclass
= kPlainWindowClass
;
1244 activationScopeSet
= true;
1245 activationScope
= kWindowActivationScopeNone
;
1248 else if ( ( style
& wxPOPUP_WINDOW
) )
1250 if ( ( style
& wxBORDER_NONE
) )
1252 wclass
= kHelpWindowClass
; // has no border
1253 attr
|= kWindowNoShadowAttribute
;
1257 wclass
= kPlainWindowClass
; // has a single line border, it will have to do for now
1259 group
= GetWindowGroupOfClass(kFloatingWindowClass
) ;
1260 // make sure we don't deactivate something
1261 activationScopeSet
= true;
1262 activationScope
= kWindowActivationScopeNone
;
1264 else if ( ( style
& wxCAPTION
) )
1266 wclass
= kDocumentWindowClass
;
1267 attr
|= kWindowInWindowMenuAttribute
;
1269 else if ( ( style
& wxFRAME_DRAWER
) )
1271 wclass
= kDrawerWindowClass
;
1275 if ( ( style
& wxMINIMIZE_BOX
) || ( style
& wxMAXIMIZE_BOX
) ||
1276 ( style
& wxCLOSE_BOX
) || ( style
& wxSYSTEM_MENU
) )
1278 wclass
= kDocumentWindowClass
;
1280 else if ( ( style
& wxNO_BORDER
) )
1282 wclass
= kSimpleWindowClass
;
1286 wclass
= kPlainWindowClass
;
1290 if ( wclass
!= kPlainWindowClass
)
1292 if ( ( style
& wxMINIMIZE_BOX
) )
1293 attr
|= kWindowCollapseBoxAttribute
;
1295 if ( ( style
& wxMAXIMIZE_BOX
) )
1296 attr
|= kWindowFullZoomAttribute
;
1298 if ( ( style
& wxRESIZE_BORDER
) )
1299 attr
|= kWindowResizableAttribute
;
1301 if ( ( style
& wxCLOSE_BOX
) )
1302 attr
|= kWindowCloseBoxAttribute
;
1304 attr
|= kWindowLiveResizeAttribute
;
1306 if ( ( style
&wxSTAY_ON_TOP
) )
1307 group
= GetWindowGroupOfClass(kUtilityWindowClass
) ;
1309 if ( ( style
& wxFRAME_FLOAT_ON_PARENT
) )
1310 group
= GetWindowGroupOfClass(kFloatingWindowClass
) ;
1312 if ( group
== NULL
&& parent
!= NULL
)
1314 WindowRef parenttlw
= (WindowRef
) parent
->MacGetTopLevelWindowRef();
1316 group
= GetWindowGroupParent( GetWindowGroup( parenttlw
) );
1319 attr
|= kWindowCompositingAttribute
;
1320 #if 0 // TODO : decide on overall handling of high dpi screens (pixel vs userscale)
1321 attr
|= kWindowFrameworkScaledAttribute
;
1324 if ( ( style
&wxFRAME_SHAPED
) )
1326 WindowDefSpec customWindowDefSpec
;
1327 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
1328 customWindowDefSpec
.u
.defProc
=
1330 (WindowDefUPP
) wxShapedMacWindowDef
;
1332 NewWindowDefUPP(wxShapedMacWindowDef
);
1334 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
1335 attr
, &theBoundsRect
,
1336 (WindowRef
*) &m_macWindow
);
1340 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
1343 if ( err
== noErr
&& m_macWindow
!= NULL
&& group
!= NULL
)
1344 SetWindowGroup( (WindowRef
) m_macWindow
, group
) ;
1346 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
1348 // setup a separate group for each window, so that overlays can be handled easily
1350 WindowGroupRef overlaygroup
= NULL
;
1351 verify_noerr( CreateWindowGroup( kWindowGroupAttrMoveTogether
| kWindowGroupAttrLayerTogether
| kWindowGroupAttrHideOnCollapse
, &overlaygroup
));
1352 verify_noerr( SetWindowGroupParent( overlaygroup
, GetWindowGroup( (WindowRef
) m_macWindow
)));
1353 verify_noerr( SetWindowGroup( (WindowRef
) m_macWindow
, overlaygroup
));
1355 if ( activationScopeSet
)
1357 verify_noerr( SetWindowActivationScope( (WindowRef
) m_macWindow
, activationScope
));
1360 // the create commands are only for content rect,
1361 // so we have to set the size again as structure bounds
1362 SetWindowBounds( m_macWindow
, kWindowStructureRgn
, &theBoundsRect
) ;
1364 // Causes the inner part of the window not to be metal
1365 // if the style is used before window creation.
1366 #if 0 // TARGET_API_MAC_OSX
1367 if ( m_macUsesCompositing
&& m_macWindow
!= NULL
)
1369 if ( GetExtraStyle() & wxFRAME_EX_METAL
)
1370 MacSetMetalAppearance( true ) ;
1374 if ( m_macWindow
!= NULL
)
1376 MacSetUnifiedAppearance( true ) ;
1379 HIViewRef growBoxRef
= 0 ;
1380 err
= HIViewFindByID( HIViewGetRoot( m_macWindow
), kHIViewWindowGrowBoxID
, &growBoxRef
);
1381 if ( err
== noErr
&& growBoxRef
!= 0 )
1382 HIGrowBoxViewSetTransparent( growBoxRef
, true ) ;
1384 // the frame window event handler
1385 InstallStandardEventHandler( GetWindowEventTarget(m_macWindow
) ) ;
1386 MacInstallTopLevelWindowEventHandler() ;
1388 if ( extraStyle
& wxFRAME_EX_METAL
)
1389 MacSetMetalAppearance(true);
1391 if ( ( style
&wxFRAME_SHAPED
) )
1393 // default shape matches the window size
1394 wxRegion
rgn( 0, 0, w
, h
);
1399 bool wxNonOwnedWindowCarbonImpl::ShowWithEffect(bool show
,
1400 wxShowEffect effect
,
1403 WindowTransitionEffect transition
= 0 ;
1406 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
1407 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
1408 case wxSHOW_EFFECT_ROLL_TO_TOP
:
1409 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
1410 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
1411 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
1412 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
1413 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
1414 transition
= kWindowGenieTransitionEffect
;
1416 case wxSHOW_EFFECT_BLEND
:
1417 transition
= kWindowFadeTransitionEffect
;
1419 case wxSHOW_EFFECT_EXPAND
:
1420 // having sheets would be fine, but this might lead to a repositioning
1423 transition
= kWindowSheetTransitionEffect
;
1426 transition
= kWindowZoomTransitionEffect
;
1429 case wxSHOW_EFFECT_NONE
:
1430 // wxNonOwnedWindow is supposed to call Show() itself in this case
1431 wxFAIL_MSG( "ShowWithEffect() shouldn't be called" );
1434 case wxSHOW_EFFECT_MAX
:
1435 wxFAIL_MSG( "invalid effect flag" );
1439 TransitionWindowOptions options
;
1440 options
.version
= 0;
1441 options
.duration
= timeout
/ 1000.0;
1442 options
.window
= transition
== kWindowSheetTransitionEffect
? (WindowRef
) m_wxPeer
->GetParent()->MacGetTopLevelWindowRef() :0;
1443 options
.userData
= 0;
1445 wxSize size
= wxGetDisplaySize();
1447 GetWindowBounds( (WindowRef
)m_macWindow
, kWindowStructureRgn
, &bounds
);
1448 CGRect hiBounds
= CGRectMake( bounds
.left
, bounds
.top
, bounds
.right
- bounds
.left
, bounds
.bottom
- bounds
.top
);
1452 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
1453 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
1454 hiBounds
.origin
.x
= 0;
1455 hiBounds
.size
.width
= 0;
1458 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
1459 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
1460 hiBounds
.origin
.x
= size
.x
;
1461 hiBounds
.size
.width
= 0;
1464 case wxSHOW_EFFECT_ROLL_TO_TOP
:
1465 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
1466 hiBounds
.origin
.y
= size
.y
;
1467 hiBounds
.size
.height
= 0;
1470 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
1471 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
1472 hiBounds
.origin
.y
= 0;
1473 hiBounds
.size
.height
= 0;
1477 break; // direction doesn't make sense
1480 ::TransitionWindowWithOptions
1482 (WindowRef
)m_macWindow
,
1484 show
? kWindowShowTransitionAction
: kWindowHideTransitionAction
,
1485 transition
== kWindowGenieTransitionEffect
? &hiBounds
: NULL
,
1492 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1498 void wxNonOwnedWindowCarbonImpl::SetTitle( const wxString
& title
, wxFontEncoding encoding
)
1500 SetWindowTitleWithCFString( m_macWindow
, wxCFStringRef( title
, encoding
) ) ;
1503 bool wxNonOwnedWindowCarbonImpl::IsMaximized() const
1505 return IsWindowInStandardState( m_macWindow
, NULL
, NULL
) ;
1508 bool wxNonOwnedWindowCarbonImpl::IsIconized() const
1510 return IsWindowCollapsed((WindowRef
)GetWXWindow() ) ;
1513 void wxNonOwnedWindowCarbonImpl::Iconize( bool iconize
)
1515 if ( IsWindowCollapsable( m_macWindow
) )
1516 CollapseWindow( m_macWindow
, iconize
) ;
1519 void wxNonOwnedWindowCarbonImpl::Maximize(bool maximize
)
1521 Point idealSize
= { 0 , 0 } ;
1524 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
1526 HIWindowGetAvailablePositioningBounds(kCGNullDirectDisplay
,kHICoordSpace72DPIGlobal
,
1528 idealSize
.h
= bounds
.size
.width
;
1529 idealSize
.v
= bounds
.size
.height
;
1532 GetAvailableWindowPositioningBounds(GetMainDevice(),&rect
) ;
1533 idealSize
.h
= rect
.right
- rect
.left
;
1534 idealSize
.v
= rect
.bottom
- rect
.top
;
1537 ZoomWindowIdeal( (WindowRef
)GetWXWindow() , maximize
? inZoomOut
: inZoomIn
, &idealSize
) ;
1540 bool wxNonOwnedWindowCarbonImpl::IsFullScreen() const
1542 return m_macFullScreenData
!= NULL
;
1545 bool wxNonOwnedWindowCarbonImpl::ShowFullScreen(bool show
, long style
)
1549 FullScreenData
*data
= (FullScreenData
*)m_macFullScreenData
;
1551 data
= new FullScreenData() ;
1553 m_macFullScreenData
= data
;
1554 data
->m_position
= m_wxPeer
->GetPosition() ;
1555 data
->m_size
= m_wxPeer
->GetSize() ;
1556 #if wxOSX_USE_CARBON
1557 WindowAttributes attr
= 0;
1558 GetWindowAttributes((WindowRef
) GetWXWindow(), &attr
);
1559 data
->m_wasResizable
= attr
& kWindowResizableAttribute
;
1560 if ( style
& wxFULLSCREEN_NOMENUBAR
)
1564 wxRect client
= wxGetClientDisplayRect() ;
1566 int left
, top
, width
, height
;
1574 GetContentArea( left
, top
, width
, height
) ;
1575 int outerwidth
, outerheight
;
1576 GetSize( outerwidth
, outerheight
);
1578 if ( style
& wxFULLSCREEN_NOCAPTION
)
1582 // avoid adding the caption twice to the height
1586 if ( style
& wxFULLSCREEN_NOBORDER
)
1589 w
+= outerwidth
- width
;
1590 h
+= outerheight
- height
;
1593 if ( style
& wxFULLSCREEN_NOTOOLBAR
)
1598 if ( style
& wxFULLSCREEN_NOSTATUSBAR
)
1603 m_wxPeer
->SetSize( x
, y
, w
, h
) ;
1604 if ( data
->m_wasResizable
)
1606 #if wxOSX_USE_CARBON
1607 ChangeWindowAttributes( (WindowRef
) GetWXWindow() , kWindowNoAttributes
, kWindowResizableAttribute
) ;
1611 else if ( m_macFullScreenData
!= NULL
)
1613 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1614 #if wxOSX_USE_CARBON
1616 if ( data
->m_wasResizable
)
1617 ChangeWindowAttributes( (WindowRef
) GetWXWindow() , kWindowResizableAttribute
, kWindowNoAttributes
) ;
1619 m_wxPeer
->SetPosition( data
->m_position
) ;
1620 m_wxPeer
->SetSize( data
->m_size
) ;
1623 m_macFullScreenData
= NULL
;
1629 // Attracts the users attention to this window if the application is
1630 // inactive (should be called when a background event occurs)
1632 static pascal void wxMacNMResponse( NMRecPtr ptr
)
1635 DisposePtr( (Ptr
)ptr
) ;
1638 void wxNonOwnedWindowCarbonImpl::RequestUserAttention(int WXUNUSED(flags
))
1640 NMRecPtr notificationRequest
= (NMRecPtr
) NewPtr( sizeof( NMRec
) ) ;
1642 memset( notificationRequest
, 0 , sizeof(*notificationRequest
) ) ;
1643 notificationRequest
->qType
= nmType
;
1644 notificationRequest
->nmMark
= 1 ;
1645 notificationRequest
->nmIcon
= 0 ;
1646 notificationRequest
->nmSound
= 0 ;
1647 notificationRequest
->nmStr
= NULL
;
1648 notificationRequest
->nmResp
= wxMacNMResponse
;
1650 verify_noerr( NMInstall( notificationRequest
) ) ;
1653 void wxNonOwnedWindowCarbonImpl::ScreenToWindow( int *x
, int *y
)
1655 HIPoint p
= CGPointMake( (x
? *x
: 0), (y
? *y
: 0) );
1656 HIViewRef contentView
;
1657 // TODO check toolbar offset
1658 HIViewFindByID( HIViewGetRoot( m_macWindow
), kHIViewWindowContentID
, &contentView
) ;
1659 HIPointConvert( &p
, kHICoordSpace72DPIGlobal
, NULL
, kHICoordSpaceView
, contentView
);
1666 void wxNonOwnedWindowCarbonImpl::WindowToScreen( int *x
, int *y
)
1668 HIPoint p
= CGPointMake( (x
? *x
: 0), (y
? *y
: 0) );
1669 HIViewRef contentView
;
1670 // TODO check toolbar offset
1671 HIViewFindByID( HIViewGetRoot( m_macWindow
), kHIViewWindowContentID
, &contentView
) ;
1672 HIPointConvert( &p
, kHICoordSpaceView
, contentView
, kHICoordSpace72DPIGlobal
, NULL
);
1679 bool wxNonOwnedWindowCarbonImpl::IsActive()
1681 return ActiveNonFloatingWindow() == m_macWindow
;
1684 wxNonOwnedWindowImpl
* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
1685 long style
, long extraStyle
, const wxString
& name
)
1687 wxNonOwnedWindowImpl
* now
= new wxNonOwnedWindowCarbonImpl( wxpeer
);
1688 now
->Create( parent
, pos
, size
, style
, extraStyle
, name
);