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"
42 #include "wx/tooltip.h"
45 #define wxMAC_DEBUG_REDRAW 0
46 #ifndef wxMAC_DEBUG_REDRAW
47 #define wxMAC_DEBUG_REDRAW 0
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 // list of all frames and modeless dialogs
55 wxWindowList wxModelessWindows
;
57 // ============================================================================
58 // wxTopLevelWindowMac implementation
59 // ============================================================================
61 // ---------------------------------------------------------------------------
62 // wxWindowMac utility functions
63 // ---------------------------------------------------------------------------
65 // Find an item given the Macintosh Window Reference
67 wxList
*wxWinMacWindowList
= NULL
;
68 wxTopLevelWindowMac
*wxFindWinFromMacWindow(WXWindow inWindowRef
)
70 wxNode
*node
= wxWinMacWindowList
->Find((long)inWindowRef
);
73 return (wxTopLevelWindowMac
*)node
->Data();
76 void wxAssociateWinWithMacWindow(WXWindow inWindowRef
, wxTopLevelWindowMac
*win
)
78 // adding NULL WindowRef is (first) surely a result of an error and
79 // (secondly) breaks menu command processing
80 wxCHECK_RET( inWindowRef
!= (WindowRef
) NULL
, "attempt to add a NULL WindowRef to window list" );
82 if ( !wxWinMacWindowList
->Find((long)inWindowRef
) )
83 wxWinMacWindowList
->Append((long)inWindowRef
, win
);
86 void wxRemoveMacWindowAssociation(wxTopLevelWindowMac
*win
)
88 wxWinMacWindowList
->DeleteObject(win
);
92 // ----------------------------------------------------------------------------
93 // wxTopLevelWindowMac creation
94 // ----------------------------------------------------------------------------
96 WXHWND
wxTopLevelWindowMac::s_macWindowInUpdate
= NULL
;
98 void wxTopLevelWindowMac::Init()
101 m_maximizeOnShow
= FALSE
;
102 m_macNoEraseUpdateRgn
= NewRgn() ;
103 m_macNeedsErasing
= false ;
107 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
109 const wxString
& title
,
113 const wxString
& name
)
118 m_windowStyle
= style
;
122 m_windowId
= id
== -1 ? NewControlId() : id
;
124 wxTopLevelWindows
.Append(this);
127 parent
->AddChild(this);
132 wxTopLevelWindowMac::~wxTopLevelWindowMac()
136 wxToolTip::NotifyWindowDelete(m_macWindow
) ;
137 UMADisposeWindow( (WindowRef
) m_macWindow
) ;
140 wxRemoveMacWindowAssociation( this ) ;
142 wxTopLevelWindows
.DeleteObject(this);
144 if ( wxModelessWindows
.Find(this) )
145 wxModelessWindows
.DeleteObject(this);
147 // If this is the last top-level window, exit.
148 if ( wxTheApp
&& (wxTopLevelWindows
.Number() == 0) )
150 wxTheApp
->SetTopWindow(NULL
);
152 if ( wxTheApp
->GetExitOnFrameDelete() )
154 wxTheApp
->ExitMainLoop() ;
157 DisposeRgn( (RgnHandle
) m_macNoEraseUpdateRgn
) ;
161 // ----------------------------------------------------------------------------
162 // wxTopLevelWindowMac maximize/minimize
163 // ----------------------------------------------------------------------------
165 void wxTopLevelWindowMac::Maximize(bool maximize
)
167 // not available on mac
170 bool wxTopLevelWindowMac::IsMaximized() const
175 void wxTopLevelWindowMac::Iconize(bool iconize
)
177 // not available on mac
180 bool wxTopLevelWindowMac::IsIconized() const
182 // mac dialogs cannot be iconized
186 void wxTopLevelWindowMac::Restore()
188 // not available on mac
191 // ----------------------------------------------------------------------------
192 // wxTopLevelWindowMac misc
193 // ----------------------------------------------------------------------------
195 void wxTopLevelWindowMac::SetIcon(const wxIcon
& icon
)
198 wxTopLevelWindowBase::SetIcon(icon
);
201 void wxTopLevelWindowMac::MacCreateRealWindow( const wxString
& title
,
205 const wxString
& name
)
208 m_windowStyle
= style
;
229 ::SetRect(&theBoundsRect
, m_x
, m_y
, m_x
+ m_width
, m_y
+ m_height
);
231 // translate the window attributes in the appropriate window class and attributes
233 WindowClass wclass
= 0;
234 WindowAttributes attr
= kWindowNoAttributes
;
236 if ( HasFlag(wxTINY_CAPTION_HORIZ
) || HasFlag(wxTINY_CAPTION_VERT
) )
238 wclass
= kFloatingWindowClass
;
239 if ( HasFlag(wxTINY_CAPTION_VERT
) )
241 attr
|= kWindowSideTitlebarAttribute
;
244 else if ( HasFlag( wxCAPTION
) )
246 if ( HasFlag( wxDIALOG_MODAL
) )
248 wclass
= kMovableModalWindowClass
;
252 wclass
= kDocumentWindowClass
;
257 wclass
= kModalWindowClass
;
260 if ( HasFlag( wxMINIMIZE_BOX
) || HasFlag( wxMAXIMIZE_BOX
) )
262 attr
|= kWindowFullZoomAttribute
;
263 attr
|= kWindowCollapseBoxAttribute
;
265 if ( HasFlag( wxRESIZE_BORDER
) )
267 attr
|= kWindowResizableAttribute
;
269 if ( HasFlag( wxSYSTEM_MENU
) )
271 attr
|= kWindowCloseBoxAttribute
;
274 ::CreateNewWindow( wclass
, attr
, &theBoundsRect
, (WindowRef
*)&m_macWindow
) ;
275 wxAssociateWinWithMacWindow( m_macWindow
, this ) ;
277 if( wxApp::s_macDefaultEncodingIsPC
)
278 label
= wxMacMakeMacStringFromPC( title
) ;
281 UMASetWTitleC( (WindowRef
)m_macWindow
, label
) ;
282 ::CreateRootControl( (WindowRef
)m_macWindow
, (ControlHandle
*)&m_macRootControl
) ;
287 void wxTopLevelWindowMac::MacGetPortParams(WXPOINTPTR localOrigin
, WXRECTPTR clipRect
, WXHWND
*window
, wxWindowMac
** rootwin
)
289 ((Point
*)localOrigin
)->h
= 0;
290 ((Point
*)localOrigin
)->v
= 0;
291 ((Rect
*)clipRect
)->left
= 0;
292 ((Rect
*)clipRect
)->top
= 0;
293 ((Rect
*)clipRect
)->right
= m_width
;
294 ((Rect
*)clipRect
)->bottom
= m_height
;
295 *window
= m_macWindow
;
299 void wxTopLevelWindowMac::Clear()
304 WXWidget
wxTopLevelWindowMac::MacGetContainerForEmbedding()
306 return m_macRootControl
;
310 void wxTopLevelWindowMac::MacUpdate( long timestamp
)
313 wxMacPortStateHelper
help( (GrafPtr
) GetWindowPort( (WindowRef
) m_macWindow
) ) ;
315 BeginUpdate( (WindowRef
)m_macWindow
) ;
317 RgnHandle updateRgn
= NewRgn();
318 RgnHandle diffRgn
= NewRgn() ;
319 if ( updateRgn
&& diffRgn
)
321 GetPortVisibleRegion( GetWindowPort( (WindowRef
)m_macWindow
), updateRgn
);
322 DiffRgn( updateRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
, diffRgn
) ;
323 if ( !EmptyRgn( updateRgn
) )
325 MacRedraw( updateRgn
, timestamp
, m_macNeedsErasing
|| !EmptyRgn( diffRgn
) ) ;
329 DisposeRgn( updateRgn
);
331 DisposeRgn( diffRgn
);
332 EndUpdate( (WindowRef
)m_macWindow
) ;
333 SetEmptyRgn( (RgnHandle
) m_macNoEraseUpdateRgn
) ;
334 m_macNeedsErasing
= false ;
338 // Raise the window to the top of the Z order
339 void wxTopLevelWindowMac::Raise()
341 ::BringToFront( (WindowRef
)m_macWindow
) ;
344 // Lower the window to the bottom of the Z order
345 void wxTopLevelWindowMac::Lower()
347 ::SendBehind( (WindowRef
)m_macWindow
, NULL
) ;
352 extern int wxBusyCursorCount
;
354 void wxTopLevelWindowMac::MacFireMouseEvent( WXEVENTREF evr
)
356 EventRecord
*ev
= (EventRecord
*) evr
;
357 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
358 bool isDown
= !(ev
->modifiers
& btnState
) ; // 1 is for up
359 bool controlDown
= ev
->modifiers
& controlKey
; // for simulating right mouse
361 event
.m_leftDown
= isDown
&& !controlDown
;
363 event
.m_middleDown
= FALSE
;
364 event
.m_rightDown
= isDown
&& controlDown
;
366 if ( ev
->what
== mouseDown
)
369 event
.SetEventType(wxEVT_RIGHT_DOWN
) ;
371 event
.SetEventType(wxEVT_LEFT_DOWN
) ;
373 else if ( ev
->what
== mouseUp
)
376 event
.SetEventType(wxEVT_RIGHT_UP
) ;
378 event
.SetEventType(wxEVT_LEFT_UP
) ;
382 event
.SetEventType(wxEVT_MOTION
) ;
385 event
.m_shiftDown
= ev
->modifiers
& shiftKey
;
386 event
.m_controlDown
= ev
->modifiers
& controlKey
;
387 event
.m_altDown
= ev
->modifiers
& optionKey
;
388 event
.m_metaDown
= ev
->modifiers
& cmdKey
;
390 Point localwhere
= ev
->where
;
394 ::SetPort( UMAGetWindowPort( (WindowRef
)m_macWindow
) ) ;
395 ::GlobalToLocal( &localwhere
) ;
398 if ( ev
->what
== mouseDown
)
400 if ( ev
->when
- lastWhen
<= GetDblTime() )
402 if ( abs( localwhere
.h
- lastWhere
.h
) < 3 || abs( localwhere
.v
- lastWhere
.v
) < 3 )
405 event
.SetEventType(wxEVT_RIGHT_DCLICK
) ;
407 event
.SetEventType(wxEVT_LEFT_DCLICK
) ;
413 lastWhen
= ev
->when
;
415 lastWhere
= localwhere
;
418 event
.m_x
= localwhere
.h
;
419 event
.m_y
= localwhere
.v
;
423 event
.m_timeStamp
= ev
->when
;
424 event
.SetEventObject(this);
425 if ( wxTheApp
->s_captureWindow
)
429 wxTheApp
->s_captureWindow
->ScreenToClient( &x
, &y
) ;
432 wxTheApp
->s_captureWindow
->GetEventHandler()->ProcessEvent( event
) ;
434 if ( ev
->what
== mouseUp
)
436 wxTheApp
->s_captureWindow
= NULL
;
437 if ( wxBusyCursorCount
== 0 )
439 m_cursor
.MacInstall() ;
445 MacDispatchMouseEvent( event
) ;
449 void wxTopLevelWindowMac::MacMouseDown( WXEVENTREF ev
, short part
)
451 MacFireMouseEvent( ev
) ;
454 void wxTopLevelWindowMac::MacMouseUp( WXEVENTREF ev
, short part
)
460 MacFireMouseEvent( ev
) ;
466 void wxTopLevelWindowMac::MacMouseMoved( WXEVENTREF ev
, short part
)
472 MacFireMouseEvent( ev
) ;
477 void wxTopLevelWindowMac::MacActivate( WXEVENTREF ev
, bool inIsActivating
)
479 wxActivateEvent
event(wxEVT_ACTIVATE
, inIsActivating
, m_windowId
);
480 event
.m_timeStamp
= ((EventRecord
*)ev
)->when
;
481 event
.SetEventObject(this);
483 GetEventHandler()->ProcessEvent(event
);
485 UMAHighlightAndActivateWindow( (WindowRef
)m_macWindow
, inIsActivating
) ;
487 MacSuperEnabled( inIsActivating
) ;
490 void wxTopLevelWindowMac::MacKeyDown( WXEVENTREF ev
)
494 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
496 wxWindow::SetTitle( title
) ;
500 if( wxApp::s_macDefaultEncodingIsPC
)
501 label
= wxMacMakeMacStringFromPC( m_label
) ;
505 UMASetWTitleC( (WindowRef
)m_macWindow
, label
) ;
508 bool wxTopLevelWindowMac::Show(bool show
)
510 if ( !wxWindow::Show(show
) )
515 ::ShowWindow( (WindowRef
)m_macWindow
) ;
516 ::SelectWindow( (WindowRef
)m_macWindow
) ;
517 // no need to generate events here, they will get them triggered by macos
518 // actually they should be , but apparently they are not
519 wxSize
size(m_width
, m_height
);
520 wxSizeEvent
event(size
, m_windowId
);
521 event
.SetEventObject(this);
522 GetEventHandler()->ProcessEvent(event
);
526 ::HideWindow( (WindowRef
)m_macWindow
) ;
540 void wxTopLevelWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
544 int former_w
= m_width
;
545 int former_h
= m_height
;
547 int actualWidth
= width
;
548 int actualHeight
= height
;
552 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
553 actualWidth
= m_minWidth
;
554 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
555 actualHeight
= m_minHeight
;
556 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
557 actualWidth
= m_maxWidth
;
558 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
559 actualHeight
= m_maxHeight
;
561 bool doMove
= false ;
562 bool doResize
= false ;
564 if ( actualX
!= former_x
|| actualY
!= former_y
)
568 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
573 if ( doMove
|| doResize
)
577 m_width
= actualWidth
;
578 m_height
= actualHeight
;
581 ::MoveWindow((WindowRef
)m_macWindow
, m_x
, m_y
, false); // don't make frontmost
584 ::SizeWindow((WindowRef
)m_macWindow
, m_width
, m_height
, true);
586 // the OS takes care of invalidating and erasing the new area
587 // we have erased the old one
589 if ( IsKindOf( CLASSINFO( wxFrame
) ) )
591 wxFrame
* frame
= (wxFrame
*) this ;
592 frame
->PositionStatusBar();
593 frame
->PositionToolBar();
596 wxWindowMac::MacTopLevelWindowChangedPosition() ; // like this only children will be notified
598 MacRepositionScrollBars() ;
601 wxPoint
point(m_x
, m_y
);
602 wxMoveEvent
event(point
, m_windowId
);
603 event
.SetEventObject(this);
604 GetEventHandler()->ProcessEvent(event
) ;
608 MacRepositionScrollBars() ;
609 wxSize
size(m_width
, m_height
);
610 wxSizeEvent
event(size
, m_windowId
);
611 event
.SetEventObject(this);
612 GetEventHandler()->ProcessEvent(event
);
619 * Invalidation Mechanism
621 * The update mechanism reflects exactely the windows mechanism
622 * the rect gets added to the window invalidate region, if the eraseBackground flag
623 * has been true for any part of the update rgn the background is erased in the entire region
624 * not just in the specified rect.
626 * In order to achive this, we also have an internal m_macNoEraseUpdateRgn, all rects that have
627 * the eraseBackground flag set to false are also added to this rgn. upon receiving an update event
628 * the update rgn is compared to the m_macNoEraseUpdateRgn and in case they differ, every window
629 * will get the eraseBackground event first
632 void wxTopLevelWindowMac::MacInvalidate( const WXRECTPTR rect
, bool eraseBackground
)
635 GetPort( &formerPort
) ;
636 SetPortWindowPort( (WindowRef
)m_macWindow
) ;
638 m_macNeedsErasing
|= eraseBackground
;
640 // if we already know that we will have to erase, there's no need to track the rest
641 if ( !m_macNeedsErasing
)
643 // we end only here if eraseBackground is false
644 // if we already have a difference between m_macNoEraseUpdateRgn and UpdateRgn
645 // we will have to erase anyway
647 RgnHandle updateRgn
= NewRgn();
648 RgnHandle diffRgn
= NewRgn() ;
649 if ( updateRgn
&& diffRgn
)
651 GetWindowUpdateRgn( (WindowRef
)m_macWindow
, updateRgn
);
653 LocalToGlobal( &pt
) ;
654 OffsetRgn( updateRgn
, -pt
.h
, -pt
.v
) ;
655 DiffRgn( updateRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
, diffRgn
) ;
656 if ( !EmptyRgn( diffRgn
) )
658 m_macNeedsErasing
= true ;
662 DisposeRgn( updateRgn
);
664 DisposeRgn( diffRgn
);
666 if ( !m_macNeedsErasing
)
668 RgnHandle rectRgn
= NewRgn() ;
669 SetRectRgn( rectRgn
, ((Rect
*)rect
)->left
, ((Rect
*)rect
)->top
, ((Rect
*)rect
)->right
, ((Rect
*)rect
)->bottom
) ;
670 UnionRgn( (RgnHandle
) m_macNoEraseUpdateRgn
, rectRgn
, (RgnHandle
) m_macNoEraseUpdateRgn
) ;
671 DisposeRgn( rectRgn
) ;
674 InvalWindowRect( (WindowRef
)m_macWindow
, (Rect
*)rect
) ;
675 // turn this on to debug the refreshing cycle
676 #if wxMAC_DEBUG_REDRAW
679 SetPort( formerPort
) ;