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 void wxWindowMac::SetFocus()
410 if ( !AcceptsFocus() )
413 wxWindow
* former
= FindFocus() ;
414 if ( former
== this )
420 void wxWindowMac::DoCaptureMouse()
422 wxApp::s_captureWindow
= (wxWindow
*) this ;
423 m_peer
->CaptureMouse() ;
426 wxWindow
* wxWindowBase::GetCapture()
428 return wxApp::s_captureWindow
;
431 void wxWindowMac::DoReleaseMouse()
433 wxApp::s_captureWindow
= NULL
;
435 m_peer
->ReleaseMouse() ;
438 #if wxUSE_DRAG_AND_DROP
440 void wxWindowMac::SetDropTarget(wxDropTarget
*pDropTarget
)
444 m_dropTarget
= pDropTarget
;
445 if ( m_dropTarget
!= NULL
)
453 // Old-style File Manager Drag & Drop
454 void wxWindowMac::DragAcceptFiles(bool WXUNUSED(accept
))
459 // From a wx position / size calculate the appropriate size of the native control
461 bool wxWindowMac::MacGetBoundsForControl(
465 int& w
, int& h
, bool adjustOrigin
) const
467 // the desired size, minus the border pixels gives the correct size of the control
471 w
= WidthDefault( size
.x
);
472 h
= HeightDefault( size
.y
);
474 x
+= MacGetLeftBorderSize() ;
475 y
+= MacGetTopBorderSize() ;
476 w
-= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
477 h
-= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
480 AdjustForParentClientOrigin( x
, y
) ;
482 // this is in window relative coordinate, as this parent may have a border, its physical position is offset by this border
483 if ( GetParent() && !GetParent()->IsTopLevel() )
485 x
-= GetParent()->MacGetLeftBorderSize() ;
486 y
-= GetParent()->MacGetTopBorderSize() ;
492 // Get window size (not client size)
493 void wxWindowMac::DoGetSize(int *x
, int *y
) const
496 m_peer
->GetSize( width
, height
);
499 *x
= width
+ MacGetLeftBorderSize() + MacGetRightBorderSize() ;
501 *y
= height
+ MacGetTopBorderSize() + MacGetBottomBorderSize() ;
504 // get the position of the bounds of this window in client coordinates of its parent
505 void wxWindowMac::DoGetPosition(int *x
, int *y
) const
509 m_peer
->GetPosition( x1
, y1
) ;
511 // get the wx window position from the native one
512 x1
-= MacGetLeftBorderSize() ;
513 y1
-= MacGetTopBorderSize() ;
517 wxWindow
*parent
= GetParent();
520 // we must first adjust it to be in window coordinates of the parent,
521 // as otherwise it gets lost by the ClientAreaOrigin fix
522 x1
+= parent
->MacGetLeftBorderSize() ;
523 y1
+= parent
->MacGetTopBorderSize() ;
525 // and now to client coordinates
526 wxPoint
pt(parent
->GetClientAreaOrigin());
538 void wxWindowMac::DoScreenToClient(int *x
, int *y
) const
540 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
541 wxCHECK_RET( tlw
, wxT("TopLevel Window missing") ) ;
542 tlw
->GetNonOwnedPeer()->ScreenToWindow( x
, y
);
543 MacRootWindowToWindow( x
, y
) ;
545 wxPoint origin
= GetClientAreaOrigin() ;
552 void wxWindowMac::DoClientToScreen(int *x
, int *y
) const
554 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow() ;
555 wxCHECK_RET( tlw
, wxT("TopLevel window missing") ) ;
557 wxPoint origin
= GetClientAreaOrigin() ;
563 MacWindowToRootWindow( x
, y
) ;
564 tlw
->GetNonOwnedPeer()->WindowToScreen( x
, y
);
567 void wxWindowMac::MacClientToRootWindow( int *x
, int *y
) const
569 wxPoint origin
= GetClientAreaOrigin() ;
575 MacWindowToRootWindow( x
, y
) ;
578 void wxWindowMac::MacWindowToRootWindow( int *x
, int *y
) const
589 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
592 pt
.x
-= MacGetLeftBorderSize() ;
593 pt
.y
-= MacGetTopBorderSize() ;
594 wxWidgetImpl::Convert( &pt
, m_peer
, top
->m_peer
) ;
604 void wxWindowMac::MacRootWindowToWindow( int *x
, int *y
) const
615 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
618 wxWidgetImpl::Convert( &pt
, top
->m_peer
, m_peer
) ;
619 pt
.x
+= MacGetLeftBorderSize() ;
620 pt
.y
+= MacGetTopBorderSize() ;
630 wxSize
wxWindowMac::DoGetSizeFromClientSize( const wxSize
& size
) const
632 wxSize sizeTotal
= size
;
634 int innerwidth
, innerheight
;
636 int outerwidth
, outerheight
;
638 m_peer
->GetContentArea( left
, top
, innerwidth
, innerheight
);
639 m_peer
->GetSize( outerwidth
, outerheight
);
641 sizeTotal
.x
+= outerwidth
-innerwidth
;
642 sizeTotal
.y
+= outerheight
-innerheight
;
644 sizeTotal
.x
+= MacGetLeftBorderSize() + MacGetRightBorderSize() ;
645 sizeTotal
.y
+= MacGetTopBorderSize() + MacGetBottomBorderSize() ;
650 // Get size *available for subwindows* i.e. excluding menu bar etc.
651 void wxWindowMac::DoGetClientSize( int *x
, int *y
) const
657 m_peer
->GetContentArea( left
, top
, ww
, hh
);
659 if (m_hScrollBar
&& m_hScrollBar
->IsShown() )
660 hh
-= m_hScrollBar
->GetSize().y
;
662 if (m_vScrollBar
&& m_vScrollBar
->IsShown() )
663 ww
-= m_vScrollBar
->GetSize().x
;
671 bool wxWindowMac::SetCursor(const wxCursor
& cursor
)
673 if (m_cursor
.IsSameAs(cursor
))
678 if ( ! wxWindowBase::SetCursor( *wxSTANDARD_CURSOR
) )
683 if ( ! wxWindowBase::SetCursor( cursor
) )
687 wxASSERT_MSG( m_cursor
.Ok(),
688 wxT("cursor must be valid after call to the base version"));
690 if ( GetPeer() != NULL
)
691 GetPeer()->SetCursor( m_cursor
);
697 bool wxWindowMac::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
699 #ifndef __WXUNIVERSAL__
700 menu
->SetInvokingWindow((wxWindow
*)this);
703 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
705 wxPoint mouse
= wxGetMousePosition();
711 ClientToScreen( &x
, &y
) ;
713 menu
->GetPeer()->PopUp(this, x
, y
);
714 menu
->SetInvokingWindow( NULL
);
717 // actually this shouldn't be called, because universal is having its own implementation
723 // ----------------------------------------------------------------------------
725 // ----------------------------------------------------------------------------
729 void wxWindowMac::DoSetToolTip(wxToolTip
*tooltip
)
731 wxWindowBase::DoSetToolTip(tooltip
);
734 m_tooltip
->SetWindow(this);
739 void wxWindowMac::MacInvalidateBorders()
741 if ( m_peer
== NULL
)
744 bool vis
= IsShownOnScreen() ;
748 int outerBorder
= MacGetLeftBorderSize() ;
750 if ( m_peer
->NeedsFocusRect() )
753 if ( outerBorder
== 0 )
756 // now we know that we have something to do at all
760 m_peer
->GetSize( tw
, th
);
761 m_peer
->GetPosition( tx
, ty
);
763 wxRect
leftupdate( tx
-outerBorder
,ty
,outerBorder
,th
);
764 wxRect
rightupdate( tx
+tw
, ty
, outerBorder
, th
);
765 wxRect
topupdate( tx
-outerBorder
, ty
-outerBorder
, tw
+ 2 * outerBorder
, outerBorder
);
766 wxRect
bottomupdate( tx
-outerBorder
, ty
+ th
, tw
+ 2 * outerBorder
, outerBorder
);
769 GetParent()->m_peer
->SetNeedsDisplay(&leftupdate
);
770 GetParent()->m_peer
->SetNeedsDisplay(&rightupdate
);
771 GetParent()->m_peer
->SetNeedsDisplay(&topupdate
);
772 GetParent()->m_peer
->SetNeedsDisplay(&bottomupdate
);
776 void wxWindowMac::DoMoveWindow(int x
, int y
, int width
, int height
)
778 // this is never called for a toplevel window, so we know we have a parent
779 int former_x
, former_y
, former_w
, former_h
;
781 // Get true coordinates of former position
782 DoGetPosition( &former_x
, &former_y
) ;
783 DoGetSize( &former_w
, &former_h
) ;
785 wxWindow
*parent
= GetParent();
788 wxPoint
pt(parent
->GetClientAreaOrigin());
793 int actualWidth
= width
;
794 int actualHeight
= height
;
799 // min and max sizes are only for sizers, not for explicit size setting
800 if ((m_minWidth
!= -1) && (actualWidth
< m_minWidth
))
801 actualWidth
= m_minWidth
;
802 if ((m_minHeight
!= -1) && (actualHeight
< m_minHeight
))
803 actualHeight
= m_minHeight
;
804 if ((m_maxWidth
!= -1) && (actualWidth
> m_maxWidth
))
805 actualWidth
= m_maxWidth
;
806 if ((m_maxHeight
!= -1) && (actualHeight
> m_maxHeight
))
807 actualHeight
= m_maxHeight
;
810 bool doMove
= false, doResize
= false ;
812 if ( actualX
!= former_x
|| actualY
!= former_y
)
815 if ( actualWidth
!= former_w
|| actualHeight
!= former_h
)
818 if ( doMove
|| doResize
)
820 // as the borders are drawn outside the native control, we adjust now
822 wxRect
bounds( wxPoint( actualX
+ MacGetLeftBorderSize() ,actualY
+ MacGetTopBorderSize() ),
823 wxSize( actualWidth
- (MacGetLeftBorderSize() + MacGetRightBorderSize()) ,
824 actualHeight
- (MacGetTopBorderSize() + MacGetBottomBorderSize()) ) ) ;
826 if ( parent
&& !parent
->IsTopLevel() )
828 bounds
.Offset( -parent
->MacGetLeftBorderSize(), -parent
->MacGetTopBorderSize() );
831 MacInvalidateBorders() ;
833 m_cachedClippedRectValid
= false ;
835 m_peer
->Move( bounds
.x
, bounds
.y
, bounds
.width
, bounds
.height
);
837 wxWindowMac::MacSuperChangedPosition() ; // like this only children will be notified
839 MacInvalidateBorders() ;
841 MacRepositionScrollBars() ;
844 wxPoint
point(actualX
, actualY
);
845 wxMoveEvent
event(point
, m_windowId
);
846 event
.SetEventObject(this);
847 HandleWindowEvent(event
) ;
852 MacRepositionScrollBars() ;
853 wxSize
size(actualWidth
, actualHeight
);
854 wxSizeEvent
event(size
, m_windowId
);
855 event
.SetEventObject(this);
856 HandleWindowEvent(event
);
861 wxSize
wxWindowMac::DoGetBestSize() const
863 if ( m_macIsUserPane
|| IsTopLevel() )
865 return wxWindowBase::DoGetBestSize() ;
871 m_peer
->GetBestRect(&r
);
873 if ( r
.GetWidth() == 0 && r
.GetHeight() == 0 )
880 if ( IsKindOf( CLASSINFO( wxScrollBar
) ) )
885 else if ( IsKindOf( CLASSINFO( wxSpinButton
) ) )
892 // return wxWindowBase::DoGetBestSize() ;
896 int bestWidth
= r
.width
+ MacGetLeftBorderSize() +
897 MacGetRightBorderSize();
898 int bestHeight
= r
.height
+ MacGetTopBorderSize() +
899 MacGetBottomBorderSize();
900 if ( bestHeight
< 10 )
903 return wxSize(bestWidth
, bestHeight
);
907 // set the size of the window: if the dimensions are positive, just use them,
908 // but if any of them is equal to -1, it means that we must find the value for
909 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
910 // which case -1 is a valid value for x and y)
912 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
913 // the width/height to best suit our contents, otherwise we reuse the current
915 void wxWindowMac::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
917 // get the current size and position...
918 int currentX
, currentY
;
919 int currentW
, currentH
;
921 GetPosition(¤tX
, ¤tY
);
922 GetSize(¤tW
, ¤tH
);
924 // ... and don't do anything (avoiding flicker) if it's already ok
925 if ( x
== currentX
&& y
== currentY
&&
926 width
== currentW
&& height
== currentH
&& ( height
!= -1 && width
!= -1 ) )
929 MacRepositionScrollBars() ; // we might have a real position shift
931 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
933 wxSizeEvent
event( wxSize(width
,height
), GetId() );
934 event
.SetEventObject( this );
935 HandleWindowEvent( event
);
941 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
943 if ( x
== wxDefaultCoord
)
945 if ( y
== wxDefaultCoord
)
949 AdjustForParentClientOrigin( x
, y
, sizeFlags
);
951 wxSize size
= wxDefaultSize
;
952 if ( width
== wxDefaultCoord
)
954 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
956 size
= DoGetBestSize();
961 // just take the current one
966 if ( height
== wxDefaultCoord
)
968 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
970 if ( size
.x
== wxDefaultCoord
)
971 size
= DoGetBestSize();
972 // else: already called DoGetBestSize() above
978 // just take the current one
983 DoMoveWindow( x
, y
, width
, height
);
986 wxPoint
wxWindowMac::GetClientAreaOrigin() const
988 int left
,top
,width
,height
;
989 m_peer
->GetContentArea( left
, top
, width
, height
);
990 return wxPoint( left
+ MacGetLeftBorderSize() , top
+ MacGetTopBorderSize() );
993 void wxWindowMac::DoSetClientSize(int clientwidth
, int clientheight
)
995 if ( clientwidth
!= wxDefaultCoord
|| clientheight
!= wxDefaultCoord
)
997 int currentclientwidth
, currentclientheight
;
998 int currentwidth
, currentheight
;
1000 GetClientSize( ¤tclientwidth
, ¤tclientheight
) ;
1001 GetSize( ¤twidth
, ¤theight
) ;
1003 DoSetSize( wxDefaultCoord
, wxDefaultCoord
, currentwidth
+ clientwidth
- currentclientwidth
,
1004 currentheight
+ clientheight
- currentclientheight
, wxSIZE_USE_EXISTING
) ;
1008 void wxWindowMac::SetLabel(const wxString
& title
)
1012 if ( m_peer
&& m_peer
->IsOk() && !(IsKindOf( CLASSINFO(wxButton
) ) && GetId() == wxID_HELP
) )
1013 m_peer
->SetLabel( wxStripMenuCodes(m_label
, wxStrip_Mnemonics
), GetFont().GetEncoding() ) ;
1015 // do not trigger refreshes upon invisible and possible partly created objects
1016 if ( IsShownOnScreen() )
1020 wxString
wxWindowMac::GetLabel() const
1025 bool wxWindowMac::Show(bool show
)
1027 if ( !wxWindowBase::Show(show
) )
1031 m_peer
->SetVisibility( show
) ;
1036 void wxWindowMac::DoEnable(bool enable
)
1038 m_peer
->Enable( enable
) ;
1042 // status change notifications
1045 void wxWindowMac::MacVisibilityChanged()
1049 void wxWindowMac::MacHiliteChanged()
1053 void wxWindowMac::MacEnabledStateChanged()
1055 OnEnabled( m_peer
->IsEnabled() );
1059 // status queries on the inherited window's state
1062 bool wxWindowMac::MacIsReallyEnabled()
1064 return m_peer
->IsEnabled() ;
1067 bool wxWindowMac::MacIsReallyHilited()
1069 #if wxOSX_USE_CARBON
1070 return m_peer
->IsActive();
1072 return true; // TODO
1076 int wxWindowMac::GetCharHeight() const
1079 GetTextExtent( wxT("g") , NULL
, &height
, NULL
, NULL
, NULL
);
1084 int wxWindowMac::GetCharWidth() const
1087 GetTextExtent( wxT("g") , &width
, NULL
, NULL
, NULL
, NULL
);
1092 void wxWindowMac::DoGetTextExtent(const wxString
& str
,
1095 int *externalLeading
,
1096 const wxFont
*theFont
) const
1098 const wxFont
*fontToUse
= theFont
;
1102 tempFont
= GetFont();
1103 fontToUse
= &tempFont
;
1106 wxGraphicsContext
* ctx
= wxGraphicsContext::Create();
1107 ctx
->SetFont( *fontToUse
, *wxBLACK
);
1109 wxDouble h
, d
, e
, w
;
1110 ctx
->GetTextExtent( str
, &w
, &h
, &d
, &e
);
1114 if ( externalLeading
)
1115 *externalLeading
= (wxCoord
)(e
+0.5);
1117 *descent
= (wxCoord
)(d
+0.5);
1119 *x
= (wxCoord
)(w
+0.5);
1121 *y
= (wxCoord
)(h
+0.5);
1125 * Rect is given in client coordinates, for further reading, read wxTopLevelWindowMac::InvalidateRect
1126 * we always intersect with the entire window, not only with the client area
1129 void wxWindowMac::Refresh(bool WXUNUSED(eraseBack
), const wxRect
*rect
)
1131 if ( m_peer
== NULL
)
1134 if ( !IsShownOnScreen() )
1137 m_peer
->SetNeedsDisplay( rect
) ;
1140 void wxWindowMac::DoFreeze()
1142 #if wxOSX_USE_CARBON
1143 if ( m_peer
&& m_peer
->IsOk() )
1144 m_peer
->SetDrawingEnabled( false ) ;
1148 void wxWindowMac::DoThaw()
1150 #if wxOSX_USE_CARBON
1151 if ( m_peer
&& m_peer
->IsOk() )
1153 m_peer
->SetDrawingEnabled( true ) ;
1154 m_peer
->InvalidateWithChildren() ;
1159 wxWindow
*wxGetActiveWindow()
1161 // actually this is a windows-only concept
1165 // Coordinates relative to the window
1166 void wxWindowMac::WarpPointer(int WXUNUSED(x_pos
), int WXUNUSED(y_pos
))
1168 // We really don't move the mouse programmatically under Mac.
1171 void wxWindowMac::OnEraseBackground(wxEraseEvent
& event
)
1173 if ( MacGetTopLevelWindow() == NULL
)
1176 #if TARGET_API_MAC_OSX
1177 if ( !m_backgroundColour.Ok() || GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT )
1183 if ( GetBackgroundStyle() == wxBG_STYLE_COLOUR
)
1185 event
.GetDC()->Clear() ;
1187 else if ( GetBackgroundStyle() == wxBG_STYLE_CUSTOM
)
1189 // don't skip the event here, custom background means that the app
1190 // is drawing it itself in its OnPaint(), so don't draw it at all
1191 // now to avoid flicker
1199 void wxWindowMac::OnNcPaint( wxNcPaintEvent
& event
)
1204 int wxWindowMac::GetScrollPos(int orient
) const
1206 if ( orient
== wxHORIZONTAL
)
1209 return m_hScrollBar
->GetThumbPosition() ;
1214 return m_vScrollBar
->GetThumbPosition() ;
1220 // This now returns the whole range, not just the number
1221 // of positions that we can scroll.
1222 int wxWindowMac::GetScrollRange(int orient
) const
1224 if ( orient
== wxHORIZONTAL
)
1227 return m_hScrollBar
->GetRange() ;
1232 return m_vScrollBar
->GetRange() ;
1238 int wxWindowMac::GetScrollThumb(int orient
) const
1240 if ( orient
== wxHORIZONTAL
)
1243 return m_hScrollBar
->GetThumbSize() ;
1248 return m_vScrollBar
->GetThumbSize() ;
1254 void wxWindowMac::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
1256 if ( orient
== wxHORIZONTAL
)
1259 m_hScrollBar
->SetThumbPosition( pos
) ;
1264 m_vScrollBar
->SetThumbPosition( pos
) ;
1269 wxWindowMac::AlwaysShowScrollbars(bool hflag
, bool vflag
)
1271 bool needVisibilityUpdate
= false;
1273 if ( m_hScrollBarAlwaysShown
!= hflag
)
1275 m_hScrollBarAlwaysShown
= hflag
;
1276 needVisibilityUpdate
= true;
1279 if ( m_vScrollBarAlwaysShown
!= vflag
)
1281 m_vScrollBarAlwaysShown
= vflag
;
1282 needVisibilityUpdate
= true;
1285 if ( needVisibilityUpdate
)
1286 DoUpdateScrollbarVisibility();
1290 // we draw borders and grow boxes, are already set up and clipped in the current port / cgContextRef
1291 // our own window origin is at leftOrigin/rightOrigin
1294 void wxWindowMac::MacPaintGrowBox()
1299 if ( MacHasScrollBarCorner() )
1301 CGContextRef cgContext
= (CGContextRef
) MacGetCGContextRef() ;
1302 wxASSERT( cgContext
) ;
1306 m_peer
->GetSize( tw
, th
);
1307 m_peer
->GetPosition( tx
, ty
);
1309 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1312 int size
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1313 CGRect cgrect
= CGRectMake( rect
.right
- size
, rect
.bottom
- size
, size
, size
) ;
1314 CGContextSaveGState( cgContext
);
1316 if ( m_backgroundColour
.Ok() )
1318 CGContextSetFillColorWithColor( cgContext
, m_backgroundColour
.GetCGColor() );
1322 CGContextSetRGBFillColor( cgContext
, (CGFloat
) 1.0, (CGFloat
)1.0 ,(CGFloat
) 1.0 , (CGFloat
)1.0 );
1324 CGContextFillRect( cgContext
, cgrect
);
1325 CGContextRestoreGState( cgContext
);
1329 void wxWindowMac::MacPaintBorders( int WXUNUSED(leftOrigin
) , int WXUNUSED(rightOrigin
) )
1334 bool hasFocus
= m_peer
->NeedsFocusRect() && m_peer
->HasFocus() ;
1336 // back to the surrounding frame rectangle
1339 m_peer
->GetSize( tw
, th
);
1340 m_peer
->GetPosition( tx
, ty
);
1342 Rect rect
= { ty
,tx
, ty
+th
, tx
+tw
};
1344 #if wxOSX_USE_COCOA_OR_CARBON
1346 InsetRect( &rect
, -1 , -1 ) ;
1349 CGRect cgrect
= CGRectMake( rect
.left
, rect
.top
, rect
.right
- rect
.left
,
1350 rect
.bottom
- rect
.top
) ;
1352 CGContextRef cgContext
= (CGContextRef
) GetParent()->MacGetCGContextRef() ;
1353 wxASSERT( cgContext
) ;
1355 if ( m_peer
->NeedsFrame() )
1357 HIThemeFrameDrawInfo info
;
1358 memset( &info
, 0 , sizeof(info
) ) ;
1362 info
.state
= IsEnabled() ? kThemeStateActive
: kThemeStateInactive
;
1363 info
.isFocused
= hasFocus
;
1365 if ( HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
) )
1367 info
.kind
= kHIThemeFrameTextFieldSquare
;
1368 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1370 else if ( HasFlag(wxSIMPLE_BORDER
) )
1372 info
.kind
= kHIThemeFrameListBox
;
1373 HIThemeDrawFrame( &cgrect
, &info
, cgContext
, kHIThemeOrientationNormal
) ;
1379 HIThemeDrawFocusRect( &cgrect
, true , cgContext
, kHIThemeOrientationNormal
) ;
1382 #endif // wxOSX_USE_COCOA_OR_CARBON
1385 void wxWindowMac::RemoveChild( wxWindowBase
*child
)
1387 if ( child
== m_hScrollBar
)
1388 m_hScrollBar
= NULL
;
1389 if ( child
== m_vScrollBar
)
1390 m_vScrollBar
= NULL
;
1392 wxWindowBase::RemoveChild( child
) ;
1395 void wxWindowMac::DoUpdateScrollbarVisibility()
1397 bool triggerSizeEvent
= false;
1401 bool showHScrollBar
= m_hScrollBarAlwaysShown
|| m_hScrollBar
->IsNeeded();
1403 if ( m_hScrollBar
->IsShown() != showHScrollBar
)
1405 m_hScrollBar
->Show( showHScrollBar
);
1406 triggerSizeEvent
= true;
1412 bool showVScrollBar
= m_vScrollBarAlwaysShown
|| m_vScrollBar
->IsNeeded();
1414 if ( m_vScrollBar
->IsShown() != showVScrollBar
)
1416 m_vScrollBar
->Show( showVScrollBar
) ;
1417 triggerSizeEvent
= true;
1421 MacRepositionScrollBars() ;
1422 if ( triggerSizeEvent
)
1424 wxSizeEvent
event(GetSize(), m_windowId
);
1425 event
.SetEventObject(this);
1426 HandleWindowEvent(event
);
1430 // New function that will replace some of the above.
1431 void wxWindowMac::SetScrollbar(int orient
, int pos
, int thumb
,
1432 int range
, bool refresh
)
1434 if ( orient
== wxHORIZONTAL
&& m_hScrollBar
)
1435 m_hScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1436 else if ( orient
== wxVERTICAL
&& m_vScrollBar
)
1437 m_vScrollBar
->SetScrollbar(pos
, thumb
, range
, thumb
, refresh
);
1439 DoUpdateScrollbarVisibility();
1442 // Does a physical scroll
1443 void wxWindowMac::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
1445 if ( dx
== 0 && dy
== 0 )
1448 int width
, height
;
1449 GetClientSize( &width
, &height
) ;
1452 wxRect
scrollrect( MacGetLeftBorderSize() , MacGetTopBorderSize() , width
, height
) ;
1454 scrollrect
.Intersect( *rect
) ;
1455 // as the native control might be not a 0/0 wx window coordinates, we have to offset
1456 scrollrect
.Offset( -MacGetLeftBorderSize() , -MacGetTopBorderSize() ) ;
1458 m_peer
->ScrollRect( &scrollrect
, dx
, dy
);
1463 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1465 child
= node
->GetData();
1468 if (child
== m_vScrollBar
)
1470 if (child
== m_hScrollBar
)
1472 if (child
->IsTopLevel())
1475 child
->GetPosition( &x
, &y
);
1476 child
->GetSize( &w
, &h
);
1479 wxRect
rc( x
, y
, w
, h
);
1480 if (rect
->Intersects( rc
))
1481 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1485 child
->SetSize( x
+ dx
, y
+ dy
, w
, h
, wxSIZE_AUTO
|wxSIZE_ALLOW_MINUS_ONE
);
1490 void wxWindowMac::MacOnScroll( wxScrollEvent
&event
)
1492 if ( event
.GetEventObject() == m_vScrollBar
|| event
.GetEventObject() == m_hScrollBar
)
1494 wxScrollWinEvent wevent
;
1495 wevent
.SetPosition(event
.GetPosition());
1496 wevent
.SetOrientation(event
.GetOrientation());
1497 wevent
.SetEventObject(this);
1499 if (event
.GetEventType() == wxEVT_SCROLL_TOP
)
1500 wevent
.SetEventType( wxEVT_SCROLLWIN_TOP
);
1501 else if (event
.GetEventType() == wxEVT_SCROLL_BOTTOM
)
1502 wevent
.SetEventType( wxEVT_SCROLLWIN_BOTTOM
);
1503 else if (event
.GetEventType() == wxEVT_SCROLL_LINEUP
)
1504 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEUP
);
1505 else if (event
.GetEventType() == wxEVT_SCROLL_LINEDOWN
)
1506 wevent
.SetEventType( wxEVT_SCROLLWIN_LINEDOWN
);
1507 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEUP
)
1508 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEUP
);
1509 else if (event
.GetEventType() == wxEVT_SCROLL_PAGEDOWN
)
1510 wevent
.SetEventType( wxEVT_SCROLLWIN_PAGEDOWN
);
1511 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBTRACK
)
1512 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBTRACK
);
1513 else if (event
.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
)
1514 wevent
.SetEventType( wxEVT_SCROLLWIN_THUMBRELEASE
);
1516 HandleWindowEvent(wevent
);
1520 wxWindow
*wxWindowBase::DoFindFocus()
1522 return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
1525 void wxWindowMac::OnInternalIdle()
1527 // This calls the UI-update mechanism (querying windows for
1528 // menu/toolbar/control state information)
1529 if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
1530 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1533 // Raise the window to the top of the Z order
1534 void wxWindowMac::Raise()
1539 // Lower the window to the bottom of the Z order
1540 void wxWindowMac::Lower()
1545 // static wxWindow *gs_lastWhich = NULL;
1547 bool wxWindowMac::MacSetupCursor( const wxPoint
& pt
)
1549 // first trigger a set cursor event
1551 wxPoint clientorigin
= GetClientAreaOrigin() ;
1552 wxSize clientsize
= GetClientSize() ;
1554 if ( wxRect2DInt( clientorigin
.x
, clientorigin
.y
, clientsize
.x
, clientsize
.y
).Contains( wxPoint2DInt( pt
) ) )
1556 wxSetCursorEvent
event( pt
.x
, pt
.y
);
1558 bool processedEvtSetCursor
= HandleWindowEvent(event
);
1559 if ( processedEvtSetCursor
&& event
.HasCursor() )
1561 cursor
= event
.GetCursor() ;
1565 // the test for processedEvtSetCursor is here to prevent using m_cursor
1566 // if the user code caught EVT_SET_CURSOR() and returned nothing from
1567 // it - this is a way to say that our cursor shouldn't be used for this
1569 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
1572 if ( !wxIsBusy() && !GetParent() )
1573 cursor
= *wxSTANDARD_CURSOR
;
1577 cursor
.MacInstall() ;
1580 return cursor
.Ok() ;
1583 wxString
wxWindowMac::MacGetToolTipString( wxPoint
&WXUNUSED(pt
) )
1587 return m_tooltip
->GetTip() ;
1590 return wxEmptyString
;
1593 void wxWindowMac::ClearBackground()
1599 void wxWindowMac::Update()
1601 wxNonOwnedWindow
* top
= MacGetTopLevelWindow();
1606 wxNonOwnedWindow
* wxWindowMac::MacGetTopLevelWindow() const
1608 wxWindowMac
*iter
= (wxWindowMac
*)this ;
1612 if ( iter
->IsTopLevel() )
1614 wxTopLevelWindow
* toplevel
= wxDynamicCast(iter
,wxTopLevelWindow
);
1618 wxPopupWindow
* popupwin
= wxDynamicCast(iter
,wxPopupWindow
);
1623 iter
= iter
->GetParent() ;
1629 const wxRect
& wxWindowMac::MacGetClippedClientRect() const
1631 MacUpdateClippedRects() ;
1633 return m_cachedClippedClientRect
;
1636 const wxRect
& wxWindowMac::MacGetClippedRect() const
1638 MacUpdateClippedRects() ;
1640 return m_cachedClippedRect
;
1643 const wxRect
&wxWindowMac:: MacGetClippedRectWithOuterStructure() const
1645 MacUpdateClippedRects() ;
1647 return m_cachedClippedRectWithOuterStructure
;
1650 const wxRegion
& wxWindowMac::MacGetVisibleRegion( bool includeOuterStructures
)
1652 static wxRegion emptyrgn
;
1654 if ( !m_isBeingDeleted
&& IsShownOnScreen() )
1656 MacUpdateClippedRects() ;
1657 if ( includeOuterStructures
)
1658 return m_cachedClippedRegionWithOuterStructure
;
1660 return m_cachedClippedRegion
;
1668 void wxWindowMac::MacUpdateClippedRects() const
1670 #if wxOSX_USE_CARBON
1671 if ( m_cachedClippedRectValid
)
1674 // includeOuterStructures is true if we try to draw somthing like a focus ring etc.
1675 // also a window dc uses this, in this case we only clip in the hierarchy for hard
1676 // borders like a scrollwindow, splitter etc otherwise we end up in a paranoia having
1677 // to add focus borders everywhere
1679 Rect rIncludingOuterStructures
;
1683 m_peer
->GetSize( tw
, th
);
1684 m_peer
->GetPosition( tx
, ty
);
1686 Rect r
= { ty
,tx
, ty
+th
, tx
+tw
};
1688 r
.left
-= MacGetLeftBorderSize() ;
1689 r
.top
-= MacGetTopBorderSize() ;
1690 r
.bottom
+= MacGetBottomBorderSize() ;
1691 r
.right
+= MacGetRightBorderSize() ;
1698 rIncludingOuterStructures
= r
;
1699 InsetRect( &rIncludingOuterStructures
, -4 , -4 ) ;
1701 wxRect cl
= GetClientRect() ;
1702 Rect rClient
= { cl
.y
, cl
.x
, cl
.y
+ cl
.height
, cl
.x
+ cl
.width
} ;
1706 const wxWindow
* child
= (wxWindow
*) this ;
1707 const wxWindow
* parent
= NULL
;
1709 while ( !child
->IsTopLevel() && ( parent
= child
->GetParent() ) != NULL
)
1711 if ( parent
->MacIsChildOfClientArea(child
) )
1713 size
= parent
->GetClientSize() ;
1714 wxPoint origin
= parent
->GetClientAreaOrigin() ;
1720 // this will be true for scrollbars, toolbars etc.
1721 size
= parent
->GetSize() ;
1722 y
= parent
->MacGetTopBorderSize() ;
1723 x
= parent
->MacGetLeftBorderSize() ;
1724 size
.x
-= parent
->MacGetLeftBorderSize() + parent
->MacGetRightBorderSize() ;
1725 size
.y
-= parent
->MacGetTopBorderSize() + parent
->MacGetBottomBorderSize() ;
1728 parent
->MacWindowToRootWindow( &x
, &y
) ;
1729 MacRootWindowToWindow( &x
, &y
) ;
1731 Rect rparent
= { y
, x
, y
+ size
.y
, x
+ size
.x
} ;
1733 // the wxwindow and client rects will always be clipped
1734 SectRect( &r
, &rparent
, &r
) ;
1735 SectRect( &rClient
, &rparent
, &rClient
) ;
1737 // the structure only at 'hard' borders
1738 if ( parent
->MacClipChildren() ||
1739 ( parent
->GetParent() && parent
->GetParent()->MacClipGrandChildren() ) )
1741 SectRect( &rIncludingOuterStructures
, &rparent
, &rIncludingOuterStructures
) ;
1747 m_cachedClippedRect
= wxRect( r
.left
, r
.top
, r
.right
- r
.left
, r
.bottom
- r
.top
) ;
1748 m_cachedClippedClientRect
= wxRect( rClient
.left
, rClient
.top
,
1749 rClient
.right
- rClient
.left
, rClient
.bottom
- rClient
.top
) ;
1750 m_cachedClippedRectWithOuterStructure
= wxRect(
1751 rIncludingOuterStructures
.left
, rIncludingOuterStructures
.top
,
1752 rIncludingOuterStructures
.right
- rIncludingOuterStructures
.left
,
1753 rIncludingOuterStructures
.bottom
- rIncludingOuterStructures
.top
) ;
1755 m_cachedClippedRegionWithOuterStructure
= wxRegion( m_cachedClippedRectWithOuterStructure
) ;
1756 m_cachedClippedRegion
= wxRegion( m_cachedClippedRect
) ;
1757 m_cachedClippedClientRegion
= wxRegion( m_cachedClippedClientRect
) ;
1759 m_cachedClippedRectValid
= true ;
1764 This function must not change the updatergn !
1766 bool wxWindowMac::MacDoRedraw( long time
)
1768 bool handled
= false ;
1770 wxRegion formerUpdateRgn
= m_updateRegion
;
1771 wxRegion clientUpdateRgn
= formerUpdateRgn
;
1773 wxSize sz
= GetClientSize() ;
1774 wxPoint origin
= GetClientAreaOrigin() ;
1776 clientUpdateRgn
.Intersect(origin
.x
, origin
.y
, origin
.x
+ sz
.x
, origin
.y
+ sz
.y
);
1778 // first send an erase event to the entire update area
1780 // for the toplevel window this really is the entire area
1781 // for all the others only their client area, otherwise they
1782 // might be drawing with full alpha and eg put blue into
1783 // the grow-box area of a scrolled window (scroll sample)
1784 wxDC
* dc
= new wxWindowDC(this);
1786 dc
->SetDeviceClippingRegion(formerUpdateRgn
);
1788 dc
->SetDeviceClippingRegion(clientUpdateRgn
);
1790 wxEraseEvent
eevent( GetId(), dc
);
1791 eevent
.SetEventObject( this );
1792 HandleWindowEvent( eevent
);
1798 // calculate a client-origin version of the update rgn and set m_updateRegion to that
1799 clientUpdateRgn
.Offset( -origin
.x
, -origin
.y
);
1800 m_updateRegion
= clientUpdateRgn
;
1802 if ( !m_updateRegion
.Empty() )
1804 // paint the window itself
1806 wxPaintEvent
event(GetId());
1807 event
.SetTimestamp(time
);
1808 event
.SetEventObject(this);
1809 handled
= HandleWindowEvent(event
);
1812 m_updateRegion
= formerUpdateRgn
;
1816 void wxWindowMac::MacPaintChildrenBorders()
1818 // now we cannot rely on having its borders drawn by a window itself, as it does not
1819 // get the updateRgn wide enough to always do so, so we do it from the parent
1820 // this would also be the place to draw any custom backgrounds for native controls
1821 // in Composited windowing
1822 wxPoint clientOrigin
= GetClientAreaOrigin() ;
1826 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst(); node
; node
= node
->GetNext())
1828 child
= node
->GetData();
1831 if (child
== m_vScrollBar
)
1833 if (child
== m_hScrollBar
)
1835 if (child
->IsTopLevel())
1837 if (!child
->IsShown())
1840 // only draw those in the update region (add a safety margin of 10 pixels for shadow effects
1842 child
->GetPosition( &x
, &y
);
1843 child
->GetSize( &w
, &h
);
1845 if ( m_updateRegion
.Contains(clientOrigin
.x
+x
-10, clientOrigin
.y
+y
-10, w
+20, h
+20) )
1847 // paint custom borders
1848 wxNcPaintEvent
eventNc( child
->GetId() );
1849 eventNc
.SetEventObject( child
);
1850 if ( !child
->HandleWindowEvent( eventNc
) )
1852 child
->MacPaintBorders(0, 0) ;
1859 WXWindow
wxWindowMac::MacGetTopLevelWindowRef() const
1861 wxNonOwnedWindow
* tlw
= MacGetTopLevelWindow();
1862 return tlw
? tlw
->GetWXWindow() : NULL
;
1865 bool wxWindowMac::MacHasScrollBarCorner() const
1867 /* Returns whether the scroll bars in a wxScrolledWindow should be
1868 * shortened. Scroll bars should be shortened if either:
1870 * - both scroll bars are visible, or
1872 * - there is a resize box in the parent frame's corner and this
1873 * window shares the bottom and right edge with the parent
1877 if ( m_hScrollBar
== NULL
&& m_vScrollBar
== NULL
)
1880 if ( ( m_hScrollBar
&& m_hScrollBar
->IsShown() )
1881 && ( m_vScrollBar
&& m_vScrollBar
->IsShown() ) )
1883 // Both scroll bars visible
1888 wxPoint thisWindowBottomRight
= GetScreenRect().GetBottomRight();
1890 for ( const wxWindow
*win
= (wxWindow
*)this; win
; win
= win
->GetParent() )
1892 const wxFrame
*frame
= wxDynamicCast( win
, wxFrame
) ;
1895 if ( frame
->GetWindowStyleFlag() & wxRESIZE_BORDER
)
1897 // Parent frame has resize handle
1898 wxPoint frameBottomRight
= frame
->GetScreenRect().GetBottomRight();
1900 // Note: allow for some wiggle room here as wxMac's
1901 // window rect calculations seem to be imprecise
1902 if ( abs( thisWindowBottomRight
.x
- frameBottomRight
.x
) <= 2
1903 && abs( thisWindowBottomRight
.y
- frameBottomRight
.y
) <= 2 )
1905 // Parent frame has resize handle and shares
1906 // right bottom corner
1911 // Parent frame has resize handle but doesn't
1912 // share right bottom corner
1918 // Parent frame doesn't have resize handle
1924 // No parent frame found
1929 void wxWindowMac::MacCreateScrollBars( long style
)
1931 wxASSERT_MSG( m_vScrollBar
== NULL
&& m_hScrollBar
== NULL
, wxT("attempt to create window twice") ) ;
1933 if ( style
& ( wxVSCROLL
| wxHSCROLL
) )
1935 int scrlsize
= MAC_SCROLLBAR_SIZE
;
1936 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
|| GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
1938 scrlsize
= MAC_SMALL_SCROLLBAR_SIZE
;
1941 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1: 0 ;
1943 GetClientSize( &width
, &height
) ;
1945 wxPoint
vPoint(width
- scrlsize
, 0) ;
1946 wxSize
vSize(scrlsize
, height
- adjust
) ;
1947 wxPoint
hPoint(0, height
- scrlsize
) ;
1948 wxSize
hSize(width
- adjust
, scrlsize
) ;
1950 // we have to set the min size to a smaller value, otherwise they cannot get smaller (InitialSize sets MinSize)
1951 if ( style
& wxVSCROLL
)
1953 m_vScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, vPoint
, vSize
, wxVERTICAL
);
1954 m_vScrollBar
->SetMinSize( wxDefaultSize
);
1957 if ( style
& wxHSCROLL
)
1959 m_hScrollBar
= new wxScrollBar((wxWindow
*)this, wxID_ANY
, hPoint
, hSize
, wxHORIZONTAL
);
1960 m_hScrollBar
->SetMinSize( wxDefaultSize
);
1964 // because the create does not take into account the client area origin
1965 // we might have a real position shift
1966 MacRepositionScrollBars() ;
1969 bool wxWindowMac::MacIsChildOfClientArea( const wxWindow
* child
) const
1971 bool result
= ((child
== NULL
) || ((child
!= m_hScrollBar
) && (child
!= m_vScrollBar
)));
1976 void wxWindowMac::MacRepositionScrollBars()
1978 if ( !m_hScrollBar
&& !m_vScrollBar
)
1981 int scrlsize
= m_hScrollBar
? m_hScrollBar
->GetSize().y
: ( m_vScrollBar
? m_vScrollBar
->GetSize().x
: MAC_SCROLLBAR_SIZE
) ;
1982 int adjust
= MacHasScrollBarCorner() ? scrlsize
- 1 : 0 ;
1984 // get real client area
1986 GetSize( &width
, &height
);
1988 width
-= MacGetLeftBorderSize() + MacGetRightBorderSize();
1989 height
-= MacGetTopBorderSize() + MacGetBottomBorderSize();
1991 wxPoint
vPoint( width
- scrlsize
, 0 ) ;
1992 wxSize
vSize( scrlsize
, height
- adjust
) ;
1993 wxPoint
hPoint( 0 , height
- scrlsize
) ;
1994 wxSize
hSize( width
- adjust
, scrlsize
) ;
1997 m_vScrollBar
->SetSize( vPoint
.x
, vPoint
.y
, vSize
.x
, vSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
1999 m_hScrollBar
->SetSize( hPoint
.x
, hPoint
.y
, hSize
.x
, hSize
.y
, wxSIZE_ALLOW_MINUS_ONE
);
2002 bool wxWindowMac::AcceptsFocus() const
2004 if ( MacIsUserPane() )
2005 return wxWindowBase::AcceptsFocus();
2007 return m_peer
->CanFocus();
2010 void wxWindowMac::MacSuperChangedPosition()
2012 // only window-absolute structures have to be moved i.e. controls
2014 m_cachedClippedRectValid
= false ;
2017 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2020 child
= node
->GetData();
2021 child
->MacSuperChangedPosition() ;
2023 node
= node
->GetNext();
2027 void wxWindowMac::MacTopLevelWindowChangedPosition()
2029 // only screen-absolute structures have to be moved i.e. glcanvas
2032 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2035 child
= node
->GetData();
2036 child
->MacTopLevelWindowChangedPosition() ;
2038 node
= node
->GetNext();
2042 long wxWindowMac::MacGetLeftBorderSize() const
2049 if ( m_peer
&& m_peer
->NeedsFrame() )
2051 if (HasFlag(wxRAISED_BORDER
) || HasFlag( wxSUNKEN_BORDER
) || HasFlag(wxDOUBLE_BORDER
))
2053 #if wxOSX_USE_COCOA_OR_CARBON
2054 // this metric is only the 'outset' outside the simple frame rect
2055 GetThemeMetric( kThemeMetricEditTextFrameOutset
, &border
) ;
2061 else if (HasFlag(wxSIMPLE_BORDER
))
2063 #if wxOSX_USE_COCOA_OR_CARBON
2064 // this metric is only the 'outset' outside the simple frame rect
2065 GetThemeMetric( kThemeMetricListBoxFrameOutset
, &border
) ;
2076 long wxWindowMac::MacGetRightBorderSize() const
2078 // they are all symmetric in mac themes
2079 return MacGetLeftBorderSize() ;
2082 long wxWindowMac::MacGetTopBorderSize() const
2084 // they are all symmetric in mac themes
2085 return MacGetLeftBorderSize() ;
2088 long wxWindowMac::MacGetBottomBorderSize() const
2090 // they are all symmetric in mac themes
2091 return MacGetLeftBorderSize() ;
2094 long wxWindowMac::MacRemoveBordersFromStyle( long style
)
2096 return style
& ~wxBORDER_MASK
;
2099 // Find the wxWindowMac at the current mouse position, returning the mouse
2101 wxWindow
* wxFindWindowAtPointer( wxPoint
& pt
)
2103 pt
= wxGetMousePosition();
2104 wxWindowMac
* found
= wxFindWindowAtPoint(pt
);
2106 return (wxWindow
*) found
;
2109 // Get the current mouse position.
2110 wxPoint
wxGetMousePosition()
2114 wxGetMousePosition( &x
, &y
);
2116 return wxPoint(x
, y
);
2119 void wxWindowMac::OnMouseEvent( wxMouseEvent
&event
)
2121 if ( event
.GetEventType() == wxEVT_RIGHT_DOWN
)
2123 // copied from wxGTK : CS
2124 // VZ: shouldn't we move this to base class then?
2126 // generate a "context menu" event: this is similar to wxEVT_RIGHT_DOWN
2129 // (a) it's a command event and so is propagated to the parent
2130 // (b) under MSW it can be generated from kbd too
2131 // (c) it uses screen coords (because of (a))
2132 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
,
2134 this->ClientToScreen(event
.GetPosition()));
2135 evtCtx
.SetEventObject(this);
2136 if ( ! HandleWindowEvent(evtCtx
) )
2145 void wxWindowMac::TriggerScrollEvent( wxEventType
WXUNUSED(scrollEvent
) )
2149 Rect
wxMacGetBoundsForControl( wxWindowMac
* window
, const wxPoint
& pos
, const wxSize
&size
, bool adjustForOrigin
)
2153 window
->MacGetBoundsForControl( pos
, size
, x
, y
, w
, h
, adjustForOrigin
) ;
2154 Rect bounds
= { y
, x
, y
+ h
, x
+ w
};
2159 bool wxWindowMac::OSXHandleClicked( double WXUNUSED(timestampsec
) )
2164 wxInt32
wxWindowMac::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF event
)
2166 #if wxOSX_USE_COCOA_OR_CARBON
2167 if ( OSXHandleClicked( GetEventTime((EventRef
)event
) ) )
2170 return eventNotHandledErr
;
2176 bool wxWindowMac::Reparent(wxWindowBase
*newParentBase
)
2178 wxWindowMac
*newParent
= (wxWindowMac
*)newParentBase
;
2179 if ( !wxWindowBase::Reparent(newParent
) )
2182 m_peer
->RemoveFromParent();
2183 m_peer
->Embed( GetParent()->GetPeer() );
2187 bool wxWindowMac::SetTransparent(wxByte alpha
)
2189 SetBackgroundStyle(wxBG_STYLE_TRANSPARENT
);
2191 if ( alpha
!= m_macAlpha
)
2193 m_macAlpha
= alpha
;
2200 bool wxWindowMac::CanSetTransparent()
2205 wxByte
wxWindowMac::GetTransparent() const
2210 bool wxWindowMac::IsShownOnScreen() const
2212 if ( m_peer
&& m_peer
->IsOk() )
2214 bool peerVis
= m_peer
->IsVisible();
2215 bool wxVis
= wxWindowBase::IsShownOnScreen();
2216 if( peerVis
!= wxVis
)
2218 // CS : put a breakpoint here to investigate differences
2219 // between native an wx visibilities
2220 // the only place where I've encountered them until now
2221 // are the hiding/showing sequences where the vis-changed event is
2222 // first sent to the innermost control, while wx does things
2223 // from the outmost control
2224 wxVis
= wxWindowBase::IsShownOnScreen();
2228 return m_peer
->IsVisible();
2230 return wxWindowBase::IsShownOnScreen();
2233 bool wxWindowMac::OSXHandleKeyEvent( wxKeyEvent
& event
)
2235 bool handled
= HandleWindowEvent( event
) ;
2236 if ( handled
&& event
.GetSkipped() )
2240 if ( !handled
&& event
.GetEventType() == wxEVT_KEY_DOWN
)
2242 wxWindow
*ancestor
= this;
2245 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
2248 wxEvtHandler
* const handler
= ancestor
->GetEventHandler();
2250 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
2251 handled
= handler
->ProcessEvent( command_event
);
2255 // accelerators can also be used with buttons, try them too
2256 command_event
.SetEventType(wxEVT_COMMAND_BUTTON_CLICKED
);
2257 handled
= handler
->ProcessEvent( command_event
);
2263 if (ancestor
->IsTopLevel())
2266 ancestor
= ancestor
->GetParent();
2269 #endif // wxUSE_ACCEL
2278 WX_DECLARE_HASH_MAP(WXWidget
, wxWidgetImpl
*, wxPointerHash
, wxPointerEqual
, MacControlMap
);
2280 static MacControlMap wxWinMacControlList
;
2282 wxWindowMac
*wxFindWindowFromWXWidget(WXWidget inControl
)
2284 wxWidgetImpl
* impl
= wxWidgetImpl::FindFromWXWidget( inControl
);
2286 return impl
->GetWXPeer();
2291 wxWidgetImpl
*wxWidgetImpl::FindFromWXWidget(WXWidget inControl
)
2293 MacControlMap::iterator node
= wxWinMacControlList
.find(inControl
);
2295 return (node
== wxWinMacControlList
.end()) ? NULL
: node
->second
;
2298 void wxWidgetImpl::Associate(WXWidget inControl
, wxWidgetImpl
*impl
)
2300 // adding NULL ControlRef is (first) surely a result of an error and
2301 // (secondly) breaks native event processing
2302 wxCHECK_RET( inControl
!= (WXWidget
) NULL
, wxT("attempt to add a NULL WXWidget to control map") );
2304 wxWinMacControlList
[inControl
] = impl
;
2307 void wxWidgetImpl::RemoveAssociations(wxWidgetImpl
* impl
)
2309 // iterate over all the elements in the class
2310 // is the iterator stable ? as we might have two associations pointing to the same wxWindow
2311 // we should go on...
2317 MacControlMap::iterator it
;
2318 for ( it
= wxWinMacControlList
.begin(); it
!= wxWinMacControlList
.end(); ++it
)
2320 if ( it
->second
== impl
)
2322 wxWinMacControlList
.erase(it
);
2330 IMPLEMENT_ABSTRACT_CLASS( wxWidgetImpl
, wxObject
)
2332 wxWidgetImpl::wxWidgetImpl( wxWindowMac
* peer
, bool isRootControl
)
2335 m_isRootControl
= isRootControl
;
2339 wxWidgetImpl::wxWidgetImpl()
2344 wxWidgetImpl::~wxWidgetImpl()
2348 void wxWidgetImpl::Init()
2350 m_isRootControl
= false;
2352 m_needsFocusRect
= false;
2353 m_needsFrame
= true;
2356 void wxWidgetImpl::SetNeedsFocusRect( bool needs
)
2358 m_needsFocusRect
= needs
;
2361 bool wxWidgetImpl::NeedsFocusRect() const
2363 return m_needsFocusRect
;
2366 void wxWidgetImpl::SetNeedsFrame( bool needs
)
2368 m_needsFrame
= needs
;
2371 bool wxWidgetImpl::NeedsFrame() const
2373 return m_needsFrame
;