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 license
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 #define wxMAC_DEBUG_REDRAW 0
47 #ifndef wxMAC_DEBUG_REDRAW
48 #define wxMAC_DEBUG_REDRAW 0
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 // list of all frames and modeless dialogs
56 wxWindowList wxModelessWindows
;
58 // double click testing
59 static Point gs_lastWhere
;
60 static long gs_lastWhen
= 0;
62 // ============================================================================
63 // wxTopLevelWindowMac implementation
64 // ============================================================================
66 // ---------------------------------------------------------------------------
68 // ---------------------------------------------------------------------------
72 extern long wxMacTranslateKey(unsigned char key
, unsigned char code
) ;
74 static const EventTypeSpec eventList
[] =
76 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
78 { kEventClassKeyboard
, kEventRawKeyDown
} ,
79 { kEventClassKeyboard
, kEventRawKeyRepeat
} ,
80 { kEventClassKeyboard
, kEventRawKeyUp
} ,
81 { kEventClassKeyboard
, kEventRawKeyModifiersChanged
} ,
83 { kEventClassWindow
, kEventWindowUpdate
} ,
84 { kEventClassWindow
, kEventWindowActivated
} ,
85 { kEventClassWindow
, kEventWindowDeactivated
} ,
86 { kEventClassWindow
, kEventWindowBoundsChanging
} ,
87 { kEventClassWindow
, kEventWindowBoundsChanged
} ,
88 { kEventClassWindow
, kEventWindowClose
} ,
90 { kEventClassMouse
, kEventMouseDown
} ,
91 { kEventClassMouse
, kEventMouseUp
} ,
92 { kEventClassMouse
, kEventMouseMoved
} ,
93 { kEventClassMouse
, kEventMouseDragged
} ,
97 static pascal OSStatus
TextInputEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
99 OSStatus result
= eventNotHandledErr
;
101 wxWindow
* focus
= wxWindow::FindFocus() ;
106 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
110 GetEventParameter( event
, kEventParamTextInputSendKeyboardEvent
,typeEventRef
,NULL
,sizeof(rawEvent
),NULL
,&rawEvent
) ;
112 GetEventParameter( rawEvent
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
113 GetEventParameter( rawEvent
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
114 GetEventParameter( rawEvent
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
115 GetEventParameter( rawEvent
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
116 sizeof( Point
), NULL
, &point
);
118 UInt32 message
= (keyCode
<< 8) + charCode
;
120 switch ( GetEventKind( event
) )
122 case kEventTextInputUnicodeForKeyEvent
:
123 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyDownEvent(
124 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
134 static pascal OSStatus
KeyboardEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
136 OSStatus result
= eventNotHandledErr
;
138 wxWindow
* focus
= wxWindow::FindFocus() ;
143 UInt32 when
= EventTimeToTicks( GetEventTime( event
) ) ;
145 GetEventParameter( event
, kEventParamKeyMacCharCodes
, typeChar
, NULL
,sizeof(char), NULL
,&charCode
);
146 GetEventParameter( event
, kEventParamKeyCode
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &keyCode
);
147 GetEventParameter(event
, kEventParamKeyModifiers
, typeUInt32
, NULL
, sizeof(UInt32
), NULL
, &modifiers
);
148 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
149 sizeof( Point
), NULL
, &point
);
151 UInt32 message
= (keyCode
<< 8) + charCode
;
152 switch( GetEventKind( event
) )
154 case kEventRawKeyRepeat
:
155 case kEventRawKeyDown
:
156 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyDownEvent(
157 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
162 case kEventRawKeyUp
:
163 if ( (focus
!= NULL
) && wxTheApp
->MacSendKeyUpEvent(
164 focus
, message
, modifiers
, when
, point
.h
, point
.v
) )
169 case kEventRawKeyModifiersChanged
:
171 wxKeyEvent
event(wxEVT_KEY_DOWN
);
173 event
.m_shiftDown
= modifiers
& shiftKey
;
174 event
.m_controlDown
= modifiers
& controlKey
;
175 event
.m_altDown
= modifiers
& optionKey
;
176 event
.m_metaDown
= modifiers
& cmdKey
;
180 event
.m_timeStamp
= when
;
181 wxWindow
* focus
= wxWindow::FindFocus() ;
182 event
.SetEventObject(focus
);
184 if ( (modifiers
^ wxTheApp
->s_lastModifiers
) & controlKey
)
186 event
.m_keyCode
= WXK_CONTROL
;
187 event
.SetEventType( ( modifiers
& controlKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
188 focus
->GetEventHandler()->ProcessEvent( event
) ;
190 if ( (modifiers
^ wxTheApp
->s_lastModifiers
) & shiftKey
)
192 event
.m_keyCode
= WXK_SHIFT
;
193 event
.SetEventType( ( modifiers
& shiftKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
194 focus
->GetEventHandler()->ProcessEvent( event
) ;
196 if ( (modifiers
^ wxTheApp
->s_lastModifiers
) & optionKey
)
198 event
.m_keyCode
= WXK_ALT
;
199 event
.SetEventType( ( modifiers
& optionKey
) ? wxEVT_KEY_DOWN
: wxEVT_KEY_UP
) ;
200 focus
->GetEventHandler()->ProcessEvent( event
) ;
202 wxTheApp
->s_lastModifiers
= modifiers
;
210 static pascal OSStatus
MouseEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
212 OSStatus result
= eventNotHandledErr
;
214 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
216 UInt32 modifiers
= 0;
217 EventMouseButton button
= 0 ;
220 GetEventParameter( event
, kEventParamMouseLocation
, typeQDPoint
, NULL
,
221 sizeof( Point
), NULL
, &point
);
222 GetEventParameter( event
, kEventParamKeyModifiers
, typeUInt32
, NULL
,
223 sizeof( UInt32
), NULL
, &modifiers
);
224 GetEventParameter( event
, kEventParamMouseButton
, typeMouseButton
, NULL
,
225 sizeof( EventMouseButton
), NULL
, &button
);
226 GetEventParameter( event
, kEventParamClickCount
, typeUInt32
, NULL
,
227 sizeof( UInt32
), NULL
, &click
);
229 if ( button
== 0 || GetEventKind( event
) == kEventMouseUp
)
230 modifiers
+= btnState
;
233 short windowPart
= ::FindWindow(point
, &window
);
235 if ( IsWindowActive(window
) && windowPart
== inContent
)
237 switch ( GetEventKind( event
) )
239 case kEventMouseDown
:
240 toplevelWindow
->MacFireMouseEvent( mouseDown
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
244 toplevelWindow
->MacFireMouseEvent( mouseUp
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
247 case kEventMouseMoved
:
248 toplevelWindow
->MacFireMouseEvent( nullEvent
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
251 case kEventMouseDragged
:
252 toplevelWindow
->MacFireMouseEvent( nullEvent
, point
.h
, point
.v
, modifiers
, EventTimeToTicks( GetEventTime( event
) ) ) ;
264 static pascal OSStatus
WindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
266 OSStatus result
= eventNotHandledErr
;
267 OSStatus err
= noErr
;
270 WindowRef windowRef
;
271 wxTopLevelWindowMac
* toplevelWindow
= (wxTopLevelWindowMac
*) data
;
273 GetEventParameter( event
, kEventParamDirectObject
, typeWindowRef
, NULL
,
274 sizeof( WindowRef
), NULL
, &windowRef
);
276 switch( GetEventKind( event
) )
278 case kEventWindowUpdate
:
279 if ( !wxPendingDelete
.Member(toplevelWindow
) )
280 toplevelWindow
->MacUpdate( EventTimeToTicks( GetEventTime( event
) ) ) ;
283 case kEventWindowActivated
:
284 toplevelWindow
->MacActivate( EventTimeToTicks( GetEventTime( event
) ) , true) ;
287 case kEventWindowDeactivated
:
288 toplevelWindow
->MacActivate( EventTimeToTicks( GetEventTime( event
) ) , false) ;
291 case kEventWindowClose
:
292 toplevelWindow
->Close() ;
295 case kEventWindowBoundsChanged
:
296 err
= GetEventParameter( event
, kEventParamAttributes
, typeUInt32
,
297 NULL
, sizeof( UInt32
), NULL
, &attributes
);
300 Rect newContentRect
;
302 GetEventParameter( event
, kEventParamCurrentBounds
, typeQDRectangle
, NULL
,
303 sizeof( newContentRect
), NULL
, &newContentRect
);
305 toplevelWindow
->SetSize( newContentRect
.left
, newContentRect
.top
,
306 newContentRect
.right
- newContentRect
.left
,
307 newContentRect
.bottom
- newContentRect
.top
, wxSIZE_USE_EXISTING
);
318 pascal OSStatus
wxMacWindowEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
320 OSStatus result
= eventNotHandledErr
;
322 switch ( GetEventClass( event
) )
324 case kEventClassKeyboard
:
325 result
= KeyboardEventHandler( handler
, event
, data
) ;
327 case kEventClassTextInput
:
328 result
= TextInputEventHandler( handler
, event
, data
) ;
330 case kEventClassWindow
:
331 result
= WindowEventHandler( handler
, event
, data
) ;
333 case kEventClassMouse
:
334 result
= MouseEventHandler( handler
, event
, data
) ;
342 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacWindowEventHandler
)
346 // ---------------------------------------------------------------------------
347 // wxWindowMac utility functions
348 // ---------------------------------------------------------------------------
350 // Find an item given the Macintosh Window Reference
352 wxList
*wxWinMacWindowList
= NULL
;
353 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WXWindow inWindowRef
)
355 wxNode
*node
= wxWinMacWindowList
->Find((long)inWindowRef
);
358 return (wxTopLevelWindowMac
*)node
->GetData();
361 void wxAssociateWinWithMacWindow(WXWindow inWindowRef
, wxTopLevelWindowMac
*win
)
363 // adding NULL WindowRef is (first) surely a result of an error and
364 // (secondly) breaks menu command processing
365 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, "attempt to add a NULL WindowRef to window list" );
367 if ( !wxWinMacWindowList
->Find((long)inWindowRef
) )
368 wxWinMacWindowList
->Append((long)inWindowRef
, win
);
371 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
373 wxWinMacWindowList
->DeleteObject(win
);
377 // ----------------------------------------------------------------------------
378 // wxTopLevelWindowMac creation
379 // ----------------------------------------------------------------------------
381 WXHWND
wxTopLevelWindowMac::s_macWindowInUpdate
= NULL
;
383 void wxTopLevelWindowMac::Init()
386 m_maximizeOnShow
= FALSE
;
387 m_macNoEraseUpdateRgn
= NewRgn() ;
388 m_macNeedsErasing
= false ;
391 m_macEventHandler
= NULL
;
395 class wxMacDeferredWindowDeleter
: public wxObject
398 wxMacDeferredWindowDeleter( WindowRef windowRef
)
400 m_macWindow
= windowRef
;
402 virtual ~wxMacDeferredWindowDeleter()
404 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
407 WindowRef m_macWindow
;
410 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
412 const wxString
& title
,
416 const wxString
& name
)
421 m_windowStyle
= style
;
425 m_windowId
= id
== -1 ? NewControlId() : id
;
427 wxTopLevelWindows
.Append(this);
430 parent
->AddChild(this);
435 wxTopLevelWindowMac::~wxTopLevelWindowMac()
439 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
440 wxPendingDelete
.Append( new wxMacDeferredWindowDeleter( (WindowRef
) m_macWindow
) ) ;
444 if ( m_macEventHandler
)
446 ::RemoveEventHandler((EventHandlerRef
) m_macEventHandler
);
447 m_macEventHandler
= NULL
;
451 wxRemoveMacWindowAssociation( this ) ;
453 if ( wxModelessWindows
.Find(this) )
454 wxModelessWindows
.DeleteObject(this);
456 DisposeRgn( (RgnHandle
) m_macNoEraseUpdateRgn
) ;
460 // ----------------------------------------------------------------------------
461 // wxTopLevelWindowMac maximize/minimize
462 // ----------------------------------------------------------------------------
464 void wxTopLevelWindowMac::Maximize(bool maximize
)
466 // not available on mac
469 bool wxTopLevelWindowMac::IsMaximized() const
474 void wxTopLevelWindowMac::Iconize(bool iconize
)
476 // not available on mac
479 bool wxTopLevelWindowMac::IsIconized() const
481 // mac dialogs cannot be iconized
485 void wxTopLevelWindowMac::Restore()
487 // not available on mac
490 // ----------------------------------------------------------------------------
491 // wxTopLevelWindowMac misc
492 // ----------------------------------------------------------------------------
494 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
497 wxTopLevelWindowBase::SetIcon(icon
);
500 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString
& title
,
504 const wxString
& name
)
507 m_windowStyle
= style
;
528 ::SetRect(&theBoundsRect
, m_x
, m_y
, m_x
+ m_width
, m_y
+ m_height
);
530 // translate the window attributes in the appropriate window class and attributes
532 WindowClass wclass
= 0;
533 WindowAttributes attr
= kWindowNoAttributes
;
535 if ( HasFlag( wxFRAME_TOOL_WINDOW
) )
538 HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
539 HasFlag( wxSYSTEM_MENU
) || HasFlag( wxCAPTION
) ||
540 HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
)
543 wclass
= kFloatingWindowClass
;
544 if ( HasFlag(wxTINY_CAPTION_VERT
) )
546 attr
|= kWindowSideTitlebarAttribute
;
552 wclass
= kPlainWindowClass
;
554 wclass
= kFloatingWindowClass
;
558 else if ( HasFlag( wxCAPTION
) )
560 wclass
= kDocumentWindowClass
;
564 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) ||
565 HasFlag( wxSYSTEM_MENU
) )
567 wclass
= kDocumentWindowClass
;
572 wclass
= kPlainWindowClass
;
574 wclass
= kModalWindowClass
;
579 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) )
581 attr
|= kWindowFullZoomAttribute
;
582 attr
|= kWindowCollapseBoxAttribute
;
584 if ( HasFlag( wxRESIZE_BORDER
) )
586 attr
|= kWindowResizableAttribute
;
588 if ( HasFlag( wxSYSTEM_MENU
) )
590 attr
|= kWindowCloseBoxAttribute
;
593 ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
594 wxAssociateWinWithMacWindow( m_macWindow
, this ) ;
596 if( wxApp::s_macDefaultEncodingIsPC
)
597 label
= wxMacMakeMacStringFromPC( title
) ;
600 UMASetWTitleC( (WindowRef
)m_macWindow
, label
) ;
601 ::CreateRootControl( (WindowRef
)m_macWindow
, (ControlHandle
*)&m_macRootControl
) ;
603 InstallStandardEventHandler( GetWindowEventTarget(MAC_WXHWND(m_macWindow
)) ) ;
604 InstallWindowEventHandler(MAC_WXHWND(m_macWindow
), GetwxMacWindowEventHandlerUPP(),
605 GetEventTypeCount(eventList
), eventList
, this, &((EventHandlerRef
)m_macEventHandler
));
610 void wxTopLevelWindowMac::MacGetPortParams(WXPOINTPTR localOrigin
, WXRECTPTR clipRect
, WXHWND
*window
, wxWindowMac
** rootwin
)
612 ((Point
*)localOrigin
)->h
= 0;
613 ((Point
*)localOrigin
)->v
= 0;
614 ((Rect
*)clipRect
)->left
= 0;
615 ((Rect
*)clipRect
)->top
= 0;
616 ((Rect
*)clipRect
)->right
= m_width
;
617 ((Rect
*)clipRect
)->bottom
= m_height
;
618 *window
= m_macWindow
;
622 void wxTopLevelWindowMac::Clear()
627 WXWidget
wxTopLevelWindowMac::MacGetContainerForEmbedding()
629 return m_macRootControl
;
633 void wxTopLevelWindowMac::MacUpdate( long timestamp
)
636 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( (WindowRef
) m_macWindow
) ) ;
638 BeginUpdate( (WindowRef
)m_macWindow
) ;
640 RgnHandle updateRgn
= NewRgn();
641 RgnHandle diffRgn
= NewRgn() ;
642 if ( updateRgn
&& diffRgn
)
644 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), updateRgn
);
645 DiffRgn( updateRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
, diffRgn
) ;
646 if ( !EmptyRgn( updateRgn
) )
648 MacRedraw( updateRgn
, timestamp
, m_macNeedsErasing
|| !EmptyRgn( diffRgn
) ) ;
652 DisposeRgn( updateRgn
);
654 DisposeRgn( diffRgn
);
655 EndUpdate( (WindowRef
)m_macWindow
) ;
656 SetEmptyRgn( (RgnHandle
) m_macNoEraseUpdateRgn
) ;
657 m_macNeedsErasing
= false ;
661 // Raise the window to the top of the Z order
662 void wxTopLevelWindowMac::Raise()
664 ::SelectWindow( (WindowRef
)m_macWindow
) ;
667 // Lower the window to the bottom of the Z order
668 void wxTopLevelWindowMac::Lower()
670 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
673 void wxTopLevelWindowMac::MacFireMouseEvent(
674 wxUint16 kind
, wxInt32 x
, wxInt32 y
,wxUint32 modifiers
, long timestamp
)
676 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
677 bool isDown
= !(modifiers
& btnState
) ; // 1 is for up
678 bool controlDown
= modifiers
& controlKey
; // for simulating right mouse
680 event
.m_leftDown
= isDown
&& !controlDown
;
682 event
.m_middleDown
= FALSE
;
683 event
.m_rightDown
= isDown
&& controlDown
;
685 if ( kind
== mouseDown
)
688 event
.SetEventType(wxEVT_RIGHT_DOWN
) ;
690 event
.SetEventType(wxEVT_LEFT_DOWN
) ;
692 else if ( kind
== mouseUp
)
695 event
.SetEventType(wxEVT_RIGHT_UP
) ;
697 event
.SetEventType(wxEVT_LEFT_UP
) ;
701 event
.SetEventType(wxEVT_MOTION
) ;
704 event
.m_shiftDown
= modifiers
& shiftKey
;
705 event
.m_controlDown
= modifiers
& controlKey
;
706 event
.m_altDown
= modifiers
& optionKey
;
707 event
.m_metaDown
= modifiers
& cmdKey
;
715 ::SetPort( UMAGetWindowPort( (WindowRef
)m_macWindow
) ) ;
716 ::GlobalToLocal( &localwhere
) ;
719 if ( kind
== mouseDown
)
721 if ( timestamp
- gs_lastWhen
<= GetDblTime() )
723 if ( abs( localwhere
.h
- gs_lastWhere
.h
) < 3 && abs( localwhere
.v
- gs_lastWhere
.v
) < 3 )
725 // This is not right if the second mouse down
726 // event occured in a differen window. We
727 // correct this in MacDispatchMouseEvent.
729 event
.SetEventType(wxEVT_RIGHT_DCLICK
) ;
731 event
.SetEventType(wxEVT_LEFT_DCLICK
) ;
737 gs_lastWhen
= timestamp
;
739 gs_lastWhere
= localwhere
;
742 event
.m_x
= localwhere
.h
;
743 event
.m_y
= localwhere
.v
;
747 event
.m_timeStamp
= timestamp
;
748 event
.SetEventObject(this);
749 if ( wxTheApp
->s_captureWindow
)
753 wxTheApp
->s_captureWindow
->ScreenToClient( &x
, &y
) ;
756 event
.SetEventObject( wxTheApp
->s_captureWindow
) ;
757 wxTheApp
->s_captureWindow
->GetEventHandler()->ProcessEvent( event
) ;
759 if ( kind
== mouseUp
)
761 wxTheApp
->s_captureWindow
= NULL
;
764 m_cursor
.MacInstall() ;
770 MacDispatchMouseEvent( event
) ;
775 void wxTopLevelWindowMac::MacMouseDown( WXEVENTREF ev
, short part
)
777 MacFireMouseEvent( mouseDown
, ((EventRecord
*)ev
)->where
.h
, ((EventRecord
*)ev
)->where
.v
,
778 ((EventRecord
*)ev
)->modifiers
, ((EventRecord
*)ev
)->when
) ;
781 void wxTopLevelWindowMac::MacMouseUp( WXEVENTREF ev
, short part
)
787 MacFireMouseEvent( mouseUp
, ((EventRecord
*)ev
)->where
.h
, ((EventRecord
*)ev
)->where
.v
,
788 ((EventRecord
*)ev
)->modifiers
, ((EventRecord
*)ev
)->when
) ;
794 void wxTopLevelWindowMac::MacMouseMoved( WXEVENTREF ev
, short part
)
800 MacFireMouseEvent( nullEvent
/*moved*/ , ((EventRecord
*)ev
)->where
.h
, ((EventRecord
*)ev
)->where
.v
,
801 ((EventRecord
*)ev
)->modifiers
, ((EventRecord
*)ev
)->when
) ;
809 void wxTopLevelWindowMac::MacActivate( long timestamp
, bool inIsActivating
)
811 wxActivateEvent
event(wxEVT_ACTIVATE
, inIsActivating
, m_windowId
);
812 event
.m_timeStamp
= timestamp
;
813 event
.SetEventObject(this);
815 GetEventHandler()->ProcessEvent(event
);
817 UMAHighlightAndActivateWindow( (WindowRef
)m_macWindow
, inIsActivating
) ;
819 // Early versions of MacOS X don't refresh backgrounds properly,
820 // so refresh the whole window on activation and deactivation.
821 long osVersion
= UMAGetSystemVersion();
822 if (osVersion
>= 0x1000 && osVersion
< 0x1020)
825 MacSuperEnabled( inIsActivating
) ;
830 void wxTopLevelWindowMac::MacKeyDown( WXEVENTREF ev
)
836 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
838 wxWindow::SetTitle( title
) ;
842 if( wxApp::s_macDefaultEncodingIsPC
)
843 label
= wxMacMakeMacStringFromPC( m_label
) ;
847 UMASetWTitleC( (WindowRef
)m_macWindow
, label
) ;
850 bool wxTopLevelWindowMac::Show(bool show
)
852 if ( !wxWindow::Show(show
) )
857 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowShowTransitionAction
,nil
);
858 ::SelectWindow( (WindowRef
)m_macWindow
) ;
859 // no need to generate events here, they will get them triggered by macos
860 // actually they should be , but apparently they are not
861 wxSize
size(m_width
, m_height
);
862 wxSizeEvent
event(size
, m_windowId
);
863 event
.SetEventObject(this);
864 GetEventHandler()->ProcessEvent(event
);
868 ::TransitionWindow((WindowRef
)m_macWindow
,kWindowZoomTransitionEffect
,kWindowHideTransitionAction
,nil
);
882 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
886 int former_w
= m_width
;
887 int former_h
= m_height
;
889 int actualWidth
= width
;
890 int actualHeight
= height
;
894 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
895 actualWidth
= m_minWidth
;
896 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
897 actualHeight
= m_minHeight
;
898 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
899 actualWidth
= m_maxWidth
;
900 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
901 actualHeight
= m_maxHeight
;
903 bool doMove
= false ;
904 bool doResize
= false ;
906 if ( actualX
!= former_x
|| actualY
!= former_y
)
910 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
915 if ( doMove
|| doResize
)
919 m_width
= actualWidth
;
920 m_height
= actualHeight
;
923 ::MoveWindow((WindowRef
)m_macWindow
, m_x
, m_y
, false); // don't make frontmost
926 ::SizeWindow((WindowRef
)m_macWindow
, m_width
, m_height
, true);
928 // the OS takes care of invalidating and erasing the new area so we only have to
929 // take care of refreshing for full repaints
931 if ( doResize
&& !HasFlag(wxNO_FULL_REPAINT_ON_RESIZE
) )
935 if ( IsKindOf( CLASSINFO( wxFrame
) ) )
937 wxFrame
* frame
= (wxFrame
*) this ;
938 frame
->PositionStatusBar();
939 frame
->PositionToolBar();
942 wxWindowMac::MacTopLevelWindowChangedPosition() ; // like this only children will be notified
944 MacRepositionScrollBars() ;
947 wxPoint
point(m_x
, m_y
);
948 wxMoveEvent
event(point
, m_windowId
);
949 event
.SetEventObject(this);
950 GetEventHandler()->ProcessEvent(event
) ;
954 MacRepositionScrollBars() ;
955 wxSize
size(m_width
, m_height
);
956 wxSizeEvent
event(size
, m_windowId
);
957 event
.SetEventObject(this);
958 GetEventHandler()->ProcessEvent(event
);
965 * Invalidation Mechanism
967 * The update mechanism reflects exactely the windows mechanism
968 * the rect gets added to the window invalidate region, if the eraseBackground flag
969 * has been true for any part of the update rgn the background is erased in the entire region
970 * not just in the specified rect.
972 * In order to achive this, we also have an internal m_macNoEraseUpdateRgn, all rects that have
973 * the eraseBackground flag set to false are also added to this rgn. upon receiving an update event
974 * the update rgn is compared to the m_macNoEraseUpdateRgn and in case they differ, every window
975 * will get the eraseBackground event first
978 void wxTopLevelWindowMac::MacInvalidate( const WXRECTPTR rect
, bool eraseBackground
)
981 GetPort( &formerPort
) ;
982 SetPortWindowPort( (WindowRef
)m_macWindow
) ;
984 m_macNeedsErasing
|= eraseBackground
;
986 // if we already know that we will have to erase, there's no need to track the rest
987 if ( !m_macNeedsErasing
)
989 // we end only here if eraseBackground is false
990 // if we already have a difference between m_macNoEraseUpdateRgn and UpdateRgn
991 // we will have to erase anyway
993 RgnHandle updateRgn
= NewRgn();
994 RgnHandle diffRgn
= NewRgn() ;
995 if ( updateRgn
&& diffRgn
)
997 GetWindowUpdateRgn( (WindowRef
)m_macWindow
, updateRgn
);
999 LocalToGlobal( &pt
) ;
1000 OffsetRgn( updateRgn
, -pt
.h
, -pt
.v
) ;
1001 DiffRgn( updateRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
, diffRgn
) ;
1002 if ( !EmptyRgn( diffRgn
) )
1004 m_macNeedsErasing
= true ;
1008 DisposeRgn( updateRgn
);
1010 DisposeRgn( diffRgn
);
1012 if ( !m_macNeedsErasing
)
1014 RgnHandle rectRgn
= NewRgn() ;
1015 SetRectRgn( rectRgn
, ((Rect
*)rect
)->left
, ((Rect
*)rect
)->top
, ((Rect
*)rect
)->right
, ((Rect
*)rect
)->bottom
) ;
1016 UnionRgn( (RgnHandle
) m_macNoEraseUpdateRgn
, rectRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
) ;
1017 DisposeRgn( rectRgn
) ;
1020 InvalWindowRect( (WindowRef
)m_macWindow
, (Rect
*)rect
) ;
1021 // turn this on to debug the refreshing cycle
1022 #if wxMAC_DEBUG_REDRAW
1025 SetPort( formerPort
) ;