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 // ----------------------------------------------------------------------------
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"
41 #include "wx/mac/uma.h"
42 #include "wx/mac/aga.h"
44 #include "wx/tooltip.h"
46 #if wxUSE_SYSTEM_OPTIONS
47 #include "wx/sysopt.h"
50 #include <ToolUtils.h>
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 // list of all frames and modeless dialogs
57 wxWindowList wxModelessWindows
;
59 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
);
61 // ============================================================================
62 // wxTopLevelWindowMac implementation
63 // ============================================================================
65 BEGIN_EVENT_TABLE(wxTopLevelWindowMac
, wxTopLevelWindowBase
)
69 // ---------------------------------------------------------------------------
71 // ---------------------------------------------------------------------------
73 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
75 static const EventTypeSpec eventList
[] =
77 // TODO remove control related event like key and mouse (except for WindowLeave events)
79 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
81 { kEventClassKeyboard
, kEventRawKeyDown
} ,
82 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
83 { kEventClassKeyboard
, kEventRawKeyUp
} ,
84 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
87 { kEventClassWindow
, kEventWindowShown
} ,
88 { kEventClassWindow
, kEventWindowActivated
} ,
89 { kEventClassWindow
, kEventWindowDeactivated
} ,
90 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
91 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
92 { kEventClassWindow
, kEventWindowClose
} ,
94 // we have to catch these events on the toplevel window level, as controls don't get the
95 // raw mouse events anymore
97 { kEventClassMouse
, kEventMouseDown
} ,
98 { kEventClassMouse
, kEventMouseUp
} ,
99 { kEventClassMouse
, kEventMouseWheelMoved
} ,
100 { kEventClassMouse
, kEventMouseMoved
} ,
101 { kEventClassMouse
, kEventMouseDragged
} ,
104 static pascal OSStatus
TextInputEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
106 OSStatus result
= eventNotHandledErr
;
108 wxWindow
* focus
= wxWindow::FindFocus() ;
116 GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
118 GetEventParameter( rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
119 GetEventParameter( rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
120 GetEventParameter( rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
121 GetEventParameter( rawEvent
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
122 sizeof( Point
), NULL
, &point
);
124 switch ( GetEventKind( event
) )
126 case kEventTextInputUnicodeForKeyEvent
:
127 // this is only called when no default handler has jumped in, eg a wxControl on a floater window does not
128 // get its own kEventTextInputUnicodeForKeyEvent, so we route back the
129 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
132 ControlRef macControl
= (ControlRef
) control
->GetHandle() ;
135 ::HandleControlKey( macControl
, keyCode
, charCode
, modifiers
) ;
140 // this may lead to double events sent to a window in case all handlers have skipped the key down event
141 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
142 UInt32 message = (keyCode << 8) + charCode;
144 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
145 focus , message , modifiers , when , point.h , point.v ) )
156 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
158 OSStatus result
= eventNotHandledErr
;
160 wxWindow
* focus
= wxWindow::FindFocus() ;
168 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
170 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
171 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
172 GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
173 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
174 sizeof( Point
), NULL
, &point
);
176 UInt32 message
= (keyCode
<< 8) + charCode
;
177 switch( GetEventKind( event
) )
179 case kEventRawKeyRepeat
:
180 case kEventRawKeyDown
:
182 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
183 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
184 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
185 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyDownEvent(
186 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
190 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
193 case kEventRawKeyUp
:
194 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyUpEvent(
195 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
200 case kEventRawKeyModifiersChanged
:
202 wxKeyEvent
event(wxEVT_KEY_DOWN
);
204 event
.m_shiftDown
= modifiers
& shiftKey
;
205 event
.m_controlDown
= modifiers
& controlKey
;
206 event
.m_altDown
= modifiers
& optionKey
;
207 event
.m_metaDown
= modifiers
& cmdKey
;
211 event
.m_timeStamp
= when
;
212 wxWindow
* focus
= wxWindow::FindFocus() ;
213 event
.SetEventObject(focus
);
215 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & controlKey
)
217 event
.m_keyCode
= WXK_CONTROL
;
218 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
219 focus
->GetEventHandler()->ProcessEvent( event
) ;
221 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & shiftKey
)
223 event
.m_keyCode
= WXK_SHIFT
;
224 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
225 focus
->GetEventHandler()->ProcessEvent( event
) ;
227 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & optionKey
)
229 event
.m_keyCode
= WXK_ALT
;
230 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
231 focus
->GetEventHandler()->ProcessEvent( event
) ;
233 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & cmdKey
)
235 event
.m_keyCode
= WXK_COMMAND
;
236 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
237 focus
->GetEventHandler()->ProcessEvent( event
) ;
239 wxTheApp
->s_lastModifiers
= modifiers
;
247 // we don't interfere with foreign controls on our toplevel windows, therefore we always give back eventNotHandledErr
248 // for windows that we didn't create (like eg Scrollbars in a databrowser) , or for controls where we did not handle the
251 // This handler can also be called from app level where data (ie target window) may be null or a non wx window
253 wxWindow
* g_MacLastWindow
= NULL
;
255 static void SetupMouseEvent( wxMouseEvent
&wxevent
, wxMacCarbonEvent
&cEvent
)
257 UInt32 modifiers
= cEvent
.GetParameter
<UInt32
>(kEventParamKeyModifiers
, typeUInt32
) ;
258 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
260 // this parameter are not given for all events
261 EventMouseButton button
= 0 ;
262 UInt32 clickCount
= 0 ;
263 cEvent
.GetParameter
<EventMouseButton
>(kEventParamMouseButton
, typeMouseButton
, &button
) ;
264 cEvent
.GetParameter
<UInt32
>(kEventParamClickCount
, typeUInt32
, &clickCount
) ;
266 wxevent
.m_x
= screenMouseLocation
.h
;
267 wxevent
.m_y
= screenMouseLocation
.v
;
268 wxevent
.m_shiftDown
= modifiers
& shiftKey
;
269 wxevent
.m_controlDown
= modifiers
& controlKey
;
270 wxevent
.m_altDown
= modifiers
& optionKey
;
271 wxevent
.m_metaDown
= modifiers
& cmdKey
;
272 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
273 // a control click is interpreted as a right click
274 if ( button
== kEventMouseButtonPrimary
&& (modifiers
& controlKey
) )
276 button
= kEventMouseButtonSecondary
;
279 // determinate the correct down state, wx does not want a 'down' for a mouseUp event, while mac delivers
281 if ( button
!= 0 && cEvent
.GetKind() != kEventMouseUp
)
285 case kEventMouseButtonPrimary
:
286 wxevent
.m_leftDown
= true ;
288 case kEventMouseButtonSecondary
:
289 wxevent
.m_rightDown
= true ;
291 case kEventMouseButtonTertiary
:
292 wxevent
.m_middleDown
= true ;
296 // determinate the correct click button
297 if ( button
== kEventMouseButtonSecondary
)
299 if (cEvent
.GetKind() == kEventMouseDown
)
300 wxevent
.SetEventType( clickCount
> 1 ? wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
) ;
301 else if ( cEvent
.GetKind() == kEventMouseUp
)
302 wxevent
.SetEventType(wxEVT_RIGHT_UP
) ;
304 else if ( button
== kEventMouseButtonTertiary
)
306 if (cEvent
.GetKind() == kEventMouseDown
)
307 wxevent
.SetEventType(clickCount
> 1 ? wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
) ;
308 else if ( cEvent
.GetKind() == kEventMouseUp
)
309 wxevent
.SetEventType(wxEVT_MIDDLE_UP
) ;
313 if (cEvent
.GetKind() == kEventMouseDown
)
314 wxevent
.SetEventType(clickCount
> 1 ? wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
) ;
315 else if ( cEvent
.GetKind() == kEventMouseUp
)
316 wxevent
.SetEventType(wxEVT_LEFT_UP
) ;
317 else if ( cEvent
.GetKind() == kEventMouseWheelMoved
)
319 wxevent
.SetEventType(wxEVT_MOUSEWHEEL
) ;
321 // EventMouseWheelAxis axis = cEvent.GetParameter<EventMouseWheelAxis>(kEventParamMouseWheelAxis, typeMouseWheelAxis) ;
322 SInt32 delta
= cEvent
.GetParameter
<SInt32
>(kEventParamMouseWheelDelta
, typeLongInteger
) ;
324 wxevent
.m_wheelRotation
= delta
;
325 wxevent
.m_wheelDelta
= 1;
326 wxevent
.m_linesPerAction
= 1;
329 wxevent
.SetEventType(wxEVT_MOTION
) ;
333 ControlRef
wxMacFindSubControl( Point location
, ControlRef superControl
, ControlPartCode
*outPart
)
337 UInt16 childrenCount
= 0 ;
338 OSStatus err
= CountSubControls( superControl
, &childrenCount
) ;
339 if ( err
== errControlIsNotEmbedder
)
341 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
343 for ( UInt16 i
= childrenCount
; i
>=1 ; --i
)
345 ControlHandle sibling
;
346 err
= GetIndexedSubControl( superControl
, i
, & sibling
) ;
347 if ( err
== errControlIsNotEmbedder
)
350 wxASSERT_MSG( err
== noErr
, wxT("Unexpected error when accessing subcontrols") ) ;
351 if ( IsControlVisible( sibling
) )
354 UMAGetControlBoundsInWindowCoords( sibling
, &r
) ;
355 if ( MacPtInRect( location
, &r
) )
357 ControlHandle child
= wxMacFindSubControl( location
, sibling
, outPart
) ;
362 Point testLocation
= location
;
363 #if TARGET_API_MAC_OSX
364 testLocation
.h
-= r
.left
;
365 testLocation
.v
-= r
.top
;
367 *outPart
= TestControl( sibling
, testLocation
) ;
377 ControlRef
wxMacFindControlUnderMouse( Point location
, WindowRef window
, ControlPartCode
*outPart
)
379 #if TARGET_API_MAC_OSX
380 if ( UMAGetSystemVersion() >= 0x1030 )
381 return FindControlUnderMouse( location
, window
, outPart
) ;
383 ControlRef rootControl
= NULL
;
384 verify_noerr( GetRootControl( window
, &rootControl
) ) ;
385 return wxMacFindSubControl( location
, rootControl
, outPart
) ;
388 pascal OSStatus
wxMacTopLevelMouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
391 OSStatus result
= eventNotHandledErr
;
393 wxMacCarbonEvent
cEvent( event
) ;
395 Point screenMouseLocation
= cEvent
.GetParameter
<Point
>(kEventParamMouseLocation
) ;
396 Point windowMouseLocation
= screenMouseLocation
;
399 short windowPart
= ::FindWindow(screenMouseLocation
, &window
);
401 wxWindow
* currentMouseWindow
= NULL
;
405 QDGlobalToLocalPoint( UMAGetWindowPort(window
) , &windowMouseLocation
) ;
407 if ( wxTheApp
->s_captureWindow
&& wxTheApp
->s_captureWindow
->MacGetTopLevelWindowRef() == (WXWindow
) window
&& windowPart
== inContent
)
409 currentMouseWindow
= wxTheApp
->s_captureWindow
;
411 else if ( (IsWindowActive(window
) && windowPart
== inContent
) )
413 ControlPartCode part
;
414 ControlRef control
= wxMacFindControlUnderMouse( windowMouseLocation
, window
, &part
) ;
416 currentMouseWindow
= (wxWindow
*) data
;
418 currentMouseWindow
= wxFindControlFromMacControl( control
) ;
422 wxMouseEvent
wxevent(wxEVT_LEFT_DOWN
);
423 SetupMouseEvent( wxevent
, cEvent
) ;
425 // handle all enter / leave events
427 if ( currentMouseWindow
!= g_MacLastWindow
)
429 if ( g_MacLastWindow
)
431 wxMouseEvent
eventleave(wxevent
);
432 eventleave
.SetEventType( wxEVT_LEAVE_WINDOW
);
433 g_MacLastWindow
->ScreenToClient( &eventleave
.m_x
, &eventleave
.m_y
);
434 eventleave
.SetEventObject( g_MacLastWindow
) ;
437 wxToolTip::RelayEvent( g_MacLastWindow
, eventleave
);
438 #endif // wxUSE_TOOLTIPS
439 g_MacLastWindow
->GetEventHandler()->ProcessEvent(eventleave
);
441 if ( currentMouseWindow
)
443 wxMouseEvent
evententer(wxevent
);
444 evententer
.SetEventType( wxEVT_ENTER_WINDOW
);
445 currentMouseWindow
->ScreenToClient( &evententer
.m_x
, &evententer
.m_y
);
446 evententer
.SetEventObject( currentMouseWindow
) ;
448 wxToolTip::RelayEvent( currentMouseWindow
, evententer
);
449 #endif // wxUSE_TOOLTIPS
450 currentMouseWindow
->GetEventHandler()->ProcessEvent(evententer
);
452 g_MacLastWindow
= currentMouseWindow
;
455 if ( windowPart
== inMenuBar
)
457 // special case menu bar, as we are having a low-level runloop we must do it ourselves
458 if ( cEvent
.GetKind() == kEventMouseDown
)
460 ::MenuSelect( screenMouseLocation
) ;
463 } // if ( windowPart == inMenuBar )
464 else if ( currentMouseWindow
)
466 currentMouseWindow
->ScreenToClient( &wxevent
.m_x
, &wxevent
.m_y
) ;
468 wxevent
.SetEventObject( currentMouseWindow
) ;
472 wxWindow
* cursorTarget
= currentMouseWindow
;
473 wxPoint
cursorPoint( wxevent
.m_x
, wxevent
.m_y
) ;
475 while( cursorTarget
&& !cursorTarget
->MacSetupCursor( cursorPoint
) )
477 cursorTarget
= cursorTarget
->GetParent() ;
479 cursorPoint
+= cursorTarget
->GetPosition() ;
484 if ( wxevent
.GetEventType() == wxEVT_LEFT_DOWN
)
486 // set focus to this window
487 if (currentMouseWindow
->AcceptsFocus() && wxWindow::FindFocus()!=currentMouseWindow
)
488 currentMouseWindow
->SetFocus();
491 // make tooltips current
494 if ( wxevent
.GetEventType() == wxEVT_MOTION
495 || wxevent
.GetEventType() == wxEVT_ENTER_WINDOW
496 || wxevent
.GetEventType() == wxEVT_LEAVE_WINDOW
)
497 wxToolTip::RelayEvent( currentMouseWindow
, wxevent
);
498 #endif // wxUSE_TOOLTIPS
499 if ( currentMouseWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
503 ControlPartCode dummyPart
;
504 // if built-in find control is finding the wrong control (ie static box instead of overlaid
505 // button, we cannot let the standard handler do its job, but must handle manually
507 if ( ( cEvent
.GetKind() == kEventMouseDown
) &&
508 (FindControlUnderMouse(windowMouseLocation
, window
, &dummyPart
) !=
509 wxMacFindControlUnderMouse( windowMouseLocation
, window
, &dummyPart
) ) )
511 EventModifiers modifiers
= cEvent
.GetParameter
<EventModifiers
>(kEventParamKeyModifiers
, typeUInt32
) ;
512 Point clickLocation
= windowMouseLocation
;
513 #if TARGET_API_MAC_OSX
514 currentMouseWindow
->MacRootWindowToWindow( &clickLocation
.h
, &clickLocation
.v
) ;
516 HandleControlClick( (ControlRef
) currentMouseWindow
->GetHandle() , clickLocation
,
517 modifiers
, (ControlActionUPP
) -1 ) ;
521 if ( cEvent
.GetKind() == kEventMouseUp
&& wxTheApp
->s_captureWindow
)
523 wxTheApp
->s_captureWindow
= NULL
;
526 } // else if ( currentMouseWindow )
530 static pascal OSStatus
wxMacTopLevelWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
532 OSStatus result
= eventNotHandledErr
;
534 wxMacCarbonEvent
cEvent( event
) ;
536 // WindowRef windowRef = cEvent.GetParameter<WindowRef>(kEventParamDirectObject) ;
537 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
539 switch( GetEventKind( event
) )
541 case kEventWindowActivated
:
543 toplevelWindow
->MacActivate( cEvent
.GetTicks() , true) ;
544 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, true , toplevelWindow
->GetId());
545 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
546 wxevent
.SetEventObject(toplevelWindow
);
547 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
548 // we still sending an eventNotHandledErr in order to allow for default processing
551 case kEventWindowDeactivated
:
553 toplevelWindow
->MacActivate(cEvent
.GetTicks() , false) ;
554 wxActivateEvent
wxevent(wxEVT_ACTIVATE
, false , toplevelWindow
->GetId());
555 wxevent
.SetTimestamp( cEvent
.GetTicks() ) ;
556 wxevent
.SetEventObject(toplevelWindow
);
557 toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
);
558 // we still sending an eventNotHandledErr in order to allow for default processing
561 case kEventWindowShown
:
562 toplevelWindow
->Refresh() ;
565 case kEventWindowClose
:
566 toplevelWindow
->Close() ;
569 case kEventWindowBoundsChanged
:
571 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
572 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
573 wxRect
r( newRect
.left
, newRect
.top
, newRect
.right
- newRect
.left
, newRect
.bottom
- newRect
.top
) ;
574 if ( attributes
& kWindowBoundsChangeSizeChanged
)
576 // according to the other ports we handle this within the OS level
577 // resize event, not within a wxSizeEvent
578 wxFrame
*frame
= wxDynamicCast( toplevelWindow
, wxFrame
) ;
582 frame
->PositionStatusBar();
585 frame
->PositionToolBar();
589 wxSizeEvent
event( r
.GetSize() , toplevelWindow
->GetId() ) ;
590 event
.SetEventObject( toplevelWindow
) ;
592 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
594 if ( attributes
& kWindowBoundsChangeOriginChanged
)
596 wxMoveEvent
event( r
.GetLeftTop() , toplevelWindow
->GetId() ) ;
597 event
.SetEventObject( toplevelWindow
) ;
598 toplevelWindow
->GetEventHandler()->ProcessEvent(event
) ;
603 case kEventWindowBoundsChanging
:
605 UInt32 attributes
= cEvent
.GetParameter
<UInt32
>(kEventParamAttributes
,typeUInt32
) ;
606 Rect newRect
= cEvent
.GetParameter
<Rect
>(kEventParamCurrentBounds
) ;
608 if ( (attributes
& kWindowBoundsChangeSizeChanged
) || (attributes
& kWindowBoundsChangeOriginChanged
) )
610 // all (Mac) rects are in content area coordinates, all wxRects in structure coordinates
611 int left
, top
, right
, bottom
;
612 toplevelWindow
->MacGetContentAreaInset( left
, top
, right
, bottom
) ;
613 wxRect
r( newRect
.left
- left
, newRect
.top
- top
,
614 newRect
.right
- newRect
.left
+ left
+ right
, newRect
.bottom
- newRect
.top
+ top
+ bottom
) ;
615 // this is a EVT_SIZING not a EVT_SIZE type !
616 wxSizeEvent
wxevent( r
, toplevelWindow
->GetId() ) ;
617 wxevent
.SetEventObject( toplevelWindow
) ;
619 if ( toplevelWindow
->GetEventHandler()->ProcessEvent(wxevent
) )
620 adjustR
= wxevent
.GetRect() ;
622 if ( toplevelWindow
->GetMaxWidth() != -1 && adjustR
.GetWidth() > toplevelWindow
->GetMaxWidth() )
623 adjustR
.SetWidth( toplevelWindow
->GetMaxWidth() ) ;
624 if ( toplevelWindow
->GetMaxHeight() != -1 && adjustR
.GetHeight() > toplevelWindow
->GetMaxHeight() )
625 adjustR
.SetHeight( toplevelWindow
->GetMaxHeight() ) ;
626 if ( toplevelWindow
->GetMinWidth() != -1 && adjustR
.GetWidth() < toplevelWindow
->GetMinWidth() )
627 adjustR
.SetWidth( toplevelWindow
->GetMinWidth() ) ;
628 if ( toplevelWindow
->GetMinHeight() != -1 && adjustR
.GetHeight() < toplevelWindow
->GetMinHeight() )
629 adjustR
.SetHeight( toplevelWindow
->GetMinHeight() ) ;
630 Rect adjustedRect
= { adjustR
.y
+ top
, adjustR
.x
+ left
, adjustR
.y
+ adjustR
.height
- bottom
, adjustR
.x
+ adjustR
.width
- right
} ;
631 if ( !EqualRect( &newRect
, &adjustedRect
) )
632 cEvent
.SetParameter( kEventParamCurrentBounds
, &adjustedRect
) ;
644 pascal OSStatus
wxMacTopLevelEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
646 OSStatus result
= eventNotHandledErr
;
648 switch ( GetEventClass( event
) )
650 case kEventClassKeyboard
:
651 result
= KeyboardEventHandler( handler
, event
, data
) ;
653 case kEventClassTextInput
:
654 result
= TextInputEventHandler( handler
, event
, data
) ;
656 case kEventClassWindow
:
657 result
= wxMacTopLevelWindowEventHandler( handler
, event
, data
) ;
659 case kEventClassMouse
:
660 result
= wxMacTopLevelMouseEventHandler( handler
, event
, data
) ;
668 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTopLevelEventHandler
)
670 // ---------------------------------------------------------------------------
671 // wxWindowMac utility functions
672 // ---------------------------------------------------------------------------
674 // Find an item given the Macintosh Window Reference
676 wxList
wxWinMacWindowList(wxKEY_INTEGER
);
677 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WindowRef inWindowRef
)
679 wxNode
*node
= wxWinMacWindowList
.Find((long)inWindowRef
);
682 return (wxTopLevelWindowMac
*)node
->GetData();
685 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
) ;
686 void wxAssociateWinWithMacWindow(WindowRef inWindowRef
, wxTopLevelWindowMac
*win
)
688 // adding NULL WindowRef is (first) surely a result of an error and
689 // (secondly) breaks menu command processing
690 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
692 if ( !wxWinMacWindowList
.Find((long)inWindowRef
) )
693 wxWinMacWindowList
.Append((long)inWindowRef
, win
);
696 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
) ;
697 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
699 wxWinMacWindowList
.DeleteObject(win
);
703 // ----------------------------------------------------------------------------
704 // wxTopLevelWindowMac creation
705 // ----------------------------------------------------------------------------
707 wxTopLevelWindowMac
*wxTopLevelWindowMac::s_macDeactivateWindow
= NULL
;
709 void wxTopLevelWindowMac::Init()
712 m_maximizeOnShow
= FALSE
;
714 #if TARGET_API_MAC_OSX
715 m_macUsesCompositing
= TRUE
;
717 m_macUsesCompositing
= FALSE
;
719 m_macEventHandler
= NULL
;
722 class wxMacDeferredWindowDeleter
: public wxObject
725 wxMacDeferredWindowDeleter( WindowRef windowRef
)
727 m_macWindow
= windowRef
;
729 virtual ~wxMacDeferredWindowDeleter()
731 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
734 WindowRef m_macWindow
;
737 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
739 const wxString
& title
,
743 const wxString
& name
)
748 m_windowStyle
= style
;
752 m_windowId
= id
== -1 ? NewControlId() : id
;
754 MacCreateRealWindow( title
, pos
, size
, MacRemoveBordersFromStyle(style
) , name
) ;
756 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
758 wxTopLevelWindows
.Append(this);
761 parent
->AddChild(this);
766 wxTopLevelWindowMac::~wxTopLevelWindowMac()
770 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
771 wxPendingDelete
.Append( new wxMacDeferredWindowDeleter( (WindowRef
) m_macWindow
) ) ;
774 if ( m_macEventHandler
)
776 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
777 m_macEventHandler
= NULL
;
780 wxRemoveMacWindowAssociation( this ) ;
782 if ( wxModelessWindows
.Find(this) )
783 wxModelessWindows
.DeleteObject(this);
787 // ----------------------------------------------------------------------------
788 // wxTopLevelWindowMac maximize/minimize
789 // ----------------------------------------------------------------------------
791 void wxTopLevelWindowMac::Maximize(bool maximize
)
793 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( (WindowRef
) m_macWindow
) ) ;
794 wxMacWindowClipper
clip (this);
795 ZoomWindow( (WindowRef
)m_macWindow
, maximize
? inZoomOut
: inZoomIn
, false ) ;
798 bool wxTopLevelWindowMac::IsMaximized() const
800 return IsWindowInStandardState( (WindowRef
)m_macWindow
, NULL
, NULL
) ;
803 void wxTopLevelWindowMac::Iconize(bool iconize
)
805 if ( IsWindowCollapsable((WindowRef
)m_macWindow
) )
806 CollapseWindow((WindowRef
)m_macWindow
, iconize
) ;
809 bool wxTopLevelWindowMac::IsIconized() const
811 return IsWindowCollapsed((WindowRef
)m_macWindow
) ;
814 void wxTopLevelWindowMac::Restore()
816 // not available on mac
819 // ----------------------------------------------------------------------------
820 // wxTopLevelWindowMac misc
821 // ----------------------------------------------------------------------------
823 wxPoint
wxTopLevelWindowMac::GetClientAreaOrigin() const
825 return wxPoint(0,0) ;
828 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
831 wxTopLevelWindowBase::SetIcon(icon
);
834 void wxTopLevelWindowMac::MacSetBackgroundBrush( const wxBrush
&brush
)
836 wxTopLevelWindowBase::MacSetBackgroundBrush( brush
) ;
838 if ( m_macBackgroundBrush
.Ok() && m_macBackgroundBrush
.GetStyle() != wxTRANSPARENT
&& m_macBackgroundBrush
.MacGetBrushKind() == kwxMacBrushTheme
)
840 SetThemeWindowBackground( (WindowRef
) m_macWindow
, m_macBackgroundBrush
.MacGetTheme() , false ) ;
844 void wxTopLevelWindowMac::MacInstallTopLevelWindowEventHandler()
846 if ( m_macEventHandler
!= NULL
)
848 verify_noerr( ::RemoveEventHandler( (EventHandlerRef
) m_macEventHandler
) ) ;
850 InstallWindowEventHandler(MAC_WXHWND(m_macWindow
), GetwxMacTopLevelEventHandlerUPP(),
851 GetEventTypeCount(eventList
), eventList
, this, (EventHandlerRef
*)&m_macEventHandler
);
854 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString
& title
,
858 const wxString
& name
)
860 OSStatus err
= noErr
;
862 m_windowStyle
= style
;
876 int w
= WidthDefault(size
.x
);
877 int h
= HeightDefault(size
.y
);
879 ::SetRect(&theBoundsRect
, x
, y
, x
+ w
, y
+ h
);
881 // translate the window attributes in the appropriate window class and attributes
883 WindowClass wclass
= 0;
884 WindowAttributes attr
= kWindowNoAttributes
;
886 if ( HasFlag( wxFRAME_TOOL_WINDOW
) )
889 HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
890 HasFlag( wxSYSTEM_MENU
) || HasFlag( wxCAPTION
) ||
891 HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
)
894 wclass
= kFloatingWindowClass
;
895 if ( HasFlag(wxTINY_CAPTION_VERT
) )
897 attr
|= kWindowSideTitlebarAttribute
;
902 wclass
= kPlainWindowClass
;
905 else if ( HasFlag( wxCAPTION
) )
907 wclass
= kDocumentWindowClass
;
911 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
912 HasFlag( wxCLOSE_BOX
) || HasFlag( wxSYSTEM_MENU
) )
914 wclass
= kDocumentWindowClass
;
918 wclass
= kPlainWindowClass
;
922 if ( HasFlag( wxMINIMIZE_BOX
) )
924 attr
|= kWindowCollapseBoxAttribute
;
926 if ( HasFlag( wxMAXIMIZE_BOX
) )
928 attr
|= kWindowFullZoomAttribute
;
930 if ( HasFlag( wxRESIZE_BORDER
) )
932 attr
|= kWindowResizableAttribute
;
934 if ( HasFlag( wxCLOSE_BOX
) )
936 attr
|= kWindowCloseBoxAttribute
;
939 if (UMAGetSystemVersion() >= 0x1000)
941 // turn on live resizing (OS X only)
942 attr
|= kWindowLiveResizeAttribute
;
945 if (HasFlag(wxSTAY_ON_TOP
))
946 wclass
= kUtilityWindowClass
;
948 #if TARGET_API_MAC_OSX
949 attr
|= kWindowCompositingAttribute
;
952 if ( HasFlag(wxFRAME_SHAPED
) )
954 WindowDefSpec customWindowDefSpec
;
955 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
956 customWindowDefSpec
.u
.defProc
= NewWindowDefUPP(wxShapedMacWindowDef
);
958 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
959 attr
, &theBoundsRect
,
960 (WindowRef
*) &m_macWindow
);
964 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
967 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
969 // the create commands are only for content rect, so we have to set the size again as
971 SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &theBoundsRect
) ;
973 wxAssociateWinWithMacWindow( (WindowRef
) m_macWindow
, this ) ;
974 UMASetWTitle( (WindowRef
) m_macWindow
, title
, m_font
.GetEncoding() ) ;
975 #if TARGET_API_MAC_OSX
976 // There is a bug in 10.2.X for ::GetRootControl returning the window view instead of
977 // the content view, so we have to retrieve it explicitely
978 HIViewFindByID( HIViewGetRoot( (WindowRef
) m_macWindow
) , kHIViewWindowContentID
,
979 (ControlRef
*)&m_macControl
) ;
981 ::CreateRootControl( (WindowRef
)m_macWindow
, (ControlRef
*)&m_macControl
) ;
983 // the root control level handleer
984 MacInstallEventHandler() ;
986 // the frame window event handler
987 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow
)) ) ;
988 MacInstallTopLevelWindowEventHandler() ;
992 if ( HasFlag(wxFRAME_SHAPED
) )
994 // default shape matches the window size
995 wxRegion
rgn(0, 0, w
, h
);
999 wxWindowCreateEvent
event(this);
1000 GetEventHandler()->ProcessEvent(event
);
1003 void wxTopLevelWindowMac::ClearBackground()
1005 wxWindow::ClearBackground() ;
1008 // Raise the window to the top of the Z order
1009 void wxTopLevelWindowMac::Raise()
1011 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1014 // Lower the window to the bottom of the Z order
1015 void wxTopLevelWindowMac::Lower()
1017 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
1021 void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp
)
1023 if(s_macDeactivateWindow
)
1025 wxLogDebug(wxT("Doing delayed deactivation of %p"),s_macDeactivateWindow
);
1026 s_macDeactivateWindow
->MacActivate(timestamp
, false);
1030 void wxTopLevelWindowMac::MacActivate( long timestamp
, bool inIsActivating
)
1032 // wxLogDebug(wxT("TopLevel=%p::MacActivate"),this);
1034 if(s_macDeactivateWindow
==this)
1035 s_macDeactivateWindow
=NULL
;
1036 MacDelayedDeactivation(timestamp
);
1037 MacPropagateHiliteChanged() ;
1040 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
1042 wxWindow::SetTitle( title
) ;
1043 UMASetWTitle( (WindowRef
)m_macWindow
, title
, m_font
.GetEncoding() ) ;
1046 bool wxTopLevelWindowMac::Show(bool show
)
1048 if ( !wxTopLevelWindowBase::Show(show
) )
1053 #if wxUSE_SYSTEM_OPTIONS //code contributed by Ryan Wilcox December 18, 2003
1054 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1) )
1056 ::ShowWindow( (WindowRef
)m_macWindow
);
1061 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowShowTransitionAction
,nil
);
1063 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1064 // as apps expect a size event to occur at this moment
1065 wxSizeEvent
event( GetSize() , m_windowId
);
1066 event
.SetEventObject(this);
1067 GetEventHandler()->ProcessEvent(event
);
1071 #if wxUSE_SYSTEM_OPTIONS
1072 if ( (wxSystemOptions::HasOption(wxMAC_WINDOW_PLAIN_TRANSITION
) ) && ( wxSystemOptions::GetOptionInt( wxMAC_WINDOW_PLAIN_TRANSITION
) == 1) )
1074 ::HideWindow((WindowRef
) m_macWindow
);
1079 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowHideTransitionAction
,nil
);
1083 MacPropagateVisibilityChanged() ;
1088 // we are still using coordinates of the content view, todo switch to structure bounds
1090 void wxTopLevelWindowMac::MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
)
1094 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &structure
) ;
1095 GetWindowBounds( (WindowRef
) m_macWindow
, kWindowContentRgn
, &content
) ;
1097 left
= content
.left
- structure
.left
;
1098 top
= content
.top
- structure
.top
;
1099 right
= structure
.right
- content
.right
;
1100 bottom
= structure
.bottom
- content
.bottom
;
1103 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1105 Rect bounds
= { y
, x
, y
+ height
, x
+ width
} ;
1106 verify_noerr(SetWindowBounds( (WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1109 void wxTopLevelWindowMac::DoGetPosition( int *x
, int *y
) const
1112 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1113 if(x
) *x
= bounds
.left
;
1114 if(y
) *y
= bounds
.top
;
1116 void wxTopLevelWindowMac::DoGetSize( int *width
, int *height
) const
1119 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowStructureRgn
, &bounds
)) ;
1120 if(width
) *width
= bounds
.right
- bounds
.left
;
1121 if(height
) *height
= bounds
.bottom
- bounds
.top
;
1124 void wxTopLevelWindowMac::DoGetClientSize( int *width
, int *height
) const
1127 verify_noerr(GetWindowBounds((WindowRef
) m_macWindow
, kWindowContentRgn
, &bounds
)) ;
1128 if(width
) *width
= bounds
.right
- bounds
.left
;
1129 if(height
) *height
= bounds
.bottom
- bounds
.top
;
1132 void wxTopLevelWindowMac::MacSetMetalAppearance( bool set
)
1134 #if TARGET_API_MAC_OSX
1136 GetWindowAttributes((WindowRef
) m_macWindow
, &attr
) ;
1137 wxASSERT_MSG( attr
& kWindowCompositingAttribute
,
1138 wxT("Cannot set metal appearance on a non-compositing window") ) ;
1140 MacChangeWindowAttributes( set
? kWindowMetalAttribute
: kWindowNoAttributes
,
1141 set
? kWindowNoAttributes
: kWindowMetalAttribute
) ;
1145 bool wxTopLevelWindowMac::MacGetMetalAppearance() const
1147 #if TARGET_API_MAC_OSX
1148 return MacGetWindowAttributes() & kWindowMetalAttribute
;
1154 void wxTopLevelWindowMac::MacChangeWindowAttributes( wxUint32 attributesToSet
, wxUint32 attributesToClear
)
1156 ChangeWindowAttributes ( (WindowRef
) m_macWindow
, attributesToSet
, attributesToClear
) ;
1159 wxUint32
wxTopLevelWindowMac::MacGetWindowAttributes() const
1162 GetWindowAttributes((WindowRef
) m_macWindow
, &attr
) ;
1166 // ---------------------------------------------------------------------------
1167 // Shape implementation
1168 // ---------------------------------------------------------------------------
1171 bool wxTopLevelWindowMac::SetShape(const wxRegion
& region
)
1173 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), FALSE
,
1174 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1176 // The empty region signifies that the shape should be removed from the
1178 if ( region
.IsEmpty() )
1180 wxSize sz
= GetClientSize();
1181 wxRegion
rgn(0, 0, sz
.x
, sz
.y
);
1182 return SetShape(rgn
);
1185 // Make a copy of the region
1186 RgnHandle shapeRegion
= NewRgn();
1187 CopyRgn( (RgnHandle
)region
.GetWXHRGN(), shapeRegion
);
1189 // Dispose of any shape region we may already have
1190 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
)MacGetWindowRef() );
1194 // Save the region so we can use it later
1195 SetWRefCon((WindowRef
)MacGetWindowRef(), (SInt32
)shapeRegion
);
1197 // Tell the window manager that the window has changed shape
1198 ReshapeCustomWindow((WindowRef
)MacGetWindowRef());
1202 // ---------------------------------------------------------------------------
1203 // Support functions for shaped windows, based on Apple's CustomWindow sample at
1204 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1205 // ---------------------------------------------------------------------------
1207 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
1209 GetWindowPortBounds(window
, inRect
);
1210 Point pt
= {inRect
->left
, inRect
->top
};
1211 QDLocalToGlobalPoint( GetWindowPort(window
) , &pt
) ;
1213 inRect
->left
= pt
.h
;
1214 inRect
->bottom
+= pt
.v
;
1215 inRect
->right
+= pt
.h
;
1219 static SInt32
wxShapedMacWindowGetFeatures(WindowRef window
, SInt32 param
)
1221 /*------------------------------------------------------
1222 Define which options your custom window supports.
1223 --------------------------------------------------------*/
1224 //just enable everything for our demo
1225 *(OptionBits
*)param
=//kWindowCanGrow|
1227 //kWindowCanCollapse|
1228 //kWindowCanGetWindowRegion|
1229 //kWindowHasTitleBar|
1230 //kWindowSupportsDragHilite|
1231 kWindowCanDrawInCurrentPort
|
1232 //kWindowCanMeasureTitle|
1233 kWindowWantsDisposeAtProcessDeath
|
1234 kWindowSupportsSetGrowImageRegion
|
1235 kWindowDefSupportsColorGrafPort
;
1239 // The content region is left as a rectangle matching the window size, this is
1240 // so the origin in the paint event, and etc. still matches what the
1241 // programmer expects.
1242 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1245 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow(window
);
1249 wxShapedMacWindowGetPos(window
, &r
) ;
1250 RectRgn( rgn
, &r
) ;
1254 // The structure region is set to the shape given to the SetShape method.
1255 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1257 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1263 wxShapedMacWindowGetPos(window
, &windowRect
); //how big is the window
1264 CopyRgn(cachedRegion
, rgn
); //make a copy of our cached region
1265 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1266 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1272 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1274 GetWindowRegionPtr rgnRec
=(GetWindowRegionPtr
)param
;
1276 switch(rgnRec
->regionCode
)
1278 case kWindowStructureRgn
:
1279 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1281 case kWindowContentRgn
:
1282 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1285 SetEmptyRgn(rgnRec
->winRgn
);
1292 static SInt32
wxShapedMacWindowHitTest(WindowRef window
,SInt32 param
)
1294 /*------------------------------------------------------
1295 Determine the region of the window which was hit
1296 --------------------------------------------------------*/
1298 static RgnHandle tempRgn
=nil
;
1303 SetPt(&hitPoint
,LoWord(param
),HiWord(param
));//get the point clicked
1305 //Mac OS 8.5 or later
1306 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1307 if (PtInRgn(hitPoint
, tempRgn
)) //in window content region?
1310 return wNoHit
;//no significant area was hit.
1314 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
)
1318 case kWindowMsgHitTest
:
1319 return wxShapedMacWindowHitTest(window
,param
);
1321 case kWindowMsgGetFeatures
:
1322 return wxShapedMacWindowGetFeatures(window
,param
);
1324 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1325 case kWindowMsgGetRegion
:
1326 return wxShapedMacWindowGetRegion(window
,param
);
1332 // ---------------------------------------------------------------------------