1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/window.cpp
3 // Purpose: wxWindowMac
4 // Author: Stefan Csomor
7 // RCS-ID: $Id: window.cpp 54981 2008-08-05 17:52:02Z SC $
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/window.h"
23 #include "wx/dcclient.h"
24 #include "wx/button.h"
26 #include "wx/dialog.h"
27 #include "wx/settings.h"
28 #include "wx/msgdlg.h"
29 #include "wx/scrolbar.h"
30 #include "wx/statbox.h"
31 #include "wx/textctrl.h"
32 #include "wx/toolbar.h"
33 #include "wx/layout.h"
34 #include "wx/statusbr.h"
35 #include "wx/menuitem.h"
36 #include "wx/treectrl.h"
37 #include "wx/listctrl.h"
40 #include "wx/tooltip.h"
41 #include "wx/spinctrl.h"
42 #include "wx/geometry.h"
45 #include "wx/listctrl.h"
49 #include "wx/treectrl.h"
57 #include "wx/popupwin.h"
60 #if wxUSE_DRAG_AND_DROP
64 #include "wx/graphics.h"
67 #include "wx/osx/uma.h"
69 #include "wx/osx/private.h"
71 #include <Carbon/Carbon.h>
74 #define MAC_SCROLLBAR_SIZE 15
75 #define MAC_SMALL_SCROLLBAR_SIZE 11
79 #ifdef __WXUNIVERSAL__
80 IMPLEMENT_ABSTRACT_CLASS(wxWindowMac
, wxWindowBase
)
82 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
85 BEGIN_EVENT_TABLE(wxWindowMac
, wxWindowBase
)
86 EVT_NC_PAINT(wxWindowMac::OnNcPaint
)
87 EVT_ERASE_BACKGROUND(wxWindowMac::OnEraseBackground
)
88 EVT_MOUSE_EVENTS(wxWindowMac::OnMouseEvent
)
91 #define wxMAC_DEBUG_REDRAW 0
92 #ifndef wxMAC_DEBUG_REDRAW
93 #define wxMAC_DEBUG_REDRAW 0
96 // ===========================================================================
98 // ===========================================================================
100 // ----------------------------------------------------------------------------
101 // constructors and such
102 // ----------------------------------------------------------------------------
104 wxWindowMac::wxWindowMac()
109 wxWindowMac::wxWindowMac(wxWindowMac
*parent
,
114 const wxString
& name
)
117 Create(parent
, id
, pos
, size
, style
, name
);
120 void wxWindowMac::Init()
124 m_cgContextRef
= NULL
;
126 // as all windows are created with WS_VISIBLE style...
129 m_hScrollBar
= NULL
;
130 m_vScrollBar
= NULL
;
131 m_hScrollBarAlwaysShown
= false;
132 m_vScrollBarAlwaysShown
= false;
134 m_macIsUserPane
= true;
135 m_clipChildren
= false ;
136 m_cachedClippedRectValid
= false ;
139 wxWindowMac::~wxWindowMac()
143 MacInvalidateBorders() ;
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 )
153 frame
->SetLastFocus(NULL
);
159 // destroy children before destroying this window itself
162 // wxRemoveMacControlAssociation( this ) ;
163 // If we delete an item, we should initialize the parent panel,
164 // because it could now be invalid.
165 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent((wxWindow
*)this), wxTopLevelWindow
);
168 if ( tlw
->GetDefaultItem() == (wxButton
*) this)
169 tlw
->SetDefaultItem(NULL
);
172 if ( g_MacLastWindow
== this )
173 g_MacLastWindow
= NULL
;
175 #ifndef __WXUNIVERSAL__
176 wxFrame
* frame
= wxDynamicCast( wxGetTopLevelParent( (wxWindow
*)this ) , wxFrame
) ;
179 if ( frame
->GetLastFocus() == this )
180 frame
->SetLastFocus( NULL
) ;
184 // delete our drop target if we've got one
185 #if wxUSE_DRAG_AND_DROP
186 if ( m_dropTarget
!= NULL
)
196 WXWidget
wxWindowMac::GetHandle() const
199 return (WXWidget
) m_peer
->GetWXWidget() ;
203 // ---------------------------------------------------------------------------
204 // Utility Routines to move between different coordinate systems
205 // ---------------------------------------------------------------------------
208 * Right now we have the following setup :
209 * a border that is not part of the native control is always outside the
210 * control's border (otherwise we loose all native intelligence, future ways
211 * may be to have a second embedding control responsible for drawing borders
212 * and backgrounds eventually)
213 * so all this border calculations have to be taken into account when calling
214 * native methods or getting native oriented data
215 * so we have three coordinate systems here
216 * wx client coordinates
217 * wx window coordinates (including window frames)
225 bool wxWindowMac::Create(wxWindowMac
*parent
,
230 const wxString
& name
)
232 wxCHECK_MSG( parent
, false, wxT("can't create wxWindowMac without parent") );
234 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
237 m_windowVariant
= parent
->GetWindowVariant() ;
239 if ( m_macIsUserPane
)
241 m_peer
= wxWidgetImpl::CreateUserPane( this, parent
, id
, pos
, size
, style
, GetExtraStyle() );
242 MacPostControlCreate(pos
, size
) ;
245 #ifndef __WXUNIVERSAL__
246 // Don't give scrollbars to wxControls unless they ask for them
247 if ( (! IsKindOf(CLASSINFO(wxControl
)) && ! IsKindOf(CLASSINFO(wxStatusBar
)))
248 || (IsKindOf(CLASSINFO(wxControl
)) && ((style
& wxHSCROLL
) || (style
& wxVSCROLL
))))
250 MacCreateScrollBars( style
) ;
254 wxWindowCreateEvent
event((wxWindow
*)this);
255 GetEventHandler()->AddPendingEvent(event
);
260 void wxWindowMac::MacChildAdded()
263 m_vScrollBar
->Raise() ;
265 m_hScrollBar
->Raise() ;
268 void wxWindowMac::MacPostControlCreate(const wxPoint
& WXUNUSED(pos
), const wxSize
& size
)
270 wxASSERT_MSG( m_peer
!= NULL
&& m_peer
->IsOk() , wxT("No valid mac control") ) ;
272 GetParent()->AddChild( this );
274 m_peer
->InstallEventHandler();
275 m_peer
->Embed(GetParent()->GetPeer());
277 GetParent()->MacChildAdded() ;
279 // adjust font, controlsize etc
280 DoSetWindowVariant( m_windowVariant
) ;
282 m_peer
->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
284 // for controls we want to use best size for wxDefaultSize params )
285 if ( !m_macIsUserPane
)
286 SetInitialSize(size
);
288 SetCursor( *wxSTANDARD_CURSOR
) ;
291 void wxWindowMac::DoSetWindowVariant( wxWindowVariant variant
)
293 // Don't assert, in case we set the window variant before
294 // the window is created
295 // wxASSERT( m_peer->Ok() ) ;
297 m_windowVariant
= variant
;
299 if (m_peer
== NULL
|| !m_peer
->IsOk())
302 m_peer
->SetControlSize( variant
);
306 // we will get that from the settings later
307 // and make this NORMAL later, but first
308 // we have a few calculations that we must fix
312 case wxWINDOW_VARIANT_NORMAL
:
313 size
= kControlSizeNormal
;
316 case wxWINDOW_VARIANT_SMALL
:
317 size
= kControlSizeSmall
;
320 case wxWINDOW_VARIANT_MINI
:
321 // not always defined in the headers
325 case wxWINDOW_VARIANT_LARGE
:
326 size
= kControlSizeLarge
;
330 wxFAIL_MSG(_T("unexpected window variant"));
333 m_peer
->SetData
<ControlSize
>(kControlEntireControl
, kControlSizeTag
, &size
) ;
338 wxOSXSystemFont systemFont
= wxOSX_SYSTEM_FONT_NORMAL
;
342 case wxWINDOW_VARIANT_NORMAL
:
343 systemFont
= wxOSX_SYSTEM_FONT_NORMAL
;
346 case wxWINDOW_VARIANT_SMALL
:
347 systemFont
= wxOSX_SYSTEM_FONT_SMALL
;
350 case wxWINDOW_VARIANT_MINI
:
351 systemFont
= wxOSX_SYSTEM_FONT_MINI
;
354 case wxWINDOW_VARIANT_LARGE
:
355 systemFont
= wxOSX_SYSTEM_FONT_NORMAL
;
359 wxFAIL_MSG(_T("unexpected window variant"));
363 font
.CreateSystemFont( systemFont
) ;
368 void wxWindowMac::MacUpdateControlFont()
371 m_peer
->SetFont( GetFont() , GetForegroundColour() , GetWindowStyle() ) ;
373 // do not trigger refreshes upon invisible and possible partly created objects
374 if ( IsShownOnScreen() )
378 bool wxWindowMac::SetFont(const wxFont
& font
)
380 bool retval
= wxWindowBase::SetFont( font
);
382 MacUpdateControlFont() ;
387 bool wxWindowMac::SetForegroundColour(const wxColour
& col
)
389 bool retval
= wxWindowBase::SetForegroundColour( col
);
392 MacUpdateControlFont();
397 bool wxWindowMac::SetBackgroundColour(const wxColour
& col
)
399 if ( !wxWindowBase::SetBackgroundColour(col
) && m_hasBgCol
)
403 m_peer
->SetBackgroundColour( col
) ;
408 static bool wxIsWindowOrParentDisabled(wxWindow
* w
)
410 while (w
&& !w
->IsTopLevel())
419 void wxWindowMac::SetFocus()
421 if ( !AcceptsFocus() )
424 if (wxIsWindowOrParentDisabled((wxWindow
*) this))
427 wxWindow
* former
= FindFocus() ;
428 if ( former
== this )
434 void wxWindowMac::DoCaptureMouse()
436 wxApp::s_captureWindow
= (wxWindow
*) this ;
437 m_peer
->CaptureMouse() ;
440 wxWindow
* wxWindowBase::GetCapture()
442 return wxApp::s_captureWindow
;
445 void wxWindowMac::DoReleaseMouse()
447 wxApp::s_captureWindow
= NULL
;
449 m_peer
->ReleaseMouse() ;
452 #if wxUSE_DRAG_AND_DROP
454 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
458 m_dropTarget
= pDropTarget
;
459 if ( m_dropTarget
!= NULL
)
467 // Old-style File Manager Drag & Drop
468 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept
))
473 // From a wx position / size calculate the appropriate size of the native control
475 bool wxWindowMac::MacGetBoundsForControl(
479 int& w
, int& h
, bool adjustOrigin
) const
481 // the desired size, minus the border pixels gives the correct size of the control
485 w
= WidthDefault( size
.x
);
486 h
= HeightDefault( size
.y
);
488 x
+= MacGetLeftBorderSize() ;
489 y
+= MacGetTopBorderSize() ;
490 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
491 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
494 AdjustForParentClientOrigin( x
, y
) ;
496 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
497 if ( GetParent() && !GetParent()->IsTopLevel() )
499 x
-= GetParent()->MacGetLeftBorderSize() ;
500 y
-= GetParent()->MacGetTopBorderSize() ;
506 // Get window size (not client size)
507 void wxWindowMac::DoGetSize(int *x
, int *y
) const
510 m_peer
->GetSize( width
, height
);
513 *x
= width
+ MacGetLeftBorderSize() + MacGetRightBorderSize() ;
515 *y
= height
+ MacGetTopBorderSize() + MacGetBottomBorderSize() ;
518 // get the position of the bounds of this window in client coordinates of its parent
519 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
523 m_peer
->GetPosition( x1
, y1
) ;
525 // get the wx window position from the native one
526 x1
-= MacGetLeftBorderSize() ;
527 y1
-= MacGetTopBorderSize() ;
531 wxWindow
*parent
= GetParent();
534 // we must first adjust it to be in window coordinates of the parent,
535 // as otherwise it gets lost by the ClientAreaOrigin fix
536 x1
+= parent
->MacGetLeftBorderSize() ;
537 y1
+= parent
->MacGetTopBorderSize() ;
539 // and now to client coordinates
540 wxPoint
pt(parent
->GetClientAreaOrigin());
552 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
554 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
555 wxCHECK_RET( tlw
, wxT("TopLevel Window missing") ) ;
556 tlw
->GetNonOwnedPeer()->ScreenToWindow( x
, y
);
557 MacRootWindowToWindow( x
, y
) ;
559 wxPoint origin
= GetClientAreaOrigin() ;
566 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
568 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
569 wxCHECK_RET( tlw
, wxT("TopLevel window missing") ) ;
571 wxPoint origin
= GetClientAreaOrigin() ;
577 MacWindowToRootWindow( x
, y
) ;
578 tlw
->GetNonOwnedPeer()->WindowToScreen( x
, y
);
581 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
583 wxPoint origin
= GetClientAreaOrigin() ;
589 MacWindowToRootWindow( x
, y
) ;
592 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
603 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
606 pt
.x
-= MacGetLeftBorderSize() ;
607 pt
.y
-= MacGetTopBorderSize() ;
608 wxWidgetImpl::Convert( &pt
, m_peer
, top
->m_peer
) ;
618 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
629 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
632 wxWidgetImpl::Convert( &pt
, top
->m_peer
, m_peer
) ;
633 pt
.x
+= MacGetLeftBorderSize() ;
634 pt
.y
+= MacGetTopBorderSize() ;
644 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
646 wxSize sizeTotal
= size
;
648 int innerwidth
, innerheight
;
650 int outerwidth
, outerheight
;
652 m_peer
->GetContentArea( left
, top
, innerwidth
, innerheight
);
653 m_peer
->GetSize( outerwidth
, outerheight
);
655 sizeTotal
.x
+= outerwidth
-innerwidth
;
656 sizeTotal
.y
+= outerheight
-innerheight
;
658 sizeTotal
.x
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
659 sizeTotal
.y
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
664 // Get size *available for subwindows* i.e. excluding menu bar etc.
665 void wxWindowMac::DoGetClientSize( int *x
, int *y
) const
671 m_peer
->GetContentArea( left
, top
, ww
, hh
);
673 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
674 hh
-= m_hScrollBar
->GetSize().y
;
676 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
677 ww
-= m_vScrollBar
->GetSize().x
;
685 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
687 if (m_cursor
.IsSameAs(cursor
))
692 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
697 if ( ! wxWindowBase::SetCursor( cursor
) )
701 wxASSERT_MSG( m_cursor
.Ok(),
702 wxT("cursor must be valid after call to the base version"));
704 if ( GetPeer() != NULL
)
705 GetPeer()->SetCursor( m_cursor
);
711 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
713 #ifndef __WXUNIVERSAL__
714 menu
->SetInvokingWindow((wxWindow
*)this);
717 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
719 wxPoint mouse
= wxGetMousePosition();
725 ClientToScreen( &x
, &y
) ;
727 menu
->GetPeer()->PopUp(this, x
, y
);
728 menu
->SetInvokingWindow( NULL
);
731 // actually this shouldn't be called, because universal is having its own implementation
737 // ----------------------------------------------------------------------------
739 // ----------------------------------------------------------------------------
743 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
745 wxWindowBase::DoSetToolTip(tooltip
);
748 m_tooltip
->SetWindow(this);
753 void wxWindowMac::MacInvalidateBorders()
755 if ( m_peer
== NULL
)
758 bool vis
= IsShownOnScreen() ;
762 int outerBorder
= MacGetLeftBorderSize() ;
764 if ( m_peer
->NeedsFocusRect() )
767 if ( outerBorder
== 0 )
770 // now we know that we have something to do at all
774 m_peer
->GetSize( tw
, th
);
775 m_peer
->GetPosition( tx
, ty
);
777 wxRect
leftupdate( tx
-outerBorder
,ty
,outerBorder
,th
);
778 wxRect
rightupdate( tx
+tw
, ty
, outerBorder
, th
);
779 wxRect
topupdate( tx
-outerBorder
, ty
-outerBorder
, tw
+ 2 * outerBorder
, outerBorder
);
780 wxRect
bottomupdate( tx
-outerBorder
, ty
+ th
, tw
+ 2 * outerBorder
, outerBorder
);
783 GetParent()->m_peer
->SetNeedsDisplay(&leftupdate
);
784 GetParent()->m_peer
->SetNeedsDisplay(&rightupdate
);
785 GetParent()->m_peer
->SetNeedsDisplay(&topupdate
);
786 GetParent()->m_peer
->SetNeedsDisplay(&bottomupdate
);
790 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
792 // this is never called for a toplevel window, so we know we have a parent
793 int former_x
, former_y
, former_w
, former_h
;
795 // Get true coordinates of former position
796 DoGetPosition( &former_x
, &former_y
) ;
797 DoGetSize( &former_w
, &former_h
) ;
799 wxWindow
*parent
= GetParent();
802 wxPoint
pt(parent
->GetClientAreaOrigin());
807 int actualWidth
= width
;
808 int actualHeight
= height
;
813 // min and max sizes are only for sizers, not for explicit size setting
814 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
815 actualWidth
= m_minWidth
;
816 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
817 actualHeight
= m_minHeight
;
818 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
819 actualWidth
= m_maxWidth
;
820 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
821 actualHeight
= m_maxHeight
;
824 bool doMove
= false, doResize
= false ;
826 if ( actualX
!= former_x
|| actualY
!= former_y
)
829 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
832 if ( doMove
|| doResize
)
834 // as the borders are drawn outside the native control, we adjust now
836 wxRect
bounds( wxPoint( actualX
+ MacGetLeftBorderSize() ,actualY
+ MacGetTopBorderSize() ),
837 wxSize( actualWidth
- (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
838 actualHeight
- (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
840 if ( parent
&& !parent
->IsTopLevel() )
842 bounds
.Offset( -parent
->MacGetLeftBorderSize(), -parent
->MacGetTopBorderSize() );
845 MacInvalidateBorders() ;
847 m_cachedClippedRectValid
= false ;
849 m_peer
->Move( bounds
.x
, bounds
.y
, bounds
.width
, bounds
.height
);
851 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
853 MacInvalidateBorders() ;
855 MacRepositionScrollBars() ;
858 wxPoint
point(actualX
, actualY
);
859 wxMoveEvent
event(point
, m_windowId
);
860 event
.SetEventObject(this);
861 HandleWindowEvent(event
) ;
866 MacRepositionScrollBars() ;
867 wxSize
size(actualWidth
, actualHeight
);
868 wxSizeEvent
event(size
, m_windowId
);
869 event
.SetEventObject(this);
870 HandleWindowEvent(event
);
875 wxSize
wxWindowMac::DoGetBestSize() const
877 if ( m_macIsUserPane
|| IsTopLevel() )
879 return wxWindowBase::DoGetBestSize() ;
885 m_peer
->GetBestRect(&r
);
887 if ( r
.GetWidth() == 0 && r
.GetHeight() == 0 )
894 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
899 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
906 // return wxWindowBase::DoGetBestSize() ;
910 int bestWidth
= r
.width
+ MacGetLeftBorderSize() +
911 MacGetRightBorderSize();
912 int bestHeight
= r
.height
+ MacGetTopBorderSize() +
913 MacGetBottomBorderSize();
914 if ( bestHeight
< 10 )
917 return wxSize(bestWidth
, bestHeight
);
921 // set the size of the window: if the dimensions are positive, just use them,
922 // but if any of them is equal to -1, it means that we must find the value for
923 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
924 // which case -1 is a valid value for x and y)
926 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
927 // the width/height to best suit our contents, otherwise we reuse the current
929 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
931 // get the current size and position...
932 int currentX
, currentY
;
933 int currentW
, currentH
;
935 GetPosition(¤tX
, ¤tY
);
936 GetSize(¤tW
, ¤tH
);
938 // ... and don't do anything (avoiding flicker) if it's already ok
939 if ( x
== currentX
&& y
== currentY
&&
940 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
943 MacRepositionScrollBars() ; // we might have a real position shift
945 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
947 wxSizeEvent
event( wxSize(width
,height
), GetId() );
948 event
.SetEventObject( this );
949 HandleWindowEvent( event
);
955 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
957 if ( x
== wxDefaultCoord
)
959 if ( y
== wxDefaultCoord
)
963 AdjustForParentClientOrigin( x
, y
, sizeFlags
);
965 wxSize size
= wxDefaultSize
;
966 if ( width
== wxDefaultCoord
)
968 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
970 size
= DoGetBestSize();
975 // just take the current one
980 if ( height
== wxDefaultCoord
)
982 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
984 if ( size
.x
== wxDefaultCoord
)
985 size
= DoGetBestSize();
986 // else: already called DoGetBestSize() above
992 // just take the current one
997 DoMoveWindow( x
, y
, width
, height
);
1000 wxPoint
wxWindowMac::GetClientAreaOrigin() const
1002 int left
,top
,width
,height
;
1003 m_peer
->GetContentArea( left
, top
, width
, height
);
1004 return wxPoint( left
+ MacGetLeftBorderSize() , top
+ MacGetTopBorderSize() );
1007 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
1009 if ( clientwidth
!= wxDefaultCoord
|| clientheight
!= wxDefaultCoord
)
1011 int currentclientwidth
, currentclientheight
;
1012 int currentwidth
, currentheight
;
1014 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1015 GetSize( ¤twidth
, ¤theight
) ;
1017 DoSetSize( wxDefaultCoord
, wxDefaultCoord
, currentwidth
+ clientwidth
- currentclientwidth
,
1018 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1022 void wxWindowMac::SetLabel(const wxString
& title
)
1026 if ( m_peer
&& m_peer
->IsOk() && !(IsKindOf( CLASSINFO(wxButton
) ) && GetId() == wxID_HELP
) )
1027 m_peer
->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
1029 // do not trigger refreshes upon invisible and possible partly created objects
1030 if ( IsShownOnScreen() )
1034 wxString
wxWindowMac::GetLabel() const
1039 bool wxWindowMac::Show(bool show
)
1041 if ( !wxWindowBase::Show(show
) )
1045 m_peer
->SetVisibility( show
) ;
1050 void wxWindowMac::DoEnable(bool enable
)
1052 m_peer
->Enable( enable
) ;
1056 // status change notifications
1059 void wxWindowMac::MacVisibilityChanged()
1063 void wxWindowMac::MacHiliteChanged()
1067 void wxWindowMac::MacEnabledStateChanged()
1069 OnEnabled( m_peer
->IsEnabled() );
1073 // status queries on the inherited window's state
1076 bool wxWindowMac::MacIsReallyEnabled()
1078 return m_peer
->IsEnabled() ;
1081 bool wxWindowMac::MacIsReallyHilited()
1083 #if wxOSX_USE_CARBON
1084 return m_peer
->IsActive();
1086 return true; // TODO
1090 int wxWindowMac::GetCharHeight() const
1093 GetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1098 int wxWindowMac::GetCharWidth() const
1101 GetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1106 void wxWindowMac::DoGetTextExtent(const wxString
& str
,
1109 int *externalLeading
,
1110 const wxFont
*theFont
) const
1112 const wxFont
*fontToUse
= theFont
;
1116 tempFont
= GetFont();
1117 fontToUse
= &tempFont
;
1120 wxGraphicsContext
* ctx
= wxGraphicsContext::Create();
1121 ctx
->SetFont( *fontToUse
, *wxBLACK
);
1123 wxDouble h
, d
, e
, w
;
1124 ctx
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
1128 if ( externalLeading
)
1129 *externalLeading
= (wxCoord
)(e
+0.5);
1131 *descent
= (wxCoord
)(d
+0.5);
1133 *x
= (wxCoord
)(w
+0.5);
1135 *y
= (wxCoord
)(h
+0.5);
1139 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1140 * we always intersect with the entire window, not only with the client area
1143 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack
), const wxRect
*rect
)
1145 if ( m_peer
== NULL
)
1148 if ( !IsShownOnScreen() )
1151 m_peer
->SetNeedsDisplay( rect
) ;
1154 void wxWindowMac::DoFreeze()
1156 #if wxOSX_USE_CARBON
1157 if ( m_peer
&& m_peer
->IsOk() )
1158 m_peer
->SetDrawingEnabled( false ) ;
1162 void wxWindowMac::DoThaw()
1164 #if wxOSX_USE_CARBON
1165 if ( m_peer
&& m_peer
->IsOk() )
1167 m_peer
->SetDrawingEnabled( true ) ;
1168 m_peer
->InvalidateWithChildren() ;
1173 wxWindow
*wxGetActiveWindow()
1175 // actually this is a windows-only concept
1179 // Coordinates relative to the window
1180 void wxWindowMac::WarpPointer(int WXUNUSED(x_pos
), int WXUNUSED(y_pos
))
1182 // We really don't move the mouse programmatically under Mac.
1185 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
1187 if ( MacGetTopLevelWindow() == NULL
)
1190 #if TARGET_API_MAC_OSX
1191 if ( !m_backgroundColour.Ok() || GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT )
1197 if ( GetBackgroundStyle() == wxBG_STYLE_COLOUR
)
1199 event
.GetDC()->Clear() ;
1201 else if ( GetBackgroundStyle() == wxBG_STYLE_CUSTOM
)
1203 // don't skip the event here, custom background means that the app
1204 // is drawing it itself in its OnPaint(), so don't draw it at all
1205 // now to avoid flicker
1213 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
1218 int wxWindowMac::GetScrollPos(int orient
) const
1220 if ( orient
== wxHORIZONTAL
)
1223 return m_hScrollBar
->GetThumbPosition() ;
1228 return m_vScrollBar
->GetThumbPosition() ;
1234 // This now returns the whole range, not just the number
1235 // of positions that we can scroll.
1236 int wxWindowMac::GetScrollRange(int orient
) const
1238 if ( orient
== wxHORIZONTAL
)
1241 return m_hScrollBar
->GetRange() ;
1246 return m_vScrollBar
->GetRange() ;
1252 int wxWindowMac::GetScrollThumb(int orient
) const
1254 if ( orient
== wxHORIZONTAL
)
1257 return m_hScrollBar
->GetThumbSize() ;
1262 return m_vScrollBar
->GetThumbSize() ;
1268 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1270 if ( orient
== wxHORIZONTAL
)
1273 m_hScrollBar
->SetThumbPosition( pos
) ;
1278 m_vScrollBar
->SetThumbPosition( pos
) ;
1283 wxWindowMac::AlwaysShowScrollbars(bool hflag
, bool vflag
)
1285 bool needVisibilityUpdate
= false;
1287 if ( m_hScrollBarAlwaysShown
!= hflag
)
1289 m_hScrollBarAlwaysShown
= hflag
;
1290 needVisibilityUpdate
= true;
1293 if ( m_vScrollBarAlwaysShown
!= vflag
)
1295 m_vScrollBarAlwaysShown
= vflag
;
1296 needVisibilityUpdate
= true;
1299 if ( needVisibilityUpdate
)
1300 DoUpdateScrollbarVisibility();
1304 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
1305 // our own window origin is at leftOrigin/rightOrigin
1308 void wxWindowMac::MacPaintGrowBox()
1313 if ( MacHasScrollBarCorner() )
1315 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1316 wxASSERT( cgContext
) ;
1320 m_peer
->GetSize( tw
, th
);
1321 m_peer
->GetPosition( tx
, ty
);
1323 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1326 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1327 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
1328 CGContextSaveGState( cgContext
);
1330 if ( m_backgroundColour
.Ok() )
1332 CGContextSetFillColorWithColor( cgContext
, m_backgroundColour
.GetCGColor() );
1336 CGContextSetRGBFillColor( cgContext
, (CGFloat
) 1.0, (CGFloat
)1.0 ,(CGFloat
) 1.0 , (CGFloat
)1.0 );
1338 CGContextFillRect( cgContext
, cgrect
);
1339 CGContextRestoreGState( cgContext
);
1343 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin
) , int WXUNUSED(rightOrigin
) )
1348 bool hasFocus
= m_peer
->NeedsFocusRect() && m_peer
->HasFocus() ;
1350 // back to the surrounding frame rectangle
1353 m_peer
->GetSize( tw
, th
);
1354 m_peer
->GetPosition( tx
, ty
);
1356 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1358 #if wxOSX_USE_COCOA_OR_CARBON
1360 InsetRect( &rect
, -1 , -1 ) ;
1363 CGRect cgrect
= CGRectMake( rect
.left
, rect
.top
, rect
.right
- rect
.left
,
1364 rect
.bottom
- rect
.top
) ;
1366 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
1367 wxASSERT( cgContext
) ;
1369 if ( m_peer
->NeedsFrame() )
1371 HIThemeFrameDrawInfo info
;
1372 memset( &info
, 0 , sizeof(info
) ) ;
1376 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1377 info
.isFocused
= hasFocus
;
1379 if ( HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1381 info
.kind
= kHIThemeFrameTextFieldSquare
;
1382 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1384 else if ( HasFlag(wxSIMPLE_BORDER
) )
1386 info
.kind
= kHIThemeFrameListBox
;
1387 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1393 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
1396 #endif // wxOSX_USE_COCOA_OR_CARBON
1399 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1401 if ( child
== m_hScrollBar
)
1402 m_hScrollBar
= NULL
;
1403 if ( child
== m_vScrollBar
)
1404 m_vScrollBar
= NULL
;
1406 wxWindowBase::RemoveChild( child
) ;
1409 void wxWindowMac::DoUpdateScrollbarVisibility()
1411 bool triggerSizeEvent
= false;
1415 bool showHScrollBar
= m_hScrollBarAlwaysShown
|| m_hScrollBar
->IsNeeded();
1417 if ( m_hScrollBar
->IsShown() != showHScrollBar
)
1419 m_hScrollBar
->Show( showHScrollBar
);
1420 triggerSizeEvent
= true;
1426 bool showVScrollBar
= m_vScrollBarAlwaysShown
|| m_vScrollBar
->IsNeeded();
1428 if ( m_vScrollBar
->IsShown() != showVScrollBar
)
1430 m_vScrollBar
->Show( showVScrollBar
) ;
1431 triggerSizeEvent
= true;
1435 MacRepositionScrollBars() ;
1436 if ( triggerSizeEvent
)
1438 wxSizeEvent
event(GetSize(), m_windowId
);
1439 event
.SetEventObject(this);
1440 HandleWindowEvent(event
);
1444 // New function that will replace some of the above.
1445 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumb
,
1446 int range
, bool refresh
)
1448 if ( orient
== wxHORIZONTAL
&& m_hScrollBar
)
1449 m_hScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1450 else if ( orient
== wxVERTICAL
&& m_vScrollBar
)
1451 m_vScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1453 DoUpdateScrollbarVisibility();
1456 // Does a physical scroll
1457 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1459 if ( dx
== 0 && dy
== 0 )
1462 int width
, height
;
1463 GetClientSize( &width
, &height
) ;
1466 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
1468 scrollrect
.Intersect( *rect
) ;
1469 // as the native control might be not a 0/0 wx window coordinates, we have to offset
1470 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
1472 m_peer
->ScrollRect( &scrollrect
, dx
, dy
);
1477 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1479 child
= node
->GetData();
1482 if (child
== m_vScrollBar
)
1484 if (child
== m_hScrollBar
)
1486 if (child
->IsTopLevel())
1489 child
->GetPosition( &x
, &y
);
1490 child
->GetSize( &w
, &h
);
1493 wxRect
rc( x
, y
, w
, h
);
1494 if (rect
->Intersects( rc
))
1495 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1499 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1504 void wxWindowMac::MacOnScroll( wxScrollEvent
&event
)
1506 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
1508 wxScrollWinEvent wevent
;
1509 wevent
.SetPosition(event
.GetPosition());
1510 wevent
.SetOrientation(event
.GetOrientation());
1511 wevent
.SetEventObject(this);
1513 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
1514 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
1515 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
1516 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
1517 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
1518 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
1519 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
1520 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
1521 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
1522 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
1523 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
1524 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
1525 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
1526 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
1527 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
1528 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
1530 HandleWindowEvent(wevent
);
1534 wxWindow
*wxWindowBase::DoFindFocus()
1536 return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
1539 void wxWindowMac::OnInternalIdle()
1541 // This calls the UI-update mechanism (querying windows for
1542 // menu/toolbar/control state information)
1543 if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
1544 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1547 // Raise the window to the top of the Z order
1548 void wxWindowMac::Raise()
1553 // Lower the window to the bottom of the Z order
1554 void wxWindowMac::Lower()
1559 // static wxWindow *gs_lastWhich = NULL;
1561 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
1563 // first trigger a set cursor event
1565 wxPoint clientorigin
= GetClientAreaOrigin() ;
1566 wxSize clientsize
= GetClientSize() ;
1568 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
1570 wxSetCursorEvent
event( pt
.x
, pt
.y
);
1572 bool processedEvtSetCursor
= HandleWindowEvent(event
);
1573 if ( processedEvtSetCursor
&& event
.HasCursor() )
1575 cursor
= event
.GetCursor() ;
1579 // the test for processedEvtSetCursor is here to prevent using m_cursor
1580 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1581 // it - this is a way to say that our cursor shouldn't be used for this
1583 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
1586 if ( !wxIsBusy() && !GetParent() )
1587 cursor
= *wxSTANDARD_CURSOR
;
1591 cursor
.MacInstall() ;
1594 return cursor
.Ok() ;
1597 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&WXUNUSED(pt
) )
1601 return m_tooltip
->GetTip() ;
1604 return wxEmptyString
;
1607 void wxWindowMac::ClearBackground()
1613 void wxWindowMac::Update()
1615 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1620 wxNonOwnedWindow
* wxWindowMac::MacGetTopLevelWindow() const
1622 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1626 if ( iter
->IsTopLevel() )
1628 wxTopLevelWindow
* toplevel
= wxDynamicCast(iter
,wxTopLevelWindow
);
1632 wxPopupWindow
* popupwin
= wxDynamicCast(iter
,wxPopupWindow
);
1637 iter
= iter
->GetParent() ;
1643 const wxRect
& wxWindowMac::MacGetClippedClientRect() const
1645 MacUpdateClippedRects() ;
1647 return m_cachedClippedClientRect
;
1650 const wxRect
& wxWindowMac::MacGetClippedRect() const
1652 MacUpdateClippedRects() ;
1654 return m_cachedClippedRect
;
1657 const wxRect
&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
1659 MacUpdateClippedRects() ;
1661 return m_cachedClippedRectWithOuterStructure
;
1664 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
1666 static wxRegion emptyrgn
;
1668 if ( !m_isBeingDeleted
&& IsShownOnScreen() )
1670 MacUpdateClippedRects() ;
1671 if ( includeOuterStructures
)
1672 return m_cachedClippedRegionWithOuterStructure
;
1674 return m_cachedClippedRegion
;
1682 void wxWindowMac::MacUpdateClippedRects() const
1684 #if wxOSX_USE_CARBON
1685 if ( m_cachedClippedRectValid
)
1688 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
1689 // also a window dc uses this, in this case we only clip in the hierarchy for hard
1690 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
1691 // to add focus borders everywhere
1693 Rect rIncludingOuterStructures
;
1697 m_peer
->GetSize( tw
, th
);
1698 m_peer
->GetPosition( tx
, ty
);
1700 Rect r
= { ty
,tx
, ty
+th
, tx
+tw
};
1702 r
.left
-= MacGetLeftBorderSize() ;
1703 r
.top
-= MacGetTopBorderSize() ;
1704 r
.bottom
+= MacGetBottomBorderSize() ;
1705 r
.right
+= MacGetRightBorderSize() ;
1712 rIncludingOuterStructures
= r
;
1713 InsetRect( &rIncludingOuterStructures
, -4 , -4 ) ;
1715 wxRect cl
= GetClientRect() ;
1716 Rect rClient
= { cl
.y
, cl
.x
, cl
.y
+ cl
.height
, cl
.x
+ cl
.width
} ;
1720 const wxWindow
* child
= (wxWindow
*) this ;
1721 const wxWindow
* parent
= NULL
;
1723 while ( !child
->IsTopLevel() && ( parent
= child
->GetParent() ) != NULL
)
1725 if ( parent
->MacIsChildOfClientArea(child
) )
1727 size
= parent
->GetClientSize() ;
1728 wxPoint origin
= parent
->GetClientAreaOrigin() ;
1734 // this will be true for scrollbars, toolbars etc.
1735 size
= parent
->GetSize() ;
1736 y
= parent
->MacGetTopBorderSize() ;
1737 x
= parent
->MacGetLeftBorderSize() ;
1738 size
.x
-= parent
->MacGetLeftBorderSize() + parent
->MacGetRightBorderSize() ;
1739 size
.y
-= parent
->MacGetTopBorderSize() + parent
->MacGetBottomBorderSize() ;
1742 parent
->MacWindowToRootWindow( &x
, &y
) ;
1743 MacRootWindowToWindow( &x
, &y
) ;
1745 Rect rparent
= { y
, x
, y
+ size
.y
, x
+ size
.x
} ;
1747 // the wxwindow and client rects will always be clipped
1748 SectRect( &r
, &rparent
, &r
) ;
1749 SectRect( &rClient
, &rparent
, &rClient
) ;
1751 // the structure only at 'hard' borders
1752 if ( parent
->MacClipChildren() ||
1753 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() ) )
1755 SectRect( &rIncludingOuterStructures
, &rparent
, &rIncludingOuterStructures
) ;
1761 m_cachedClippedRect
= wxRect( r
.left
, r
.top
, r
.right
- r
.left
, r
.bottom
- r
.top
) ;
1762 m_cachedClippedClientRect
= wxRect( rClient
.left
, rClient
.top
,
1763 rClient
.right
- rClient
.left
, rClient
.bottom
- rClient
.top
) ;
1764 m_cachedClippedRectWithOuterStructure
= wxRect(
1765 rIncludingOuterStructures
.left
, rIncludingOuterStructures
.top
,
1766 rIncludingOuterStructures
.right
- rIncludingOuterStructures
.left
,
1767 rIncludingOuterStructures
.bottom
- rIncludingOuterStructures
.top
) ;
1769 m_cachedClippedRegionWithOuterStructure
= wxRegion( m_cachedClippedRectWithOuterStructure
) ;
1770 m_cachedClippedRegion
= wxRegion( m_cachedClippedRect
) ;
1771 m_cachedClippedClientRegion
= wxRegion( m_cachedClippedClientRect
) ;
1773 m_cachedClippedRectValid
= true ;
1778 This function must not change the updatergn !
1780 bool wxWindowMac::MacDoRedraw( long time
)
1782 bool handled
= false ;
1784 wxRegion formerUpdateRgn
= m_updateRegion
;
1785 wxRegion clientUpdateRgn
= formerUpdateRgn
;
1787 wxSize sz
= GetClientSize() ;
1788 wxPoint origin
= GetClientAreaOrigin() ;
1790 clientUpdateRgn
.Intersect(origin
.x
, origin
.y
, origin
.x
+ sz
.x
, origin
.y
+ sz
.y
);
1792 // first send an erase event to the entire update area
1794 // for the toplevel window this really is the entire area
1795 // for all the others only their client area, otherwise they
1796 // might be drawing with full alpha and eg put blue into
1797 // the grow-box area of a scrolled window (scroll sample)
1798 wxDC
* dc
= new wxWindowDC(this);
1800 dc
->SetDeviceClippingRegion(formerUpdateRgn
);
1802 dc
->SetDeviceClippingRegion(clientUpdateRgn
);
1804 wxEraseEvent
eevent( GetId(), dc
);
1805 eevent
.SetEventObject( this );
1806 HandleWindowEvent( eevent
);
1812 // calculate a client-origin version of the update rgn and set m_updateRegion to that
1813 clientUpdateRgn
.Offset( -origin
.x
, -origin
.y
);
1814 m_updateRegion
= clientUpdateRgn
;
1816 if ( !m_updateRegion
.Empty() )
1818 // paint the window itself
1820 wxPaintEvent
event(GetId());
1821 event
.SetTimestamp(time
);
1822 event
.SetEventObject(this);
1823 handled
= HandleWindowEvent(event
);
1826 m_updateRegion
= formerUpdateRgn
;
1830 void wxWindowMac::MacPaintChildrenBorders()
1832 // now we cannot rely on having its borders drawn by a window itself, as it does not
1833 // get the updateRgn wide enough to always do so, so we do it from the parent
1834 // this would also be the place to draw any custom backgrounds for native controls
1835 // in Composited windowing
1836 wxPoint clientOrigin
= GetClientAreaOrigin() ;
1840 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1842 child
= node
->GetData();
1845 if (child
== m_vScrollBar
)
1847 if (child
== m_hScrollBar
)
1849 if (child
->IsTopLevel())
1851 if (!child
->IsShown())
1854 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
1856 child
->GetPosition( &x
, &y
);
1857 child
->GetSize( &w
, &h
);
1859 if ( m_updateRegion
.Contains(clientOrigin
.x
+x
-10, clientOrigin
.y
+y
-10, w
+20, h
+20) )
1861 // paint custom borders
1862 wxNcPaintEvent
eventNc( child
->GetId() );
1863 eventNc
.SetEventObject( child
);
1864 if ( !child
->HandleWindowEvent( eventNc
) )
1866 child
->MacPaintBorders(0, 0) ;
1873 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
1875 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow();
1876 return tlw
? tlw
->GetWXWindow() : NULL
;
1879 bool wxWindowMac::MacHasScrollBarCorner() const
1881 /* Returns whether the scroll bars in a wxScrolledWindow should be
1882 * shortened. Scroll bars should be shortened if either:
1884 * - both scroll bars are visible, or
1886 * - there is a resize box in the parent frame's corner and this
1887 * window shares the bottom and right edge with the parent
1891 if ( m_hScrollBar
== NULL
&& m_vScrollBar
== NULL
)
1894 if ( ( m_hScrollBar
&& m_hScrollBar
->IsShown() )
1895 && ( m_vScrollBar
&& m_vScrollBar
->IsShown() ) )
1897 // Both scroll bars visible
1902 wxPoint thisWindowBottomRight
= GetScreenRect().GetBottomRight();
1904 for ( const wxWindow
*win
= (wxWindow
*)this; win
; win
= win
->GetParent() )
1906 const wxFrame
*frame
= wxDynamicCast( win
, wxFrame
) ;
1909 if ( frame
->GetWindowStyleFlag() & wxRESIZE_BORDER
)
1911 // Parent frame has resize handle
1912 wxPoint frameBottomRight
= frame
->GetScreenRect().GetBottomRight();
1914 // Note: allow for some wiggle room here as wxMac's
1915 // window rect calculations seem to be imprecise
1916 if ( abs( thisWindowBottomRight
.x
- frameBottomRight
.x
) <= 2
1917 && abs( thisWindowBottomRight
.y
- frameBottomRight
.y
) <= 2 )
1919 // Parent frame has resize handle and shares
1920 // right bottom corner
1925 // Parent frame has resize handle but doesn't
1926 // share right bottom corner
1932 // Parent frame doesn't have resize handle
1938 // No parent frame found
1943 void wxWindowMac::MacCreateScrollBars( long style
)
1945 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
1947 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
1949 int scrlsize
= MAC_SCROLLBAR_SIZE
;
1950 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
1952 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
1955 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1: 0 ;
1957 GetClientSize( &width
, &height
) ;
1959 wxPoint
vPoint(width
- scrlsize
, 0) ;
1960 wxSize
vSize(scrlsize
, height
- adjust
) ;
1961 wxPoint
hPoint(0, height
- scrlsize
) ;
1962 wxSize
hSize(width
- adjust
, scrlsize
) ;
1964 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
1965 if ( style
& wxVSCROLL
)
1967 m_vScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, vPoint
, vSize
, wxVERTICAL
);
1968 m_vScrollBar
->SetMinSize( wxDefaultSize
);
1971 if ( style
& wxHSCROLL
)
1973 m_hScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, hPoint
, hSize
, wxHORIZONTAL
);
1974 m_hScrollBar
->SetMinSize( wxDefaultSize
);
1978 // because the create does not take into account the client area origin
1979 // we might have a real position shift
1980 MacRepositionScrollBars() ;
1983 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow
* child
) const
1985 bool result
= ((child
== NULL
) || ((child
!= m_hScrollBar
) && (child
!= m_vScrollBar
)));
1990 void wxWindowMac::MacRepositionScrollBars()
1992 if ( !m_hScrollBar
&& !m_vScrollBar
)
1995 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1996 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1 : 0 ;
1998 // get real client area
2000 GetSize( &width
, &height
);
2002 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
2003 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
2005 wxPoint
vPoint( width
- scrlsize
, 0 ) ;
2006 wxSize
vSize( scrlsize
, height
- adjust
) ;
2007 wxPoint
hPoint( 0 , height
- scrlsize
) ;
2008 wxSize
hSize( width
- adjust
, scrlsize
) ;
2011 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2013 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2016 bool wxWindowMac::AcceptsFocus() const
2018 if ( MacIsUserPane() )
2019 return wxWindowBase::AcceptsFocus();
2021 return m_peer
->CanFocus();
2024 void wxWindowMac::MacSuperChangedPosition()
2026 // only window-absolute structures have to be moved i.e. controls
2028 m_cachedClippedRectValid
= false ;
2031 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2034 child
= node
->GetData();
2035 child
->MacSuperChangedPosition() ;
2037 node
= node
->GetNext();
2041 void wxWindowMac::MacTopLevelWindowChangedPosition()
2043 // only screen-absolute structures have to be moved i.e. glcanvas
2046 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2049 child
= node
->GetData();
2050 child
->MacTopLevelWindowChangedPosition() ;
2052 node
= node
->GetNext();
2056 long wxWindowMac::MacGetLeftBorderSize() const
2063 if ( m_peer
&& m_peer
->NeedsFrame() )
2065 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
))
2067 #if wxOSX_USE_COCOA_OR_CARBON
2068 // this metric is only the 'outset' outside the simple frame rect
2069 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2075 else if (HasFlag(wxSIMPLE_BORDER
))
2077 #if wxOSX_USE_COCOA_OR_CARBON
2078 // this metric is only the 'outset' outside the simple frame rect
2079 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2090 long wxWindowMac::MacGetRightBorderSize() const
2092 // they are all symmetric in mac themes
2093 return MacGetLeftBorderSize() ;
2096 long wxWindowMac::MacGetTopBorderSize() const
2098 // they are all symmetric in mac themes
2099 return MacGetLeftBorderSize() ;
2102 long wxWindowMac::MacGetBottomBorderSize() const
2104 // they are all symmetric in mac themes
2105 return MacGetLeftBorderSize() ;
2108 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
2110 return style
& ~wxBORDER_MASK
;
2113 // Find the wxWindowMac at the current mouse position, returning the mouse
2115 wxWindow
* wxFindWindowAtPointer( wxPoint
& pt
)
2117 pt
= wxGetMousePosition();
2118 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
2120 return (wxWindow
*) found
;
2123 // Get the current mouse position.
2124 wxPoint
wxGetMousePosition()
2128 wxGetMousePosition( &x
, &y
);
2130 return wxPoint(x
, y
);
2133 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
2135 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2137 // copied from wxGTK : CS
2138 // VZ: shouldn't we move this to base class then?
2140 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2143 // (a) it's a command event and so is propagated to the parent
2144 // (b) under MSW it can be generated from kbd too
2145 // (c) it uses screen coords (because of (a))
2146 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2148 this->ClientToScreen(event
.GetPosition()));
2149 evtCtx
.SetEventObject(this);
2150 if ( ! HandleWindowEvent(evtCtx
) )
2159 void wxWindowMac::TriggerScrollEvent( wxEventType
WXUNUSED(scrollEvent
) )
2163 Rect
wxMacGetBoundsForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
2167 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
2168 Rect bounds
= { y
, x
, y
+ h
, x
+ w
};
2173 bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec
) )
2178 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF event
)
2180 #if wxOSX_USE_COCOA_OR_CARBON
2181 if ( OSXHandleClicked( GetEventTime((EventRef
)event
) ) )
2184 return eventNotHandledErr
;
2190 bool wxWindowMac::Reparent(wxWindowBase
*newParentBase
)
2192 wxWindowMac
*newParent
= (wxWindowMac
*)newParentBase
;
2193 if ( !wxWindowBase::Reparent(newParent
) )
2196 m_peer
->RemoveFromParent();
2197 m_peer
->Embed( GetParent()->GetPeer() );
2201 bool wxWindowMac::SetTransparent(wxByte alpha
)
2203 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT
);
2205 if ( alpha
!= m_macAlpha
)
2207 m_macAlpha
= alpha
;
2214 bool wxWindowMac::CanSetTransparent()
2219 wxByte
wxWindowMac::GetTransparent() const
2224 bool wxWindowMac::IsShownOnScreen() const
2226 if ( m_peer
&& m_peer
->IsOk() )
2228 bool peerVis
= m_peer
->IsVisible();
2229 bool wxVis
= wxWindowBase::IsShownOnScreen();
2230 if( peerVis
!= wxVis
)
2232 // CS : put a breakpoint here to investigate differences
2233 // between native an wx visibilities
2234 // the only place where I've encountered them until now
2235 // are the hiding/showing sequences where the vis-changed event is
2236 // first sent to the innermost control, while wx does things
2237 // from the outmost control
2238 wxVis
= wxWindowBase::IsShownOnScreen();
2242 return m_peer
->IsVisible();
2244 return wxWindowBase::IsShownOnScreen();
2247 bool wxWindowMac::OSXHandleKeyEvent( wxKeyEvent
& event
)
2249 bool handled
= HandleWindowEvent( event
) ;
2250 if ( handled
&& event
.GetSkipped() )
2254 if ( !handled
&& event
.GetEventType() == wxEVT_KEY_DOWN
)
2256 wxWindow
*ancestor
= this;
2259 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
2262 wxEvtHandler
* const handler
= ancestor
->GetEventHandler();
2264 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
2265 handled
= handler
->ProcessEvent( command_event
);
2269 // accelerators can also be used with buttons, try them too
2270 command_event
.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED
);
2271 handled
= handler
->ProcessEvent( command_event
);
2277 if (ancestor
->IsTopLevel())
2280 ancestor
= ancestor
->GetParent();
2283 #endif // wxUSE_ACCEL
2292 WX_DECLARE_HASH_MAP(WXWidget
, wxWidgetImpl
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
2294 static MacControlMap wxWinMacControlList
;
2296 wxWindowMac
*wxFindWindowFromWXWidget(WXWidget inControl
)
2298 wxWidgetImpl
* impl
= wxWidgetImpl::FindFromWXWidget( inControl
);
2300 return impl
->GetWXPeer();
2305 wxWidgetImpl
*wxWidgetImpl::FindFromWXWidget(WXWidget inControl
)
2307 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
2309 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
2312 void wxWidgetImpl::Associate(WXWidget inControl
, wxWidgetImpl
*impl
)
2314 // adding NULL ControlRef is (first) surely a result of an error and
2315 // (secondly) breaks native event processing
2316 wxCHECK_RET( inControl
!= (WXWidget
) NULL
, wxT("attempt to add a NULL WXWidget to control map") );
2318 wxWinMacControlList
[inControl
] = impl
;
2321 void wxWidgetImpl::RemoveAssociations(wxWidgetImpl
* impl
)
2323 // iterate over all the elements in the class
2324 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
2325 // we should go on...
2331 MacControlMap::iterator it
;
2332 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
2334 if ( it
->second
== impl
)
2336 wxWinMacControlList
.erase(it
);
2344 IMPLEMENT_ABSTRACT_CLASS( wxWidgetImpl
, wxObject
)
2346 wxWidgetImpl::wxWidgetImpl( wxWindowMac
* peer
, bool isRootControl
)
2349 m_isRootControl
= isRootControl
;
2353 wxWidgetImpl::wxWidgetImpl()
2358 wxWidgetImpl::~wxWidgetImpl()
2362 void wxWidgetImpl::Init()
2364 m_isRootControl
= false;
2366 m_needsFocusRect
= false;
2367 m_needsFrame
= true;
2370 void wxWidgetImpl::SetNeedsFocusRect( bool needs
)
2372 m_needsFocusRect
= needs
;
2375 bool wxWidgetImpl::NeedsFocusRect() const
2377 return m_needsFocusRect
;
2380 void wxWidgetImpl::SetNeedsFrame( bool needs
)
2382 m_needsFrame
= needs
;
2385 bool wxWidgetImpl::NeedsFrame() const
2387 return m_needsFrame
;