summaryrefslogtreecommitdiff
path: root/vcl/source/window/dockmgr.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-05-07 15:18:41 +0900
committerJan Holesovsky <kendy@collabora.com>2015-05-07 09:57:51 +0200
commit976e6b764638f9a44ab692024bd49b39b7efbc0d (patch)
tree299fce5d810845a2cbeafeea27e0c6007e48d5bd /vcl/source/window/dockmgr.cxx
parenta563bd6a3e2768a5248abb3ad889d0ed739df1ba (diff)
refactor PopupFloatWin to use RenderContext
Change-Id: Ib3f74c89c9a930deb0c153bf456f9c84095e237e
Diffstat (limited to 'vcl/source/window/dockmgr.cxx')
-rw-r--r--vcl/source/window/dockmgr.cxx131
1 files changed, 66 insertions, 65 deletions
diff --git a/vcl/source/window/dockmgr.cxx b/vcl/source/window/dockmgr.cxx
index 89be3dbc1887..0480b300b4f9 100644
--- a/vcl/source/window/dockmgr.cxx
+++ b/vcl/source/window/dockmgr.cxx
@@ -483,7 +483,7 @@ public:
virtual void dispose() SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE;
- virtual void Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) SAL_OVERRIDE;
+ virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE;
virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
@@ -494,8 +494,8 @@ public:
Rectangle GetDragRect() const;
Point GetToolboxPosition() const;
Point GetTearOffPosition() const;
- void DrawGrip();
- void DrawBorder();
+ void DrawGrip(vcl::RenderContext& rRenderContext);
+ void DrawBorder(vcl::RenderContext& rRenderContext);
bool hasGrip() const { return mbHasGrip; }
};
@@ -596,9 +596,9 @@ Point ImplPopupFloatWin::GetTearOffPosition() const
return aPt;
}
-void ImplPopupFloatWin::DrawBorder()
+void ImplPopupFloatWin::DrawBorder(vcl::RenderContext& rRenderContext)
{
- SetFillColor();
+ rRenderContext.SetFillColor();
Point aPt;
Rectangle aRect( aPt, GetOutputSizePixel() );
@@ -610,113 +610,114 @@ void ImplPopupFloatWin::DrawBorder()
aItemClipRect.SetPos( AbsoluteScreenToOutputPixel( aItemClipRect.TopLeft() ) );
// draw the excluded border part with the background color of a toolbox
- SetClipRegion( vcl::Region( aItemClipRect ) );
- SetLineColor( GetSettings().GetStyleSettings().GetFaceColor() );
- DrawRect( aRect );
+ rRenderContext.SetClipRegion( vcl::Region( aItemClipRect ) );
+ rRenderContext.SetLineColor( GetSettings().GetStyleSettings().GetFaceColor() );
+ rRenderContext.DrawRect( aRect );
aClipRgn.Exclude( aItemClipRect );
SetClipRegion( aClipRgn );
}
- SetLineColor( GetSettings().GetStyleSettings().GetShadowColor() );
- DrawRect( aRect );
- SetClipRegion( oldClipRgn );
+ rRenderContext.SetLineColor( rRenderContext.GetSettings().GetStyleSettings().GetShadowColor() );
+ rRenderContext.DrawRect( aRect );
+ rRenderContext.SetClipRegion( oldClipRgn );
}
-void ImplPopupFloatWin::DrawGrip()
+void ImplPopupFloatWin::DrawGrip(vcl::RenderContext& rRenderContext)
{
- bool bLinecolor = IsLineColor();
- Color aLinecolor = GetLineColor();
- bool bFillcolor = IsFillColor();
- Color aFillcolor = GetFillColor();
+ bool bLinecolor = rRenderContext.IsLineColor();
+ Color aLinecolor = rRenderContext.GetLineColor();
+ bool bFillcolor = rRenderContext.IsFillColor();
+ Color aFillcolor = rRenderContext.GetFillColor();
// draw background
- Rectangle aRect( GetDragRect() );
- aRect.Top() += POPUP_DRAGBORDER;
- aRect.Bottom() -= POPUP_DRAGBORDER;
- aRect.Left()+=3;
- aRect.Right()-=3;
+ Rectangle aRect(GetDragRect());
+ aRect.Top() += POPUP_DRAGBORDER;
+ aRect.Bottom() -= POPUP_DRAGBORDER;
+ aRect.Left() += 3;
+ aRect.Right() -= 3;
- if( mbHighlight )
+ if (mbHighlight)
{
- Erase( aRect );
- DrawSelectionBackground( aRect, 2, false, true, false );
+ rRenderContext.Erase(aRect);
+ DrawSelectionBackground(aRect, 2, false, true, false);
}
else
{
- SetFillColor( GetSettings().GetStyleSettings().GetFaceColor() );
- SetLineColor();
- DrawRect( aRect );
+ rRenderContext.SetFillColor(rRenderContext.GetSettings().GetStyleSettings().GetFaceColor());
+ rRenderContext.SetLineColor();
+ rRenderContext.DrawRect(aRect);
}
- if( !ToolBox::AlwaysLocked() ) // no grip if toolboxes are locked
+ if (!ToolBox::AlwaysLocked()) // no grip if toolboxes are locked
{
#ifdef TEAROFF_DASHED
// draw single dashed line
- LineInfo aLineInfo( LINE_DASH );
- aLineInfo.SetDistance( 4 );
- aLineInfo.SetDashLen( 12 );
- aLineInfo.SetDashCount( 1 );
+ LineInfo aLineInfo(LINE_DASH);
+ aLineInfo.SetDistance(4);
+ aLineInfo.SetDashLen(12);
+ aLineInfo.SetDashCount(1);
- aRect.Left()+=2;
- aRect.Right()-=2;
+ aRect.Left() += 2;
+ aRect.Right()-= 2;
- aRect.Top()+=2;
+ aRect.Top() += 2;
aRect.Bottom() = aRect.Top();
- SetLineColor( GetSettings().GetStyleSettings().GetDarkShadowColor() );
- DrawLine( aRect.TopLeft(), aRect.TopRight(), aLineInfo );
+ rRenderContext.SetLineColor(rRenderContext.GetSettings().GetStyleSettings().GetDarkShadowColor());
+ rRenderContext.DrawLine(aRect.TopLeft(), aRect.TopRight(), aLineInfo);
- if( !mbHighlight )
+ if (!mbHighlight)
{
++aRect.Top();
++aRect.Bottom();
- SetLineColor( GetSettings().GetStyleSettings().GetLightColor() );
- DrawLine( aRect.TopLeft(), aRect.TopRight(), aLineInfo );
+ rRenderContext.SetLineColor(rRenderContext.GetSettings().GetStyleSettings().GetLightColor());
+ rRenderContext.DrawLine(aRect.TopLeft(), aRect.TopRight(), aLineInfo);
}
#else
// draw several grip lines
- SetFillColor( GetSettings().GetStyleSettings().GetShadowColor() );
+ rRenderContext.SetFillColor(rRenderContext.GetSettings().GetStyleSettings().GetShadowColor());
aRect.Top()++;
aRect.Bottom() = aRect.Top();
int width = POPUP_DRAGWIDTH;
- while( width >= aRect.getWidth() )
+ while(width >= aRect.getWidth())
+ {
width -= 4;
- if( width <= 0 )
+ }
+ if (width <= 0)
width = aRect.getWidth();
//aRect.nLeft = aRect.nLeft + (aRect.getWidth() - width) / 2;
aRect.Left() = (aRect.Left() + aRect.Right() - width) / 2;
aRect.Right() = aRect.Left() + width;
- int i=0;
- while( i< POPUP_DRAGGRIP )
+ int i = 0;
+ while (i < POPUP_DRAGGRIP)
{
- DrawRect( aRect );
- aRect.Top()+=2;
- aRect.Bottom()+=2;
- i+=2;
+ rRenderContext.DrawRect(aRect);
+ aRect.Top() += 2;
+ aRect.Bottom() += 2;
+ i += 2;
}
#endif
}
- if( bLinecolor )
- SetLineColor( aLinecolor );
+ if (bLinecolor)
+ rRenderContext.SetLineColor(aLinecolor);
else
- SetLineColor();
- if( bFillcolor )
- SetFillColor( aFillcolor );
+ rRenderContext.SetLineColor();
+ if (bFillcolor)
+ rRenderContext.SetFillColor(aFillcolor);
else
- SetFillColor();
+ rRenderContext.SetFillColor();
}
-void ImplPopupFloatWin::Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& )
+void ImplPopupFloatWin::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
{
- Point aPt;
- Rectangle aRect( aPt, GetOutputSizePixel() );
- DrawWallpaper( aRect, Wallpaper( GetSettings().GetStyleSettings().GetFaceGradientColor() ) );
- DrawBorder();
- if( hasGrip() )
- DrawGrip();
+ Rectangle aRect(Point(), rRenderContext.GetOutputSizePixel());
+ rRenderContext.DrawWallpaper(aRect, Wallpaper(rRenderContext.GetSettings().GetStyleSettings().GetFaceGradientColor()));
+ DrawBorder(rRenderContext);
+ if (hasGrip())
+ DrawGrip(rRenderContext);
}
void ImplPopupFloatWin::MouseMove( const MouseEvent& rMEvt )
@@ -735,12 +736,12 @@ void ImplPopupFloatWin::MouseMove( const MouseEvent& rMEvt )
if( !mbHighlight && GetDragRect().IsInside( aMousePos ) )
{
mbHighlight = true;
- DrawGrip();
+ Invalidate();
}
- if( mbHighlight && ( rMEvt.IsLeaveWindow() || !GetDragRect().IsInside( aMousePos ) ) )
+ if (mbHighlight && ( rMEvt.IsLeaveWindow() || !GetDragRect().IsInside( aMousePos ) ) )
{
mbHighlight = false;
- DrawGrip();
+ Invalidate();
}
}
}