Bump version to 6.0-36
[LibreOffice.git] / slideshow / source / inc / hslcolor.hxx
blob2c3dca71bd3b429ab5c4aa8b53a966ced98cf340
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_SLIDESHOW_SOURCE_INC_HSLCOLOR_HXX
21 #define INCLUDED_SLIDESHOW_SOURCE_INC_HSLCOLOR_HXX
23 #include <cppcanvas/color.hxx>
26 /* Definition of HSLColor class */
28 namespace slideshow
30 namespace internal
32 class RGBColor;
34 /** HSL color space class.
36 class HSLColor
38 public:
39 HSLColor();
40 HSLColor( double nHue, double nSaturation, double nLuminance );
41 explicit HSLColor( const RGBColor& rColor );
43 /** Hue of the color.
45 @return hue, is in the range [0,360]
47 double getHue() const { return maHSLTriple.mnHue; }
49 /** Saturation of the color.
51 @return saturation, is in the range [0,1]
53 double getSaturation() const { return maHSLTriple.mnSaturation; }
55 /** Luminance of the color.
57 @return luminance, is in the range [0,1]
59 double getLuminance() const { return maHSLTriple.mnLuminance; }
61 struct HSLTriple
63 HSLTriple();
64 HSLTriple( double nHue, double nSaturation, double nLuminance );
66 double mnHue;
67 double mnSaturation;
68 double mnLuminance;
71 private:
72 // default copy/assignment are okay
73 // HSLColor(const HSLColor&);
74 // HSLColor& operator=( const HSLColor& );
76 HSLTriple maHSLTriple;
80 bool operator==( const HSLColor& rLHS, const HSLColor& rRHS );
81 bool operator!=( const HSLColor& rLHS, const HSLColor& rRHS );
82 HSLColor operator+( const HSLColor& rLHS, const HSLColor& rRHS );
83 HSLColor operator*( double nFactor, const HSLColor& rRHS );
85 /** HSL color linear interpolator.
87 @param t
88 As usual, t must be in the [0,1] range
90 @param bCCW
91 When true, hue interpolation happens counter-clockwise
93 HSLColor interpolate( const HSLColor& rFrom, const HSLColor& rTo, double t, bool bCCW );
97 #endif // INCLUDED_SLIDESHOW_SOURCE_INC_HSLCOLOR_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */