1 ///////////////////////////////////////////////////////////////////////////// 
   3 // Purpose:     wxWindowMac 
   4 // Author:      Stefan Csomor 
   8 // Copyright:   (c) Stefan Csomor 
   9 // Licence:     wxWindows licence 
  10 ///////////////////////////////////////////////////////////////////////////// 
  13 #pragma implementation "window.h" 
  18 #include "wx/window.h" 
  20 #include "wx/dcclient.h" 
  24 #include "wx/layout.h" 
  25 #include "wx/dialog.h" 
  26 #include "wx/listbox.h" 
  27 #include "wx/scrolbar.h" 
  28 #include "wx/statbox.h" 
  29 #include "wx/button.h" 
  30 #include "wx/settings.h" 
  31 #include "wx/msgdlg.h" 
  33 #include "wx/notebook.h" 
  34 #include "wx/tabctrl.h" 
  35 #include "wx/tooltip.h" 
  36 #include "wx/statusbr.h" 
  37 #include "wx/menuitem.h" 
  38 #include "wx/spinctrl.h" 
  40 #include "wx/geometry.h" 
  46 #define wxWINDOW_HSCROLL 5998 
  47 #define wxWINDOW_VSCROLL 5997 
  48 #define MAC_SCROLLBAR_SIZE 16 
  50 #include "wx/mac/uma.h" 
  53 #include <ToolUtils.h> 
  56 #if  wxUSE_DRAG_AND_DROP 
  62 extern wxList wxPendingDelete
; 
  63 wxWindowMac
* gFocusWindow 
= NULL 
; 
  65 #ifdef __WXUNIVERSAL__ 
  66     IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
) 
  68     IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
) 
  69 #endif // __WXUNIVERSAL__/__WXMAC__ 
  71 #if !USE_SHARED_LIBRARY 
  73 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
) 
  74   EVT_NC_PAINT(wxWindowMac::OnNcPaint
) 
  75   EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground
) 
  76   EVT_SYS_COLOUR_CHANGED(wxWindowMac::OnSysColourChanged
) 
  77   EVT_INIT_DIALOG(wxWindowMac::OnInitDialog
) 
  78   EVT_IDLE(wxWindowMac::OnIdle
) 
  79   EVT_SET_FOCUS(wxWindowMac::OnSetFocus
) 
  80   EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
) 
  85 #define wxMAC_DEBUG_REDRAW 0 
  86 #ifndef wxMAC_DEBUG_REDRAW 
  87 #define wxMAC_DEBUG_REDRAW 0 
  90 #define wxMAC_USE_THEME_BORDER 0 
  93 // =========================================================================== 
  95 // =========================================================================== 
  98 // ---------------------------------------------------------------------------- 
  99 // constructors and such 
 100 // ---------------------------------------------------------------------------- 
 102 void wxWindowMac::Init() 
 107     m_isBeingDeleted 
= FALSE
; 
 108     m_backgroundTransparent 
= FALSE
; 
 110     // as all windows are created with WS_VISIBLE style... 
 118     m_hScrollBar 
= NULL 
; 
 119     m_vScrollBar 
= NULL 
; 
 121     m_label 
= wxEmptyString
; 
 125 wxWindowMac::~wxWindowMac() 
 129     // deleting a window while it is shown invalidates the region 
 131         wxWindowMac
* iter 
= this ; 
 133             if ( iter
->IsTopLevel() ) 
 138             iter 
= iter
->GetParent() ; 
 143     m_isBeingDeleted 
= TRUE
; 
 145 #ifndef __WXUNIVERSAL__ 
 146     // VS: make sure there's no wxFrame with last focus set to us: 
 147     for ( wxWindow 
*win 
= GetParent(); win
; win 
= win
->GetParent() ) 
 149         wxFrame 
*frame 
= wxDynamicCast(win
, wxFrame
); 
 152             if ( frame
->GetLastFocus() == this ) 
 154                 frame
->SetLastFocus((wxWindow
*)NULL
); 
 159 #endif // __WXUNIVERSAL__ 
 161     if ( s_lastMouseWindow 
== this ) 
 163         s_lastMouseWindow 
= NULL 
; 
 166     wxFrame
* frame 
= wxDynamicCast( wxGetTopLevelParent( this ) , wxFrame 
) ; 
 169         if ( frame
->GetLastFocus() == this ) 
 170             frame
->SetLastFocus( NULL 
) ; 
 173     if ( gFocusWindow 
== this ) 
 175         gFocusWindow 
= NULL 
; 
 178         // CS: copied from MSW : 
 179     // VS: destroy children first and _then_ detach *this from its parent. 
 180     //     If we'd do it the other way around, children wouldn't be able 
 181     //     find their parent frame (see above). 
 185         m_parent
->RemoveChild(this); 
 187     // delete our drop target if we've got one 
 188 #if wxUSE_DRAG_AND_DROP 
 189     if ( m_dropTarget 
!= NULL 
) 
 194 #endif // wxUSE_DRAG_AND_DROP 
 198 bool wxWindowMac::Create(wxWindowMac 
*parent
, wxWindowID id
, 
 202            const wxString
& name
) 
 204     wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindowMac without parent") ); 
 207     // wxGTK doesn't allow to create controls with static box as the parent so 
 208     // this will result in a crash when the program is ported to wxGTK - warn 
 211     // the correct solution is to create the controls as siblings of the 
 213     wxASSERT_MSG( !wxDynamicCast(parent
, wxStaticBox
), 
 214                   _T("wxStaticBox can't be used as a window parent!") ); 
 215 #endif // wxUSE_STATBOX 
 217     if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) ) 
 220     parent
->AddChild(this); 
 224     AdjustForParentClientOrigin(m_x
, m_y
, wxSIZE_USE_EXISTING
); 
 225     m_width 
= WidthDefault( size
.x 
); 
 226     m_height 
= HeightDefault( size
.y 
) ; 
 227 #ifndef __WXUNIVERSAL__ 
 228     // Don't give scrollbars to wxControls unless they ask for them 
 229     if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
))) || 
 230          (IsKindOf(CLASSINFO(wxControl
)) && ( style 
& wxHSCROLL 
|| style 
& wxVSCROLL
))) 
 232         MacCreateScrollBars( style 
) ; 
 238 void wxWindowMac::SetFocus() 
 240     if ( gFocusWindow 
== this ) 
 243     if ( AcceptsFocus() ) 
 249                 if ( gFocusWindow
->m_caret 
) 
 251                       gFocusWindow
->m_caret
->OnKillFocus(); 
 253 #endif // wxUSE_CARET 
 254 #ifndef __WXUNIVERSAL__ 
 255             wxControl
* control 
= wxDynamicCast( gFocusWindow 
, wxControl 
) ; 
 256             if ( control 
&& control
->GetMacControl() ) 
 258                 UMASetKeyboardFocus( (WindowRef
) gFocusWindow
->MacGetRootWindow() , (ControlHandle
) control
->GetMacControl()  , kControlFocusNoPart 
) ; 
 259                 control
->MacRedrawControl() ; 
 262             // Without testing the window id, for some reason 
 263             // a kill focus event can still be sent to 
 264             // the control just being focussed. 
 265             int thisId 
= this->m_windowId
; 
 266             int gFocusWindowId 
= gFocusWindow
->m_windowId
; 
 267             if (gFocusWindowId 
!= thisId
) 
 269                 wxFocusEvent 
event(wxEVT_KILL_FOCUS
, gFocusWindow
->m_windowId
); 
 270                 event
.SetEventObject(gFocusWindow
); 
 271                 gFocusWindow
->GetEventHandler()->ProcessEvent(event
) ; 
 274         gFocusWindow 
= this ; 
 280                 m_caret
->OnSetFocus(); 
 282             #endif // wxUSE_CARET 
 283             // panel wants to track the window which was the last to have focus in it 
 284             wxChildFocusEvent 
eventFocus(this); 
 285             GetEventHandler()->ProcessEvent(eventFocus
); 
 287       #ifndef __WXUNIVERSAL__ 
 288             wxControl
* control 
= wxDynamicCast( gFocusWindow 
, wxControl 
) ; 
 289             if ( control 
&& control
->GetMacControl() ) 
 291                 UMASetKeyboardFocus( (WindowRef
) gFocusWindow
->MacGetRootWindow() , (ControlHandle
) control
->GetMacControl()  , kControlFocusNextPart 
) ; 
 294             wxFocusEvent 
event(wxEVT_SET_FOCUS
, m_windowId
); 
 295             event
.SetEventObject(this); 
 296             GetEventHandler()->ProcessEvent(event
) ; 
 301 bool wxWindowMac::Enable(bool enable
) 
 303     if ( !wxWindowBase::Enable(enable
) ) 
 306     MacSuperEnabled( enable 
) ; 
 311 void wxWindowMac::DoCaptureMouse() 
 313     wxTheApp
->s_captureWindow 
= this ; 
 316 wxWindow
* wxWindowBase::GetCapture() 
 318     return wxTheApp
->s_captureWindow 
; 
 321 void wxWindowMac::DoReleaseMouse() 
 323     wxTheApp
->s_captureWindow 
= NULL 
; 
 326 #if    wxUSE_DRAG_AND_DROP 
 328 void wxWindowMac::SetDropTarget(wxDropTarget 
*pDropTarget
) 
 330     if ( m_dropTarget 
!= 0 ) { 
 334     m_dropTarget 
= pDropTarget
; 
 335     if ( m_dropTarget 
!= 0 ) 
 343 // Old style file-manager drag&drop 
 344 void wxWindowMac::DragAcceptFiles(bool accept
) 
 350 void wxWindowMac::DoGetSize(int *x
, int *y
) const 
 353      if(y
)   *y 
= m_height 
; 
 356 void wxWindowMac::DoGetPosition(int *x
, int *y
) const 
 362     if ( !IsTopLevel() && GetParent()) 
 364         wxPoint 
pt(GetParent()->GetClientAreaOrigin()); 
 373 bool wxWindowMac::DoPopupMenu(wxMenu 
*menu
, int x
, int y
) 
 375     menu
->SetInvokingWindow(this); 
 377     ClientToScreen( &x 
, &y 
) ; 
 379     menu
->MacBeforeDisplay( true ) ; 
 380     long menuResult 
= ::PopUpMenuSelect((MenuHandle
) menu
->GetHMenu() ,y
,x
, 0) ; 
 381     if ( HiWord(menuResult
) != 0 ) 
 384         GetMenuItemCommandID( GetMenuHandle(HiWord(menuResult
)) , LoWord(menuResult
) , &id 
) ; 
 385         wxMenuItem
* item 
= NULL 
; 
 387         item 
= menu
->FindItem(id
, &realmenu
) ; 
 388         if (item
->IsCheckable()) 
 390             item
->Check( !item
->IsChecked() ) ; 
 392         menu
->SendEvent( id 
, item
->IsCheckable() ? item
->IsChecked() : -1 ) ; 
 394     menu
->MacAfterDisplay( true ) ; 
 396     menu
->SetInvokingWindow(NULL
); 
 402 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const 
 404     WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
 406     Point       localwhere 
= {0,0} ; 
 408     if(x
)   localwhere
.h 
= * x 
; 
 409     if(y
)   localwhere
.v 
= * y 
; 
 413     ::SetPort( UMAGetWindowPort( window 
) ) ; 
 414     ::GlobalToLocal( &localwhere 
) ; 
 417     if(x
)   *x 
= localwhere
.h 
; 
 418     if(y
)   *y 
= localwhere
.v 
; 
 420     MacRootWindowToWindow( x 
, y 
) ; 
 422         *x 
-= MacGetLeftBorderSize() ; 
 424         *y 
-= MacGetTopBorderSize() ; 
 427 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const 
 429     WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
 432         *x 
+= MacGetLeftBorderSize() ; 
 434         *y 
+= MacGetTopBorderSize() ; 
 436     MacWindowToRootWindow( x 
, y 
) ; 
 438     Point       localwhere 
= { 0,0 }; 
 439     if(x
)   localwhere
.h 
= * x 
; 
 440     if(y
)   localwhere
.v 
= * y 
; 
 444     ::SetPort( UMAGetWindowPort( window 
) ) ; 
 446     ::LocalToGlobal( &localwhere 
) ; 
 448     if(x
)   *x 
= localwhere
.h 
; 
 449     if(y
)   *y 
= localwhere
.v 
; 
 452 void wxWindowMac::MacClientToRootWindow( int *x 
, int *y 
) const 
 454     wxPoint origin 
= GetClientAreaOrigin() ; 
 455     if(x
)   *x 
+= origin
.x 
; 
 456     if(y
)   *y 
+= origin
.y 
; 
 458     MacWindowToRootWindow( x 
, y 
) ; 
 461 void wxWindowMac::MacRootWindowToClient( int *x 
, int *y 
) const 
 463     wxPoint origin 
= GetClientAreaOrigin() ; 
 464     MacRootWindowToWindow( x 
, y 
) ; 
 465     if(x
)   *x 
-= origin
.x 
; 
 466     if(y
)   *y 
-= origin
.y 
; 
 469 void wxWindowMac::MacWindowToRootWindow( int *x 
, int *y 
) const 
 475         GetParent()->MacWindowToRootWindow( x 
, y 
) ; 
 479 void wxWindowMac::MacRootWindowToWindow( int *x 
, int *y 
) const 
 485         GetParent()->MacRootWindowToWindow( x 
, y 
) ; 
 489 bool wxWindowMac::SetCursor(const wxCursor
& cursor
) 
 491     if (m_cursor 
== cursor
) 
 494     if (wxNullCursor 
== cursor
) 
 496         if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR 
) ) 
 501         if ( ! wxWindowBase::SetCursor( cursor 
) ) 
 505     wxASSERT_MSG( m_cursor
.Ok(), 
 506         wxT("cursor must be valid after call to the base version")); 
 509     wxWindowMac 
*mouseWin 
; 
 512     // Change the cursor NOW if we're within the correct window 
 514     if ( MacGetWindowFromPoint( wxPoint( pt
.h 
, pt
.v 
) , &mouseWin 
) ) 
 516         if ( mouseWin 
== this && !wxIsBusy() ) 
 518             m_cursor
.MacInstall() ; 
 526 // Get size *available for subwindows* i.e. excluding menu bar etc. 
 527 void wxWindowMac::DoGetClientSize(int *x
, int *y
) const 
 533     ww 
-= MacGetLeftBorderSize(  )  + MacGetRightBorderSize(  ) ; 
 534     hh 
-= MacGetTopBorderSize(  ) + MacGetBottomBorderSize( ); 
 536     if ( (m_vScrollBar 
&& m_vScrollBar
->IsShown()) || (m_hScrollBar  
&& m_hScrollBar
->IsShown()) ) 
 543         MacClientToRootWindow( &x1 
, &y1 
) ; 
 544         MacClientToRootWindow( &w 
, &h 
) ; 
 546         wxWindowMac 
*iter 
= (wxWindowMac
*)this ; 
 548         int totW 
= 10000 , totH 
= 10000; 
 551             if ( iter
->IsTopLevel() ) 
 553                 totW 
= iter
->m_width 
; 
 554                 totH 
= iter
->m_height 
; 
 558             iter 
= iter
->GetParent() ; 
 561         if (m_hScrollBar  
&& m_hScrollBar
->IsShown() ) 
 563             hh 
-= MAC_SCROLLBAR_SIZE
; 
 569         if (m_vScrollBar  
&& m_vScrollBar
->IsShown() ) 
 571             ww 
-= MAC_SCROLLBAR_SIZE
; 
 583 // ---------------------------------------------------------------------------- 
 585 // ---------------------------------------------------------------------------- 
 589 void wxWindowMac::DoSetToolTip(wxToolTip 
*tooltip
) 
 591     wxWindowBase::DoSetToolTip(tooltip
); 
 594         m_tooltip
->SetWindow(this); 
 597 #endif // wxUSE_TOOLTIPS 
 599 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
) 
 603     int former_w 
= m_width 
; 
 604     int former_h 
= m_height 
; 
 606     int actualWidth 
= width
; 
 607     int actualHeight 
= height
; 
 611     if ((m_minWidth 
!= -1) && (actualWidth 
< m_minWidth
)) 
 612         actualWidth 
= m_minWidth
; 
 613     if ((m_minHeight 
!= -1) && (actualHeight 
< m_minHeight
)) 
 614         actualHeight 
= m_minHeight
; 
 615     if ((m_maxWidth 
!= -1) && (actualWidth 
> m_maxWidth
)) 
 616         actualWidth 
= m_maxWidth
; 
 617     if ((m_maxHeight 
!= -1) && (actualHeight 
> m_maxHeight
)) 
 618         actualHeight 
= m_maxHeight
; 
 620     bool doMove 
= false ; 
 621     bool doResize 
= false ; 
 623     if ( actualX 
!= former_x 
|| actualY 
!= former_y 
) 
 627     if ( actualWidth 
!= former_w 
|| actualHeight 
!= former_h 
) 
 632     if ( doMove 
|| doResize 
) 
 634         // erase former position 
 636         bool partialRepaint 
= false ; 
 638         if ( HasFlag(wxNO_FULL_REPAINT_ON_RESIZE
) ) 
 640             wxPoint 
oldPos( m_x 
, m_y 
) ; 
 641             wxPoint 
newPos( actualX 
, actualY 
) ; 
 642             MacWindowToRootWindow( &oldPos
.x 
, &oldPos
.y 
) ; 
 643             MacWindowToRootWindow( &newPos
.x 
, &newPos
.y 
) ; 
 644             if ( oldPos 
== newPos 
) 
 646                 partialRepaint 
= true ; 
 647                 RgnHandle oldRgn
,newRgn
,diffRgn 
; 
 651                 SetRectRgn(oldRgn 
, oldPos
.x 
, oldPos
.y 
, oldPos
.x 
+ m_width 
, oldPos
.y 
+ m_height 
) ; 
 652                 SetRectRgn(newRgn 
, newPos
.x 
, newPos
.y 
, newPos
.x 
+ actualWidth 
, newPos
.y 
+ actualHeight 
) ; 
 653                 DiffRgn( newRgn 
, oldRgn 
, diffRgn 
) ; 
 654                 InvalWindowRgn( (WindowRef
) MacGetRootWindow() , diffRgn 
) ; 
 655                 DiffRgn( oldRgn 
, newRgn 
, diffRgn 
) ; 
 656                 InvalWindowRgn( (WindowRef
) MacGetRootWindow() , diffRgn 
) ; 
 659                 DisposeRgn(diffRgn
) ; 
 663         if ( !partialRepaint 
) 
 668         m_width 
= actualWidth 
; 
 669         m_height 
= actualHeight 
; 
 671         // update any low-level frame-relative positions 
 673         MacUpdateDimensions() ; 
 674         // erase new position 
 676         if ( !partialRepaint 
) 
 679             wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified 
 681         MacRepositionScrollBars() ; 
 684             wxPoint 
point(m_x
, m_y
); 
 685             wxMoveEvent 
event(point
, m_windowId
); 
 686             event
.SetEventObject(this); 
 687             GetEventHandler()->ProcessEvent(event
) ; 
 691             MacRepositionScrollBars() ; 
 692             wxSize 
size(m_width
, m_height
); 
 693             wxSizeEvent 
event(size
, m_windowId
); 
 694             event
.SetEventObject(this); 
 695             GetEventHandler()->ProcessEvent(event
); 
 701 // set the size of the window: if the dimensions are positive, just use them, 
 702 // but if any of them is equal to -1, it means that we must find the value for 
 703 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in 
 704 // which case -1 is a valid value for x and y) 
 706 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate 
 707 // the width/height to best suit our contents, otherwise we reuse the current 
 709 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
) 
 711     // get the current size and position... 
 712     int currentX
, currentY
; 
 713     GetPosition(¤tX
, ¤tY
); 
 715     int currentW
,currentH
; 
 716     GetSize(¤tW
, ¤tH
); 
 718     // ... and don't do anything (avoiding flicker) if it's already ok 
 719     if ( x 
== currentX 
&& y 
== currentY 
&& 
 720         width 
== currentW 
&& height 
== currentH 
) 
 722         MacRepositionScrollBars() ; // we might have a real position shift 
 726     if ( x 
== -1 && !(sizeFlags 
& wxSIZE_ALLOW_MINUS_ONE
) ) 
 728     if ( y 
== -1 && !(sizeFlags 
& wxSIZE_ALLOW_MINUS_ONE
) ) 
 731     AdjustForParentClientOrigin(x
, y
, sizeFlags
); 
 736         if ( sizeFlags 
& wxSIZE_AUTO_WIDTH 
) 
 738             size 
= DoGetBestSize(); 
 743             // just take the current one 
 750         if ( sizeFlags 
& wxSIZE_AUTO_HEIGHT 
) 
 754                 size 
= DoGetBestSize(); 
 756             //else: already called DoGetBestSize() above 
 762             // just take the current one 
 767     DoMoveWindow(x
, y
, width
, height
); 
 770 // For implementation purposes - sometimes decorations make the client area 
 773 wxPoint 
wxWindowMac::GetClientAreaOrigin() const 
 775     return wxPoint(MacGetLeftBorderSize(  ) , MacGetTopBorderSize(  ) ); 
 778 void wxWindowMac::SetTitle(const wxString
& title
) 
 783 wxString 
wxWindowMac::GetTitle() const 
 788 bool wxWindowMac::Show(bool show
) 
 790     if ( !wxWindowBase::Show(show
) ) 
 793     MacSuperShown( show 
) ; 
 799 void wxWindowMac::MacSuperShown( bool show 
) 
 801     wxWindowListNode 
*node 
= GetChildren().GetFirst(); 
 804         wxWindowMac 
*child 
= node
->GetData(); 
 805         if ( child
->m_isShown 
) 
 806             child
->MacSuperShown( show 
) ; 
 807         node 
= node
->GetNext(); 
 811 void wxWindowMac::MacSuperEnabled( bool enabled 
) 
 815       // to be absolutely correct we'd have to invalidate (with eraseBkground 
 816       // because unter MacOSX the frames are drawn with an addXXX mode) 
 819     wxWindowListNode 
*node 
= GetChildren().GetFirst(); 
 822         wxWindowMac 
*child 
= (wxWindowMac 
*)node
->GetData(); 
 823         if ( child
->m_isShown 
) 
 824             child
->MacSuperEnabled( enabled 
) ; 
 825         node 
= node
->GetNext(); 
 829 bool wxWindowMac::MacIsReallyShown() const 
 831     if ( m_isShown 
&& (m_parent 
!= NULL
) ) { 
 832         return m_parent
->MacIsReallyShown(); 
 836     bool status = m_isShown ; 
 837     wxWindowMac * win = this ; 
 838     while ( status && win->m_parent != NULL ) 
 840         win = win->m_parent ; 
 841         status = win->m_isShown ; 
 847 int wxWindowMac::GetCharHeight() const 
 849     wxClientDC 
dc ( (wxWindowMac
*)this ) ; 
 850     return dc
.GetCharHeight() ; 
 853 int wxWindowMac::GetCharWidth() const 
 855     wxClientDC 
dc ( (wxWindowMac
*)this ) ; 
 856     return dc
.GetCharWidth() ; 
 859 void wxWindowMac::GetTextExtent(const wxString
& string
, int *x
, int *y
, 
 860                            int *descent
, int *externalLeading
, const wxFont 
*theFont 
) const 
 862     const wxFont 
*fontToUse 
= theFont
; 
 866     wxClientDC 
dc( (wxWindowMac
*) this ) ; 
 868     dc
.GetTextExtent( string 
, &lx 
, &ly 
, &ld
, &le
, (wxFont 
*)fontToUse 
) ; 
 869     if ( externalLeading 
) 
 870         *externalLeading 
= le 
; 
 880  * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect 
 881  * we always intersect with the entire window, not only with the client area 
 884 void wxWindowMac::Refresh(bool eraseBack
, const wxRect 
*rect
) 
 886     if ( MacGetTopLevelWindow() == NULL 
) 
 889     wxPoint client 
= GetClientAreaOrigin(); 
 892     int x2 
= m_width 
- client
.x
; 
 893     int y2 
= m_height 
- client
.y
; 
 895     if (IsKindOf( CLASSINFO(wxButton
))) 
 897         // buttons have an "aura" 
 904     Rect clientrect 
= { y1
, x1
, y2
, x2 
}; 
 908         Rect r 
= { rect
->y 
, rect
->x 
, rect
->y 
+ rect
->height 
, rect
->x 
+ rect
->width 
} ; 
 909         SectRect( &clientrect 
, &r 
, &clientrect 
) ; 
 912     if ( !EmptyRect( &clientrect 
) ) 
 914       int top 
= 0 , left 
= 0 ; 
 916       MacClientToRootWindow( &left 
, &top 
) ; 
 917       OffsetRect( &clientrect 
, left 
, top 
) ; 
 919       MacGetTopLevelWindow()->MacInvalidate( &clientrect 
, eraseBack 
) ; 
 923 #if wxUSE_CARET && WXWIN_COMPATIBILITY 
 924 // --------------------------------------------------------------------------- 
 925 // Caret manipulation 
 926 // --------------------------------------------------------------------------- 
 928 void wxWindowMac::CreateCaret(int w
, int h
) 
 930     SetCaret(new wxCaret(this, w
, h
)); 
 933 void wxWindowMac::CreateCaret(const wxBitmap 
*WXUNUSED(bitmap
)) 
 935     wxFAIL_MSG("not implemented"); 
 938 void wxWindowMac::ShowCaret(bool show
) 
 940     wxCHECK_RET( m_caret
, "no caret to show" ); 
 945 void wxWindowMac::DestroyCaret() 
 950 void wxWindowMac::SetCaretPos(int x
, int y
) 
 952     wxCHECK_RET( m_caret
, "no caret to move" ); 
 957 void wxWindowMac::GetCaretPos(int *x
, int *y
) const 
 959     wxCHECK_RET( m_caret
, "no caret to get position of" ); 
 961     m_caret
->GetPosition(x
, y
); 
 963 #endif // wxUSE_CARET 
 965 wxWindowMac 
*wxGetActiveWindow() 
 967     // actually this is a windows-only concept 
 971 // Coordinates relative to the window 
 972 void wxWindowMac::WarpPointer (int x_pos
, int y_pos
) 
 974     // We really don't move the mouse programmatically under Mac. 
 977 const wxBrush
& wxWindowMac::MacGetBackgroundBrush() 
 979     if ( m_backgroundColour 
== wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) ) 
 981         m_macBackgroundBrush
.SetMacTheme( kThemeBrushDocumentWindowBackground 
) ; 
 983     else if (  m_backgroundColour 
== wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE 
) ) 
 985         // on mac we have the difficult situation, that 3dface gray can be different colours, depending whether 
 986         // it is on a notebook panel or not, in order to take care of that we walk up the hierarchy until we have 
 987         // either a non gray background color or a non control window 
 989         WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
 991         wxWindowMac
* parent 
= GetParent() ; 
 994             if ( parent
->MacGetRootWindow() != window 
) 
 996                 // we are in a different window on the mac system 
