1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: mac/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for MSW
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
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"
40 #include "wx/mac/uma.h"
41 #include "wx/mac/aga.h"
43 #include "wx/tooltip.h"
46 #include "ToolUtils.h"
49 #define wxMAC_DEBUG_REDRAW 0
50 #ifndef wxMAC_DEBUG_REDRAW
51 #define wxMAC_DEBUG_REDRAW 0
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 // list of all frames and modeless dialogs
59 wxWindowList wxModelessWindows
;
61 // double click testing
62 static Point gs_lastWhere
;
63 static long gs_lastWhen
= 0;
67 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
);
70 // ============================================================================
71 // wxTopLevelWindowMac implementation
72 // ============================================================================
74 // ---------------------------------------------------------------------------
76 // ---------------------------------------------------------------------------
80 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
82 static const EventTypeSpec eventList
[] =
84 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
86 { kEventClassKeyboard
, kEventRawKeyDown
} ,
87 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
88 { kEventClassKeyboard
, kEventRawKeyUp
} ,
89 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
91 { kEventClassWindow
, kEventWindowUpdate
} ,
92 { kEventClassWindow
, kEventWindowActivated
} ,
93 { kEventClassWindow
, kEventWindowDeactivated
} ,
94 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
95 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
96 { kEventClassWindow
, kEventWindowClose
} ,
98 { kEventClassMouse
, kEventMouseDown
} ,
99 { kEventClassMouse
, kEventMouseUp
} ,
100 { kEventClassMouse
, kEventMouseMoved
} ,
101 { kEventClassMouse
, kEventMouseDragged
} ,
105 static pascal OSStatus
TextInputEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
107 OSStatus result
= eventNotHandledErr
;
109 wxWindow
* focus
= wxWindow::FindFocus() ;
117 GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
119 GetEventParameter( rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
120 GetEventParameter( rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
121 GetEventParameter( rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
122 GetEventParameter( rawEvent
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
123 sizeof( Point
), NULL
, &point
);
125 switch ( GetEventKind( event
) )
127 case kEventTextInputUnicodeForKeyEvent
:
128 // this is only called when no default handler has jumped in, eg a wxControl on a floater window does not
129 // get its own kEventTextInputUnicodeForKeyEvent, so we route back the
130 wxControl
* control
= wxDynamicCast( focus
, wxControl
) ;
133 ControlHandle macControl
= (ControlHandle
) control
->GetMacControl() ;
136 ::HandleControlKey( macControl
, keyCode
, charCode
, modifiers
) ;
141 // this may lead to double events sent to a window in case all handlers have skipped the key down event
142 UInt32 when = EventTimeToTicks( GetEventTime( event ) ) ;
143 UInt32 message = (keyCode << 8) + charCode;
145 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent(
146 focus , message , modifiers , when , point.h , point.v ) )
157 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
159 OSStatus result
= eventNotHandledErr
;
161 wxWindow
* focus
= wxWindow::FindFocus() ;
166 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
168 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
169 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
170 GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
171 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
172 sizeof( Point
), NULL
, &point
);
174 UInt32 message
= (keyCode
<< 8) + charCode
;
175 switch( GetEventKind( event
) )
177 case kEventRawKeyRepeat
:
178 case kEventRawKeyDown
:
180 WXEVENTREF formerEvent
= wxTheApp
->MacGetCurrentEvent() ;
181 WXEVENTHANDLERCALLREF formerHandler
= wxTheApp
->MacGetCurrentEventHandlerCallRef() ;
182 wxTheApp
->MacSetCurrentEvent( event
, handler
) ;
183 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyDownEvent(
184 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
188 wxTheApp
->MacSetCurrentEvent( formerEvent
, formerHandler
) ;
191 case kEventRawKeyUp
:
192 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyUpEvent(
193 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
198 case kEventRawKeyModifiersChanged
:
200 wxKeyEvent
event(wxEVT_KEY_DOWN
);
202 event
.m_shiftDown
= modifiers
& shiftKey
;
203 event
.m_controlDown
= modifiers
& controlKey
;
204 event
.m_altDown
= modifiers
& optionKey
;
205 event
.m_metaDown
= modifiers
& cmdKey
;
209 event
.m_timeStamp
= when
;
210 wxWindow
* focus
= wxWindow::FindFocus() ;
211 event
.SetEventObject(focus
);
213 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & controlKey
)
215 event
.m_keyCode
= WXK_CONTROL
;
216 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
217 focus
->GetEventHandler()->ProcessEvent( event
) ;
219 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & shiftKey
)
221 event
.m_keyCode
= WXK_SHIFT
;
222 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
223 focus
->GetEventHandler()->ProcessEvent( event
) ;
225 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & optionKey
)
227 event
.m_keyCode
= WXK_ALT
;
228 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
229 focus
->GetEventHandler()->ProcessEvent( event
) ;
231 if ( focus
&& (modifiers
^ wxTheApp
->s_lastModifiers
) & cmdKey
)
233 event
.m_keyCode
= WXK_COMMAND
;
234 event
.SetEventType( ( modifiers
& cmdKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
235 focus
->GetEventHandler()->ProcessEvent( event
) ;
237 wxTheApp
->s_lastModifiers
= modifiers
;
245 pascal OSStatus
MouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
247 OSStatus result
= eventNotHandledErr
;
249 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
251 UInt32 modifiers
= 0;
252 EventMouseButton button
= 0 ;
255 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
256 sizeof( Point
), NULL
, &point
);
257 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
,
258 sizeof( UInt32
), NULL
, &modifiers
);
259 GetEventParameter( event
, kEventParamMouseButton
, typeMouseButton
, NULL
,
260 sizeof( EventMouseButton
), NULL
, &button
);
261 GetEventParameter( event
, kEventParamClickCount
, typeUInt32
, NULL
,
262 sizeof( UInt32
), NULL
, &click
);
264 if ( button
== 0 || GetEventKind( event
) == kEventMouseUp
)
265 modifiers
+= btnState
;
268 short windowPart
= ::FindWindow(point
, &window
);
270 // either we really are active or we are capturing mouse events
272 if ( (IsWindowActive(window
) && windowPart
== inContent
) ||
273 (wxTheApp
->s_captureWindow
&& wxTheApp
->s_captureWindow
->MacGetTopLevelWindow() == toplevelWindow
) )
275 switch ( GetEventKind( event
) )
277 case kEventMouseDown
:
278 toplevelWindow
->MacFireMouseEvent( mouseDown
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
282 toplevelWindow
->MacFireMouseEvent( mouseUp
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
285 case kEventMouseMoved
:
286 wxTheApp
->MacHandleMouseMovedEvent( point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
289 case kEventMouseDragged
:
290 toplevelWindow
->MacFireMouseEvent( nullEvent
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
302 static pascal OSStatus
WindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
304 OSStatus result
= eventNotHandledErr
;
305 OSStatus err
= noErr
;
308 WindowRef windowRef
;
309 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
311 GetEventParameter( event
, kEventParamDirectObject
, typeWindowRef
, NULL
,
312 sizeof( WindowRef
), NULL
, &windowRef
);
314 switch( GetEventKind( event
) )
316 case kEventWindowUpdate
:
317 if ( !wxPendingDelete
.Member(toplevelWindow
) )
318 toplevelWindow
->MacUpdate( EventTimeToTicks( GetEventTime( event
) ) ) ;
321 case kEventWindowActivated
:
322 toplevelWindow
->MacActivate( EventTimeToTicks( GetEventTime( event
) ) , true) ;
325 case kEventWindowDeactivated
:
326 toplevelWindow
->MacActivate( EventTimeToTicks( GetEventTime( event
) ) , false) ;
329 case kEventWindowClose
:
330 toplevelWindow
->Close() ;
333 case kEventWindowBoundsChanged
:
334 err
= GetEventParameter( event
, kEventParamAttributes
, typeUInt32
,
335 NULL
, sizeof( UInt32
), NULL
, &attributes
);
338 Rect newContentRect
;
340 GetEventParameter( event
, kEventParamCurrentBounds
, typeQDRectangle
, NULL
,
341 sizeof( newContentRect
), NULL
, &newContentRect
);
343 toplevelWindow
->SetSize( newContentRect
.left
, newContentRect
.top
,
344 newContentRect
.right
- newContentRect
.left
,
345 newContentRect
.bottom
- newContentRect
.top
, wxSIZE_USE_EXISTING
);
350 case kEventWindowBoundsChanging
:
351 err
= GetEventParameter( event
, kEventParamAttributes
, typeUInt32
,
352 NULL
, sizeof( UInt32
), NULL
, &attributes
);
355 Rect newContentRect
;
357 GetEventParameter( event
, kEventParamCurrentBounds
, typeQDRectangle
, NULL
,
358 sizeof( newContentRect
), NULL
, &newContentRect
);
360 wxSize formerSize
= toplevelWindow
->GetSize() ;
362 if ( (attributes
& kWindowBoundsChangeSizeChanged
) ||
363 ( attributes
& kWindowBoundsChangeOriginChanged
) )
364 toplevelWindow
->SetSize( newContentRect
.left
, newContentRect
.top
,
365 newContentRect
.right
- newContentRect
.left
,
366 newContentRect
.bottom
- newContentRect
.top
, wxSIZE_USE_EXISTING
);
369 toplevelWindow
->GetPosition( &x
, &y
) ;
370 toplevelWindow
->GetSize( &w
, &h
) ;
371 Rect adjustedRect
= { y
, x
, y
+ h
, x
+ w
} ;
373 if ( !EqualRect( &newContentRect
, &adjustedRect
) )
375 SetEventParameter( event
, kEventParamCurrentBounds
, typeQDRectangle
, sizeof( adjustedRect
) , &adjustedRect
) ;
378 if ( toplevelWindow
->GetSize() != formerSize
)
379 toplevelWindow
->Update() ;
390 pascal OSStatus
wxMacWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
392 OSStatus result
= eventNotHandledErr
;
394 switch ( GetEventClass( event
) )
396 case kEventClassKeyboard
:
397 result
= KeyboardEventHandler( handler
, event
, data
) ;
399 case kEventClassTextInput
:
400 result
= TextInputEventHandler( handler
, event
, data
) ;
402 case kEventClassWindow
:
403 result
= WindowEventHandler( handler
, event
, data
) ;
405 case kEventClassMouse
:
406 result
= MouseEventHandler( handler
, event
, data
) ;
414 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler
)
418 // ---------------------------------------------------------------------------
419 // wxWindowMac utility functions
420 // ---------------------------------------------------------------------------
422 // Find an item given the Macintosh Window Reference
424 wxList
*wxWinMacWindowList
= NULL
;
425 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WXWindow inWindowRef
)
427 if ( wxWinMacWindowList
== NULL
)
429 wxNode
*node
= wxWinMacWindowList
->Find((long)inWindowRef
);
432 return (wxTopLevelWindowMac
*)node
->GetData();
435 void wxAssociateWinWithMacWindow(WXWindow inWindowRef
, wxTopLevelWindowMac
*win
)
437 // adding NULL WindowRef is (first) surely a result of an error and
438 // (secondly) breaks menu command processing
439 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, wxT("attempt to add a NULL WindowRef to window list") );
441 if ( !wxWinMacWindowList
->Find((long)inWindowRef
) )
442 wxWinMacWindowList
->Append((long)inWindowRef
, win
);
445 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
447 wxWinMacWindowList
->DeleteObject(win
);
451 // ----------------------------------------------------------------------------
452 // wxTopLevelWindowMac creation
453 // ----------------------------------------------------------------------------
455 WXHWND
wxTopLevelWindowMac::s_macWindowInUpdate
= NULL
;
456 wxTopLevelWindowMac
*wxTopLevelWindowMac::s_macDeactivateWindow
= NULL
;
458 void wxTopLevelWindowMac::Init()
461 m_maximizeOnShow
= FALSE
;
462 m_macNoEraseUpdateRgn
= NewRgn() ;
463 m_macNeedsErasing
= false ;
466 m_macEventHandler
= NULL
;
470 class wxMacDeferredWindowDeleter
: public wxObject
473 wxMacDeferredWindowDeleter( WindowRef windowRef
)
475 m_macWindow
= windowRef
;
477 virtual ~wxMacDeferredWindowDeleter()
479 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
482 WindowRef m_macWindow
;
485 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
487 const wxString
& title
,
491 const wxString
& name
)
496 m_windowStyle
= style
;
500 m_windowId
= id
== -1 ? NewControlId() : id
;
502 wxTopLevelWindows
.Append(this);
505 parent
->AddChild(this);
510 wxTopLevelWindowMac::~wxTopLevelWindowMac()
514 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
515 wxPendingDelete
.Append( new wxMacDeferredWindowDeleter( (WindowRef
) m_macWindow
) ) ;
519 if ( m_macEventHandler
)
521 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
522 m_macEventHandler
= NULL
;
526 wxRemoveMacWindowAssociation( this ) ;
528 if ( wxModelessWindows
.Find(this) )
529 wxModelessWindows
.DeleteObject(this);
531 DisposeRgn( (RgnHandle
) m_macNoEraseUpdateRgn
) ;
535 // ----------------------------------------------------------------------------
536 // wxTopLevelWindowMac maximize/minimize
537 // ----------------------------------------------------------------------------
539 void wxTopLevelWindowMac::Maximize(bool maximize
)
541 ZoomWindow( (WindowRef
)m_macWindow
, maximize
? inZoomOut
: inZoomIn
, false ) ;
546 Point pt
= { 0, 0 } ;
547 SetPortWindowPort((WindowRef
)m_macWindow
) ;
548 LocalToGlobal( &pt
) ;
551 GetWindowPortBounds((WindowRef
)m_macWindow
, &tempRect
) ;
552 SetSize( pt
.h
, pt
.v
, tempRect
.right
-tempRect
.left
,
553 tempRect
.bottom
-tempRect
.top
, wxSIZE_USE_EXISTING
);
556 bool wxTopLevelWindowMac::IsMaximized() const
558 return IsWindowInStandardState( (WindowRef
)m_macWindow
, NULL
, NULL
) ;
561 void wxTopLevelWindowMac::Iconize(bool iconize
)
563 if ( IsWindowCollapsable((WindowRef
)m_macWindow
) )
564 CollapseWindow((WindowRef
)m_macWindow
, iconize
) ;
567 bool wxTopLevelWindowMac::IsIconized() const
569 return IsWindowCollapsed((WindowRef
)m_macWindow
) ;
572 void wxTopLevelWindowMac::Restore()
574 // not available on mac
577 // ----------------------------------------------------------------------------
578 // wxTopLevelWindowMac misc
579 // ----------------------------------------------------------------------------
581 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
584 wxTopLevelWindowBase::SetIcon(icon
);
587 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString
& title
,
591 const wxString
& name
)
593 OSStatus err
= noErr
;
595 m_windowStyle
= style
;
616 ::SetRect(&theBoundsRect
, m_x
, m_y
, m_x
+ m_width
, m_y
+ m_height
);
618 // translate the window attributes in the appropriate window class and attributes
620 WindowClass wclass
= 0;
621 WindowAttributes attr
= kWindowNoAttributes
;
623 if ( HasFlag( wxFRAME_TOOL_WINDOW
) )
626 HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
627 HasFlag( wxSYSTEM_MENU
) || HasFlag( wxCAPTION
) ||
628 HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
)
631 wclass
= kFloatingWindowClass
;
632 if ( HasFlag(wxTINY_CAPTION_VERT
) )
634 attr
|= kWindowSideTitlebarAttribute
;
640 wclass
= kPlainWindowClass
;
642 wclass
= kFloatingWindowClass
;
646 else if ( HasFlag( wxCAPTION
) )
648 wclass
= kDocumentWindowClass
;
652 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
653 HasFlag( wxCLOSE_BOX
) || HasFlag( wxSYSTEM_MENU
) )
655 wclass
= kDocumentWindowClass
;
660 wclass
= kPlainWindowClass
;
662 wclass
= kModalWindowClass
;
667 if ( HasFlag( wxMINIMIZE_BOX
) )
669 attr
|= kWindowCollapseBoxAttribute
;
671 if ( HasFlag( wxMAXIMIZE_BOX
) )
673 attr
|= kWindowFullZoomAttribute
;
675 if ( HasFlag( wxRESIZE_BORDER
) )
677 attr
|= kWindowResizableAttribute
;
679 if ( HasFlag( wxCLOSE_BOX
) )
681 attr
|= kWindowCloseBoxAttribute
;
685 #if 0 // having problems right now with that
686 if (HasFlag(wxSTAY_ON_TOP
))
687 wclass
= kUtilityWindowClass
;
692 if ( HasFlag(wxFRAME_SHAPED
) )
694 WindowDefSpec customWindowDefSpec
;
695 customWindowDefSpec
.defType
= kWindowDefProcPtr
;
696 customWindowDefSpec
.u
.defProc
= NewWindowDefUPP(wxShapedMacWindowDef
);
698 err
= ::CreateCustomWindow( &customWindowDefSpec
, wclass
,
699 attr
, &theBoundsRect
,
700 (WindowRef
*) &m_macWindow
);
705 err
= ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
708 wxCHECK_RET( err
== noErr
, wxT("Mac OS error when trying to create new window") );
709 wxAssociateWinWithMacWindow( m_macWindow
, this ) ;
710 UMASetWTitle( (WindowRef
)m_macWindow
, title
) ;
711 ::CreateRootControl( (WindowRef
)m_macWindow
, (ControlHandle
*)&m_macRootControl
) ;
713 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow
)) ) ;
714 InstallWindowEventHandler(MAC_WXHWND(m_macWindow
), GetwxMacWindowEventHandlerUPP(),
715 GetEventTypeCount(eventList
), eventList
, this, (EventHandlerRef
*)&m_macEventHandler
);
721 if ( HasFlag(wxFRAME_SHAPED
) )
723 // default shape matches the window size
724 wxRegion
rgn(0, 0, m_width
, m_height
);
730 void wxTopLevelWindowMac::MacGetPortParams(WXPOINTPTR localOrigin
, WXRECTPTR clipRect
, WXHWND
*window
, wxWindowMac
** rootwin
)
732 ((Point
*)localOrigin
)->h
= 0;
733 ((Point
*)localOrigin
)->v
= 0;
734 ((Rect
*)clipRect
)->left
= 0;
735 ((Rect
*)clipRect
)->top
= 0;
736 ((Rect
*)clipRect
)->right
= m_width
;
737 ((Rect
*)clipRect
)->bottom
= m_height
;
738 *window
= m_macWindow
;
742 void wxTopLevelWindowMac::ClearBackground()
744 wxWindow::ClearBackground() ;
747 WXWidget
wxTopLevelWindowMac::MacGetContainerForEmbedding()
749 return m_macRootControl
;
753 void wxTopLevelWindowMac::MacUpdate( long timestamp
)
755 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( (WindowRef
) m_macWindow
) ) ;
757 RgnHandle visRgn
= NewRgn() ;
758 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), visRgn
);
759 BeginUpdate( (WindowRef
)m_macWindow
) ;
761 RgnHandle updateRgn
= NewRgn();
762 RgnHandle diffRgn
= NewRgn() ;
764 if ( updateRgn
&& diffRgn
)
767 // macos internal control redraws clean up areas we'd like to redraw ourselves
768 // therefore we pick the boundary rect and make sure we can redraw it
769 // this has to be intersected by the visRgn in order to avoid drawing over its own
771 RgnHandle trueUpdateRgn
= NewRgn() ;
772 Rect trueUpdateRgnBoundary
;
773 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), trueUpdateRgn
);
774 GetRegionBounds( trueUpdateRgn
, &trueUpdateRgnBoundary
) ;
775 RectRgn( updateRgn
, &trueUpdateRgnBoundary
) ;
776 SectRgn( updateRgn
, visRgn
, updateRgn
) ;
778 DisposeRgn( trueUpdateRgn
) ;
779 SetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), updateRgn
) ;
781 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), updateRgn
);
783 DiffRgn( updateRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
, diffRgn
) ;
784 if ( !EmptyRgn( updateRgn
) )
786 MacRedraw( updateRgn
, timestamp
, m_macNeedsErasing
|| !EmptyRgn( diffRgn
) ) ;
790 DisposeRgn( updateRgn
);
792 DisposeRgn( diffRgn
);
794 DisposeRgn( visRgn
) ;
796 EndUpdate( (WindowRef
)m_macWindow
) ;
797 SetEmptyRgn( (RgnHandle
) m_macNoEraseUpdateRgn
) ;
798 m_macNeedsErasing
= false ;
802 // Raise the window to the top of the Z order
803 void wxTopLevelWindowMac::Raise()
805 ::SelectWindow( (WindowRef
)m_macWindow
) ;
808 // Lower the window to the bottom of the Z order
809 void wxTopLevelWindowMac::Lower()
811 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
814 void wxTopLevelWindowMac::MacFireMouseEvent(
815 wxUint16 kind
, wxInt32 x
, wxInt32 y
,wxUint32 modifiers
, long timestamp
)
817 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
818 bool isDown
= !(modifiers
& btnState
) ; // 1 is for up
819 bool controlDown
= modifiers
& controlKey
; // for simulating right mouse
821 event
.m_leftDown
= isDown
&& !controlDown
;
823 event
.m_middleDown
= FALSE
;
824 event
.m_rightDown
= isDown
&& controlDown
;
826 if ( kind
== mouseDown
)
829 event
.SetEventType(wxEVT_RIGHT_DOWN
) ;
831 event
.SetEventType(wxEVT_LEFT_DOWN
) ;
833 else if ( kind
== mouseUp
)
836 event
.SetEventType(wxEVT_RIGHT_UP
) ;
838 event
.SetEventType(wxEVT_LEFT_UP
) ;
842 event
.SetEventType(wxEVT_MOTION
) ;
845 event
.m_shiftDown
= modifiers
& shiftKey
;
846 event
.m_controlDown
= modifiers
& controlKey
;
847 event
.m_altDown
= modifiers
& optionKey
;
848 event
.m_metaDown
= modifiers
& cmdKey
;
856 ::SetPort( UMAGetWindowPort( (WindowRef
)m_macWindow
) ) ;
857 ::GlobalToLocal( &localwhere
) ;
860 if ( kind
== mouseDown
)
862 if ( timestamp
- gs_lastWhen
<= (long) GetDblTime() )
864 if ( abs( localwhere
.h
- gs_lastWhere
.h
) < 3 && abs( localwhere
.v
- gs_lastWhere
.v
) < 3 )
866 // This is not right if the second mouse down
867 // event occured in a differen window. We
868 // correct this in MacDispatchMouseEvent.
870 event
.SetEventType(wxEVT_RIGHT_DCLICK
) ;
872 event
.SetEventType(wxEVT_LEFT_DCLICK
) ;
878 gs_lastWhen
= timestamp
;
880 gs_lastWhere
= localwhere
;
883 event
.m_x
= localwhere
.h
;
884 event
.m_y
= localwhere
.v
;
888 event
.m_timeStamp
= timestamp
;
889 event
.SetEventObject(this);
890 if ( wxTheApp
->s_captureWindow
)
894 wxTheApp
->s_captureWindow
->ScreenToClient( &x
, &y
) ;
897 event
.SetEventObject( wxTheApp
->s_captureWindow
) ;
898 wxTheApp
->s_captureWindow
->GetEventHandler()->ProcessEvent( event
) ;
900 if ( kind
== mouseUp
)
902 wxTheApp
->s_captureWindow
= NULL
;
905 m_cursor
.MacInstall() ;
911 MacDispatchMouseEvent( event
) ;
917 void wxTopLevelWindowMac::MacMouseDown( WXEVENTREF ev
, short part
)
919 MacFireMouseEvent( mouseDown
, ((EventRecord
*)ev
)->where
.h
, ((EventRecord
*)ev
)->where
.v
,
920 ((EventRecord
*)ev
)->modifiers
, ((EventRecord
*)ev
)->when
) ;
923 void wxTopLevelWindowMac::MacMouseUp( WXEVENTREF ev
, short part
)
929 MacFireMouseEvent( mouseUp
, ((EventRecord
*)ev
)->where
.h
, ((EventRecord
*)ev
)->where
.v
,
930 ((EventRecord
*)ev
)->modifiers
, ((EventRecord
*)ev
)->when
) ;
936 void wxTopLevelWindowMac::MacMouseMoved( WXEVENTREF ev
, short part
)
942 MacFireMouseEvent( nullEvent
/*moved*/ , ((EventRecord
*)ev
)->where
.h
, ((EventRecord
*)ev
)->where
.v
,
943 ((EventRecord
*)ev
)->modifiers
, ((EventRecord
*)ev
)->when
) ;
951 void wxTopLevelWindowMac::MacDelayedDeactivation(long timestamp
)
953 if(s_macDeactivateWindow
)
955 wxLogDebug(wxT("Doing delayed deactivation of %p"),s_macDeactivateWindow
);
956 s_macDeactivateWindow
->MacActivate(timestamp
, false);
960 void wxTopLevelWindowMac::MacActivate( long timestamp
, bool inIsActivating
)
962 // wxLogDebug(wxT("TopLevel=%p::MacActivate"),this);
964 if(s_macDeactivateWindow
==this)
965 s_macDeactivateWindow
=NULL
;
966 MacDelayedDeactivation(timestamp
);
967 wxActivateEvent
event(wxEVT_ACTIVATE
, inIsActivating
, m_windowId
);
968 event
.m_timeStamp
= timestamp
;
969 event
.SetEventObject(this);
971 GetEventHandler()->ProcessEvent(event
);
973 UMAHighlightAndActivateWindow( (WindowRef
)m_macWindow
, inIsActivating
) ;
975 // Early versions of MacOS X don't refresh backgrounds properly,
976 // so refresh the whole window on activation and deactivation.
977 long osVersion
= UMAGetSystemVersion();
978 if (osVersion
>= 0x1000 && osVersion
< 0x1020 )
984 // for the moment we have to resolve some redrawing issues like this
985 // the OS is stealing some redrawing areas as soon as it draws a control
992 void wxTopLevelWindowMac::MacKeyDown( WXEVENTREF ev
)
998 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
1000 wxWindow::SetTitle( title
) ;
1001 UMASetWTitle( (WindowRef
)m_macWindow
, title
) ;
1004 bool wxTopLevelWindowMac::Show(bool show
)
1006 if ( !wxWindow::Show(show
) )
1011 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowShowTransitionAction
,nil
);
1012 ::SelectWindow( (WindowRef
)m_macWindow
) ;
1013 // no need to generate events here, they will get them triggered by macos
1014 // actually they should be , but apparently they are not
1015 wxSize
size(m_width
, m_height
);
1016 wxSizeEvent
event(size
, m_windowId
);
1017 event
.SetEventObject(this);
1018 GetEventHandler()->ProcessEvent(event
);
1022 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowHideTransitionAction
,nil
);
1036 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
1038 int former_x
= m_x
;
1039 int former_y
= m_y
;
1040 int former_w
= m_width
;
1041 int former_h
= m_height
;
1043 int actualWidth
= width
;
1044 int actualHeight
= height
;
1048 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
1049 actualWidth
= m_minWidth
;
1050 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
1051 actualHeight
= m_minHeight
;
1052 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
1053 actualWidth
= m_maxWidth
;
1054 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
1055 actualHeight
= m_maxHeight
;
1057 bool doMove
= false ;
1058 bool doResize
= false ;
1060 if ( actualX
!= former_x
|| actualY
!= former_y
)
1064 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
1069 if ( doMove
|| doResize
)
1075 ::MoveWindow((WindowRef
)m_macWindow
, m_x
, m_y
, false); // don't make frontmost
1077 m_width
= actualWidth
;
1078 m_height
= actualHeight
;
1081 ::SizeWindow((WindowRef
)m_macWindow
, m_width
, m_height
, true);
1083 // the OS takes care of invalidating and erasing the new area so we only have to
1084 // take care of refreshing for full repaints
1086 if ( doResize
&& !HasFlag(wxNO_FULL_REPAINT_ON_RESIZE
) )
1090 if ( IsKindOf( CLASSINFO( wxFrame
) ) )
1092 wxFrame
* frame
= (wxFrame
*) this ;
1093 frame
->PositionStatusBar();
1094 frame
->PositionToolBar();
1097 wxWindowMac::MacTopLevelWindowChangedPosition() ; // like this only children will be notified
1099 MacRepositionScrollBars() ;
1102 wxPoint
point(m_x
, m_y
);
1103 wxMoveEvent
event(point
, m_windowId
);
1104 event
.SetEventObject(this);
1105 GetEventHandler()->ProcessEvent(event
) ;
1109 MacRepositionScrollBars() ;
1110 wxSize
size(m_width
, m_height
);
1111 wxSizeEvent
event(size
, m_windowId
);
1112 event
.SetEventObject(this);
1113 GetEventHandler()->ProcessEvent(event
);
1120 * Invalidation Mechanism
1122 * The update mechanism reflects exactely the windows mechanism
1123 * the rect gets added to the window invalidate region, if the eraseBackground flag
1124 * has been true for any part of the update rgn the background is erased in the entire region
1125 * not just in the specified rect.
1127 * In order to achive this, we also have an internal m_macNoEraseUpdateRgn, all rects that have
1128 * the eraseBackground flag set to false are also added to this rgn. upon receiving an update event
1129 * the update rgn is compared to the m_macNoEraseUpdateRgn and in case they differ, every window
1130 * will get the eraseBackground event first
1133 void wxTopLevelWindowMac::MacInvalidate( const WXRECTPTR rect
, bool eraseBackground
)
1135 GrafPtr formerPort
;
1136 GetPort( &formerPort
) ;
1137 SetPortWindowPort( (WindowRef
)m_macWindow
) ;
1139 m_macNeedsErasing
|= eraseBackground
;
1141 // if we already know that we will have to erase, there's no need to track the rest
1142 if ( !m_macNeedsErasing
)
1144 // we end only here if eraseBackground is false
1145 // if we already have a difference between m_macNoEraseUpdateRgn and UpdateRgn
1146 // we will have to erase anyway
1148 RgnHandle updateRgn
= NewRgn();
1149 RgnHandle diffRgn
= NewRgn() ;
1150 if ( updateRgn
&& diffRgn
)
1152 GetWindowUpdateRgn( (WindowRef
)m_macWindow
, updateRgn
);
1154 LocalToGlobal( &pt
) ;
1155 OffsetRgn( updateRgn
, -pt
.h
, -pt
.v
) ;
1156 DiffRgn( updateRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
, diffRgn
) ;
1157 if ( !EmptyRgn( diffRgn
) )
1159 m_macNeedsErasing
= true ;
1163 DisposeRgn( updateRgn
);
1165 DisposeRgn( diffRgn
);
1167 if ( !m_macNeedsErasing
)
1169 RgnHandle rectRgn
= NewRgn() ;
1170 SetRectRgn( rectRgn
, ((Rect
*)rect
)->left
, ((Rect
*)rect
)->top
, ((Rect
*)rect
)->right
, ((Rect
*)rect
)->bottom
) ;
1171 UnionRgn( (RgnHandle
) m_macNoEraseUpdateRgn
, rectRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
) ;
1172 DisposeRgn( rectRgn
) ;
1175 InvalWindowRect( (WindowRef
)m_macWindow
, (Rect
*)rect
) ;
1176 // turn this on to debug the refreshing cycle
1177 #if wxMAC_DEBUG_REDRAW
1180 SetPort( formerPort
) ;
1184 bool wxTopLevelWindowMac::SetShape(const wxRegion
& region
)
1186 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), FALSE
,
1187 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1190 // The empty region signifies that the shape should be removed from the
1192 if ( region
.IsEmpty() )
1194 wxSize sz
= GetClientSize();
1195 wxRegion
rgn(0, 0, sz
.x
, sz
.y
);
1196 return SetShape(rgn
);
1199 // Make a copy of the region
1200 RgnHandle shapeRegion
= NewRgn();
1201 CopyRgn( (RgnHandle
)region
.GetWXHRGN(), shapeRegion
);
1203 // Dispose of any shape region we may already have
1204 RgnHandle oldRgn
= (RgnHandle
)GetWRefCon( (WindowRef
)MacGetWindowRef() );
1208 // Save the region so we can use it later
1209 SetWRefCon((WindowRef
)MacGetWindowRef(), (SInt32
)shapeRegion
);
1211 // Tell the window manager that the window has changed shape
1212 ReshapeCustomWindow((WindowRef
)MacGetWindowRef());
1219 // ---------------------------------------------------------------------------
1220 // Support functions for shaped windows, based on Apple's CustomWindow sample at
1221 // http://developer.apple.com/samplecode/Sample_Code/Human_Interface_Toolbox/Mac_OS_High_Level_Toolbox/CustomWindow.htm
1222 // ---------------------------------------------------------------------------
1226 static void wxShapedMacWindowGetPos(WindowRef window
, Rect
* inRect
)
1228 GetWindowPortBounds(window
, inRect
);
1229 Point pt
= {inRect
->left
, inRect
->top
};
1230 SetPort((GrafPtr
) GetWindowPort(window
));
1233 inRect
->left
= pt
.h
;
1234 inRect
->bottom
+= pt
.v
;
1235 inRect
->right
+= pt
.h
;
1239 static SInt32
wxShapedMacWindowGetFeatures(WindowRef window
, SInt32 param
)
1241 /*------------------------------------------------------
1242 Define which options your custom window supports.
1243 --------------------------------------------------------*/
1244 //just enable everything for our demo
1245 *(OptionBits
*)param
=//kWindowCanGrow|
1247 //kWindowCanCollapse|
1248 //kWindowCanGetWindowRegion|
1249 //kWindowHasTitleBar|
1250 //kWindowSupportsDragHilite|
1251 kWindowCanDrawInCurrentPort
|
1252 //kWindowCanMeasureTitle|
1253 kWindowWantsDisposeAtProcessDeath
|
1254 kWindowSupportsSetGrowImageRegion
|
1255 kWindowDefSupportsColorGrafPort
;
1259 // The content region is left as a rectangle matching the window size, this is
1260 // so the origin in the paint event, and etc. still matches what the
1261 // programmer expects.
1262 static void wxShapedMacWindowContentRegion(WindowRef window
, RgnHandle rgn
)
1265 wxTopLevelWindowMac
* win
= wxFindWinFromMacWindow(window
);
1268 wxRect r
= win
->GetRect();
1269 SetRectRgn(rgn
, r
.GetLeft(), r
.GetTop(), r
.GetRight(), r
.GetBottom());
1273 // The structure region is set to the shape given to the SetShape method.
1274 static void wxShapedMacWindowStructureRegion(WindowRef window
, RgnHandle rgn
)
1276 RgnHandle cachedRegion
= (RgnHandle
) GetWRefCon(window
);
1282 wxShapedMacWindowGetPos(window
, &windowRect
); //how big is the window
1283 CopyRgn(cachedRegion
, rgn
); //make a copy of our cached region
1284 OffsetRgn(rgn
, windowRect
.left
, windowRect
.top
); // position it over window
1285 //MapRgn(rgn, &mMaskSize, &windowRect); //scale it to our actual window size
1291 static SInt32
wxShapedMacWindowGetRegion(WindowRef window
, SInt32 param
)
1293 GetWindowRegionPtr rgnRec
=(GetWindowRegionPtr
)param
;
1295 switch(rgnRec
->regionCode
)
1297 case kWindowStructureRgn
:
1298 wxShapedMacWindowStructureRegion(window
, rgnRec
->winRgn
);
1300 case kWindowContentRgn
:
1301 wxShapedMacWindowContentRegion(window
, rgnRec
->winRgn
);
1304 SetEmptyRgn(rgnRec
->winRgn
);
1311 static SInt32
wxShapedMacWindowHitTest(WindowRef window
,SInt32 param
)
1313 /*------------------------------------------------------
1314 Determine the region of the window which was hit
1315 --------------------------------------------------------*/
1317 static RgnHandle tempRgn
=nil
;
1322 SetPt(&hitPoint
,LoWord(param
),HiWord(param
));//get the point clicked
1324 //Mac OS 8.5 or later
1325 wxShapedMacWindowStructureRegion(window
, tempRgn
);
1326 if (PtInRgn(hitPoint
, tempRgn
)) //in window content region?
1329 return wNoHit
;//no significant area was hit.
1333 static pascal long wxShapedMacWindowDef(short varCode
, WindowRef window
, SInt16 message
, SInt32 param
)
1337 case kWindowMsgHitTest
:
1338 return wxShapedMacWindowHitTest(window
,param
);
1340 case kWindowMsgGetFeatures
:
1341 return wxShapedMacWindowGetFeatures(window
,param
);
1343 // kWindowMsgGetRegion is sent during CreateCustomWindow and ReshapeCustomWindow
1344 case kWindowMsgGetRegion
:
1345 return wxShapedMacWindowGetRegion(window
,param
);
1352 // ---------------------------------------------------------------------------