QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextColors.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskTextColors.h"
7#include "QskRgbValue.h"
8
9#include <qhashfunctions.h>
10#include <qvariant.h>
11
12QskHashValue QskTextColors::hash( QskHashValue seed ) const noexcept
13{
14 const QRgb rgb[] =
15 {
16 m_textColor.rgba(),
17 m_styleColor.isValid() ? m_styleColor.rgba() : m_textColor.rgba(),
18 m_linkColor.isValid() ? m_linkColor.rgba() : m_textColor.rgba()
19 };
20
21 return qHashBits( rgb, sizeof( rgb ), seed );
22}
23
24void QskTextColors::setTextColor( const QColor& color )
25{
26 m_textColor = color;
27}
28
29void QskTextColors::setStyleColor( const QColor& color )
30{
31 m_styleColor = color;
32}
33
34void QskTextColors::setLinkColor( const QColor& color )
35{
36 m_linkColor = color;
37}
38
39QskTextColors QskTextColors::interpolated(
40 const QskTextColors& to, qreal ratio ) const
41{
42 QskTextColors colors;
43 colors.m_textColor = QskRgb::interpolated( m_textColor, to.m_textColor, ratio );
44 colors.m_styleColor = QskRgb::interpolated( m_styleColor, to.m_styleColor, ratio );
45 colors.m_linkColor = QskRgb::interpolated( m_linkColor, to.m_linkColor, ratio );
46
47 return colors;
48}
49
50QVariant QskTextColors::interpolate(
51 const QskTextColors& from, const QskTextColors& to, qreal ratio )
52{
53 return QVariant::fromValue( from.interpolated( to, ratio ) );
54}
55
56#ifndef QT_NO_DEBUG_STREAM
57
58#include <qdebug.h>
59
60static inline void qskDebugColor( QDebug debug, const QColor& c )
61{
62 debug << '(' << c.red() << ',' << c.green() << ','
63 << c.blue() << ',' << c.alpha() << ')';
64}
65
66QDebug operator<<( QDebug debug, const QskTextColors& colors )
67{
68 QDebugStateSaver saver( debug );
69 debug.nospace();
70
71 debug << "TextColors" << '(';
72
73 debug << " T";
74
75 if ( colors.textColor().isValid() )
76 qskDebugColor( debug, colors.textColor() );
77 else
78 debug << "(invalid)";
79
80 if ( colors.styleColor().isValid() )
81 {
82 debug << ", S";
83 qskDebugColor( debug, colors.styleColor() );
84 }
85
86 if ( colors.linkColor().isValid() )
87 {
88 debug << ", L";
89 qskDebugColor( debug, colors.linkColor() );
90 }
91
92 debug << " )";
93
94 return debug;
95}
96
97#endif
98
99#include "moc_QskTextColors.cpp"