summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorHeiko Tietze <tietze.heiko@gmail.com>2019-09-26 08:17:23 +0200
committerHeiko Tietze <heiko.tietze@documentfoundation.org>2019-10-02 07:35:44 +0200
commit67fd62b3edc86c2891f279b25cf9919c4bbbbca1 (patch)
tree73bf56a0ae96ca47b089ec7f3ea9699b41f4310a /sc
parent8fe03eef707561bb0b9e1655292619ec3cd347f5 (diff)
Resolves tdf#127508 - Flat table header in Calc
Shading removed to comply with the zeitgeisty flatness Change-Id: I766d86dc8d26191fa87c94d3e8f64feda79c3030 Reviewed-on: https://gerrit.libreoffice.org/79584 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/inc/hdrcont.hxx2
-rw-r--r--sc/source/ui/view/hdrcont.cxx72
2 files changed, 14 insertions, 60 deletions
diff --git a/sc/source/ui/inc/hdrcont.hxx b/sc/source/ui/inc/hdrcont.hxx
index 2ffc9c9f3aa5..a1b4260ac3d3 100644
--- a/sc/source/ui/inc/hdrcont.hxx
+++ b/sc/source/ui/inc/hdrcont.hxx
@@ -69,8 +69,6 @@ private:
void DoPaint( SCCOLROW nStart, SCCOLROW nEnd );
- void DrawShadedRect( long nStart, long nEnd, const Color& rBaseColor );
-
protected:
ScTabView* pTabView;
diff --git a/sc/source/ui/view/hdrcont.cxx b/sc/source/ui/view/hdrcont.cxx
index c6c450f6aa88..7fd1a8dd8f26 100644
--- a/sc/source/ui/view/hdrcont.cxx
+++ b/sc/source/ui/view/hdrcont.cxx
@@ -200,43 +200,6 @@ long ScHeaderControl::GetScrPos( SCCOLROW nEntryNo ) const
return nScrPos;
}
-// draw a rectangle across the window's width/height, with the outer part in a lighter color
-
-void ScHeaderControl::DrawShadedRect( long nStart, long nEnd, const Color& rBaseColor )
-{
- Color aWhite( COL_WHITE );
-
- Color aInner( rBaseColor ); // highlight color, unchanged
- Color aCenter( rBaseColor );
- aCenter.Merge( aWhite, 0xd0 ); // lighten up a bit
- Color aOuter( rBaseColor );
- aOuter.Merge( aWhite, 0xa0 ); // lighten up more
-
- if ( IsMirrored() )
- std::swap( aInner, aOuter ); // just swap colors instead of positions
-
- Size aWinSize = GetSizePixel();
- long nBarSize = bVertical ? aWinSize.Width() : aWinSize.Height();
- long nCenterPos = (nBarSize / 2) - 1;
-
- SetLineColor();
- SetFillColor( aOuter );
- if (bVertical)
- DrawRect( tools::Rectangle( 0, nStart, nCenterPos-1, nEnd ) );
- else
- DrawRect( tools::Rectangle( nStart, 0, nEnd, nCenterPos-1 ) );
- SetFillColor( aCenter );
- if (bVertical)
- DrawRect( tools::Rectangle( nCenterPos, nStart, nCenterPos, nEnd ) );
- else
- DrawRect( tools::Rectangle( nStart, nCenterPos, nEnd, nCenterPos ) );
- SetFillColor( aInner );
- if (bVertical)
- DrawRect( tools::Rectangle( nCenterPos+1, nStart, nBarSize-1, nEnd ) );
- else
- DrawRect( tools::Rectangle( nStart, nCenterPos+1, nEnd, nBarSize-1 ) );
-}
-
void ScHeaderControl::Paint( vcl::RenderContext& /*rRenderContext*/, const tools::Rectangle& rRect )
{
// It is important for VCL to have few calls, that is why the outer lines are
@@ -338,21 +301,12 @@ void ScHeaderControl::Paint( vcl::RenderContext& /*rRenderContext*/, const tools
if ( nLineEnd * nLayoutSign >= nInitScrPos * nLayoutSign )
{
- if ( bHighContrast )
- {
- // high contrast: single-color background
- SetFillColor( rStyleSettings.GetFaceColor() );
- if ( bVertical )
- aFillRect = tools::Rectangle( 0, nInitScrPos, nBarSize-1, nLineEnd );
- else
- aFillRect = tools::Rectangle( nInitScrPos, 0, nLineEnd, nBarSize-1 );
- DrawRect( aFillRect );
- }
+ SetFillColor( rStyleSettings.GetFaceColor() );
+ if ( bVertical )
+ aFillRect = tools::Rectangle( 0, nInitScrPos, nBarSize-1, nLineEnd );
else
- {
- // normal: 3-part background
- DrawShadedRect( nInitScrPos, nLineEnd, rStyleSettings.GetFaceColor() );
- }
+ aFillRect = tools::Rectangle( nInitScrPos, 0, nLineEnd, nBarSize-1 );
+ DrawRect( aFillRect );
}
if ( nLineEnd * nLayoutSign < nPEnd * nLayoutSign )
@@ -369,25 +323,27 @@ void ScHeaderControl::Paint( vcl::RenderContext& /*rRenderContext*/, const tools
{
if ( nTransEnd * nLayoutSign >= nTransStart * nLayoutSign )
{
+ if (bVertical)
+ aFillRect = tools::Rectangle( 0, nTransStart, nBarSize-1, nTransEnd );
+ else
+ aFillRect = tools::Rectangle( nTransStart, 0, nTransEnd, nBarSize-1 );
+
if ( bHighContrast )
{
if ( bDark )
{
// solid grey background for dark face color is drawn before lines
-
SetLineColor();
SetFillColor( COL_LIGHTGRAY );
- if (bVertical)
- DrawRect( tools::Rectangle( 0, nTransStart, nBarSize-1, nTransEnd ) );
- else
- DrawRect( tools::Rectangle( nTransStart, 0, nTransEnd, nBarSize-1 ) );
+ DrawRect( aFillRect );
}
}
else
{
// background for selection
-
- DrawShadedRect( nTransStart, nTransEnd, rStyleSettings.GetHighlightColor() );
+ SetLineColor();
+ SetFillColor( rStyleSettings.GetHighlightColor() );
+ DrawRect( aFillRect );
}
}