From: Stefan Csomor Date: Sat, 24 Nov 2007 16:54:56 +0000 (+0000) Subject: make renderer independent of windowing system X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f968da288ee04ec5c0265861bb7a18182c0fb22e make renderer independent of windowing system git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/renderer.cpp b/src/mac/carbon/renderer.cpp index e72aa9a748..5018448b4a 100644 --- a/src/mac/carbon/renderer.cpp +++ b/src/mac/carbon/renderer.cpp @@ -121,17 +121,7 @@ int wxRendererMac::DrawHeaderButton( wxWindow *win, HIRect headerRect = CGRectMake( x, y, w, h ); if ( !dc.IsKindOf( CLASSINFO( wxPaintDC ) ) ) { - Rect r = - { - (short) headerRect.origin.y, (short) headerRect.origin.x, - (short) (headerRect.origin.y + headerRect.size.height), - (short) (headerRect.origin.x + headerRect.size.width) - }; - - RgnHandle updateRgn = NewRgn(); - RectRgn( updateRgn, &r ); - HIViewSetNeedsDisplayInRegion( (HIViewRef) win->GetHandle(), updateRgn, true ); - DisposeRgn( updateRgn ); + win->Refresh( &rect ); } else { @@ -213,17 +203,7 @@ void wxRendererMac::DrawTreeItemButton( wxWindow *win, HIRect headerRect = CGRectMake( x, y, w, h ); if ( !dc.IsKindOf( CLASSINFO( wxPaintDC ) ) ) { - Rect r = - { - (short) headerRect.origin.y, (short) headerRect.origin.x, - (short) (headerRect.origin.y + headerRect.size.height), - (short) (headerRect.origin.x + headerRect.size.width) - }; - - RgnHandle updateRgn = NewRgn(); - RectRgn( updateRgn, &r ); - HIViewSetNeedsDisplayInRegion( (HIViewRef) win->GetHandle(), updateRgn, true ); - DisposeRgn( updateRgn ); + win->Refresh( &rect ); } else { @@ -268,19 +248,9 @@ void wxRendererMac::DrawSplitterSash( wxWindow *win, if ( !dc.IsKindOf( CLASSINFO( wxPaintDC ) ) ) { - Rect r = - { - (short) splitterRect.origin.y, - (short) splitterRect.origin.x, - (short) (splitterRect.origin.y + splitterRect.size.height), - (short) (splitterRect.origin.x + splitterRect.size.width) - }; - - RgnHandle updateRgn = NewRgn(); - RectRgn( updateRgn, &r ); - HIViewSetNeedsDisplayInRegion( (HIViewRef) win->GetHandle(), updateRgn, true ); - DisposeRgn( updateRgn ); - } + wxRect rect( splitterRect.origin.x, splitterRect.origin.y, splitterRect.size.width, splitterRect.size.height ); + win->Refresh( &rect ); + } else { CGContextRef cgContext; @@ -304,19 +274,9 @@ wxRendererMac::DrawItemSelectionRect(wxWindow *win, if ( !(flags & wxCONTROL_SELECTED) ) return; - if (flags & wxCONTROL_FOCUSED) - { - if (!IsControlActive( (ControlRef)win->GetHandle() )) - flags = wxCONTROL_SELECTED; - } - - RGBColor selColor; - GetThemeBrushAsColor(flags & wxCONTROL_FOCUSED - ? kThemeBrushAlternatePrimaryHighlightColor - : kThemeBrushSecondaryHighlightColor, - 32, true, &selColor); - - wxBrush selBrush(selColor); + wxBrush selBrush(wxColour( wxMacCreateCGColorFromHITheme( flags & wxCONTROL_FOCUSED ? + kThemeBrushAlternatePrimaryHighlightColor + : kThemeBrushSecondaryHighlightColor ) ) , wxSOLID ); dc.SetPen( *wxTRANSPARENT_PEN ); dc.SetBrush( selBrush ); @@ -343,17 +303,7 @@ wxRendererMac::DrawMacThemeButton(wxWindow *win, HIRect headerRect = CGRectMake( x, y, w, h ); if ( !dc.IsKindOf( CLASSINFO( wxPaintDC ) ) ) { - Rect r = - { - (short) headerRect.origin.y, (short) headerRect.origin.x, - (short) (headerRect.origin.y + headerRect.size.height), - (short) (headerRect.origin.x + headerRect.size.width) - }; - - RgnHandle updateRgn = NewRgn(); - RectRgn( updateRgn, &r ); - HIViewSetNeedsDisplayInRegion( (HIViewRef) win->GetHandle(), updateRgn, true ); - DisposeRgn( updateRgn ); + win->Refresh( &rect ); } else {