1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/nonownedwnd.cpp
3 // Purpose: implementation of wxNonOwnedWindow
4 // Author: Stefan Csomor
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 behaviour
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
);
257 WXDLLEXPORT
void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
);
259 // ---------------------------------------------------------------------------
261 // ---------------------------------------------------------------------------
263 static const EventTypeSpec eventList
[] =
265 // TODO: remove control related event like key and mouse (except for WindowLeave events)
267 { kEventClassKeyboard
, kEventRawKeyDown
} ,
268 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
269 { kEventClassKeyboard
, kEventRawKeyUp
} ,
270 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
272 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
273 { kEventClassTextInput
, kEventTextInputUpdateActiveInputArea
} ,
275 { kEventClassWindow
, kEventWindowShown
} ,
276 { kEventClassWindow
, kEventWindowActivated
} ,
277 { kEventClassWindow
, kEventWindowDeactivated
} ,
278 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
279 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
280 { kEventClassWindow
, kEventWindowClose
} ,
281 { kEventClassWindow
, kEventWindowGetRegion
} ,
283 // we have to catch these events on the toplevel window level,
284 // as controls don't get the raw mouse events anymore
286 { kEventClassMouse
, kEventMouseDown
} ,
287 { kEventClassMouse
, kEventMouseUp
} ,
288 { kEventClassMouse
, kEventMouseWheelMoved
} ,
289 { kEventClassMouse
, kEventMouseMoved
} ,
290 { kEventClassMouse
, kEventMouseDragged
} ,
293 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
295 OSStatus result
= eventNotHandledErr
;
296 // call DoFindFocus instead of FindFocus, because for Composite Windows(like WxGenericListCtrl)
297 // FindFocus does not return the actual focus window, but the enclosing window
298 wxWindow
* focus
= wxWindow::DoFindFocus();
300 focus
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
302 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 wxMBConvUTF16 converter
;
326 converter
.MB2WC( uniChar
, (const char*)charBuf
, 2 ) ;
328 if ( numChars
* 2 > 4 )
331 #endif // wxUSE_UNICODE
333 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
, 1, NULL
, &charCode
);
334 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
335 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
337 UInt32 message
= (keyCode
<< 8) + charCode
;
338 switch ( GetEventKind( event
) )
340 case kEventRawKeyRepeat
:
341 case kEventRawKeyDown
:
343 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
344 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
345 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
346 if ( /* focus && */ wxTheApp
->MacSendKeyDownEvent(
347 focus
, message
, modifiers
, when
, uniChar
[0] ) )
351 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
355 case kEventRawKeyUp
:
356 if ( /* focus && */ wxTheApp
->MacSendKeyUpEvent(
357 focus
, message
, modifiers
, when
, uniChar
[0] ) )
363 case kEventRawKeyModifiersChanged
:
365 wxKeyEvent
event(wxEVT_KEY_DOWN
);
367 event
.m_shiftDown
= modifiers
& shiftKey
;
368 event
.m_rawControlDown
= modifiers
& controlKey
;
369 event
.m_altDown
= modifiers
& optionKey
;
370 event
.m_controlDown
= event
.m_metaDown
= modifiers
& cmdKey
;
373 event
.m_uniChar
= uniChar
[0] ;
376 event
.SetTimestamp(when
);
377 event
.SetEventObject(focus
);
379 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & controlKey
)
381 event
.m_keyCode
= WXK_RAW_CONTROL
;
382 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
383 focus
->HandleWindowEvent( event
) ;
385 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & shiftKey
)
387 event
.m_keyCode
= WXK_SHIFT
;
388 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
389 focus
->HandleWindowEvent( event
) ;
391 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & optionKey
)
393 event
.m_keyCode
= WXK_ALT
;
394 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
395 focus
->HandleWindowEvent( event
) ;
397 if ( /* focus && */ (modifiers
^ wxApp::s_lastModifiers
) & cmdKey
)
399 event
.m_keyCode
= WXK_CONTROL
;
400 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
401 focus
->HandleWindowEvent( event
) ;
404 wxApp::s_lastModifiers
= modifiers
;
415 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
416 // for windows that we didn't create (like eg Scrollbars in a databrowser), or for controls where we did not handle the
419 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
421 EventMouseButton g_lastButton
= 0 ;
422 bool g_lastButtonWasFakeRight
= false ;
424 WXDLLEXPORT
void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
)
426 UInt32 modifiers
= cEvent
.GetParameter
<UInt32
>(kEventParamKeyModifiers
, typeUInt32
) ;
427 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
429 // these parameters are not given for all events
430 EventMouseButton button
= 0 ;
431 UInt32 clickCount
= 0 ;
432 UInt32 mouseChord
= 0;
434 cEvent
.GetParameter
<EventMouseButton
>( kEventParamMouseButton
, typeMouseButton
, &button
) ;
435 cEvent
.GetParameter
<UInt32
>( kEventParamClickCount
, typeUInt32
, &clickCount
) ;
436 // the chord is the state of the buttons pressed currently
437 cEvent
.GetParameter
<UInt32
>( kEventParamMouseChord
, typeUInt32
, &mouseChord
) ;
439 wxevent
.m_x
= screenMouseLocation
.h
;
440 wxevent
.m_y
= screenMouseLocation
.v
;
441 wxevent
.m_shiftDown
= modifiers
& shiftKey
;
442 wxevent
.m_rawControlDown
= modifiers
& controlKey
;
443 wxevent
.m_altDown
= modifiers
& optionKey
;
444 wxevent
.m_controlDown
= wxevent
.m_metaDown
= modifiers
& cmdKey
;
445 wxevent
.m_clickCount
= clickCount
;
446 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
448 // a control click is interpreted as a right click
449 bool thisButtonIsFakeRight
= false ;
450 if ( button
== kEventMouseButtonPrimary
&& (modifiers
& controlKey
) )
452 button
= kEventMouseButtonSecondary
;
453 thisButtonIsFakeRight
= true ;
456 // otherwise we report double clicks by connecting a left click with a ctrl-left click
457 if ( clickCount
> 1 && button
!= g_lastButton
)
460 // we must make sure that our synthetic 'right' button corresponds in
461 // mouse down, moved and mouse up, and does not deliver a right down and left up
463 if ( cEvent
.GetKind() == kEventMouseDown
)
465 g_lastButton
= button
;
466 g_lastButtonWasFakeRight
= thisButtonIsFakeRight
;
472 g_lastButtonWasFakeRight
= false ;
474 else if ( g_lastButton
== kEventMouseButtonSecondary
&& g_lastButtonWasFakeRight
)
475 button
= g_lastButton
;
477 // Adjust the chord mask to remove the primary button and add the
478 // secondary button. It is possible that the secondary button is
479 // already pressed, e.g. on a mouse connected to a laptop, but this
480 // possibility is ignored here:
481 if( thisButtonIsFakeRight
&& ( mouseChord
& 1U ) )
482 mouseChord
= ((mouseChord
& ~1U) | 2U);
485 wxevent
.m_leftDown
= true ;
487 wxevent
.m_rightDown
= true ;
489 wxevent
.m_middleDown
= true ;
491 // translate into wx types
492 switch ( cEvent
.GetKind() )
494 case kEventMouseDown
:
497 case kEventMouseButtonPrimary
:
498 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
) ;
501 case kEventMouseButtonSecondary
:
502 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
) ;
505 case kEventMouseButtonTertiary
:
506 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
) ;
517 case kEventMouseButtonPrimary
:
518 wxevent
.SetEventType( wxEVT_LEFT_UP
) ;
521 case kEventMouseButtonSecondary
:
522 wxevent
.SetEventType( wxEVT_RIGHT_UP
) ;
525 case kEventMouseButtonTertiary
:
526 wxevent
.SetEventType( wxEVT_MIDDLE_UP
) ;
533 // TODO http://developer.apple.com/qa/qa2005/qa1453.html
534 // add declaration for 10.4 and change to kEventMouseScroll
535 case kEventMouseWheelMoved
:
537 wxevent
.SetEventType( wxEVT_MOUSEWHEEL
) ;
539 EventMouseWheelAxis axis
= cEvent
.GetParameter
<EventMouseWheelAxis
>(kEventParamMouseWheelAxis
, typeMouseWheelAxis
) ;
540 SInt32 delta
= cEvent
.GetParameter
<SInt32
>(kEventParamMouseWheelDelta
, typeSInt32
) ;
542 wxevent
.m_wheelRotation
= delta
;
543 wxevent
.m_wheelDelta
= 1;
544 wxevent
.m_linesPerAction
= 1;
545 wxevent
.m_columnsPerAction
= 1;
546 if ( axis
== kEventMouseWheelAxisX
)
547 wxevent
.m_wheelAxis
= wxMOUSE_WHEEL_HORIZONTAL
;
551 case kEventMouseEntered
:
552 case kEventMouseExited
:
553 case kEventMouseDragged
:
554 case kEventMouseMoved
:
555 wxevent
.SetEventType( wxEVT_MOTION
) ;
562 #define NEW_CAPTURE_HANDLING 1
565 wxMacTopLevelMouseEventHandler(EventHandlerCallRef
WXUNUSED(handler
),
569 wxNonOwnedWindow
* toplevelWindow
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
571 OSStatus result
= eventNotHandledErr
;
573 wxMacCarbonEvent
cEvent( event
) ;
575 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
576 Point windowMouseLocation
= screenMouseLocation
;
578 WindowRef window
= NULL
;
579 short windowPart
= ::FindWindow(screenMouseLocation
, &window
);
581 wxWindow
* currentMouseWindow
= NULL
;
582 ControlRef control
= NULL
;
584 #if NEW_CAPTURE_HANDLING
585 if ( wxApp::s_captureWindow
)
587 window
= (WindowRef
) wxApp::s_captureWindow
->MacGetTopLevelWindowRef() ;
588 windowPart
= inContent
;
594 QDGlobalToLocalPoint( GetWindowPort( window
), &windowMouseLocation
);
596 if ( wxApp::s_captureWindow
597 #if !NEW_CAPTURE_HANDLING
598 && wxApp::s_captureWindow
->MacGetTopLevelWindowRef() == (WXWindow
) window
&& windowPart
== inContent
602 currentMouseWindow
= wxApp::s_captureWindow
;
604 else if ( (IsWindowActive(window
) && windowPart
== inContent
) )
606 ControlPartCode part
;
607 control
= FindControlUnderMouse( windowMouseLocation
, window
, &part
) ;
608 // if there is no control below the mouse position, send the event to the toplevel window itself
611 currentMouseWindow
= (wxWindow
*) toplevelWindow
;
615 currentMouseWindow
= (wxWindow
*) wxFindWindowFromWXWidget( (WXWidget
) control
) ;
616 #ifndef __WXUNIVERSAL__
617 if ( currentMouseWindow
== NULL
&& cEvent
.GetKind() == kEventMouseMoved
)
620 // for wxToolBar to function we have to send certaint events to it
621 // instead of its children (wxToolBarTools)
623 GetSuperControl(control
, &parent
);
624 wxWindow
*wxparent
= (wxWindow
*) wxFindWindowFromWXWidget((WXWidget
) parent
) ;
625 if ( wxparent
&& wxparent
->IsKindOf( CLASSINFO( wxToolBar
) ) )
626 currentMouseWindow
= wxparent
;
632 // disabled windows must not get any input messages
633 if ( currentMouseWindow
&& !currentMouseWindow
->MacIsReallyEnabled() )
634 currentMouseWindow
= NULL
;
638 wxMouseEvent
wxevent(wxEVT_LEFT_DOWN
);
639 SetupMouseEvent( wxevent
, cEvent
) ;
641 // handle all enter / leave events
643 if ( currentMouseWindow
!= g_MacLastWindow
)
645 if ( g_MacLastWindow
)
647 wxMouseEvent
eventleave(wxevent
);
648 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
649 g_MacLastWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
650 eventleave
.SetEventObject( g_MacLastWindow
) ;
651 wxevent
.SetId( g_MacLastWindow
->GetId() ) ;
654 wxToolTip::RelayEvent( g_MacLastWindow
, eventleave
);
657 g_MacLastWindow
->HandleWindowEvent(eventleave
);
660 if ( currentMouseWindow
)
662 wxMouseEvent
evententer(wxevent
);
663 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
664 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
665 evententer
.SetEventObject( currentMouseWindow
) ;
666 wxevent
.SetId( currentMouseWindow
->GetId() ) ;
669 wxToolTip::RelayEvent( currentMouseWindow
, evententer
);
672 currentMouseWindow
->HandleWindowEvent(evententer
);
675 g_MacLastWindow
= currentMouseWindow
;
678 if ( windowPart
== inMenuBar
)
680 // special case menu bar, as we are having a low-level runloop we must do it ourselves
681 if ( cEvent
.GetKind() == kEventMouseDown
)
683 ::MenuSelect( screenMouseLocation
) ;
688 else if ( window
&& windowPart
== inProxyIcon
)
690 // special case proxy icon bar, as we are having a low-level runloop we must do it ourselves
691 if ( cEvent
.GetKind() == kEventMouseDown
)
693 if ( ::TrackWindowProxyDrag( window
, screenMouseLocation
) != errUserWantsToDragWindow
)
695 // TODO Track change of file path and report back
700 else if ( currentMouseWindow
)
702 wxWindow
*currentMouseWindowParent
= currentMouseWindow
->GetParent();
704 currentMouseWindow
->ScreenToClient( &wxevent
.m_x
, &wxevent
.m_y
) ;
706 wxevent
.SetEventObject( currentMouseWindow
) ;
707 wxevent
.SetId( currentMouseWindow
->GetId() ) ;
709 // make tooltips current
712 if ( wxevent
.GetEventType() == wxEVT_MOTION
)
713 wxToolTip::RelayEvent( currentMouseWindow
, wxevent
);
716 if ( currentMouseWindow
->HandleWindowEvent(wxevent
) )
718 if ( currentMouseWindowParent
&&
719 !currentMouseWindowParent
->GetChildren().Member(currentMouseWindow
) )
720 currentMouseWindow
= NULL
;
726 // if the user code did _not_ handle the event, then perform the
727 // default processing
728 if ( wxevent
.GetEventType() == wxEVT_LEFT_DOWN
)
730 // ... that is set focus to this window
731 if (currentMouseWindow
->CanAcceptFocus() && wxWindow::FindFocus()!=currentMouseWindow
)
732 currentMouseWindow
->SetFocus();
736 if ( cEvent
.GetKind() == kEventMouseUp
&& wxApp::s_captureWindow
)
738 wxApp::s_captureWindow
= NULL
;
744 wxWindow
* cursorTarget
= currentMouseWindow
;
745 wxPoint
cursorPoint( wxevent
.m_x
, wxevent
.m_y
) ;
747 extern wxCursor gGlobalCursor
;
749 if (!gGlobalCursor
.IsOk())
751 while ( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
753 cursorTarget
= cursorTarget
->GetParent() ;
755 cursorPoint
+= cursorTarget
->GetPosition();
760 else // currentMouseWindow == NULL
762 if (toplevelWindow
&& !control
)
764 extern wxCursor gGlobalCursor
;
765 if (!gGlobalCursor
.IsOk())
767 // update cursor when over toolbar and titlebar etc.
768 wxSTANDARD_CURSOR
->MacInstall() ;
772 // don't mess with controls we don't know about
773 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
774 // so we try sending them the correct control directly
775 if ( cEvent
.GetKind() == kEventMouseDown
&& toplevelWindow
&& control
)
777 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
778 Point clickLocation
= windowMouseLocation
;
781 hiPoint
.x
= clickLocation
.h
;
782 hiPoint
.y
= clickLocation
.v
;
783 HIViewConvertPoint( &hiPoint
, (ControlRef
) toplevelWindow
->GetHandle() , control
) ;
784 clickLocation
.h
= (int)hiPoint
.x
;
785 clickLocation
.v
= (int)hiPoint
.y
;
787 HandleControlClick( control
, clickLocation
, modifiers
, (ControlActionUPP
) -1 ) ;
795 static pascal OSStatus
796 wxNonOwnedWindowEventHandler(EventHandlerCallRef
WXUNUSED(handler
),
800 OSStatus result
= eventNotHandledErr
;
802 wxMacCarbonEvent
cEvent( event
) ;
804 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
805 wxNonOwnedWindow
* toplevelWindow
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
807 switch ( GetEventKind( event
) )
809 case kEventWindowActivated
:
811 toplevelWindow
->HandleActivated( cEvent
.GetTicks() , true) ;
812 // we still sending an eventNotHandledErr in order to allow for default processing
816 case kEventWindowDeactivated
:
818 toplevelWindow
->HandleActivated( cEvent
.GetTicks() , false) ;
819 // we still sending an eventNotHandledErr in order to allow for default processing
823 case kEventWindowShown
:
824 toplevelWindow
->Refresh() ;
828 case kEventWindowClose
:
829 toplevelWindow
->Close() ;
833 case kEventWindowBoundsChanged
:
835 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
, typeUInt32
) ;
836 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
837 wxRect
r( newRect
.left
, newRect
.top
, newRect
.right
- newRect
.left
, newRect
.bottom
- newRect
.top
) ;
838 if ( attributes
& kWindowBoundsChangeSizeChanged
)
840 toplevelWindow
->HandleResized(cEvent
.GetTicks() ) ;
843 if ( attributes
& kWindowBoundsChangeOriginChanged
)
845 toplevelWindow
->HandleMoved(cEvent
.GetTicks() ) ;
852 case kEventWindowBoundsChanging
:
854 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
855 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
857 if ( (attributes
& kWindowBoundsChangeSizeChanged
) || (attributes
& kWindowBoundsChangeOriginChanged
) )
859 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
860 int left
, top
, width
, height
;
864 toplevelWindow
->GetNonOwnedPeer()->GetContentArea(left
, top
, width
, height
);
865 toplevelWindow
->GetNonOwnedPeer()->GetSize(swidth
, sheight
);
866 int deltawidth
= swidth
- width
;
867 int deltaheight
= sheight
- height
;
871 newRect
.right
- newRect
.left
+ deltawidth
,
872 newRect
.bottom
- newRect
.top
+ deltaheight
) ;
874 toplevelWindow
->HandleResizing( cEvent
.GetTicks(), &adjustR
);
876 const Rect adjustedRect
= { adjustR
.y
+ top
, adjustR
.x
+ left
, adjustR
.y
+ top
+ adjustR
.height
- deltaheight
,
877 adjustR
.x
+ left
+ adjustR
.width
- deltawidth
} ;
878 if ( !EqualRect( &newRect
, &adjustedRect
) )
879 cEvent
.SetParameter
<Rect
>( kEventParamCurrentBounds
, &adjustedRect
) ;
886 case kEventWindowGetRegion
:
888 if ( toplevelWindow
->GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT
)
890 WindowRegionCode windowRegionCode
;
892 // Fetch the region code that is being queried
893 GetEventParameter( event
,
894 kEventParamWindowRegionCode
,
895 typeWindowRegionCode
, NULL
,
896 sizeof windowRegionCode
, NULL
,
897 &windowRegionCode
) ;
899 // If it is the opaque region code then set the
900 // region to empty and return noErr to stop event
902 if ( windowRegionCode
== kWindowOpaqueRgn
) {
904 GetEventParameter( event
,
905 kEventParamRgnHandle
,
906 typeQDRgnHandle
, NULL
,
909 SetEmptyRgn(region
) ;
923 // mix this in from window.cpp
924 pascal OSStatus
wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
) ;
926 static pascal OSStatus
wxNonOwnedEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
928 OSStatus result
= eventNotHandledErr
;
930 switch ( GetEventClass( event
) )
932 case kEventClassTextInput
:
934 // TODO remove as soon as all events are on implementation classes only
935 wxNonOwnedWindow
* toplevelWindow
= data
? ((wxNonOwnedWindowImpl
*) data
)->GetWXPeer() : NULL
;
937 result
= wxMacUnicodeTextEventHandler( handler
, event
, toplevelWindow
) ;
941 case kEventClassKeyboard
:
942 result
= KeyboardEventHandler( handler
, event
, data
) ;
945 case kEventClassWindow
:
946 result
= wxNonOwnedWindowEventHandler( handler
, event
, data
) ;
949 case kEventClassMouse
:
950 result
= wxMacTopLevelMouseEventHandler( handler
, event
, data
) ;
960 DEFINE_ONE_SHOT_HANDLER_GETTER( wxNonOwnedEventHandler
)
962 // ---------------------------------------------------------------------------
963 // Support functions for shaped windows, based on Apple's CustomWindow sample at
964 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
965 // ---------------------------------------------------------------------------
967 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
969 GetWindowPortBounds(window
, inRect
);
970 Point pt
= { inRect
->top
,inRect
->left
};
971 QDLocalToGlobalPoint( GetWindowPort( window
), &pt
);
972 inRect
->bottom
+= pt
.v
- inRect
->top
;
973 inRect
->right
+= pt
.h
- inRect
->left
;
978 static SInt32
wxShapedMacWindowGetFeatures(WindowRef
WXUNUSED(window
), SInt32 param
)
980 /*------------------------------------------------------
981 Define which options your custom window supports.
982 --------------------------------------------------------*/
983 //just enable everything for our demo
984 *(OptionBits
*)param
=
988 //kWindowCanGetWindowRegion |
989 //kWindowHasTitleBar |
990 //kWindowSupportsDragHilite |
991 kWindowCanDrawInCurrentPort
|
992 //kWindowCanMeasureTitle |
993 kWindowWantsDisposeAtProcessDeath
|
994 kWindowSupportsGetGrowImageRegion
|
995 kWindowDefSupportsColorGrafPort
;
1000 // The content region is left as a rectangle matching the window size, this is
1001 // so the origin in the paint event, and etc. still matches what the
1002 // programmer expects.
1003 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1006 wxNonOwnedWindow
* win
= wxNonOwnedWindow::GetFromWXWindow((WXWindow
)window
);
1010 wxShapedMacWindowGetPos( window
, &r
) ;
1011 RectRgn( rgn
, &r
) ;
1015 // The structure region is set to the shape given to the SetShape method.
1016 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1018 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1024 wxShapedMacWindowGetPos(window
, &windowRect
); // how big is the window
1025 CopyRgn(cachedRegion
, rgn
); // make a copy of our cached region
1026 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1027 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1031 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1033 GetWindowRegionPtr rgnRec
= (GetWindowRegionPtr
)param
;
1038 switch (rgnRec
->regionCode
)
1040 case kWindowStructureRgn
:
1041 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1044 case kWindowContentRgn
:
1045 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1049 SetEmptyRgn(rgnRec
->winRgn
);
1056 // Determine the region of the window which was hit
1058 static SInt32
wxShapedMacWindowHitTest(WindowRef window
, SInt32 param
)
1061 static RgnHandle tempRgn
= NULL
;
1063 if (tempRgn
== NULL
)
1066 // get the point clicked
1067 SetPt( &hitPoint
, LoWord(param
), HiWord(param
) );
1069 // Mac OS 8.5 or later
1070 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1071 if (PtInRgn( hitPoint
, tempRgn
)) //in window content region?
1074 // no significant area was hit
1078 static pascal long wxShapedMacWindowDef(short WXUNUSED(varCode
), WindowRef window
, SInt16 message
, SInt32 param
)
1082 case kWindowMsgHitTest
:
1083 return wxShapedMacWindowHitTest(window
, param
);
1085 case kWindowMsgGetFeatures
:
1086 return wxShapedMacWindowGetFeatures(window
, param
);
1088 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1089 case kWindowMsgGetRegion
:
1090 return wxShapedMacWindowGetRegion(window
, param
);
1103 wxPoint m_position
;
1105 bool m_wasResizable
;
1108 wxNonOwnedWindowCarbonImpl::wxNonOwnedWindowCarbonImpl()
1112 wxNonOwnedWindowCarbonImpl::wxNonOwnedWindowCarbonImpl( wxNonOwnedWindow
* nonownedwnd
) : wxNonOwnedWindowImpl( nonownedwnd
)
1114 m_macEventHandler
= NULL
;
1116 m_macFullScreenData
= NULL
;
1119 wxNonOwnedWindowCarbonImpl::~wxNonOwnedWindowCarbonImpl()
1122 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
1125 if ( m_macEventHandler
)
1127 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
1128 m_macEventHandler
= NULL
;
1131 if ( m_macWindow
&& !m_wxPeer
->IsNativeWindowWrapper())
1132 DisposeWindow( m_macWindow
);
1134 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1136 m_macFullScreenData
= NULL
;
1142 void wxNonOwnedWindowCarbonImpl::WillBeDestroyed()
1144 if ( m_macEventHandler
)
1146 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
1147 m_macEventHandler
= NULL
;
1151 static void wxNonOwnedWindowInstallTopLevelWindowEventHandler(WindowRef window
, EventHandlerRef
* handler
, void *ref
)
1153 InstallWindowEventHandler(window
, GetwxNonOwnedEventHandlerUPP(),
1154 GetEventTypeCount(eventList
), eventList
, ref
, handler
);
1157 bool wxNonOwnedWindowCarbonImpl::SetShape(const wxRegion
& region
)
1159 // Make a copy of the region
1160 RgnHandle shapeRegion
= NewRgn();
1161 HIShapeGetAsQDRgn( region
.GetWXHRGN(), shapeRegion
);
1163 // Dispose of any shape region we may already have
1164 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
) m_wxPeer
->GetWXWindow() );
1168 // Save the region so we can use it later
1169 SetWRefCon((WindowRef
) m_wxPeer
->GetWXWindow(), (URefCon
)shapeRegion
);
1171 // inform the window manager that the window has changed shape
1172 ReshapeCustomWindow((WindowRef
) m_wxPeer
->GetWXWindow());
1178 void wxNonOwnedWindowCarbonImpl::MacInstallTopLevelWindowEventHandler()
1180 if ( m_macEventHandler
!= NULL
)
1182 verify_noerr( ::RemoveEventHandler( (EventHandlerRef
) m_macEventHandler
) ) ;
1184 wxNonOwnedWindowInstallTopLevelWindowEventHandler(MAC_WXHWND(m_macWindow
),(EventHandlerRef
*)&m_macEventHandler
,this);
1187 void wxNonOwnedWindowCarbonImpl::Create(
1188 wxWindow
* WXUNUSED(parent
),
1189 WXWindow nativeWindow
)
1191 m_macWindow
= nativeWindow
;
1194 void wxNonOwnedWindowCarbonImpl::Create(
1198 long style
, long extraStyle
,
1199 const wxString
& WXUNUSED(name
) )
1202 OSStatus err
= noErr
;
1211 ::SetRect(&theBoundsRect
, x
, y
, x
+ w
, y
+ h
);
1213 // translate the window attributes in the appropriate window class and attributes
1214 WindowClass wclass
= 0;
1215 WindowAttributes attr
= kWindowNoAttributes
;
1216 WindowGroupRef group
= NULL
;
1217 bool activationScopeSet
= false;
1218 WindowActivationScope activationScope
= kWindowActivationScopeNone
;
1220 if ( style
& wxFRAME_TOOL_WINDOW
)
1223 ( style
& wxMINIMIZE_BOX
) || ( style
& wxMAXIMIZE_BOX
) ||
1224 ( style
& wxSYSTEM_MENU
) || ( style
& wxCAPTION
) ||
1225 ( style
& wxTINY_CAPTION
)
1228 if ( ( style
& wxSTAY_ON_TOP
) )
1229 wclass
= kUtilityWindowClass
;
1231 wclass
= kFloatingWindowClass
;
1233 if ( ( style
& wxTINY_CAPTION
) )
1234 attr
|= kWindowSideTitlebarAttribute
;
1238 if ( style
& wxNO_BORDER
)
1240 wclass
= kSimpleWindowClass
;
1244 wclass
= kPlainWindowClass
;
1246 activationScopeSet
= true;
1247 activationScope
= kWindowActivationScopeNone
;
1250 else if ( ( style
& wxPOPUP_WINDOW
) )
1252 if ( ( style
& wxBORDER_NONE
) )
1254 wclass
= kHelpWindowClass
; // has no border
1255 attr
|= kWindowNoShadowAttribute
;
1259 wclass
= kPlainWindowClass
; // has a single line border, it will have to do for now
1261 group
= GetWindowGroupOfClass(kFloatingWindowClass
) ;
1262 // make sure we don't deactivate something
1263 activationScopeSet
= true;
1264 activationScope
= kWindowActivationScopeNone
;
1266 else if ( ( style
& wxCAPTION
) )
1268 wclass
= kDocumentWindowClass
;
1269 attr
|= kWindowInWindowMenuAttribute
;
1271 else if ( ( style
& wxFRAME_DRAWER
) )
1273 wclass
= kDrawerWindowClass
;
1277 if ( ( style
& wxMINIMIZE_BOX
) || ( style
& wxMAXIMIZE_BOX
) ||
1278 ( style
& wxCLOSE_BOX
) || ( style
& wxSYSTEM_MENU
) )
1280 wclass
= kDocumentWindowClass
;
1282 else if ( ( style
& wxNO_BORDER
) )
1284 wclass
= kSimpleWindowClass
;
1288 wclass
= kPlainWindowClass
;
1292 if ( wclass
!= kPlainWindowClass
)
1294 if ( ( style
& wxMINIMIZE_BOX
) )
1295 attr
|= kWindowCollapseBoxAttribute
;
1297 if ( ( style
& wxMAXIMIZE_BOX
) )
1298 attr
|= kWindowFullZoomAttribute
;
1300 if ( ( style
& wxRESIZE_BORDER
) )
1301 attr
|= kWindowResizableAttribute
;
1303 if ( ( style
& wxCLOSE_BOX
) )
1304 attr
|= kWindowCloseBoxAttribute
;
1306 attr
|= kWindowLiveResizeAttribute
;
1308 if ( ( style
&wxSTAY_ON_TOP
) )
1309 group
= GetWindowGroupOfClass(kUtilityWindowClass
) ;
1311 if ( ( style
& wxFRAME_FLOAT_ON_PARENT
) )
1312 group
= GetWindowGroupOfClass(kFloatingWindowClass
) ;
1314 if ( group
== NULL
&& parent
!= NULL
)
1316 WindowRef parenttlw
= (WindowRef
) parent
->MacGetTopLevelWindowRef();
1318 group
= GetWindowGroupParent( GetWindowGroup( parenttlw
) );
1321 attr
|= kWindowCompositingAttribute
;
1322 #if 0 // TODO : decide on overall handling of high dpi screens (pixel vs userscale)
1323 attr
|= kWindowFrameworkScaledAttribute
;
1326 if ( ( style
&wxFRAME_SHAPED
) )
1328 WindowDefSpec customWindowDefSpec
;
1329 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
1330 customWindowDefSpec
.u
.defProc
=
1332 (WindowDefUPP
) wxShapedMacWindowDef
;
1334 NewWindowDefUPP(wxShapedMacWindowDef
);
1336 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
1337 attr
, &theBoundsRect
,
1338 (WindowRef
*) &m_macWindow
);
1342 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
1345 if ( err
== noErr
&& m_macWindow
!= NULL
&& group
!= NULL
)
1346 SetWindowGroup( (WindowRef
) m_macWindow
, group
) ;
1348 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
1350 // setup a separate group for each window, so that overlays can be handled easily
1352 WindowGroupRef overlaygroup
= NULL
;
1353 verify_noerr( CreateWindowGroup( kWindowGroupAttrMoveTogether
| kWindowGroupAttrLayerTogether
| kWindowGroupAttrHideOnCollapse
, &overlaygroup
));
1354 verify_noerr( SetWindowGroupParent( overlaygroup
, GetWindowGroup( (WindowRef
) m_macWindow
)));
1355 verify_noerr( SetWindowGroup( (WindowRef
) m_macWindow
, overlaygroup
));
1357 if ( activationScopeSet
)
1359 verify_noerr( SetWindowActivationScope( (WindowRef
) m_macWindow
, activationScope
));
1362 // the create commands are only for content rect,
1363 // so we have to set the size again as structure bounds
1364 SetWindowBounds( m_macWindow
, kWindowStructureRgn
, &theBoundsRect
) ;
1366 // Causes the inner part of the window not to be metal
1367 // if the style is used before window creation.
1368 #if 0 // TARGET_API_MAC_OSX
1369 if ( m_macUsesCompositing
&& m_macWindow
!= NULL
)
1371 if ( GetExtraStyle() & wxFRAME_EX_METAL
)
1372 MacSetMetalAppearance( true ) ;
1376 if ( m_macWindow
!= NULL
)
1378 MacSetUnifiedAppearance( true ) ;
1381 HIViewRef growBoxRef
= 0 ;
1382 err
= HIViewFindByID( HIViewGetRoot( m_macWindow
), kHIViewWindowGrowBoxID
, &growBoxRef
);
1383 if ( err
== noErr
&& growBoxRef
!= 0 )
1384 HIGrowBoxViewSetTransparent( growBoxRef
, true ) ;
1386 // the frame window event handler
1387 InstallStandardEventHandler( GetWindowEventTarget(m_macWindow
) ) ;
1388 MacInstallTopLevelWindowEventHandler() ;
1390 if ( extraStyle
& wxFRAME_EX_METAL
)
1391 MacSetMetalAppearance(true);
1393 if ( ( style
&wxFRAME_SHAPED
) )
1395 // default shape matches the window size
1396 wxRegion
rgn( 0, 0, w
, h
);
1401 bool wxNonOwnedWindowCarbonImpl::ShowWithEffect(bool show
,
1402 wxShowEffect effect
,
1405 WindowTransitionEffect transition
= 0 ;
1408 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
1409 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
1410 case wxSHOW_EFFECT_ROLL_TO_TOP
:
1411 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
1412 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
1413 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
1414 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
1415 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
1416 transition
= kWindowGenieTransitionEffect
;
1418 case wxSHOW_EFFECT_BLEND
:
1419 transition
= kWindowFadeTransitionEffect
;
1421 case wxSHOW_EFFECT_EXPAND
:
1422 // having sheets would be fine, but this might lead to a repositioning
1425 transition
= kWindowSheetTransitionEffect
;
1428 transition
= kWindowZoomTransitionEffect
;
1431 case wxSHOW_EFFECT_NONE
:
1432 // wxNonOwnedWindow is supposed to call Show() itself in this case
1433 wxFAIL_MSG( "ShowWithEffect() shouldn't be called" );
1436 case wxSHOW_EFFECT_MAX
:
1437 wxFAIL_MSG( "invalid effect flag" );
1441 TransitionWindowOptions options
;
1442 options
.version
= 0;
1443 options
.duration
= timeout
/ 1000.0;
1444 options
.window
= transition
== kWindowSheetTransitionEffect
? (WindowRef
) m_wxPeer
->GetParent()->MacGetTopLevelWindowRef() :0;
1445 options
.userData
= 0;
1447 wxSize size
= wxGetDisplaySize();
1449 GetWindowBounds( (WindowRef
)m_macWindow
, kWindowStructureRgn
, &bounds
);
1450 CGRect hiBounds
= CGRectMake( bounds
.left
, bounds
.top
, bounds
.right
- bounds
.left
, bounds
.bottom
- bounds
.top
);
1454 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
1455 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
1456 hiBounds
.origin
.x
= 0;
1457 hiBounds
.size
.width
= 0;
1460 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
1461 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
1462 hiBounds
.origin
.x
= size
.x
;
1463 hiBounds
.size
.width
= 0;
1466 case wxSHOW_EFFECT_ROLL_TO_TOP
:
1467 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
1468 hiBounds
.origin
.y
= size
.y
;
1469 hiBounds
.size
.height
= 0;
1472 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
1473 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
1474 hiBounds
.origin
.y
= 0;
1475 hiBounds
.size
.height
= 0;
1479 break; // direction doesn't make sense
1482 ::TransitionWindowWithOptions
1484 (WindowRef
)m_macWindow
,
1486 show
? kWindowShowTransitionAction
: kWindowHideTransitionAction
,
1487 transition
== kWindowGenieTransitionEffect
? &hiBounds
: NULL
,
1494 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1500 void wxNonOwnedWindowCarbonImpl::SetTitle( const wxString
& title
, wxFontEncoding encoding
)
1502 SetWindowTitleWithCFString( m_macWindow
, wxCFStringRef( title
, encoding
) ) ;
1505 bool wxNonOwnedWindowCarbonImpl::IsMaximized() const
1507 return IsWindowInStandardState( m_macWindow
, NULL
, NULL
) ;
1510 bool wxNonOwnedWindowCarbonImpl::IsIconized() const
1512 return IsWindowCollapsed((WindowRef
)GetWXWindow() ) ;
1515 void wxNonOwnedWindowCarbonImpl::Iconize( bool iconize
)
1517 if ( IsWindowCollapsable( m_macWindow
) )
1518 CollapseWindow( m_macWindow
, iconize
) ;
1521 void wxNonOwnedWindowCarbonImpl::Maximize(bool maximize
)
1523 Point idealSize
= { 0 , 0 } ;
1526 #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
1528 HIWindowGetAvailablePositioningBounds(kCGNullDirectDisplay
,kHICoordSpace72DPIGlobal
,
1530 idealSize
.h
= bounds
.size
.width
;
1531 idealSize
.v
= bounds
.size
.height
;
1534 GetAvailableWindowPositioningBounds(GetMainDevice(),&rect
) ;
1535 idealSize
.h
= rect
.right
- rect
.left
;
1536 idealSize
.v
= rect
.bottom
- rect
.top
;
1539 ZoomWindowIdeal( (WindowRef
)GetWXWindow() , maximize
? inZoomOut
: inZoomIn
, &idealSize
) ;
1542 bool wxNonOwnedWindowCarbonImpl::IsFullScreen() const
1544 return m_macFullScreenData
!= NULL
;
1547 bool wxNonOwnedWindowCarbonImpl::ShowFullScreen(bool show
, long style
)
1551 FullScreenData
*data
= (FullScreenData
*)m_macFullScreenData
;
1553 data
= new FullScreenData() ;
1555 m_macFullScreenData
= data
;
1556 data
->m_position
= m_wxPeer
->GetPosition() ;
1557 data
->m_size
= m_wxPeer
->GetSize() ;
1558 #if wxOSX_USE_CARBON
1559 WindowAttributes attr
= 0;
1560 GetWindowAttributes((WindowRef
) GetWXWindow(), &attr
);
1561 data
->m_wasResizable
= attr
& kWindowResizableAttribute
;
1562 if ( style
& wxFULLSCREEN_NOMENUBAR
)
1566 wxRect client
= wxGetClientDisplayRect() ;
1568 int left
, top
, width
, height
;
1576 GetContentArea( left
, top
, width
, height
) ;
1577 int outerwidth
, outerheight
;
1578 GetSize( outerwidth
, outerheight
);
1580 if ( style
& wxFULLSCREEN_NOCAPTION
)
1584 // avoid adding the caption twice to the height
1588 if ( style
& wxFULLSCREEN_NOBORDER
)
1591 w
+= outerwidth
- width
;
1592 h
+= outerheight
- height
;
1595 if ( style
& wxFULLSCREEN_NOTOOLBAR
)
1600 if ( style
& wxFULLSCREEN_NOSTATUSBAR
)
1605 m_wxPeer
->SetSize( x
, y
, w
, h
) ;
1606 if ( data
->m_wasResizable
)
1608 #if wxOSX_USE_CARBON
1609 ChangeWindowAttributes( (WindowRef
) GetWXWindow() , kWindowNoAttributes
, kWindowResizableAttribute
) ;
1613 else if ( m_macFullScreenData
!= NULL
)
1615 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1616 #if wxOSX_USE_CARBON
1618 if ( data
->m_wasResizable
)
1619 ChangeWindowAttributes( (WindowRef
) GetWXWindow() , kWindowResizableAttribute
, kWindowNoAttributes
) ;
1621 m_wxPeer
->SetPosition( data
->m_position
) ;
1622 m_wxPeer
->SetSize( data
->m_size
) ;
1625 m_macFullScreenData
= NULL
;
1631 // Attracts the users attention to this window if the application is
1632 // inactive (should be called when a background event occurs)
1634 static pascal void wxMacNMResponse( NMRecPtr ptr
)
1637 DisposePtr( (Ptr
)ptr
) ;
1640 void wxNonOwnedWindowCarbonImpl::RequestUserAttention(int WXUNUSED(flags
))
1642 NMRecPtr notificationRequest
= (NMRecPtr
) NewPtr( sizeof( NMRec
) ) ;
1644 memset( notificationRequest
, 0 , sizeof(*notificationRequest
) ) ;
1645 notificationRequest
->qType
= nmType
;
1646 notificationRequest
->nmMark
= 1 ;
1647 notificationRequest
->nmIcon
= 0 ;
1648 notificationRequest
->nmSound
= 0 ;
1649 notificationRequest
->nmStr
= NULL
;
1650 notificationRequest
->nmResp
= wxMacNMResponse
;
1652 verify_noerr( NMInstall( notificationRequest
) ) ;
1655 void wxNonOwnedWindowCarbonImpl::ScreenToWindow( int *x
, int *y
)
1657 HIPoint p
= CGPointMake( (x
? *x
: 0), (y
? *y
: 0) );
1658 HIViewRef contentView
;
1659 // TODO check toolbar offset
1660 HIViewFindByID( HIViewGetRoot( m_macWindow
), kHIViewWindowContentID
, &contentView
) ;
1661 HIPointConvert( &p
, kHICoordSpace72DPIGlobal
, NULL
, kHICoordSpaceView
, contentView
);
1668 void wxNonOwnedWindowCarbonImpl::WindowToScreen( int *x
, int *y
)
1670 HIPoint p
= CGPointMake( (x
? *x
: 0), (y
? *y
: 0) );
1671 HIViewRef contentView
;
1672 // TODO check toolbar offset
1673 HIViewFindByID( HIViewGetRoot( m_macWindow
), kHIViewWindowContentID
, &contentView
) ;
1674 HIPointConvert( &p
, kHICoordSpaceView
, contentView
, kHICoordSpace72DPIGlobal
, NULL
);
1681 bool wxNonOwnedWindowCarbonImpl::IsActive()
1683 return ActiveNonFloatingWindow() == m_macWindow
;
1686 wxNonOwnedWindowImpl
* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, const wxPoint
& pos
, const wxSize
& size
,
1687 long style
, long extraStyle
, const wxString
& name
)
1689 wxNonOwnedWindowImpl
* now
= new wxNonOwnedWindowCarbonImpl( wxpeer
);
1690 now
->Create( parent
, pos
, size
, style
, extraStyle
, name
);
1694 wxNonOwnedWindowImpl
* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow
* wxpeer
, wxWindow
* parent
, WXWindow nativeWindow
)
1696 wxNonOwnedWindowCarbonImpl
* now
= new wxNonOwnedWindowCarbonImpl( wxpeer
);
1697 now
->Create( parent
, nativeWindow
);