QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskTextColors.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_TEXT_COLORS_H
7#define QSK_TEXT_COLORS_H
8
9#include "QskGlobal.h"
10
11#include <qcolor.h>
12#include <qmetatype.h>
13
14class QDebug;
15class QVariant;
16
17class QSK_EXPORT QskTextColors
18{
19 Q_GADGET
20
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 )
24
25 public:
26 QskTextColors( const QColor& text = QColor(),
27 const QColor& style = QColor(), const QColor& link = QColor() );
28
29 QColor textColor() const;
30 void setTextColor( const QColor& );
31 void setTextColor( QRgb );
32 void setTextColor( Qt::GlobalColor );
33
34 QColor styleColor() const;
35 void setStyleColor( const QColor& );
36 void setStyleColor( QRgb );
37 void setStyleColor( Qt::GlobalColor );
38
39 QColor linkColor() const;
40 void setLinkColor( const QColor& );
41 void setLinkColor( QRgb );
42 void setLinkColor( Qt::GlobalColor );
43
44 QskTextColors interpolated( const QskTextColors&, qreal value ) const;
45
46 static QVariant interpolate( const QskTextColors&,
47 const QskTextColors&, qreal ratio );
48
49 QskHashValue hash( QskHashValue seed = 0 ) const noexcept;
50
51 private:
52 QColor m_textColor;
53 QColor m_styleColor;
54 QColor m_linkColor;
55};
56
57inline QskTextColors::QskTextColors(
58 const QColor& text, const QColor& style, const QColor& link )
59 : m_textColor( text )
60 , m_styleColor( style )
61 , m_linkColor( link )
62{
63}
64
65inline QColor QskTextColors::textColor() const
66{
67 return m_textColor;
68}
69
70inline QColor QskTextColors::linkColor() const
71{
72 return m_linkColor;
73}
74
75inline QColor QskTextColors::styleColor() const
76{
77 return m_styleColor;
78}
79
80inline void QskTextColors::setTextColor( QRgb rgb )
81{
82 setTextColor( QColor::fromRgba( rgb ) );
83}
84
85inline void QskTextColors::setTextColor( Qt::GlobalColor color )
86{
87 setTextColor( QColor( color ) );
88}
89
90inline void QskTextColors::setStyleColor( QRgb rgb )
91{
92 setStyleColor( QColor::fromRgba( rgb ) );
93}
94
95inline void QskTextColors::setStyleColor( Qt::GlobalColor color )
96{
97 setStyleColor( QColor( color ) );
98}
99
100inline void QskTextColors::setLinkColor( QRgb rgb )
101{
102 setLinkColor( QColor::fromRgba( rgb ) );
103}
104
105inline void QskTextColors::setLinkColor( Qt::GlobalColor color )
106{
107 setLinkColor( QColor( color ) );
108}
109
110#ifndef QT_NO_DEBUG_STREAM
111
112QSK_EXPORT QDebug operator<<( QDebug, const QskTextColors& );
113
114#endif
115
116Q_DECLARE_METATYPE( QskTextColors )
117
118#endif