cid#1607362 Overflowed constant
[LibreOffice.git] / include / vcl / gradient.hxx
blob0f67dca52f1b0836297a1dfb2d71d2a9096243ef
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 .
20 #ifndef INCLUDED_VCL_GRADIENT_HXX
21 #define INCLUDED_VCL_GRADIENT_HXX
23 #include <sal/types.h>
24 #include <tools/color.hxx>
25 #include <tools/degree.hxx>
26 #include <tools/long.hxx>
27 #include <o3tl/cow_wrapper.hxx>
29 #include <vcl/dllapi.h>
30 #include <com/sun/star/awt/GradientStyle.hpp>
32 namespace tools { class Rectangle; }
34 class Point;
35 class SvStream;
36 class GDIMetaFile;
38 class VCL_DLLPUBLIC Gradient
40 private:
41 class Impl;
42 ::o3tl::cow_wrapper<Impl> mpImplGradient;
44 public:
45 Gradient();
46 Gradient( const Gradient& rGradient );
47 Gradient( Gradient&& rGradient );
48 Gradient( css::awt::GradientStyle eStyle,
49 const Color& rStartColor,
50 const Color& rEndColor );
51 ~Gradient();
53 void SetStyle( css::awt::GradientStyle eStyle );
54 css::awt::GradientStyle GetStyle() const;
56 void SetStartColor( const Color& rColor );
57 const Color& GetStartColor() const;
58 void SetEndColor( const Color& rColor );
59 const Color& GetEndColor() const;
60 SAL_DLLPRIVATE void MakeGrayscale();
62 void SetAngle( Degree10 nAngle );
63 Degree10 GetAngle() const;
65 void SetBorder( sal_uInt16 nBorder );
66 sal_uInt16 GetBorder() const;
67 void SetOfsX( sal_uInt16 nOfsX );
68 sal_uInt16 GetOfsX() const;
69 void SetOfsY( sal_uInt16 nOfsY );
70 sal_uInt16 GetOfsY() const;
72 void SetStartIntensity( sal_uInt16 nIntens );
73 sal_uInt16 GetStartIntensity() const;
74 void SetEndIntensity( sal_uInt16 nIntens );
75 sal_uInt16 GetEndIntensity() const;
77 void SetSteps( sal_uInt16 nSteps );
78 sal_uInt16 GetSteps() const;
80 void GetBoundRect( const tools::Rectangle& rRect, tools::Rectangle &rBoundRect, Point& rCenter ) const;
82 void AddGradientActions(tools::Rectangle const& rRect, GDIMetaFile& rMetaFile);
84 Gradient& operator=( const Gradient& rGradient );
85 Gradient& operator=( Gradient&& rGradient );
86 bool operator==( const Gradient& rGradient ) const;
87 bool operator!=( const Gradient& rGradient ) const
88 { return !(Gradient::operator==( rGradient )); }
90 private:
91 SAL_DLLPRIVATE tools::Long GetMetafileSteps(tools::Rectangle const& rRect) const;
93 SAL_DLLPRIVATE void DrawComplexGradientToMetafile(tools::Rectangle const& rRect, GDIMetaFile& rMetaFile) const;
94 SAL_DLLPRIVATE void DrawLinearGradientToMetafile(tools::Rectangle const& rRect, GDIMetaFile& rMetaFile) const;
97 #endif // INCLUDED_VCL_GRADIENT_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */