bump product version to 5.0.4.1
[LibreOffice.git] / reportdesign / source / ui / report / EndMarker.cxx
bloba1ebc7a1f45b825cc2e74ae431bee9c470c832cb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #include "EndMarker.hxx"
20 #include "ColorChanger.hxx"
21 #include "SectionWindow.hxx"
22 #include "helpids.hrc"
24 #include <vcl/settings.hxx>
25 #include <vcl/svapp.hxx>
26 #include <vcl/gradient.hxx>
27 #include <vcl/lineinfo.hxx>
30 #define CORNER_SPACE 5
32 namespace rptui
35 OEndMarker::OEndMarker(vcl::Window* _pParent ,const OUString& _sColorEntry)
36 : OColorListener(_pParent,_sColorEntry)
38 SetUniqueId(HID_RPT_ENDMARKER);
39 ImplInitSettings();
42 OEndMarker::~OEndMarker()
46 void OEndMarker::Paint(vcl::RenderContext& rRenderContext, const Rectangle& /*rRect*/)
48 Fraction aCornerSpace(long(CORNER_SPACE));
49 aCornerSpace *= rRenderContext.GetMapMode().GetScaleX();
50 const long nCornerSpace = aCornerSpace;
52 Size aSize = GetSizePixel();
53 aSize.Width() += nCornerSpace;
54 Rectangle aWholeRect(Point(-nCornerSpace,0),aSize);
55 tools::PolyPolygon aPoly;
56 aPoly.Insert(Polygon(aWholeRect,nCornerSpace,nCornerSpace));
58 Color aStartColor(m_nColor);
59 aStartColor.IncreaseLuminance(10);
60 sal_uInt16 nHue = 0;
61 sal_uInt16 nSat = 0;
62 sal_uInt16 nBri = 0;
63 aStartColor.RGBtoHSB(nHue, nSat, nBri);
64 nSat += 40;
65 Color aEndColor(Color::HSBtoRGB(nHue, nSat, nBri));
66 Gradient aGradient(GradientStyle_LINEAR, aStartColor, aEndColor);
67 aGradient.SetSteps(static_cast<sal_uInt16>(aSize.Height()));
69 rRenderContext.DrawGradient(PixelToLogic(aPoly), aGradient);
70 if (m_bMarked)
72 Rectangle aRect(Point(-nCornerSpace, nCornerSpace),
73 Size(aSize.Width() - nCornerSpace,
74 aSize.Height() - nCornerSpace - nCornerSpace));
75 ColorChanger aColors(this, COL_WHITE, COL_WHITE);
76 rRenderContext.DrawPolyLine(Polygon(PixelToLogic(aRect)), LineInfo(LINE_SOLID, 2));
80 void OEndMarker::ImplInitSettings()
82 EnableChildTransparentMode( true );
83 SetParentClipMode( PARENTCLIPMODE_NOCLIP );
84 SetPaintTransparent( true );
86 SetBackground( Wallpaper( svtools::ColorConfig().GetColorValue(::svtools::APPBACKGROUND).nColor) );
87 SetFillColor( Application::GetSettings().GetStyleSettings().GetShadowColor() );
90 void OEndMarker::MouseButtonDown( const MouseEvent& rMEvt )
92 if ( !rMEvt.IsLeft() && !rMEvt.IsRight())
93 return;
94 static_cast<OSectionWindow*>(GetParent())->showProperties();
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */