Bump version to 6.0-36
[LibreOffice.git] / slideshow / source / inc / rgbcolor.hxx
blob9e12ec902a02206d93a428661f0a72f3ede5a05b
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
30 namespace internal
32 class HSLColor;
34 /** RGB color space class.
36 class RGBColor
38 public:
39 RGBColor();
40 explicit RGBColor( ::cppcanvas::IntSRGBA nRGBColor );
41 RGBColor( double nRed, double nGreen, double nBlue );
42 explicit RGBColor( const HSLColor& rColor );
44 /** Get the RGB red value.
46 double getRed() const { return maRGBTriple.mnRed; }
48 /** Get the RGB green value.
50 double getGreen() const { return maRGBTriple.mnGreen; }
52 /** Get the RGB blue value.
54 double getBlue() const { return maRGBTriple.mnBlue; }
56 /** Create an integer sRGBA color.
58 ::cppcanvas::IntSRGBA getIntegerColor() const;
60 struct RGBTriple
62 RGBTriple();
63 RGBTriple( double nRed, double nGreen, double nBlue );
65 double mnRed;
66 double mnGreen;
67 double mnBlue;
70 private:
71 // default copy/assignment are okay
72 // RGBColor(const RGBColor&);
73 // RGBColor& operator=( const RGBColor& );
75 RGBTriple maRGBTriple;
78 bool operator==( const RGBColor& rLHS, const RGBColor& rRHS );
79 bool operator!=( const RGBColor& rLHS, const RGBColor& rRHS );
80 RGBColor operator+( const RGBColor& rLHS, const RGBColor& rRHS );
81 RGBColor operator*( const RGBColor& rLHS, const RGBColor& rRHS );
82 RGBColor operator*( double nFactor, const RGBColor& rRHS );
85 /** RGB color linear interpolator.
87 @param t
88 As usual, t must be in the [0,1] range
90 RGBColor interpolate( const RGBColor& rFrom, const RGBColor& rTo, double t );
94 #endif // INCLUDED_SLIDESHOW_SOURCE_INC_RGBCOLOR_HXX
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */