6#ifndef QSK_TEXT_COLORS_H
7#define QSK_TEXT_COLORS_H
21 Q_PROPERTY( QColor textColor READ textColor WRITE setTextColor )
22 Q_PROPERTY( QColor styleColor READ styleColor WRITE setStyleColor )
23 Q_PROPERTY( QColor linkColor READ linkColor WRITE setLinkColor )
27 const QColor& style = QColor(),
const QColor& link = QColor() );
29 QColor textColor()
const;
30 void setTextColor(
const QColor& );
31 void setTextColor( QRgb );
32 void setTextColor( Qt::GlobalColor );
34 QColor styleColor()
const;
35 void setStyleColor(
const QColor& );
36 void setStyleColor( QRgb );
37 void setStyleColor( Qt::GlobalColor );
39 QColor linkColor()
const;
40 void setLinkColor(
const QColor& );
41 void setLinkColor( QRgb );
42 void setLinkColor( Qt::GlobalColor );
49 QskHashValue hash( QskHashValue seed = 0 )
const noexcept;
57inline QskTextColors::QskTextColors(
58 const QColor& text,
const QColor& style,
const QColor& link )
60 , m_styleColor( style )
65inline QColor QskTextColors::textColor()
const
70inline QColor QskTextColors::linkColor()
const
75inline QColor QskTextColors::styleColor()
const
80inline void QskTextColors::setTextColor( QRgb rgb )
82 setTextColor( QColor::fromRgba( rgb ) );
85inline void QskTextColors::setTextColor( Qt::GlobalColor color )
87 setTextColor( QColor( color ) );
90inline void QskTextColors::setStyleColor( QRgb rgb )
92 setStyleColor( QColor::fromRgba( rgb ) );
95inline void QskTextColors::setStyleColor( Qt::GlobalColor color )
97 setStyleColor( QColor( color ) );
100inline void QskTextColors::setLinkColor( QRgb rgb )
102 setLinkColor( QColor::fromRgba( rgb ) );
105inline void QskTextColors::setLinkColor( Qt::GlobalColor color )
107 setLinkColor( QColor( color ) );
110#ifndef QT_NO_DEBUG_STREAM