6#include "QskTextColors.h"
7#include "QskRgbValue.h"
9#include <qhashfunctions.h>
12QskHashValue QskTextColors::hash( QskHashValue seed )
const noexcept
17 m_styleColor.isValid() ? m_styleColor.rgba() : m_textColor.rgba(),
18 m_linkColor.isValid() ? m_linkColor.rgba() : m_textColor.rgba()
21 return qHashBits( rgb,
sizeof( rgb ), seed );
24void QskTextColors::setTextColor(
const QColor& color )
29void QskTextColors::setStyleColor(
const QColor& color )
34void QskTextColors::setLinkColor(
const QColor& color )
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 );
50QVariant QskTextColors::interpolate(
53 return QVariant::fromValue( from.interpolated( to, ratio ) );
56#ifndef QT_NO_DEBUG_STREAM
60static inline void qskDebugColor( QDebug debug,
const QColor& c )
62 debug <<
'(' << c.red() <<
',' << c.green() <<
','
63 << c.blue() <<
',' << c.alpha() <<
')';
68 QDebugStateSaver saver( debug );
71 debug <<
"TextColors" <<
'(';
75 if ( colors.textColor().isValid() )
76 qskDebugColor( debug, colors.textColor() );
80 if ( colors.styleColor().isValid() )
83 qskDebugColor( debug, colors.styleColor() );
86 if ( colors.linkColor().isValid() )
89 qskDebugColor( debug, colors.linkColor() );
99#include "moc_QskTextColors.cpp"