1002                 if ( parent
->m_backgroundColour 
!= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE 
) 
1003                     && parent
->m_backgroundColour 
!= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
) ) 
1005                     // if we have any other colours in the hierarchy 
1006                     m_macBackgroundBrush
.SetColour( parent
->m_backgroundColour 
) ; 
1009                 // if we have the normal colours in the hierarchy but another control etc. -> use it's background 
1010                 if ( parent
->IsKindOf( CLASSINFO( wxNotebook 
) ) || parent
->IsKindOf( CLASSINFO( wxTabCtrl 
) )) 
1012                     Rect extent 
= { 0 , 0 , 0 , 0 } ; 
1015                     wxSize size 
= parent
->GetSize() ; 
1016                     parent
->MacClientToRootWindow( &x 
, &y 
) ; 
1020                     extent
.right 
= x 
+ size
.x 
; 
1021                     extent
.bottom 
= y 
+ size
.y 
; 
1022                     m_macBackgroundBrush
.SetMacThemeBackground( kThemeBackgroundTabPane 
, (WXRECTPTR
) &extent 
) ; // todo eventually change for inactive 
1026             parent 
= parent
->GetParent() ; 
1030             m_macBackgroundBrush
.SetMacTheme( kThemeBrushDialogBackgroundActive 
) ; // todo eventually change for inactive 
1035         m_macBackgroundBrush
.SetColour( m_backgroundColour 
) ; 
1038     return m_macBackgroundBrush 
;     
1041 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
) 
1043     event
.GetDC()->Clear() ; 
1046 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event 
) 
1048     wxWindowDC 
dc(this) ; 
1049     wxMacPortSetter 
helper(&dc
) ; 
1051     MacPaintBorders( dc
.m_macLocalOrigin
.x 
, dc
.m_macLocalOrigin
.y
) ; 
1054 int wxWindowMac::GetScrollPos(int orient
) const 
1056     if ( orient 
== wxHORIZONTAL 
) 
1059            return m_hScrollBar
->GetThumbPosition() ; 
1064            return m_vScrollBar
->GetThumbPosition() ; 
1069 // This now returns the whole range, not just the number 
1070 // of positions that we can scroll. 
1071 int wxWindowMac::GetScrollRange(int orient
) const 
1073     if ( orient 
== wxHORIZONTAL 
) 
1076            return m_hScrollBar
->GetRange() ; 
1081            return m_vScrollBar
->GetRange() ; 
1086 int wxWindowMac::GetScrollThumb(int orient
) const 
1088     if ( orient 
== wxHORIZONTAL 
) 
1091            return m_hScrollBar
->GetThumbSize() ; 
1096            return m_vScrollBar
->GetThumbSize() ; 
1101 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool refresh
) 
1103     if ( orient 
== wxHORIZONTAL 
) 
1106            m_hScrollBar
->SetThumbPosition( pos 
) ; 
1111            m_vScrollBar
->SetThumbPosition( pos 
) ; 
1115 void wxWindowMac::MacPaintBorders( int left 
, int top 
) 
1120     RGBColor white 
= { 0xFFFF, 0xFFFF , 0xFFFF } ; 
1121     RGBColor black 
= { 0x0000, 0x0000 , 0x0000 } ; 
1122     RGBColor face 
= { 0xDDDD, 0xDDDD , 0xDDDD } ; 
1123     RGBColor shadow 
= { 0x4444, 0x4444 , 0x4444 } ; 
1126     if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) ) 
1128 #if wxMAC_USE_THEME_BORDER 
1129           Rect rect 
= { top 
, left 
, m_height 
+ top 
, m_width 
+ left 
} ; 
1132           GetThemeMetric( kThemeMetricListBoxFrameOutset , &border ) ; 
1133           InsetRect( &rect , border , border ); 
1134       DrawThemeListBoxFrame(&rect,IsEnabled() ? kThemeStateActive : kThemeStateInactive) ; 
1137         DrawThemePrimaryGroup(&rect  
,IsEnabled() ? kThemeStateActive 
: kThemeStateInactive
) ; 
1139         bool sunken 
= HasFlag( wxSUNKEN_BORDER 
) ; 
1140         RGBForeColor( &face 
); 
1141         MoveTo( left 
+ 0 , top 
+ m_height 
- 2 ); 
1142         LineTo( left 
+ 0 , top 
+ 0 ); 
1143         LineTo( left 
+ m_width 
- 2 , top 
+ 0 ); 
1145         MoveTo( left 
+ 2 , top 
+ m_height 
- 3 ); 
1146         LineTo( left 
+ m_width 
- 3 , top 
+ m_height 
- 3 ); 
1147         LineTo( left 
+ m_width 
- 3 , top 
+ 2 ); 
1149         RGBForeColor( sunken 
? &face 
: &black 
); 
1150         MoveTo( left 
+ 0 , top 
+ m_height 
- 1 ); 
1151         LineTo( left 
+ m_width 
- 1 , top 
+ m_height 
- 1 ); 
1152         LineTo( left 
+ m_width 
- 1 , top 
+ 0 ); 
1154         RGBForeColor( sunken 
? &shadow 
: &white 
); 
1155         MoveTo( left 
+ 1 , top 
+ m_height 
- 3 ); 
1156         LineTo( left 
+ 1, top 
+ 1 ); 
1157         LineTo( left 
+ m_width 
- 3 , top 
+ 1 ); 
1159         RGBForeColor( sunken 
? &white 
: &shadow 
); 
1160         MoveTo( left 
+ 1 , top 
+ m_height 
- 2 ); 
1161         LineTo( left 
+ m_width 
- 2 , top 
+ m_height 
- 2 ); 
1162         LineTo( left 
+ m_width 
- 2 , top 
+ 1 ); 
1164         RGBForeColor( sunken 
? &black 
: &face 
); 
1165         MoveTo( left 
+ 2 , top 
+ m_height 
- 4 ); 
1166         LineTo( left 
+ 2 , top 
+ 2 ); 
1167         LineTo( left 
+ m_width 
- 4 , top 
+ 2 ); 
1170     else if (HasFlag(wxSIMPLE_BORDER
)) 
1172             Rect rect 
= { top 
, left 
, m_height 
+ top 
, m_width 
+ left 
} ; 
1173         RGBForeColor( &black 
) ; 
1174         FrameRect( &rect 
) ; 
1178 void wxWindowMac::RemoveChild( wxWindowBase 
*child 
) 
1180     if ( child 
== m_hScrollBar 
) 
1181         m_hScrollBar 
= NULL 
; 
1182     if ( child 
== m_vScrollBar 
) 
1183         m_vScrollBar 
= NULL 
; 
1185     wxWindowBase::RemoveChild( child 
) ; 
1188 // New function that will replace some of the above. 
1189 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumbVisible
, 
1190     int range
, bool refresh
) 
1192     if ( orient 
== wxHORIZONTAL 
) 
1196             if ( range 
== 0 || thumbVisible 
>= range 
) 
1198                 if ( m_hScrollBar
->IsShown() ) 
1199                     m_hScrollBar
->Show(false) ; 
1203                 if ( !m_hScrollBar
->IsShown() ) 
1204                     m_hScrollBar
->Show(true) ; 
1205                 m_hScrollBar
->SetScrollbar( pos 
, thumbVisible 
, range 
, thumbVisible 
, refresh 
) ; 
1213             if ( range 
== 0 || thumbVisible 
>= range 
) 
1215                 if ( m_vScrollBar
->IsShown() ) 
1216                     m_vScrollBar
->Show(false) ; 
1220                 if ( !m_vScrollBar
->IsShown() ) 
1221                     m_vScrollBar
->Show(true) ; 
1222                 m_vScrollBar
->SetScrollbar( pos 
, thumbVisible 
, range 
, thumbVisible 
, refresh 
) ; 
1226     MacRepositionScrollBars() ; 
1229 // Does a physical scroll 
1230 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect 
*rect
) 
1232     wxClientDC 
dc(this) ; 
1233     wxMacPortSetter 
helper(&dc
) ; 
1236         int width 
, height 
; 
1237         GetClientSize( &width 
, &height 
) ; 
1239         Rect scrollrect 
= { dc
.YLOG2DEVMAC(0) , dc
.XLOG2DEVMAC(0) , dc
.YLOG2DEVMAC(height
) , dc
.XLOG2DEVMAC(width
) } ; 
1240         RgnHandle updateRgn 
= NewRgn() ; 
1241         ClipRect( &scrollrect 
) ; 
1244             Rect r 
= { dc
.YLOG2DEVMAC(rect
->y
) , dc
.XLOG2DEVMAC(rect
->x
) , dc
.YLOG2DEVMAC(rect
->y 
+ rect
->height
) , 
1245                 dc
.XLOG2DEVMAC(rect
->x 
+ rect
->width
) } ; 
1246             SectRect( &scrollrect 
, &r 
, &scrollrect 
) ; 
1248         ScrollRect( &scrollrect 
, dx 
, dy 
, updateRgn 
) ; 
1249         InvalWindowRgn( (WindowRef
) MacGetRootWindow() ,  updateRgn 
) ; 
1250         DisposeRgn( updateRgn 
) ; 
1253     for (wxWindowListNode 
*node 
= GetChildren().GetFirst(); node
; node 
= node
->GetNext()) 
1255         wxWindowMac 
*child 
= node
->GetData(); 
1256         if (child 
== m_vScrollBar
) continue; 
1257         if (child 
== m_hScrollBar
) continue; 
1258         if (child
->IsTopLevel()) continue; 
1261         child
->GetPosition( &x
, &y 
); 
1263         child
->GetSize( &w
, &h 
); 
1264         child
->SetSize( x
+dx
, y
+dy
, w
, h 
); 
1269 void wxWindowMac::MacOnScroll(wxScrollEvent 
&event 
) 
1271     if ( event
.m_eventObject 
== m_vScrollBar 
|| event
.m_eventObject 
== m_hScrollBar 
) 
1273         wxScrollWinEvent wevent
; 
1274         wevent
.SetPosition(event
.GetPosition()); 
1275         wevent
.SetOrientation(event
.GetOrientation()); 
1276         wevent
.m_eventObject 
= this; 
1278         if (event
.m_eventType 
== wxEVT_SCROLL_TOP
) { 
1279             wevent
.m_eventType 
= wxEVT_SCROLLWIN_TOP
; 
1281             if (event
.m_eventType 
== wxEVT_SCROLL_BOTTOM
) { 
1282                 wevent
.m_eventType 
= wxEVT_SCROLLWIN_BOTTOM
; 
1284                 if (event
.m_eventType 
== wxEVT_SCROLL_LINEUP
) { 
1285                     wevent
.m_eventType 
= wxEVT_SCROLLWIN_LINEUP
; 
1287                     if (event
.m_eventType 
== wxEVT_SCROLL_LINEDOWN
) { 
1288                         wevent
.m_eventType 
= wxEVT_SCROLLWIN_LINEDOWN
; 
1290                         if (event
.m_eventType 
== wxEVT_SCROLL_PAGEUP
) { 
1291                             wevent
.m_eventType 
= wxEVT_SCROLLWIN_PAGEUP
; 
1293                             if (event
.m_eventType 
== wxEVT_SCROLL_PAGEDOWN
) { 
1294                                 wevent
.m_eventType 
= wxEVT_SCROLLWIN_PAGEDOWN
; 
1296                                 if (event
.m_eventType 
== wxEVT_SCROLL_THUMBTRACK
) { 
1297                                     wevent
.m_eventType 
= wxEVT_SCROLLWIN_THUMBTRACK
; 
1300                                 GetEventHandler()->ProcessEvent(wevent
); 
1304 // Get the window with the focus 
1305 wxWindowMac 
*wxWindowBase::FindFocus() 
1307     return gFocusWindow 
; 
1310 #if WXWIN_COMPATIBILITY 
1311 // If nothing defined for this, try the parent. 
1312 // E.g. we may be a button loaded from a resource, with no callback function 
1314 void wxWindowMac::OnCommand(wxWindowMac
& win
, wxCommandEvent
& event
) 
1316     if ( GetEventHandler()->ProcessEvent(event
)  ) 
1319         m_parent
->GetEventHandler()->OnCommand(win
, event
); 
1321 #endif // WXWIN_COMPATIBILITY_2 
1323 #if WXWIN_COMPATIBILITY 
1324 wxObject
* wxWindowMac::GetChild(int number
) const 
1326     // Return a pointer to the Nth object in the Panel 
1327     wxNode 
*node 
= GetChildren().GetFirst(); 
1330         node 
= node
->GetNext(); 
1333         wxObject 
*obj 
= (wxObject 
*)node
->GetData(); 
1339 #endif // WXWIN_COMPATIBILITY 
1341 void wxWindowMac::OnSetFocus(wxFocusEvent
& event
) 
1343     // panel wants to track the window which was the last to have focus in it, 
1344     // so we want to set ourselves as the window which last had focus 
1346     // notice that it's also important to do it upwards the tree becaus 
1347     // otherwise when the top level panel gets focus, it won't set it back to 
1348     // us, but to some other sibling 
1350     // CS:don't know if this is still needed: 
1351     //wxChildFocusEvent eventFocus(this); 
1352     //(void)GetEventHandler()->ProcessEvent(eventFocus); 
1357 void wxWindowMac::Clear() 
1359     wxClientDC 
dc(this); 
1360     wxBrush 
brush(GetBackgroundColour(), wxSOLID
); 
1361     dc
.SetBackground(brush
); 
1365 // Setup background and foreground colours correctly 
1366 void wxWindowMac::SetupColours() 
1369         SetBackgroundColour(GetParent()->GetBackgroundColour()); 
1372 void wxWindowMac::OnIdle(wxIdleEvent
& event
) 
1374     // This calls the UI-update mechanism (querying windows for 
1375     // menu/toolbar/control state information) 
1379 // Raise the window to the top of the Z order 
1380 void wxWindowMac::Raise() 
1384 // Lower the window to the bottom of the Z order 
1385 void wxWindowMac::Lower() 
1389 void wxWindowMac::DoSetClientSize(int width
, int height
) 
1391     if ( width 
!= -1 || height 
!= -1 ) 
1394         if ( width 
!= -1 && m_vScrollBar 
) 
1395             width 
+= MAC_SCROLLBAR_SIZE 
; 
1396         if ( height 
!= -1 && m_vScrollBar 
) 
1397             height 
+= MAC_SCROLLBAR_SIZE 
; 
1399         width 
+= MacGetLeftBorderSize(  ) + MacGetRightBorderSize( ) ; 
1400         height 
+= MacGetTopBorderSize(  ) + MacGetBottomBorderSize( ) ; 
1402         DoSetSize( -1 , -1 , width 
, height 
) ; 
1407 wxWindowMac
* wxWindowMac::s_lastMouseWindow 
= NULL 
; 
1409 bool wxWindowMac::MacGetWindowFromPointSub( const wxPoint 
&point 
, wxWindowMac
** outWin 
) 
1413         if ((point
.x 
< 0) || (point
.y 
< 0) || 
1414             (point
.x 
> (m_width
)) || (point
.y 
> (m_height
))) 
1419         if ((point
.x 
< m_x
) || (point
.y 
< m_y
) || 
1420             (point
.x 
> (m_x 
+ m_width
)) || (point
.y 
> (m_y 
+ m_height
))) 
1424     WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
1426     wxPoint 
newPoint( point 
) ; 
1428     if ( !IsTopLevel() ) 
1434     for (wxWindowListNode 
*node 
= GetChildren().GetFirst(); node
; node 
= node
->GetNext()) 
1436         wxWindowMac 
*child 
= node
->GetData(); 
1437         // added the m_isShown test --dmazzoni 
1438         if ( child
->MacGetRootWindow() == window 
&& child
->m_isShown 
) 
1440             if (child
->MacGetWindowFromPointSub(newPoint 
, outWin 
)) 
1449 bool wxWindowMac::MacGetWindowFromPoint( const wxPoint 
&screenpoint 
, wxWindowMac
** outWin 
) 
1453     Point pt 
= { screenpoint
.y 
, screenpoint
.x 
} ; 
1454     if ( ::FindWindow( pt 
, &window 
) == 3 ) 
1457         wxWindowMac
* win 
= wxFindWinFromMacWindow( window 
) ; 
1460             // No, this yields the CLIENT are, we need the whole frame. RR. 
1461             // point = win->ScreenToClient( point ) ; 
1464             ::GetPort( &port 
) ; 
1465             ::SetPort( UMAGetWindowPort( window 
) ) ; 
1466             ::GlobalToLocal( &pt 
) ; 
1469             wxPoint 
point( pt
.h
, pt
.v 
) ; 
1471             return win
->MacGetWindowFromPointSub( point 
, outWin 
) ; 
1477 static wxWindow 
*gs_lastWhich 
= NULL
; 
1479 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
) 
1481     // first trigger a set cursor event 
1483     wxPoint clientorigin 
= GetClientAreaOrigin() ; 
1484     wxSize clientsize 
= GetClientSize() ; 
1486     if ( wxRect2DInt( clientorigin
.x 
, clientorigin
.y 
, clientsize
.x 
, clientsize
.y 
).Contains( wxPoint2DInt( pt 
) ) ) 
1488         wxSetCursorEvent 
event( pt
.x 
, pt
.y 
); 
1490         bool processedEvtSetCursor 
= GetEventHandler()->ProcessEvent(event
); 
1491         if ( processedEvtSetCursor 
&& event
.HasCursor() ) 
1493             cursor 
= event
.GetCursor() ; 
1498             // the test for processedEvtSetCursor is here to prevent using m_cursor 
1499             // if the user code caught EVT_SET_CURSOR() and returned nothing from 
1500             // it - this is a way to say that our cursor shouldn't be used for this 
1502             if ( !processedEvtSetCursor 
&& m_cursor
.Ok() ) 
1512                     cursor 
= *wxSTANDARD_CURSOR  
; 
1516             cursor
.MacInstall() ; 
1518     return cursor
.Ok() ; 
1521 bool wxWindowMac::MacDispatchMouseEvent(wxMouseEvent
& event
) 
1523     if ((event
.m_x 
< m_x
) || (event
.m_y 
< m_y
) || 
1524         (event
.m_x 
> (m_x 
+ m_width
)) || (event
.m_y 
> (m_y 
+ m_height
))) 
1528     if ( IsKindOf( CLASSINFO ( wxStaticBox 
) ) /* || IsKindOf( CLASSINFO( wxSpinCtrl ) ) */) 
1531     WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
1539     for (wxWindowListNode 
*node 
= GetChildren().GetFirst(); node
; node 
= node
->GetNext()) 
1541         wxWindowMac 
*child 
= node
->GetData(); 
1542         if ( child
->MacGetRootWindow() == window 
&& child
->IsShown() && child
->IsEnabled() ) 
1544             if (child
->MacDispatchMouseEvent(event
)) 
1549     wxWindow
* cursorTarget 
= this ; 
1550     wxPoint 
cursorPoint( x 
, y 
) ; 
1552     while( cursorTarget 
&& !cursorTarget
->MacSetupCursor( cursorPoint 
) ) 
1554         cursorTarget 
= cursorTarget
->GetParent() ; 
1556             cursorPoint 
+= cursorTarget
->GetPosition() ; 
1560     event
.SetEventObject( this ) ; 
1562     if ( event
.GetEventType() == wxEVT_LEFT_DOWN 
) 
1564         // set focus to this window 
1565         if (AcceptsFocus() && FindFocus()!=this) 
1570     if ( event
.GetEventType() == wxEVT_MOTION
 
1571         || event
.GetEventType() == wxEVT_ENTER_WINDOW
 
1572         || event
.GetEventType() == wxEVT_LEAVE_WINDOW 
) 
1573         wxToolTip::RelayEvent( this , event
); 
1574 #endif // wxUSE_TOOLTIPS 
1576     if (gs_lastWhich 
!= this) 
1578         gs_lastWhich 
= this; 
1580         // Double clicks must always occur on the same window 
1581         if (event
.GetEventType() == wxEVT_LEFT_DCLICK
) 
1582             event
.SetEventType( wxEVT_LEFT_DOWN 
); 
1583         if (event
.GetEventType() == wxEVT_RIGHT_DCLICK
) 
1584             event
.SetEventType( wxEVT_RIGHT_DOWN 
); 
1586         // Same for mouse up events 
1587         if (event
.GetEventType() == wxEVT_LEFT_UP
) 
1589         if (event
.GetEventType() == wxEVT_RIGHT_UP
) 
1593     GetEventHandler()->ProcessEvent( event 
) ; 
1598 wxString 
wxWindowMac::MacGetToolTipString( wxPoint 
&pt 
) 
1602         return m_tooltip
->GetTip() ; 
1604     return wxEmptyString 
; 
1607 void wxWindowMac::Update() 
1609     wxTopLevelWindowMac
* win 
= MacGetTopLevelWindow(  ) ; 
1612       win
->MacUpdate( 0 ) ; 
1613 #if TARGET_API_MAC_CARBON 
1614         if ( QDIsPortBuffered( GetWindowPort( (WindowRef
) win
->MacGetWindowRef() ) ) ) 
1616                 QDFlushPortBuffer( GetWindowPort( (WindowRef
) win
->MacGetWindowRef() ) , NULL 
) ; 
1622 wxTopLevelWindowMac
* wxWindowMac::MacGetTopLevelWindow() const 
1624     wxTopLevelWindowMac
* win 
= NULL 
; 
1625     WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
1628         win 
= wxFindWinFromMacWindow( window 
) ; 
1633 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool respectChildrenAndSiblings 
) 
1635     RgnHandle visRgn 
= NewRgn() ; 
1636     RgnHandle tempRgn 
= NewRgn() ; 
1637     RgnHandle tempStaticBoxRgn 
= NewRgn() ; 
1639     SetRectRgn( visRgn 
, 0 , 0 , m_width 
, m_height 
) ; 
1641     //TODO : as soon as the new scheme has proven to work correctly, move this to wxStaticBox 
1642     if ( IsKindOf( CLASSINFO( wxStaticBox 
) ) ) 
1644         int borderTop 
= 14 ; 
1645         int borderOther 
= 4 ; 
1647         SetRectRgn( tempStaticBoxRgn 
, borderOther 
, borderTop 
, m_width 
- borderOther 
, m_height 
- borderOther 
) ; 
1648         DiffRgn( visRgn 
, tempStaticBoxRgn 
, visRgn 
) ; 
1651     if ( !IsTopLevel() ) 
1653         wxWindow
* parent 
= GetParent() ; 
1656             wxSize size 
= parent
->GetSize() ; 
1659             parent
->MacWindowToRootWindow( &x
, &y 
) ; 
1660             MacRootWindowToWindow( &x 
, &y 
) ; 
1662             SetRectRgn( tempRgn 
, 
1663                 x 
+ parent
->MacGetLeftBorderSize() , y 
+ parent
->MacGetTopBorderSize() , 
1664                 x 
+ size
.x 
- parent
->MacGetRightBorderSize(), 
1665                 y 
+ size
.y 
- parent
->MacGetBottomBorderSize()) ; 
1667             SectRgn( visRgn 
, tempRgn 
, visRgn 
) ; 
1668             if ( parent
->IsTopLevel() ) 
1670             parent 
= parent
->GetParent() ; 
1673     if ( respectChildrenAndSiblings 
) 
1675         if ( GetWindowStyle() & wxCLIP_CHILDREN 
) 
1677             for (wxWindowListNode 
*node 
= GetChildren().GetFirst(); node
; node 
= node
->GetNext()) 
1679                 wxWindowMac 
*child 
= node
->GetData(); 
1681                 if ( !child
->IsTopLevel() && child
->IsShown() ) 
1683                     SetRectRgn( tempRgn 
, child
->m_x 
, child
->m_y 
, child
->m_x 
+ child
->m_width 
,  child
->m_y 
+ child
->m_height 
) ; 
1684                     if ( child
->IsKindOf( CLASSINFO( wxStaticBox 
) ) ) 
1686                         int borderTop 
= 14 ; 
1687                         int borderOther 
= 4 ; 
1689                         SetRectRgn( tempStaticBoxRgn 
, child
->m_x 
+ borderOther 
, child
->m_y 
+ borderTop 
, child
->m_x 
+ child
->m_width 
- borderOther 
, child
->m_y 
+ child
->m_height 
- borderOther 
) ; 
1690                         DiffRgn( tempRgn 
, tempStaticBoxRgn 
, tempRgn 
) ; 
1692                     DiffRgn( visRgn 
, tempRgn 
, visRgn 
) ; 
1697         if ( (GetWindowStyle() & wxCLIP_SIBLINGS
) && GetParent() ) 
1699             bool thisWindowThrough 
= false ; 
1700             for (wxWindowListNode 
*node 
= GetParent()->GetChildren().GetFirst(); node
; node 
= node
->GetNext()) 
1702                 wxWindowMac 
*sibling 
= node
->GetData(); 
1703                 if ( sibling 
== this ) 
1705                     thisWindowThrough 
= true ; 
1708                 if( !thisWindowThrough 
) 
1713                 if ( !sibling
->IsTopLevel() && sibling
->IsShown() ) 
1715                     SetRectRgn( tempRgn 
, sibling
->m_x 
- m_x 
, sibling
->m_y 
- m_y 
, sibling
->m_x 
+ sibling
->m_width 
- m_x 
,  sibling
->m_y 
+ sibling
->m_height 
- m_y 
) ; 
1716                     if ( sibling
->IsKindOf( CLASSINFO( wxStaticBox 
) ) ) 
1718                         int borderTop 
= 14 ; 
1719                         int borderOther 
= 4 ; 
1721                         SetRectRgn( tempStaticBoxRgn 
, sibling
->m_x 
- m_x 
+ borderOther 
, sibling
->m_y 
- m_y 
+ borderTop 
, sibling
->m_x 
+ sibling
->m_width 
- m_x 
- borderOther 
, sibling
->m_y 
+ sibling
->m_height 
- m_y 
- borderOther 
) ; 
1722                         DiffRgn( tempRgn 
, tempStaticBoxRgn 
, tempRgn 
) ; 
1724                     DiffRgn( visRgn 
, tempRgn 
, visRgn 
) ; 
1729     m_macVisibleRegion 
= visRgn 
; 
1730     DisposeRgn( visRgn 
) ; 
1731     DisposeRgn( tempRgn 
) ; 
1732     DisposeRgn( tempStaticBoxRgn 
) ; 
1733     return m_macVisibleRegion 
; 
1736 void wxWindowMac::MacRedraw( WXHRGN updatergnr 
, long time
, bool erase
) 
1738     RgnHandle updatergn 
= (RgnHandle
) updatergnr 
; 
1739     // updatergn is always already clipped to our boundaries 
1740     // it is in window coordinates, not in client coordinates 
1742     WindowRef window 
= (WindowRef
) MacGetRootWindow() ; 
1745         // ownUpdateRgn is the area that this window has to repaint, it is in window coordinates 
1746         RgnHandle ownUpdateRgn 
= NewRgn() ; 
1747         CopyRgn( updatergn 
, ownUpdateRgn 
) ; 
1749         SectRgn( ownUpdateRgn 
, (RgnHandle
) MacGetVisibleRegion().GetWXHRGN() , ownUpdateRgn 
) ; 
1751         // newupdate is the update region in client coordinates 
1752         RgnHandle newupdate 
= NewRgn() ; 
1753         wxSize point 
= GetClientSize() ; 
1754         wxPoint origin 
= GetClientAreaOrigin() ; 
1755         SetRectRgn( newupdate 
, origin
.x 
, origin
.y 
, origin
.x 
+ point
.x 
, origin
.y
+point
.y 
) ; 
1756         SectRgn( newupdate 
, ownUpdateRgn 
, newupdate 
) ; 
1757         OffsetRgn( newupdate 
, -origin
.x 
, -origin
.y 
) ; 
1758         m_updateRegion 
= newupdate 
; 
1759         DisposeRgn( newupdate 
) ; // it's been cloned to m_updateRegion 
1761         if ( erase 
&& !EmptyRgn(ownUpdateRgn
) ) 
1763             wxWindowDC 
dc(this); 
1764             if (!EmptyRgn(ownUpdateRgn
)) 
1765                 dc
.SetClippingRegion(wxRegion(ownUpdateRgn
)); 
1766             wxEraseEvent 
eevent( GetId(), &dc 
); 
1767             eevent
.SetEventObject( this ); 
1768             GetEventHandler()->ProcessEvent( eevent 
); 
1770             wxNcPaintEvent 
eventNc( GetId() ); 
1771             eventNc
.SetEventObject( this ); 
1772             GetEventHandler()->ProcessEvent( eventNc 
); 
1774         DisposeRgn( ownUpdateRgn 
) ; 
1775         if ( !m_updateRegion
.Empty() ) 
1778             event
.m_timeStamp 
= time 
; 
1779             event
.SetEventObject(this); 
1780             GetEventHandler()->ProcessEvent(event
); 
1784     // now intersect for each of the children their rect with the updateRgn and call MacRedraw recursively 
1786     RgnHandle childupdate 
= NewRgn() ; 
1787     for (wxWindowListNode 
*node 
= GetChildren().GetFirst(); node
; node 
= node
->GetNext()) 
1789         // calculate the update region for the child windows by intersecting the window rectangle with our own 
1790         // passed in update region and then offset it to be client-wise window coordinates again 
1791         wxWindowMac 
*child 
= node
->GetData(); 
1792         SetRectRgn( childupdate 
, child
->m_x 
, child
->m_y 
, child
->m_x 
+ child
->m_width 
,  child
->m_y 
+ child
->m_height 
) ; 
1793         SectRgn( childupdate 
, updatergn 
, childupdate 
) ; 
1794         OffsetRgn( childupdate 
, -child
->m_x 
, -child
->m_y 
) ; 
1795         if ( child
->MacGetRootWindow() == window 
&& child
->IsShown() && !EmptyRgn( childupdate 
) ) 
1797             // because dialogs may also be children 
1798             child
->MacRedraw( childupdate 
, time 
, erase 
) ; 
1801     DisposeRgn( childupdate 
) ; 
1802     // eventually a draw grow box here 
1806 WXHWND 
wxWindowMac::MacGetRootWindow() const 
1808     wxWindowMac 
*iter 
= (wxWindowMac
*)this ; 
1812         if ( iter
->IsTopLevel() ) 
1813             return ((wxTopLevelWindow
*)iter
)->MacGetWindowRef() ; 
1815         iter 
= iter
->GetParent() ; 
1817     wxASSERT_MSG( 1 , wxT("No valid mac root window") ) ; 
1821 void wxWindowMac::MacCreateScrollBars( long style 
) 
1823     wxASSERT_MSG( m_vScrollBar 
== NULL 
&& m_hScrollBar 
== NULL 
, wxT("attempt to create window twice") ) ; 
1825     bool hasBoth 
= ( style 
& wxVSCROLL 
) && ( style 
& wxHSCROLL 
) ; 
1826     int adjust 
= hasBoth 
? MAC_SCROLLBAR_SIZE 
- 1: 0 ; 
1828     GetClientSize( &width 
, &height 
) ; 
1830     wxPoint 
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ; 
1831     wxSize 
vSize(MAC_SCROLLBAR_SIZE
, height 
- adjust
) ; 
1832     wxPoint 
hPoint(0 , height
-MAC_SCROLLBAR_SIZE 
) ; 
1833     wxSize 
hSize( width 
- adjust
, MAC_SCROLLBAR_SIZE
) ; 
1835     m_vScrollBar 
= new wxScrollBar(this, wxWINDOW_VSCROLL
, vPoint
, 
1836         vSize 
, wxVERTICAL
); 
1838     if ( style 
& wxVSCROLL 
) 
1844         m_vScrollBar
->Show(false) ; 
1846     m_hScrollBar 
= new wxScrollBar(this, wxWINDOW_HSCROLL
, hPoint
, 
1847         hSize 
, wxHORIZONTAL
); 
1848     if ( style  
& wxHSCROLL 
) 
1853         m_hScrollBar
->Show(false) ; 
1856     // because the create does not take into account the client area origin 
1857     MacRepositionScrollBars() ; // we might have a real position shift 
1860 void wxWindowMac::MacRepositionScrollBars() 
1862     bool hasBoth 
= ( m_hScrollBar 
&& m_hScrollBar
->IsShown()) && ( m_vScrollBar 
&& m_vScrollBar
->IsShown()) ; 
1863     int adjust 
= hasBoth 
? MAC_SCROLLBAR_SIZE 
- 1 : 0 ; 
1865     // get real client area 
1867     int width 
= m_width 
; 
1868     int height 
= m_height 
; 
1870     width 
-= MacGetLeftBorderSize() + MacGetRightBorderSize(); 
1871     height 
-= MacGetTopBorderSize() + MacGetBottomBorderSize(); 
1873     wxPoint 
vPoint(width
-MAC_SCROLLBAR_SIZE
, 0) ; 
1874     wxSize 
vSize(MAC_SCROLLBAR_SIZE
, height 
- adjust
) ; 
1875     wxPoint 
hPoint(0 , height
-MAC_SCROLLBAR_SIZE 
) ; 
1876     wxSize 
hSize( width 
- adjust
, MAC_SCROLLBAR_SIZE
) ; 
1883     MacClientToRootWindow( &x 
, &y 
) ; 
1884     MacClientToRootWindow( &w 
, &h 
) ; 
1886     wxWindowMac 
*iter 
= (wxWindowMac
*)this ; 
1888     int totW 
= 10000 , totH 
= 10000; 
1891         if ( iter
->IsTopLevel() ) 
1893             totW 
= iter
->m_width 
; 
1894             totH 
= iter
->m_height 
; 
1898         iter 
= iter
->GetParent() ; 
1926         m_vScrollBar
->SetSize( vPoint
.x 
, vPoint
.y
, vSize
.x
, vSize
.y 
, wxSIZE_ALLOW_MINUS_ONE
); 
1930         m_hScrollBar
->SetSize( hPoint
.x 
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
); 
1934 bool wxWindowMac::AcceptsFocus() const 
1936     return MacCanFocus() && wxWindowBase::AcceptsFocus(); 
1939 WXWidget 
wxWindowMac::MacGetContainerForEmbedding() 
1941     return GetParent()->MacGetContainerForEmbedding() ; 
1944 void wxWindowMac::MacSuperChangedPosition() 
1946     // only window-absolute structures have to be moved i.e. controls 
1948     wxWindowListNode 
*node 
= GetChildren().GetFirst(); 
1951         wxWindowMac 
*child 
= node
->GetData(); 
1952         child
->MacSuperChangedPosition() ; 
1953         node 
= node
->GetNext(); 
1957 void wxWindowMac::MacTopLevelWindowChangedPosition() 
1959     // only screen-absolute structures have to be moved i.e. glcanvas 
1961     wxWindowListNode 
*node 
= GetChildren().GetFirst(); 
1964         wxWindowMac 
*child 
= node
->GetData(); 
1965         child
->MacTopLevelWindowChangedPosition() ; 
1966         node 
= node
->GetNext(); 
1969 long wxWindowMac::MacGetLeftBorderSize( ) const 
1974     if (m_windowStyle 
& wxRAISED_BORDER 
|| m_windowStyle 
& wxSUNKEN_BORDER 
) 
1977 #if wxMAC_USE_THEME_BORDER 
1979           GetThemeMetric( kThemeMetricListBoxFrameOutset 
, &border 
) ; 
1984     else if (  m_windowStyle 
&wxDOUBLE_BORDER
) 
1987 #if wxMAC_USE_THEME_BORDER 
1989           GetThemeMetric( kThemeMetricListBoxFrameOutset 
, &border 
) ; 
1994     else if (m_windowStyle 
&wxSIMPLE_BORDER
) 
2001 long wxWindowMac::MacGetRightBorderSize( ) const 
2003     // they are all symmetric in mac themes 
2004     return MacGetLeftBorderSize() ; 
2007 long wxWindowMac::MacGetTopBorderSize( ) const 
2009     // they are all symmetric in mac themes 
2010     return MacGetLeftBorderSize() ; 
2013 long wxWindowMac::MacGetBottomBorderSize( ) const 
2015     // they are all symmetric in mac themes 
2016     return MacGetLeftBorderSize() ; 
2019 long wxWindowMac::MacRemoveBordersFromStyle( long style 
) 
2021     return style 
& ~( wxDOUBLE_BORDER 
| wxSUNKEN_BORDER 
| wxRAISED_BORDER 
| wxBORDER 
| wxSTATIC_BORDER 
) ; 
2024 // Find the wxWindowMac at the current mouse position, returning the mouse 
2026 wxWindowMac
* wxFindWindowAtPointer(wxPoint
& pt
) 
2028     pt 
= wxGetMousePosition(); 
2029     wxWindowMac
* found 
= wxFindWindowAtPoint(pt
); 
2033 // Get the current mouse position. 
2034 wxPoint 
wxGetMousePosition() 
2037     wxGetMousePosition(& x
, & y
); 
2038     return wxPoint(x
, y
); 
2041 void wxWindowMac::OnMouseEvent( wxMouseEvent 
&event 
)  
2043         if ( event
.GetEventType() == wxEVT_RIGHT_DOWN 
) 
2045                 // copied from wxGTK : CS 
2046         // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN 
2049         // (a) it's a command event and so is propagated to the parent 
2050         // (b) under MSW it can be generated from kbd too 
2051         // (c) it uses screen coords (because of (a)) 
2052         wxContextMenuEvent 
evtCtx(wxEVT_CONTEXT_MENU
, 
2054                                   this->ClientToScreen(event
.GetPosition())); 
2055         if ( ! GetEventHandler()->ProcessEvent(evtCtx
) )