Bump version to 24.04.3.4
[LibreOffice.git] / slideshow / source / inc / rgbcolor.hxx
blobb5f3f8e610fcbe4d9d25a9f27622667a1c13dcda
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_RGBCOLOR_HXX
21 #define INCLUDED_SLIDESHOW_SOURCE_INC_RGBCOLOR_HXX
23 #include <cppcanvas/color.hxx>
26 /* Definition of RGBColor class */
28 namespace slideshow::internal
30 class HSLColor;
32 /** RGB color space class.
34 class RGBColor
36 public:
37 RGBColor();
38 explicit RGBColor( ::cppcanvas::IntSRGBA nRGBColor );
39 RGBColor( double nRed, double nGreen, double nBlue );
40 explicit RGBColor( const HSLColor& rColor );
42 /** Get the RGB red value.
44 double getRed() const { return maRGBTriple.mnRed; }
46 /** Get the RGB green value.
48 double getGreen() const { return maRGBTriple.mnGreen; }
50 /** Get the RGB blue value.
52 double getBlue() const { return maRGBTriple.mnBlue; }
54 /** Create an integer sRGBA color.
56 ::cppcanvas::IntSRGBA getIntegerColor() const;
58 struct RGBTriple
60 RGBTriple();
61 RGBTriple( double nRed, double nGreen, double nBlue );
63 double mnRed;
64 double mnGreen;
65 double mnBlue;
68 private:
69 // default copy/assignment are okay
70 // RGBColor(const RGBColor&);
71 // RGBColor& operator=( const RGBColor& );
73 RGBTriple maRGBTriple;
76 bool operator==( const RGBColor& rLHS, const RGBColor& rRHS );
77 bool operator!=( const RGBColor& rLHS, const RGBColor& rRHS );
78 RGBColor operator+( const RGBColor& rLHS, const RGBColor& rRHS );
79 RGBColor operator*( const RGBColor& rLHS, const RGBColor& rRHS );
80 RGBColor operator*( double nFactor, const RGBColor& rRHS );
83 /** RGB color linear interpolator.
85 @param t
86 As usual, t must be in the [0,1] range
88 RGBColor interpolate( const RGBColor& rFrom, const RGBColor& rTo, double t );
91 #endif // INCLUDED_SLIDESHOW_SOURCE_INC_RGBCOLOR_HXX
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */