Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / basegfx / color / bcolor.hxx
blobde3452fad128fc5a5f3d430f5da5b15f7b7fcb7b
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 #pragma once
22 #include <sal/config.h>
24 #include <algorithm>
25 #include <ostream>
27 #include <basegfx/tuple/b3dtuple.hxx>
28 #include <basegfx/basegfxdllapi.h>
30 namespace basegfx
32 /** Base Color class with three double values
34 This class derives all operators and common handling for
35 a 3D data class from B3DTuple. All necessary extensions
36 which are special for colors will be added here.
38 @see B3DTuple
40 class SAL_WARN_UNUSED BASEGFX_DLLPUBLIC BColor : public B3DTuple
42 public:
43 /** Create a Color with red, green and blue components from [0.0 to 1.0]
45 The color is initialized to (0.0, 0.0, 0.0)
47 BColor()
50 /** Create a 3D Color
52 @param fRed
53 @param fGreen
54 @param fBlue
55 These parameters are used to initialize the red, green and blue intensities of the color
57 BColor(double fRed, double fGreen, double fBlue)
58 : B3DTuple(fRed, fGreen, fBlue)
61 /** Create a 3D Color
63 @param fLuminosity
64 The parameter is used to initialize the red, green and blue intensities of the color
66 explicit BColor(double fLuminosity)
67 : B3DTuple(fLuminosity, fLuminosity, fLuminosity)
70 /** constructor with tuple to allow copy-constructing
71 from B3DTuple-based classes
73 BColor(const ::basegfx::B3DTuple& rTuple)
74 : B3DTuple(rTuple)
77 // data access read
78 double getRed() const { return mfX; }
79 double getGreen() const { return mfY; }
80 double getBlue() const { return mfZ; }
82 // data access write
83 void setRed(double fNew) { mfX = fNew; }
84 void setGreen(double fNew) { mfY = fNew; }
85 void setBlue(double fNew) { mfZ = fNew; }
87 /** *=operator to allow usage from BColor, too
89 BColor& operator*=( const BColor& rPnt )
91 mfX *= rPnt.mfX;
92 mfY *= rPnt.mfY;
93 mfZ *= rPnt.mfZ;
94 return *this;
97 /** *=operator to allow usage from BColor, too
99 BColor& operator*=(double t)
101 mfX *= t;
102 mfY *= t;
103 mfZ *= t;
104 return *this;
107 /** assignment operator to allow assigning the results
108 of B3DTuple calculations
110 BColor& operator=( const ::basegfx::B3DTuple& rVec )
112 mfX = rVec.getX();
113 mfY = rVec.getY();
114 mfZ = rVec.getZ();
115 return *this;
118 // luminance
119 double luminance() const
121 const double fRedWeight(77.0 / 256.0); // 0.30
122 const double fGreenWeight(151.0 / 256.0); // 0.59
123 const double fBlueWeight(28.0 / 256.0); // 0.11
125 return (mfX * fRedWeight + mfY * fGreenWeight + mfZ * fBlueWeight);
128 // distances in color space
129 double getDistanceRed(const BColor& rColor) const { return (getRed() > rColor.getRed() ? getRed() - rColor.getRed() : rColor.getRed() - getRed()); }
130 double getDistanceGreen(const BColor& rColor) const { return (getGreen() > rColor.getGreen() ? getGreen() - rColor.getGreen() : rColor.getGreen() - getGreen()); }
131 double getDistanceBlue(const BColor& rColor) const { return (getBlue() > rColor.getBlue() ? getBlue() - rColor.getBlue() : rColor.getBlue() - getBlue()); }
133 double getDistance(const BColor& rColor) const
135 const double fDistR(getDistanceRed(rColor));
136 const double fDistG(getDistanceGreen(rColor));
137 const double fDistB(getDistanceBlue(rColor));
139 return std::hypot(fDistR, fDistG, fDistB);
142 double getMaximumDistance(const BColor& rColor) const
144 const double fDistR(getDistanceRed(rColor));
145 const double fDistG(getDistanceGreen(rColor));
146 const double fDistB(getDistanceBlue(rColor));
148 double fRetval(std::max(fDistR, fDistG));
149 return std::max(fRetval, fDistB);
152 // clamp color to [0.0..1.0] values in all three intensity components
153 BColor& clamp()
155 mfX = std::clamp(mfX, 0.0, 1.0);
156 mfY = std::clamp(mfY, 0.0, 1.0);
157 mfZ = std::clamp(mfZ, 0.0, 1.0);
158 return *this;
161 void invert()
163 mfX = 1.0 - mfX;
164 mfY = 1.0 - mfY;
165 mfZ = 1.0 - mfZ;
168 static const BColor& getEmptyBColor()
170 return static_cast<const BColor&>( ::basegfx::B3DTuple::getEmptyTuple() );
175 template<typename charT, typename traits>
176 std::basic_ostream<charT, traits> & operator <<(
177 std::basic_ostream<charT, traits> & stream, BColor const & color)
179 return stream
180 << '[' << color.getRed() << ", " << color.getGreen() << ", "
181 << color.getBlue() << ']';
183 } // end of namespace basegfx
185 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */