6#include "QskRgbValue.h"
7#include "QskInternalMacros.h"
9#include <qeasingcurve.h>
13#include <private/qdrawhelper_p.h>
18 inline int value(
int from,
int to, qreal ratio )
20 return int( from + ( to - from ) * ratio );
23 inline qreal valueF( qreal from, qreal to, qreal ratio )
25 return int( from + ( to - from ) * ratio );
29static inline QColor qskInterpolatedColor(
30 const QColor& c1,
const QColor& c2, qreal ratio )
36 const int r = value( c1.red(), c2.red(), ratio );
37 const int g = value( c1.green(), c2.green(), ratio );
38 const int b = value( c1.blue(), c2.blue(), ratio );
39 const int a = value( c1.alpha(), c2.alpha(), ratio );
41 return QColor::fromRgb( r, g, b, a );
45 const int h = value( c1.hue(), c2.hue(), ratio );
46 const int s = value( c1.saturation(), c2.saturation(), ratio );
47 const int v = value( c1.value(), c2.value(), ratio );
48 const int a = value( c1.alpha(), c2.alpha(), ratio );
50 return QColor::fromHsv( h, s, v, a );
54 const int c = value( c1.cyan(), c2.cyan(), ratio );
55 const int m = value( c1.magenta(), c2.magenta(), ratio );
56 const int y = value( c1.yellow(), c2.yellow(), ratio );
57 const int k = value( c1.black(), c2.black(), ratio );
58 const int a = value( c1.alpha(), c2.alpha(), ratio );
60 return QColor::fromCmykF( c, m, y, k, a );
64 const int h = value( c1.hue(), c2.hue(), ratio );
65 const int s = value( c1.saturation(), c2.saturation(), ratio );
66 const int l = value( c1.lightness(), c2.lightness(), ratio );
67 const int a = value( c1.alpha(), c2.alpha(), ratio );
69 return QColor::fromHsl( h, s, l, a );
71 case QColor::ExtendedRgb:
73 const qreal r = valueF( c1.redF(), c2.redF(), ratio );
74 const qreal g = valueF( c1.greenF(), c2.greenF(), ratio );
75 const qreal b = valueF( c1.blueF(), c2.blueF(), ratio );
76 const qreal a = valueF( c1.alphaF(), c2.alphaF(), ratio );
78 return QColor::fromRgbF( r, g, b, a );
87QRgb QskRgb::interpolated( QRgb rgb1, QRgb rgb2, qreal ratio )
94 const int r = value( qRed( rgb1 ), qRed( rgb2 ), ratio );
95 const int g = value( qGreen( rgb1 ), qGreen( rgb2 ), ratio );
96 const int b = value( qBlue( rgb1 ), qBlue( rgb2 ), ratio );
97 const int a = value( qAlpha( rgb1 ), qAlpha( rgb2 ), ratio );
99 return qRgba( r, g, b, a );
102QColor QskRgb::interpolated(
const QColor& c1,
const QColor& c2, qreal ratio )
115 c.setAlpha( ratio * c2.alpha() );
122 c.setAlpha( ( 1.0 - ratio ) * c1.alpha() );
126 if ( c1.spec() == c2.spec() )
127 return qskInterpolatedColor( c1, c2, ratio );
129 return qskInterpolatedColor( c1.convertTo( c2.spec() ), c2, ratio );
132QRgb QskRgb::rgb( Qt::GlobalColor color )
134 using namespace QskRgb;
136 static constexpr QRgb rgbValues[] =
143 qRgb( 160, 160, 164 ),
160 return rgbValues[ color ];
163QRgb QskRgb::lighter( QRgb rgb,
int factor )
noexcept
169 return QColor::fromRgba( rgb ).lighter( factor ).rgba();
172QRgb QskRgb::darker( QRgb rgb,
int factor )
noexcept
178 return QColor::fromRgba( rgb ).darker( factor ).rgba();
181#ifndef QT_NO_DEBUG_STREAM
185void QskRgb::debugColor( QDebug debug,
const QColor& color )
187 debugColor( debug, color.rgba() );
190void QskRgb::debugColor( QDebug debug, QRgb rgb )
192 QDebugStateSaver saver( debug );
197 debug << qRed( rgb ) <<
"r,"
198 << qGreen( rgb ) <<
"g," << qBlue( rgb ) <<
'b';
200 if ( qAlpha( rgb ) != 255 )
201 debug <<
',' << qAlpha( rgb ) <<
'a';
208QImage QskRgb::colorTable(
int size,
const QskGradientStops& stops )
210 if ( size == 0 || stops.isEmpty() )
213 QImage image( size, 1, QImage::Format_RGBA8888_Premultiplied );
215 if ( stops.size() == 1 )
217 const auto rgb = ARGB2RGBA( qPremultiply( stops[0].rgb() ) );
223 auto values =
reinterpret_cast< uint*
>( image.bits() );
228 index1 = index2 = qRound( stops[0].position() * size );
229 rgb1 = rgb2 = qPremultiply( stops[0].rgb() );
233 const auto v = ARGB2RGBA( rgb1 );
235 for (
int i = 0; i < index1; i++ )
239 for (
int i = 1; i < stops.count(); i++ )
241 const auto& stop = stops[i];
243 index2 = qRound( stop.position() * size );
244 rgb2 = qPremultiply( stop.rgb() );
246 const auto n = index2 - index1;
248 values[ index1 ] = ARGB2RGBA( rgb1 );
249 for (
int j = 1; j < n; j++ )
251 const auto rgb = QskRgb::interpolated( rgb1, rgb2, qreal( j ) / ( n - 1 ) );
252 values[ index1 + j] = ARGB2RGBA( rgb );
259 if ( index1 < size - 1 )
261 const auto v = ARGB2RGBA( rgb1 );
263 for (
int i = index1; i < size ; i++ )
270QImage QskRgb::colorTable(
const int size,
271 QRgb rgb1, QRgb rgb2,
const QEasingCurve& curve )
276 rgb1 = qPremultiply( rgb1 );
277 rgb2 = qPremultiply( rgb2 );
279 QImage image( size, 1, QImage::Format_RGBA8888_Premultiplied );
283 image.fill( ARGB2RGBA( rgb1 ) );
287 auto values =
reinterpret_cast< uint*
>( image.bits() );
289 for (
int i = 0; i < size; i++ )
291 qreal progress = curve.valueForProgress( qreal( i ) / ( size - 1 ) );
292 progress = qBound( 0.0, progress, 1.0 );
294 auto rgb = QskRgb::interpolated( rgb1, rgb2, progress );
295 values[i] = ARGB2RGBA( rgb );