update credits
[LibreOffice.git] / include / svx / xgrad.hxx
blobba97db142e7db8271fe216073074278a6989b55c
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 _SVX__XGRADIENT_HXX
21 #define _SVX__XGRADIENT_HXX
23 #include <svx/xenum.hxx>
24 #include <tools/color.hxx>
25 #include "svx/svxdllapi.h"
27 class Gradient;
29 //-----------------
30 // class XGradient
31 //-----------------
33 class SVX_DLLPUBLIC XGradient
35 protected:
36 XGradientStyle eStyle;
37 Color aStartColor;
38 Color aEndColor;
39 long nAngle;
40 sal_uInt16 nBorder;
41 sal_uInt16 nOfsX;
42 sal_uInt16 nOfsY;
43 sal_uInt16 nIntensStart;
44 sal_uInt16 nIntensEnd;
45 sal_uInt16 nStepCount;
47 public:
48 XGradient();
49 XGradient( const Color& rStart, const Color& rEnd,
50 XGradientStyle eStyle = XGRAD_LINEAR, long nAngle = 0,
51 sal_uInt16 nXOfs = 50, sal_uInt16 nYOfs = 50, sal_uInt16 nBorder = 0,
52 sal_uInt16 nStartIntens = 100, sal_uInt16 nEndIntens = 100,
53 sal_uInt16 nSteps = 0 );
55 bool operator==(const XGradient& rGradient) const;
57 void SetGradientStyle(XGradientStyle eNewStyle) { eStyle = eNewStyle; }
58 void SetStartColor(const Color& rColor) { aStartColor = rColor; }
59 void SetEndColor(const Color& rColor) { aEndColor = rColor; }
60 void SetAngle(long nNewAngle) { nAngle = nNewAngle; }
61 void SetBorder(sal_uInt16 nNewBorder) { nBorder = nNewBorder; }
62 void SetXOffset(sal_uInt16 nNewOffset) { nOfsX = nNewOffset; }
63 void SetYOffset(sal_uInt16 nNewOffset) { nOfsY = nNewOffset; }
64 void SetStartIntens(sal_uInt16 nNewIntens) { nIntensStart = nNewIntens; }
65 void SetEndIntens(sal_uInt16 nNewIntens) { nIntensEnd = nNewIntens; }
66 void SetSteps(sal_uInt16 nSteps) { nStepCount = nSteps; }
68 XGradientStyle GetGradientStyle() const { return eStyle; }
69 Color GetStartColor() const { return aStartColor; }
70 Color GetEndColor() const { return aEndColor; }
71 long GetAngle() const { return nAngle; }
72 sal_uInt16 GetBorder() const { return nBorder; }
73 sal_uInt16 GetXOffset() const { return nOfsX; }
74 sal_uInt16 GetYOffset() const { return nOfsY; }
75 sal_uInt16 GetStartIntens() const { return nIntensStart; }
76 sal_uInt16 GetEndIntens() const { return nIntensEnd; }
77 sal_uInt16 GetSteps() const { return nStepCount; }
78 Gradient VclGradient() const;
81 #endif
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */