1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 */
34 /** RGB color space class.
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;
63 RGBTriple( double nRed
, double nGreen
, double nBlue
);
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.
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: */