1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: mac/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for Mac
4 // Author: Stefan Csomor
8 // Copyright: (c) 2001-2004 Stefan Csomor
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "toplevel.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/toplevel.h"
35 #include "wx/string.h"
38 #include "wx/settings.h"
39 #include "wx/control.h"
42 #include "wx/mac/uma.h"
43 #include "wx/mac/aga.h"
45 #include "wx/tooltip.h"
47 #if wxUSE_SYSTEM_OPTIONS
48 #include "wx/sysopt.h"
51 #include <ToolUtils.h>
54 #include "wx/mac/private.h"
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 // list of all frames and modeless dialogs
61 wxWindowList wxModelessWindows
;
63 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
);
65 // ============================================================================
66 // wxTopLevelWindowMac implementation
67 // ============================================================================
69 BEGIN_EVENT_TABLE(wxTopLevelWindowMac
, wxTopLevelWindowBase
)
73 // ---------------------------------------------------------------------------
75 // ---------------------------------------------------------------------------
77 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
79 static const EventTypeSpec eventList
[] =
81 // TODO remove control related event like key and mouse (except for WindowLeave events)
83 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
85 { kEventClassKeyboard
, kEventRawKeyDown
} ,
86 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
87 { kEventClassKeyboard
, kEventRawKeyUp
} ,
88 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
91 { kEventClassWindow
, kEventWindowShown
} ,
92 { kEventClassWindow
, kEventWindowActivated
} ,
93 { kEventClassWindow
, kEventWindowDeactivated
} ,
94 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
95 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
96 { kEventClassWindow
, kEventWindowClose
} ,
98 // we have to catch these events on the toplevel window level, as controls don't get the
99 // raw mouse events anymore
101 { kEventClassMouse
, kEventMouseDown
} ,
102 { kEventClassMouse
, kEventMouseUp
} ,
103 { kEventClassMouse
, kEventMouseWheelMoved
} ,
104 { kEventClassMouse
, kEventMouseMoved
} ,
105 { kEventClassMouse
, kEventMouseDragged
} ,
108 static pascal OSStatus
TextInputEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
110 OSStatus result
= eventNotHandledErr
;
112 wxWindow
* focus
= wxWindow::FindFocus() ;
120 GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
122 GetEventParameter( rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
123 GetEventParameter( rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
124 GetEventParameter( rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
125 GetEventParameter( rawEvent
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
126 sizeof( Point
), NULL
, &point
);
128 switch ( GetEventKind( event
) )
130 case kEventTextInputUnicodeForKeyEvent
:
131 // this is only called when no default handler has jumped in, eg a wxControl on a floater window does not
132 // get its own kEventTextInputUnicodeForKeyEvent, so we route back the
133 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
136 ControlRef macControl
= (ControlRef
) control
->GetHandle() ;
139 ::HandleControlKey( macControl
, keyCode
, charCode
, modifiers
) ;
144 // this may lead to double events sent to a window in case all handlers have skipped the key down event
145 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
146 UInt32 message = (keyCode << 8) + charCode;
148 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
149 focus , message , modifiers , when , point.h , point.v ) )
160 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
162 OSStatus result
= eventNotHandledErr
;
163 // call DoFindFocus instead of FindFocus, because for Composite Windows(like WxGenericListCtrl)
164 // FindFocus does not return the actual focus window,but the enclosing window
165 wxWindow
* focus
= wxWindow::DoFindFocus();
173 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
175 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
176 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
177 GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
178 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
179 sizeof( Point
), NULL
, &point
);
181 UInt32 message
= (keyCode
<< 8) + charCode
;
182 switch( GetEventKind( event
) )
184 case kEventRawKeyRepeat
:
185 case kEventRawKeyDown
:
187 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
188 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
189 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
190 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyDownEvent(
191 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
195 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
198 case kEventRawKeyUp
:
199 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyUpEvent(
200 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
205 case kEventRawKeyModifiersChanged
:
207 wxKeyEvent
event(wxEVT_KEY_DOWN
);
209 event
.m_shiftDown
= modifiers
& shiftKey
;
210 event
.m_controlDown
= modifiers
& controlKey
;
211 event
.m_altDown
= modifiers
& optionKey
;
212 event
.m_metaDown
= modifiers
& cmdKey
;
216 event
.SetTimestamp(when
);
217 event
.SetEventObject(focus
);
219 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & controlKey
)
221 event
.m_keyCode
= WXK_CONTROL
;
222 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
223 focus
->GetEventHandler()->ProcessEvent( event
) ;
225 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & shiftKey
)
227 event
.m_keyCode
= WXK_SHIFT
;
228 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
229 focus
->GetEventHandler()->ProcessEvent( event
) ;
231 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & optionKey
)
233 event
.m_keyCode
= WXK_ALT
;
234 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
235 focus
->GetEventHandler()->ProcessEvent( event
) ;
237 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & cmdKey
)
239 event
.m_keyCode
= WXK_COMMAND
;
240 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
241 focus
->GetEventHandler()->ProcessEvent( event
) ;
243 wxTheApp
->s_lastModifiers
= modifiers
;
251 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
252 // for windows that we didn't create (like eg Scrollbars in a databrowser) , or for controls where we did not handle the
255 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
257 wxWindow
* g_MacLastWindow
= NULL
;
259 static EventMouseButton lastButton
= 0 ;
261 static void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
)
263 UInt32 modifiers
= cEvent
.GetParameter
<UInt32
>(kEventParamKeyModifiers
, typeUInt32
) ;
264 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
266 // this parameter are not given for all events
267 EventMouseButton button
= 0 ;
268 UInt32 clickCount
= 0 ;
269 cEvent
.GetParameter
<EventMouseButton
>(kEventParamMouseButton
, typeMouseButton
, &button
) ;
270 cEvent
.GetParameter
<UInt32
>(kEventParamClickCount
, typeUInt32
, &clickCount
) ;
272 wxevent
.m_x
= screenMouseLocation
.h
;
273 wxevent
.m_y
= screenMouseLocation
.v
;
274 wxevent
.m_shiftDown
= modifiers
& shiftKey
;
275 wxevent
.m_controlDown
= modifiers
& controlKey
;
276 wxevent
.m_altDown
= modifiers
& optionKey
;
277 wxevent
.m_metaDown
= modifiers
& cmdKey
;
278 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
279 // a control click is interpreted as a right click
280 if ( button
== kEventMouseButtonPrimary
&& (modifiers
& controlKey
) )
282 button
= kEventMouseButtonSecondary
;
285 // we must make sure that our synthetic 'right' button corresponds in
286 // mouse down, moved and mouse up, and does not deliver a right down and left up
288 if ( cEvent
.GetKind() == kEventMouseDown
)
289 lastButton
= button
;
293 else if ( lastButton
)
294 button
= lastButton
;
296 // determinate the correct down state, wx does not want a 'down' for a mouseUp event, while mac delivers
298 if ( button
!= 0 && cEvent
.GetKind() != kEventMouseUp
)
302 case kEventMouseButtonPrimary
:
303 wxevent
.m_leftDown
= true ;
305 case kEventMouseButtonSecondary
:
306 wxevent
.m_rightDown
= true ;
308 case kEventMouseButtonTertiary
:
309 wxevent
.m_middleDown
= true ;
313 // translate into wx types
314 switch ( cEvent
.GetKind() )
316 case kEventMouseDown
:
319 case kEventMouseButtonPrimary
:
320 wxevent
.SetEventType(clickCount
> 1 ? wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
) ;
322 case kEventMouseButtonSecondary
:
323 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
) ;
325 case kEventMouseButtonTertiary
:
326 wxevent
.SetEventType(clickCount
> 1 ? wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
) ;
333 case kEventMouseButtonPrimary
:
334 wxevent
.SetEventType( wxEVT_LEFT_UP
) ;
336 case kEventMouseButtonSecondary
:
337 wxevent
.SetEventType( wxEVT_RIGHT_UP
) ;
339 case kEventMouseButtonTertiary
:
340 wxevent
.SetEventType( wxEVT_MIDDLE_UP
) ;
344 case kEventMouseWheelMoved
:
346 wxevent
.SetEventType(wxEVT_MOUSEWHEEL
) ;
348 // EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
349 SInt32 delta
= cEvent
.GetParameter
<SInt32
>(kEventParamMouseWheelDelta
, typeLongInteger
) ;
351 wxevent
.m_wheelRotation
= delta
;
352 wxevent
.m_wheelDelta
= 1;
353 wxevent
.m_linesPerAction
= 1;
357 wxevent
.SetEventType(wxEVT_MOTION
) ;
362 ControlRef
wxMacFindSubControl( Point location
, ControlRef superControl
, ControlPartCode
*outPart
)
366 UInt16 childrenCount
= 0 ;
367 OSStatus err
= CountSubControls( superControl
, &childrenCount
) ;
368 if ( err
== errControlIsNotEmbedder
)
370 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
372 for ( UInt16 i
= childrenCount
; i
>=1 ; --i
)
374 ControlHandle sibling
;
375 err
= GetIndexedSubControl( superControl
, i
, & sibling
) ;
376 if ( err
== errControlIsNotEmbedder
)
379 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
380 if ( IsControlVisible( sibling
) )
383 UMAGetControlBoundsInWindowCoords( sibling
, &r
) ;
384 if ( MacPtInRect( location
, &r
) )
386 ControlHandle child
= wxMacFindSubControl( location
, sibling
, outPart
) ;
391 Point testLocation
= location
;
392 #if TARGET_API_MAC_OSX
393 testLocation
.h
-= r
.left
;
394 testLocation
.v
-= r
.top
;
396 *outPart
= TestControl( sibling
, testLocation
) ;
406 ControlRef
wxMacFindControlUnderMouse( Point location
, WindowRef window
, ControlPartCode
*outPart
)
408 #if TARGET_API_MAC_OSX
409 if ( UMAGetSystemVersion() >= 0x1030 )
410 return FindControlUnderMouse( location
, window
, outPart
) ;
412 ControlRef rootControl
= NULL
;
413 verify_noerr( GetRootControl( window
, &rootControl
) ) ;
414 return wxMacFindSubControl( location
, rootControl
, outPart
) ;
417 pascal OSStatus
wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
420 OSStatus result
= eventNotHandledErr
;
422 wxMacCarbonEvent
cEvent( event
) ;
424 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
425 Point windowMouseLocation
= screenMouseLocation
;
428 short windowPart
= ::FindWindow(screenMouseLocation
, &window
);
430 wxWindow
* currentMouseWindow
= NULL
;
431 ControlRef control
= NULL
;
435 QDGlobalToLocalPoint( UMAGetWindowPort(window
) , &windowMouseLocation
) ;
437 if ( wxTheApp
->s_captureWindow
&& wxTheApp
->s_captureWindow
->MacGetTopLevelWindowRef() == (WXWindow
) window
&& windowPart
== inContent
)
439 currentMouseWindow
= wxTheApp
->s_captureWindow
;
441 else if ( (IsWindowActive(window
) && windowPart
== inContent
) )
443 ControlPartCode part
;
444 control
= wxMacFindControlUnderMouse( windowMouseLocation
, window
, &part
) ;
445 // if there is no control below the mouse position, send the event to the toplevel window itself
447 currentMouseWindow
= (wxWindow
*) data
;
450 currentMouseWindow
= wxFindControlFromMacControl( control
) ;
451 if ( currentMouseWindow
== NULL
&& cEvent
.GetKind() == kEventMouseMoved
)
454 // for wxToolBar to function we have to send certaint events to it
455 // instead of its children (wxToolBarTools)
457 GetSuperControl(control
, &parent
);
458 wxWindow
*wxParent
= wxFindControlFromMacControl( parent
) ;
459 if ( wxParent
&& wxParent
->IsKindOf( CLASSINFO( wxToolBar
) ) )
460 currentMouseWindow
= wxParent
;
467 wxMouseEvent
wxevent(wxEVT_LEFT_DOWN
);
468 SetupMouseEvent( wxevent
, cEvent
) ;
470 // handle all enter / leave events
472 if ( currentMouseWindow
!= g_MacLastWindow
)
474 if ( g_MacLastWindow
)
476 wxMouseEvent
eventleave(wxevent
);
477 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
478 g_MacLastWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
479 eventleave
.SetEventObject( g_MacLastWindow
) ;
482 wxToolTip::RelayEvent( g_MacLastWindow
, eventleave
);
483 #endif // wxUSE_TOOLTIPS
484 g_MacLastWindow
->GetEventHandler()->ProcessEvent(eventleave
);
486 if ( currentMouseWindow
)
488 wxMouseEvent
evententer(wxevent
);
489 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
490 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
491 evententer
.SetEventObject( currentMouseWindow
) ;
493 wxToolTip::RelayEvent( currentMouseWindow
, evententer
);
494 #endif // wxUSE_TOOLTIPS
495 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
497 g_MacLastWindow
= currentMouseWindow
;
500 if ( windowPart
== inMenuBar
)
502 // special case menu bar, as we are having a low-level runloop we must do it ourselves
503 if ( cEvent
.GetKind() == kEventMouseDown
)
505 ::MenuSelect( screenMouseLocation
) ;
508 } // if ( windowPart == inMenuBar )
509 else if ( currentMouseWindow
)
511 wxWindow
*currentMouseWindowParent
= currentMouseWindow
->GetParent();
513 currentMouseWindow
->ScreenToClient( &wxevent
.m_x
, &wxevent
.m_y
) ;
515 wxevent
.SetEventObject( currentMouseWindow
) ;
517 // make tooltips current
520 if ( wxevent
.GetEventType() == wxEVT_MOTION
521 || wxevent
.GetEventType() == wxEVT_ENTER_WINDOW
522 || wxevent
.GetEventType() == wxEVT_LEAVE_WINDOW
)
523 wxToolTip::RelayEvent( currentMouseWindow
, wxevent
);
524 #endif // wxUSE_TOOLTIPS
525 if ( currentMouseWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
527 if ((currentMouseWindowParent
!= NULL
) &&
528 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
529 currentMouseWindow
= NULL
;
535 // if the user code did _not_ handle the event, then perform the
536 // default processing
537 if ( wxevent
.GetEventType() == wxEVT_LEFT_DOWN
)
539 // ... that is set focus to this window
540 if (currentMouseWindow
->AcceptsFocus() && wxWindow::FindFocus()!=currentMouseWindow
)
541 currentMouseWindow
->SetFocus();
544 ControlPartCode dummyPart
;
545 // if built-in find control is finding the wrong control (ie static box instead of overlaid
546 // button, we cannot let the standard handler do its job, but must handle manually
548 if ( ( cEvent
.GetKind() == kEventMouseDown
)
551 (FindControlUnderMouse(windowMouseLocation
, window
, &dummyPart
) !=
552 wxMacFindControlUnderMouse( windowMouseLocation
, window
, &dummyPart
) )
556 if ( currentMouseWindow
->MacIsReallyEnabled() )
558 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
559 Point clickLocation
= windowMouseLocation
;
560 #if TARGET_API_MAC_OSX
561 currentMouseWindow
->MacRootWindowToWindow( &clickLocation
.h
, &clickLocation
.v
) ;
563 HandleControlClick( (ControlRef
) currentMouseWindow
->GetHandle() , clickLocation
,
564 modifiers
, (ControlActionUPP
) -1 ) ;
566 if ((currentMouseWindowParent
!= NULL
) &&
567 (currentMouseWindowParent
->GetChildren().Find(currentMouseWindow
) == NULL
))
568 currentMouseWindow
= NULL
;
573 if ( cEvent
.GetKind() == kEventMouseUp
&& wxTheApp
->s_captureWindow
)
575 wxTheApp
->s_captureWindow
= NULL
;
581 wxWindow
* cursorTarget
= currentMouseWindow
;
582 wxPoint
cursorPoint( wxevent
.m_x
, wxevent
.m_y
) ;
584 while( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
586 cursorTarget
= cursorTarget
->GetParent() ;
588 cursorPoint
+= cursorTarget
->GetPosition();
591 } // else if ( currentMouseWindow )
594 // don't mess with controls we don't know about
595 // for some reason returning eventNotHandledErr does not lead to the correct behaviour
596 // so we try sending them the correct control directly
597 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
598 if ( cEvent
.GetKind() == kEventMouseDown
&& toplevelWindow
&& control
)
600 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
601 Point clickLocation
= windowMouseLocation
;
602 #if TARGET_API_MAC_OSX
604 hiPoint
.x
= clickLocation
.h
;
605 hiPoint
.y
= clickLocation
.v
;
606 HIViewConvertPoint( &hiPoint
, (ControlRef
) toplevelWindow
->GetHandle() , control
) ;
607 clickLocation
.h
= (int)hiPoint
.x
;
608 clickLocation
.v
= (int)hiPoint
.y
;
610 HandleControlClick( control
, clickLocation
,
611 modifiers
, (ControlActionUPP
) -1 ) ;
618 static pascal OSStatus
wxMacTopLevelWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
620 OSStatus result
= eventNotHandledErr
;
622 wxMacCarbonEvent
cEvent( event
) ;
624 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
625 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
627 switch( GetEventKind( event
) )
629 case kEventWindowActivated
:
631 toplevelWindow
->MacActivate( cEvent
.GetTicks() , true) ;
632 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, true , toplevelWindow
->GetId());
633 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
634 wxevent
.SetEventObject(toplevelWindow
);
635 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
636 // we still sending an eventNotHandledErr in order to allow for default processing
639 case kEventWindowDeactivated
:
641 toplevelWindow
->MacActivate(cEvent
.GetTicks() , false) ;
642 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, false , toplevelWindow
->GetId());
643 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
644 wxevent
.SetEventObject(toplevelWindow
);
645 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
646 // we still sending an eventNotHandledErr in order to allow for default processing
649 case kEventWindowShown
:
650 toplevelWindow
->Refresh() ;
653 case kEventWindowClose
:
654 toplevelWindow
->Close() ;
657 case kEventWindowBoundsChanged
:
659 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
660 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
661 wxRect
r( newRect
.left
, newRect
.top
, newRect
.right
- newRect
.left
, newRect
.bottom
- newRect
.top
) ;
662 if ( attributes
& kWindowBoundsChangeSizeChanged
)
664 // according to the other ports we handle this within the OS level
665 // resize event, not within a wxSizeEvent
666 wxFrame
*frame
= wxDynamicCast( toplevelWindow
, wxFrame
) ;
670 frame
->PositionStatusBar();
673 frame
->PositionToolBar();
677 wxSizeEvent
event( r
.GetSize() , toplevelWindow
->GetId() ) ;
678 event
.SetEventObject( toplevelWindow
) ;
680 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
682 if ( attributes
& kWindowBoundsChangeOriginChanged
)
684 wxMoveEvent
event( r
.GetLeftTop() , toplevelWindow
->GetId() ) ;
685 event
.SetEventObject( toplevelWindow
) ;
686 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
691 case kEventWindowBoundsChanging
:
693 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
694 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
696 if ( (attributes
& kWindowBoundsChangeSizeChanged
) || (attributes
& kWindowBoundsChangeOriginChanged
) )
698 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
699 int left
, top
, right
, bottom
;
700 toplevelWindow
->MacGetContentAreaInset( left
, top
, right
, bottom
) ;
701 wxRect
r( newRect
.left
- left
, newRect
.top
- top
,
702 newRect
.right
- newRect
.left
+ left
+ right
, newRect
.bottom
- newRect
.top
+ top
+ bottom
) ;
703 // this is a EVT_SIZING not a EVT_SIZE type !
704 wxSizeEvent
wxevent( r
, toplevelWindow
->GetId() ) ;
705 wxevent
.SetEventObject( toplevelWindow
) ;
707 if ( toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
708 adjustR
= wxevent
.GetRect() ;
710 if ( toplevelWindow
->GetMaxWidth() != -1 && adjustR
.GetWidth() > toplevelWindow
->GetMaxWidth() )
711 adjustR
.SetWidth( toplevelWindow
->GetMaxWidth() ) ;
712 if ( toplevelWindow
->GetMaxHeight() != -1 && adjustR
.GetHeight() > toplevelWindow
->GetMaxHeight() )
713 adjustR
.SetHeight( toplevelWindow
->GetMaxHeight() ) ;
714 if ( toplevelWindow
->GetMinWidth() != -1 && adjustR
.GetWidth() < toplevelWindow
->GetMinWidth() )
715 adjustR
.SetWidth( toplevelWindow
->GetMinWidth() ) ;
716 if ( toplevelWindow
->GetMinHeight() != -1 && adjustR
.GetHeight() < toplevelWindow
->GetMinHeight() )
717 adjustR
.SetHeight( toplevelWindow
->GetMinHeight() ) ;
718 const Rect adjustedRect
= { adjustR
.y
+ top
, adjustR
.x
+ left
, adjustR
.y
+ adjustR
.height
- bottom
, adjustR
.x
+ adjustR
.width
- right
} ;
719 if ( !EqualRect( &newRect
, &adjustedRect
) )
720 cEvent
.SetParameter
<Rect
>( kEventParamCurrentBounds
, &adjustedRect
) ;
732 pascal OSStatus
wxMacTopLevelEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
734 OSStatus result
= eventNotHandledErr
;
736 switch ( GetEventClass( event
) )
738 case kEventClassKeyboard
:
739 result
= KeyboardEventHandler( handler
, event
, data
) ;
741 case kEventClassTextInput
:
742 result
= TextInputEventHandler( handler
, event
, data
) ;
744 case kEventClassWindow
:
745 result
= wxMacTopLevelWindowEventHandler( handler
, event
, data
) ;
747 case kEventClassMouse
:
748 result
= wxMacTopLevelMouseEventHandler( handler
, event
, data
) ;
756 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTopLevelEventHandler
)
758 // ---------------------------------------------------------------------------
759 // wxWindowMac utility functions
760 // ---------------------------------------------------------------------------
762 // Find an item given the Macintosh Window Reference
764 #if KEY_wxList_DEPRECATED
765 wxList
wxWinMacWindowList(wxKEY_INTEGER
);
766 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
768 wxNode
*node
= wxWinMacWindowList
.Find((long)inWindowRef
);
771 return (wxTopLevelWindowMac
*)node
->GetData();
774 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
) ;
775 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
)
777 // adding NULL WindowRef is (first) surely a result of an error and
778 // (secondly) breaks menu command processing
779 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
781 if ( !wxWinMacWindowList
.Find((long)inWindowRef
) )
782 wxWinMacWindowList
.Append((long)inWindowRef
, win
);
785 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
786 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
788 wxWinMacWindowList
.DeleteObject(win
);
792 WX_DECLARE_HASH_MAP(WindowRef
, wxTopLevelWindowMac
*, wxPointerHash
, wxPointerEqual
, MacWindowMap
);
794 static MacWindowMap wxWinMacWindowList
;
796 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
798 MacWindowMap::iterator node
= wxWinMacWindowList
.find(inWindowRef
);
800 return (node
== wxWinMacWindowList
.end()) ? NULL
: node
->second
;
803 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
) ;
804 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
)
806 // adding NULL WindowRef is (first) surely a result of an error and
808 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
810 wxWinMacWindowList
[inWindowRef
] = win
;
813 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
814 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
816 MacWindowMap::iterator it
;
817 for ( it
= wxWinMacWindowList
.begin(); it
!= wxWinMacWindowList
.end(); ++it
)
819 if ( it
->second
== win
)
821 wxWinMacWindowList
.erase(it
);
826 #endif // deprecated wxList
828 // ----------------------------------------------------------------------------
829 // wxTopLevelWindowMac creation
830 // ----------------------------------------------------------------------------
832 wxTopLevelWindowMac
*wxTopLevelWindowMac::s_macDeactivateWindow
= NULL
;
840 void wxTopLevelWindowMac::Init()
843 m_maximizeOnShow
= FALSE
;
845 #if TARGET_API_MAC_OSX
846 m_macUsesCompositing
= TRUE
;
848 m_macUsesCompositing
= FALSE
;
850 m_macEventHandler
= NULL
;
851 m_macFullScreenData
= NULL
;
854 class wxMacDeferredWindowDeleter
: public wxObject
857 wxMacDeferredWindowDeleter( WindowRef windowRef
)
859 m_macWindow
= windowRef
;
861 virtual ~wxMacDeferredWindowDeleter()
863 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
866 WindowRef m_macWindow
;
869 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
871 const wxString
& title
,
875 const wxString
& name
)
880 m_windowStyle
= style
;
884 m_windowId
= id
== -1 ? NewControlId() : id
;
885 wxWindow::SetTitle( title
) ;
887 MacCreateRealWindow( title
, pos
, size
, MacRemoveBordersFromStyle(style
) , name
) ;
889 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
891 wxTopLevelWindows
.Append(this);
894 parent
->AddChild(this);
899 wxTopLevelWindowMac::~wxTopLevelWindowMac()
903 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
904 wxPendingDelete
.Append( new wxMacDeferredWindowDeleter( (WindowRef
) m_macWindow
) ) ;
907 if ( m_macEventHandler
)
909 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
910 m_macEventHandler
= NULL
;
913 wxRemoveMacWindowAssociation( this ) ;
915 if ( wxModelessWindows
.Find(this) )
916 wxModelessWindows
.DeleteObject(this);
918 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
920 m_macFullScreenData
= NULL
;
924 // ----------------------------------------------------------------------------
925 // wxTopLevelWindowMac maximize/minimize
926 // ----------------------------------------------------------------------------
928 void wxTopLevelWindowMac::Maximize(bool maximize
)
930 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( (WindowRef
) m_macWindow
) ) ;
931 wxMacWindowClipper
clip (this);
932 ZoomWindow( (WindowRef
)m_macWindow
, maximize
? inZoomOut
: inZoomIn
, false ) ;
935 bool wxTopLevelWindowMac::IsMaximized() const
937 return IsWindowInStandardState( (WindowRef
)m_macWindow
, NULL
, NULL
) ;
940 void wxTopLevelWindowMac::Iconize(bool iconize
)
942 if ( IsWindowCollapsable((WindowRef
)m_macWindow
) )
943 CollapseWindow((WindowRef
)m_macWindow
, iconize
) ;
946 bool wxTopLevelWindowMac::IsIconized() const
948 return IsWindowCollapsed((WindowRef
)m_macWindow
) ;
951 void wxTopLevelWindowMac::Restore()
953 // not available on mac
956 // ----------------------------------------------------------------------------
957 // wxTopLevelWindowMac misc
958 // ----------------------------------------------------------------------------
960 wxPoint
wxTopLevelWindowMac::GetClientAreaOrigin() const
962 return wxPoint(0,0) ;
965 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
968 wxTopLevelWindowBase::SetIcon(icon
);
971 void wxTopLevelWindowMac::MacSetBackgroundBrush( const wxBrush
&brush
)
973 wxTopLevelWindowBase::MacSetBackgroundBrush( brush
) ;
975 if ( m_macBackgroundBrush
.Ok() && m_macBackgroundBrush
.GetStyle() != wxTRANSPARENT
&& m_macBackgroundBrush
.MacGetBrushKind() == kwxMacBrushTheme
)
977 SetThemeWindowBackground( (WindowRef
) m_macWindow
, m_macBackgroundBrush
.MacGetTheme() , false ) ;
981 void wxTopLevelWindowMac::MacInstallTopLevelWindowEventHandler()
983 if ( m_macEventHandler
!= NULL
)
985 verify_noerr( ::RemoveEventHandler( (EventHandlerRef
) m_macEventHandler
) ) ;
987 InstallWindowEventHandler(MAC_WXHWND(m_macWindow
), GetwxMacTopLevelEventHandlerUPP(),
988 GetEventTypeCount(eventList
), eventList
, this, (EventHandlerRef
*)&m_macEventHandler
);
991 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString
& title
,
995 const wxString
& name
)
997 OSStatus err
= noErr
;
999 m_windowStyle
= style
;
1009 wxRect display
= wxGetClientDisplayRect() ;
1011 if ( x
== wxDefaultPosition
.x
)
1014 if ( y
== wxDefaultPosition
.y
)
1017 int w
= WidthDefault(size
.x
);
1018 int h
= HeightDefault(size
.y
);
1020 ::SetRect(&theBoundsRect
, x
, y
, x
+ w
, y
+ h
);
1022 // translate the window attributes in the appropriate window class and attributes
1024 WindowClass wclass
= 0;
1025 WindowAttributes attr
= kWindowNoAttributes
;
1026 WindowGroupRef group
= NULL
;
1028 if ( HasFlag( wxFRAME_TOOL_WINDOW
) )
1031 HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
1032 HasFlag( wxSYSTEM_MENU
) || HasFlag( wxCAPTION
) ||
1033 HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
)
1036 wclass
= kFloatingWindowClass
;
1037 if ( HasFlag(wxTINY_CAPTION_VERT
) )
1039 attr
|= kWindowSideTitlebarAttribute
;
1044 wclass
= kPlainWindowClass
;
1047 else if ( HasFlag( wxCAPTION
) )
1049 wclass
= kDocumentWindowClass
;
1051 #if defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
1052 else if ( HasFlag( wxFRAME_DRAWER
) )
1054 wclass
= kDrawerWindowClass
;
1055 // Should this be left for compositing check below?
1056 // CreateNewWindow will fail without it, should wxDrawerWindow turn
1057 // on compositing before calling MacCreateRealWindow?
1058 attr
|= kWindowCompositingAttribute
;// | kWindowStandardHandlerAttribute;
1060 #endif //10.2 and up
1063 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
1064 HasFlag( wxCLOSE_BOX
) || HasFlag( wxSYSTEM_MENU
) )
1066 wclass
= kDocumentWindowClass
;
1070 wclass
= kPlainWindowClass
;
1074 if ( HasFlag( wxMINIMIZE_BOX
) )
1076 attr
|= kWindowCollapseBoxAttribute
;
1078 if ( HasFlag( wxMAXIMIZE_BOX
) )
1080 attr
|= kWindowFullZoomAttribute
;
1082 if ( HasFlag( wxRESIZE_BORDER
) )
1084 attr
|= kWindowResizableAttribute
;
1086 if ( HasFlag( wxCLOSE_BOX
) )
1088 attr
|= kWindowCloseBoxAttribute
;
1091 if (UMAGetSystemVersion() >= 0x1000)
1093 // turn on live resizing (OS X only)
1094 attr
|= kWindowLiveResizeAttribute
;
1097 if ( HasFlag(wxSTAY_ON_TOP
) )
1099 group
= GetWindowGroupOfClass(kUtilityWindowClass
) ;
1102 #if TARGET_API_MAC_OSX
1103 attr
|= kWindowCompositingAttribute
;
1106 if ( HasFlag(wxFRAME_SHAPED
) )
1108 WindowDefSpec customWindowDefSpec
;
1109 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
1110 customWindowDefSpec
.u
.defProc
= NewWindowDefUPP(wxShapedMacWindowDef
);
1112 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
1113 attr
, &theBoundsRect
,
1114 (WindowRef
*) &m_macWindow
);
1118 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
1121 if ( err
== noErr
&& m_macWindow
!= NULL
&& group
!= NULL
)
1122 SetWindowGroup( (WindowRef
) m_macWindow
, group
) ;
1124 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
1126 // the create commands are only for content rect, so we have to set the size again as
1128 SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &theBoundsRect
) ;
1130 wxAssociateWinWithMacWindow( (WindowRef
) m_macWindow
, this ) ;
1131 UMASetWTitle( (WindowRef
) m_macWindow
, title
, m_font
.GetEncoding() ) ;
1132 m_peer
= new wxMacControl(this) ;
1133 #if TARGET_API_MAC_OSX
1134 // There is a bug in 10.2.X for ::GetRootControl returning the window view instead of
1135 // the content view, so we have to retrieve it explicitely
1136 HIViewFindByID( HIViewGetRoot( (WindowRef
) m_macWindow
) , kHIViewWindowContentID
,
1137 m_peer
->GetControlRefAddr() ) ;
1138 if ( !m_peer
->Ok() )
1140 // compatibility mode fallback
1141 GetRootControl( (WindowRef
) m_macWindow
, m_peer
->GetControlRefAddr() ) ;
1144 ::CreateRootControl( (WindowRef
)m_macWindow
, m_peer
->GetControlRefAddr() ) ;
1146 // the root control level handleer
1147 MacInstallEventHandler( (WXWidget
) m_peer
->GetControlRef() ) ;
1149 // the frame window event handler
1150 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow
)) ) ;
1151 MacInstallTopLevelWindowEventHandler() ;
1155 if ( HasFlag(wxFRAME_SHAPED
) )
1157 // default shape matches the window size
1158 wxRegion
rgn(0, 0, w
, h
);
1162 wxWindowCreateEvent
event(this);
1163 GetEventHandler()->ProcessEvent(event
);
1166 void wxTopLevelWindowMac::ClearBackground()
1168 wxWindow::ClearBackground() ;
1171 // Raise the window to the top of the Z order
1172 void wxTopLevelWindowMac::Raise()
1174 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1177 // Lower the window to the bottom of the Z order
1178 void wxTopLevelWindowMac::Lower()
1180 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
1184 void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp
)
1186 if(s_macDeactivateWindow
)
1188 wxLogDebug(wxT("Doing delayed deactivation of %p"),s_macDeactivateWindow
);
1189 s_macDeactivateWindow
->MacActivate(timestamp
, false);
1193 void wxTopLevelWindowMac::MacActivate( long timestamp
, bool inIsActivating
)
1195 // wxLogDebug(wxT("TopLevel=%p::MacActivate"),this);
1197 if(s_macDeactivateWindow
==this)
1198 s_macDeactivateWindow
=NULL
;
1199 MacDelayedDeactivation(timestamp
);
1200 MacPropagateHiliteChanged() ;
1203 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
1205 wxWindow::SetTitle( title
) ;
1206 UMASetWTitle( (WindowRef
)m_macWindow
, title
, m_font
.GetEncoding() ) ;
1209 bool wxTopLevelWindowMac::Show(bool show
)
1211 if ( !wxTopLevelWindowBase::Show(show
) )
1216 #if wxUSE_SYSTEM_OPTIONS //code contributed by Ryan Wilcox December 18, 2003
1217 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1) )
1219 ::ShowWindow( (WindowRef
)m_macWindow
);
1224 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowShowTransitionAction
,nil
);
1226 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1227 // as apps expect a size event to occur at this moment
1228 wxSizeEvent
event( GetSize() , m_windowId
);
1229 event
.SetEventObject(this);
1230 GetEventHandler()->ProcessEvent(event
);
1234 #if wxUSE_SYSTEM_OPTIONS
1235 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1) )
1237 ::HideWindow((WindowRef
) m_macWindow
);
1242 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowHideTransitionAction
,nil
);
1246 MacPropagateVisibilityChanged() ;
1251 bool wxTopLevelWindowMac::ShowFullScreen(bool show
, long style
)
1255 FullScreenData
*data
= (FullScreenData
*)m_macFullScreenData
;
1257 data
= new FullScreenData() ;
1259 m_macFullScreenData
= data
;
1260 data
->m_position
= GetPosition() ;
1261 data
->m_size
= GetSize() ;
1263 if ( style
& wxFULLSCREEN_NOMENUBAR
)
1267 int left
, top
, right
, bottom
;
1268 wxRect client
= wxGetClientDisplayRect() ;
1277 MacGetContentAreaInset( left
, top
, right
, bottom
) ;
1279 if ( style
& wxFULLSCREEN_NOCAPTION
)
1284 if ( style
& wxFULLSCREEN_NOBORDER
)
1290 if ( style
& wxFULLSCREEN_NOTOOLBAR
)
1294 if ( style
& wxFULLSCREEN_NOSTATUSBAR
)
1298 SetSize( x
, y
, w
, h
) ;
1303 FullScreenData
*data
= (FullScreenData
*) m_macFullScreenData
;
1304 SetPosition( data
->m_position
) ;
1305 SetSize( data
->m_size
) ;
1307 m_macFullScreenData
= NULL
;
1312 bool wxTopLevelWindowMac::IsFullScreen() const
1314 return m_macFullScreenData
!= NULL
;
1317 // we are still using coordinates of the content view, todo switch to structure bounds
1319 void wxTopLevelWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1323 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &structure
) ;
1324 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowContentRgn
, &content
) ;
1326 left
= content
.left
- structure
.left
;
1327 top
= content
.top
- structure
.top
;
1328 right
= structure
.right
- content
.right
;
1329 bottom
= structure
.bottom
- content
.bottom
;
1332 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1334 Rect bounds
= { y
, x
, y
+ height
, x
+ width
} ;
1335 verify_noerr(SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1338 void wxTopLevelWindowMac::DoGetPosition( int *x
, int *y
) const
1341 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1342 if(x
) *x
= bounds
.left
;
1343 if(y
) *y
= bounds
.top
;
1345 void wxTopLevelWindowMac::DoGetSize( int *width
, int *height
) const
1348 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1349 if(width
) *width
= bounds
.right
- bounds
.left
;
1350 if(height
) *height
= bounds
.bottom
- bounds
.top
;
1353 void wxTopLevelWindowMac::DoGetClientSize( int *width
, int *height
) const
1356 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowContentRgn
, &bounds
)) ;
1357 if(width
) *width
= bounds
.right
- bounds
.left
;
1358 if(height
) *height
= bounds
.bottom
- bounds
.top
;
1361 void wxTopLevelWindowMac::MacSetMetalAppearance( bool set
)
1363 #if TARGET_API_MAC_OSX
1365 GetWindowAttributes((WindowRef
) m_macWindow
, &attr
) ;
1366 wxASSERT_MSG( attr
& kWindowCompositingAttribute
,
1367 wxT("Cannot set metal appearance on a non-compositing window") ) ;
1369 MacChangeWindowAttributes( set
? kWindowMetalAttribute
: kWindowNoAttributes
,
1370 set
? kWindowNoAttributes
: kWindowMetalAttribute
) ;
1374 bool wxTopLevelWindowMac::MacGetMetalAppearance() const
1376 #if TARGET_API_MAC_OSX
1377 return MacGetWindowAttributes() & kWindowMetalAttribute
;
1383 void wxTopLevelWindowMac::MacChangeWindowAttributes( wxUint32 attributesToSet
, wxUint32 attributesToClear
)
1385 ChangeWindowAttributes ( (WindowRef
) m_macWindow
, attributesToSet
, attributesToClear
) ;
1388 wxUint32
wxTopLevelWindowMac::MacGetWindowAttributes() const
1391 GetWindowAttributes((WindowRef
) m_macWindow
, &attr
) ;
1395 // Attracts the users attention to this window if the application is
1396 // inactive (should be called when a background event occurs)
1398 static pascal void wxMacNMResponse( NMRecPtr ptr
)
1401 DisposePtr( (Ptr
) ptr
) ;
1405 void wxTopLevelWindowMac::RequestUserAttention(int flags
)
1407 NMRecPtr notificationRequest
= (NMRecPtr
) NewPtr( sizeof( NMRec
) ) ;
1408 static wxMacNMUPP
nmupp( wxMacNMResponse
)
1410 memset( notificationRequest
, 0 , sizeof(*notificationRequest
) ) ;
1411 notificationRequest
->qType
= nmType
;
1412 notificationRequest
->nmMark
= 1 ;
1413 notificationRequest
->nmIcon
= 0 ;
1414 notificationRequest
->nmSound
= 0 ;
1415 notificationRequest
->nmStr
= NULL
;
1416 notificationRequest
->nmResp
= nmupp
;
1417 verify_noerr( NMInstall( notificationRequest
) ) ;
1420 // ---------------------------------------------------------------------------
1421 // Shape implementation
1422 // ---------------------------------------------------------------------------
1425 bool wxTopLevelWindowMac::SetShape(const wxRegion
& region
)
1427 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), FALSE
,
1428 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1430 // The empty region signifies that the shape should be removed from the
1432 if ( region
.IsEmpty() )
1434 wxSize sz
= GetClientSize();
1435 wxRegion
rgn(0, 0, sz
.x
, sz
.y
);
1436 return SetShape(rgn
);
1439 // Make a copy of the region
1440 RgnHandle shapeRegion
= NewRgn();
1441 CopyRgn( (RgnHandle
)region
.GetWXHRGN(), shapeRegion
);
1443 // Dispose of any shape region we may already have
1444 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
)MacGetWindowRef() );
1448 // Save the region so we can use it later
1449 SetWRefCon((WindowRef
)MacGetWindowRef(), (SInt32
)shapeRegion
);
1451 // Tell the window manager that the window has changed shape
1452 ReshapeCustomWindow((WindowRef
)MacGetWindowRef());
1456 // ---------------------------------------------------------------------------
1457 // Support functions for shaped windows, based on Apple's CustomWindow sample at
1458 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1459 // ---------------------------------------------------------------------------
1461 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
1463 GetWindowPortBounds(window
, inRect
);
1464 Point pt
= {inRect
->left
, inRect
->top
};
1465 QDLocalToGlobalPoint( GetWindowPort(window
) , &pt
) ;
1467 inRect
->left
= pt
.h
;
1468 inRect
->bottom
+= pt
.v
;
1469 inRect
->right
+= pt
.h
;
1473 static SInt32
wxShapedMacWindowGetFeatures(WindowRef window
, SInt32 param
)
1475 /*------------------------------------------------------
1476 Define which options your custom window supports.
1477 --------------------------------------------------------*/
1478 //just enable everything for our demo
1479 *(OptionBits
*)param
=//kWindowCanGrow|
1481 //kWindowCanCollapse|
1482 //kWindowCanGetWindowRegion|
1483 //kWindowHasTitleBar|
1484 //kWindowSupportsDragHilite|
1485 kWindowCanDrawInCurrentPort
|
1486 //kWindowCanMeasureTitle|
1487 kWindowWantsDisposeAtProcessDeath
|
1488 kWindowSupportsGetGrowImageRegion
|
1489 kWindowDefSupportsColorGrafPort
;
1493 // The content region is left as a rectangle matching the window size, this is
1494 // so the origin in the paint event, and etc. still matches what the
1495 // programmer expects.
1496 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1499 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow(window
);
1503 wxShapedMacWindowGetPos(window
, &r
) ;
1504 RectRgn( rgn
, &r
) ;
1508 // The structure region is set to the shape given to the SetShape method.
1509 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1511 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1517 wxShapedMacWindowGetPos(window
, &windowRect
); //how big is the window
1518 CopyRgn(cachedRegion
, rgn
); //make a copy of our cached region
1519 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1520 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1526 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1528 GetWindowRegionPtr rgnRec
=(GetWindowRegionPtr
)param
;
1530 switch(rgnRec
->regionCode
)
1532 case kWindowStructureRgn
:
1533 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1535 case kWindowContentRgn
:
1536 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1539 SetEmptyRgn(rgnRec
->winRgn
);
1546 static SInt32
wxShapedMacWindowHitTest(WindowRef window
,SInt32 param
)
1548 /*------------------------------------------------------
1549 Determine the region of the window which was hit
1550 --------------------------------------------------------*/
1552 static RgnHandle tempRgn
=nil
;
1557 SetPt(&hitPoint
,LoWord(param
),HiWord(param
));//get the point clicked
1559 //Mac OS 8.5 or later
1560 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1561 if (PtInRgn(hitPoint
, tempRgn
)) //in window content region?
1564 return wNoHit
;//no significant area was hit.
1568 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
)
1572 case kWindowMsgHitTest
:
1573 return wxShapedMacWindowHitTest(window
,param
);
1575 case kWindowMsgGetFeatures
:
1576 return wxShapedMacWindowGetFeatures(window
,param
);
1578 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1579 case kWindowMsgGetRegion
:
1580 return wxShapedMacWindowGetRegion(window
,param
);
1586 // ---------------------------------------------------------------------------