DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
dplatformthemeproxy.h
1// SPDX-FileCopyrightText: 2020 - 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DPLATFORMTHEMEPROXY_H
6#define DPLATFORMTHEMEPROXY_H
7
8#include <DObject>
9#include <DPlatformTheme>
10
11#include <dtkdeclarative_global.h>
12
13DGUI_USE_NAMESPACE
14
15DQUICK_BEGIN_NAMESPACE
16
17class DPlatformThemeProxyPrivate;
18class DPlatformThemeProxy : public QObject, public DTK_CORE_NAMESPACE::DObject
19{
20 Q_OBJECT
21
22 Q_PROPERTY(int cursorBlinkTime READ cursorBlinkTime WRITE setCursorBlinkTime NOTIFY cursorBlinkTimeChanged)
23 Q_PROPERTY(int cursorBlinkTimeout READ cursorBlinkTimeout WRITE setCursorBlinkTimeout NOTIFY cursorBlinkTimeoutChanged)
24 Q_PROPERTY(bool cursorBlink READ cursorBlink WRITE setCursorBlink NOTIFY cursorBlinkChanged)
25 Q_PROPERTY(int doubleClickDistance READ doubleClickDistance WRITE setDoubleClickDistance NOTIFY doubleClickDistanceChanged)
26 Q_PROPERTY(int doubleClickTime READ doubleClickTime WRITE setDoubleClickTime NOTIFY doubleClickTimeChanged)
27 Q_PROPERTY(int dndDragThreshold READ dndDragThreshold WRITE setDndDragThreshold NOTIFY dndDragThresholdChanged)
28 Q_PROPERTY(int windowRadius READ windowRadius WRITE setWindowRadius NOTIFY windowRadiusChanged)
29 Q_PROPERTY(QByteArray themeName READ themeName WRITE setThemeName NOTIFY themeNameChanged)
30 Q_PROPERTY(QByteArray iconThemeName READ iconThemeName WRITE setIconThemeName NOTIFY iconThemeNameChanged)
31 Q_PROPERTY(QByteArray soundThemeName READ soundThemeName WRITE setSoundThemeName NOTIFY soundThemeNameChanged)
32 // Font
33 Q_PROPERTY(QByteArray fontName READ fontName WRITE setFontName NOTIFY fontNameChanged)
34 Q_PROPERTY(QByteArray monoFontName READ monoFontName WRITE setMonoFontName NOTIFY monoFontNameChanged)
35 Q_PROPERTY(qreal fontPointSize READ fontPointSize WRITE setFontPointSize NOTIFY fontPointSizeChanged)
36 Q_PROPERTY(QByteArray gtkFontName READ gtkFontName WRITE setGtkFontName NOTIFY gtkFontNameChanged)
37
38 Q_PROPERTY(QColor activeColor READ activeColor WRITE setActiveColor NOTIFY activeColorChanged)
39#if DTK_VERSION < DTK_VERSION_CHECK(6, 0, 0, 0)
40 // QPalette
41 Q_PROPERTY(QColor window READ window WRITE setWindow NOTIFY windowChanged)
42 Q_PROPERTY(QColor windowText READ windowText WRITE setWindowText NOTIFY windowTextChanged)
43 Q_PROPERTY(QColor base READ base WRITE setBase NOTIFY baseChanged)
44 Q_PROPERTY(QColor alternateBase READ alternateBase WRITE setAlternateBase NOTIFY alternateBaseChanged)
45 Q_PROPERTY(QColor toolTipBase READ toolTipBase WRITE setToolTipBase NOTIFY toolTipBaseChanged)
46 Q_PROPERTY(QColor toolTipText READ toolTipText WRITE setToolTipText NOTIFY toolTipTextChanged)
47 Q_PROPERTY(QColor text READ text WRITE setText NOTIFY textChanged)
48 Q_PROPERTY(QColor button READ button WRITE setButton NOTIFY buttonChanged)
49 Q_PROPERTY(QColor buttonText READ buttonText WRITE setButtonText NOTIFY buttonTextChanged)
50 Q_PROPERTY(QColor brightText READ brightText WRITE setBrightText NOTIFY brightTextChanged)
51 Q_PROPERTY(QColor light READ light WRITE setLight NOTIFY lightChanged)
52 Q_PROPERTY(QColor midlight READ midlight WRITE setMidlight NOTIFY midlightChanged)
53 Q_PROPERTY(QColor dark READ dark WRITE setDark NOTIFY darkChanged)
54 Q_PROPERTY(QColor mid READ mid WRITE setMid NOTIFY midChanged)
55 Q_PROPERTY(QColor shadow READ shadow WRITE setShadow NOTIFY shadowChanged)
56 Q_PROPERTY(QColor highlight READ highlight WRITE setHighlight NOTIFY highlightChanged)
57 Q_PROPERTY(QColor highlightedText READ highlightedText WRITE setHighlightedText NOTIFY highlightedTextChanged)
58 Q_PROPERTY(QColor link READ link WRITE setLink NOTIFY linkChanged)
59 Q_PROPERTY(QColor linkVisited READ linkVisited WRITE setLinkVisited NOTIFY linkVisitedChanged)
60 // DPalette
61 Q_PROPERTY(QColor itemBackground READ itemBackground WRITE setItemBackground NOTIFY itemBackgroundChanged)
62 Q_PROPERTY(QColor textTitle READ textTitle WRITE setTextTitle NOTIFY textTitleChanged)
63 Q_PROPERTY(QColor textTips READ textTips WRITE setTextTips NOTIFY textTipsChanged)
64 Q_PROPERTY(QColor textWarning READ textWarning WRITE setTextWarning NOTIFY textWarningChanged)
65 Q_PROPERTY(QColor textLively READ textLively WRITE setTextLively NOTIFY textLivelyChanged)
66 Q_PROPERTY(QColor lightLively READ lightLively WRITE setLightLively NOTIFY lightLivelyChanged)
67 Q_PROPERTY(QColor darkLively READ darkLively WRITE setDarkLively NOTIFY darkLivelyChanged)
68 Q_PROPERTY(QColor frameBorder READ frameBorder WRITE setFrameBorder NOTIFY frameBorderChanged)
69#endif
70
71public:
72 explicit DPlatformThemeProxy(DPlatformTheme *proxy, QObject *parent = nullptr);
73 ~DPlatformThemeProxy() override;
74
75 int cursorBlinkTime() const;
76 int cursorBlinkTimeout() const;
77 bool cursorBlink() const;
78 int doubleClickDistance() const;
79 int doubleClickTime() const;
80 int dndDragThreshold() const;
81 int windowRadius() const;
82 Q_INVOKABLE int windowRadius(int defaultValue) const;
83 QByteArray themeName() const;
84 QByteArray iconThemeName() const;
85 QByteArray soundThemeName() const;
86
87 QByteArray fontName() const;
88 QByteArray monoFontName() const;
89 qreal fontPointSize() const;
90 QByteArray gtkFontName() const;
91
92 QColor activeColor() const;
93
94 bool isValidPalette() const;
95
96#if DTK_VERSION < DTK_VERSION_CHECK(6, 0, 0, 0)
97 QColor window() const;
98 QColor windowText() const;
99 QColor base() const;
100 QColor alternateBase() const;
101 QColor toolTipBase() const;
102 QColor toolTipText() const;
103 QColor text() const;
104 QColor button() const;
105 QColor buttonText() const;
106 QColor brightText() const;
107 QColor light() const;
108 QColor midlight() const;
109 QColor dark() const;
110 QColor mid() const;
111 QColor shadow() const;
112 QColor highlight() const;
113 QColor highlightedText() const;
114 QColor link() const;
115 QColor linkVisited() const;
116 QColor itemBackground() const;
117 QColor textTitle() const;
118 QColor textTips() const;
119 QColor textWarning() const;
120 QColor textLively() const;
121 QColor lightLively() const;
122 QColor darkLively() const;
123 QColor frameBorder() const;
124#endif
125
126 Q_INVOKABLE int dotsPerInch(const QString &screenName = QString()) const;
127
128public Q_SLOTS:
129 void setCursorBlinkTime(int cursorBlinkTime);
130 void setCursorBlinkTimeout(int cursorBlinkTimeout);
131 void setCursorBlink(bool cursorBlink);
132 void setDoubleClickDistance(int doubleClickDistance);
133 void setDoubleClickTime(int doubleClickTime);
134 void setDndDragThreshold(int dndDragThreshold);
135 void setThemeName(const QByteArray &themeName);
136 void setIconThemeName(const QByteArray &iconThemeName);
137 void setSoundThemeName(const QByteArray &soundThemeName);
138 void setFontName(const QByteArray &fontName);
139 void setMonoFontName(const QByteArray &monoFontName);
140 void setFontPointSize(qreal fontPointSize);
141 void setGtkFontName(const QByteArray &fontName);
142 void setActiveColor(const QColor activeColor);
143#if DTK_VERSION < DTK_VERSION_CHECK(6, 0, 0, 0)
144 void setWindow(const QColor &window);
145 void setWindowText(const QColor &windowText);
146 void setBase(const QColor &base);
147 void setAlternateBase(const QColor &alternateBase);
148 void setToolTipBase(const QColor &toolTipBase);
149 void setToolTipText(const QColor &toolTipText);
150 void setText(const QColor &text);
151 void setButton(const QColor &button);
152 void setButtonText(const QColor &buttonText);
153 void setBrightText(const QColor &brightText);
154 void setLight(const QColor &light);
155 void setMidlight(const QColor &midlight);
156 void setDark(const QColor &dark);
157 void setMid(const QColor &mid);
158 void setShadow(const QColor &shadow);
159 void setHighlight(const QColor &highlight);
160 void setHighlightedText(const QColor &highlightedText);
161 void setLink(const QColor &link);
162 void setLinkVisited(const QColor &linkVisited);
163 void setItemBackground(const QColor &itemBackground);
164 void setTextTitle(const QColor &textTitle);
165 void setTextTips(const QColor &textTips);
166 void setTextWarning(const QColor &textWarning);
167 void setTextLively(const QColor &textLively);
168 void setLightLively(const QColor &lightLively);
169 void setDarkLively(const QColor &darkLively);
170 void setFrameBorder(const QColor &frameBorder);
171#endif
172
173 Q_INVOKABLE void setDotsPerInch(const QString &screenName, int dpi);
174 void setWindowRadius(int windowRadius);
175
176Q_SIGNALS:
177 void cursorBlinkTimeChanged(int cursorBlinkTime);
178 void cursorBlinkTimeoutChanged(int cursorBlinkTimeout);
179 void cursorBlinkChanged(bool cursorBlink);
180 void doubleClickDistanceChanged(int doubleClickDistance);
181 void doubleClickTimeChanged(int doubleClickTime);
182 void dndDragThresholdChanged(int dndDragThreshold);
183 void themeNameChanged(QByteArray themeName);
184 void iconThemeNameChanged(QByteArray iconThemeName);
185 void soundThemeNameChanged(QByteArray soundThemeName);
186 void fontNameChanged(QByteArray fontName);
187 void monoFontNameChanged(QByteArray monoFontName);
188 void fontPointSizeChanged(qreal fontPointSize);
189 void gtkFontNameChanged(QByteArray fontName);
190 void activeColorChanged(QColor activeColor);
191 void paletteChanged(DTK_GUI_NAMESPACE::DPalette palette);
192#if DTK_VERSION < DTK_VERSION_CHECK(6, 0, 0, 0)
193 void windowChanged(QColor window);
194 void windowTextChanged(QColor windowText);
195 void baseChanged(QColor base);
196 void alternateBaseChanged(QColor alternateBase);
197 void toolTipBaseChanged(QColor toolTipBase);
198 void toolTipTextChanged(QColor toolTipText);
199 void textChanged(QColor text);
200 void buttonChanged(QColor button);
201 void buttonTextChanged(QColor buttonText);
202 void brightTextChanged(QColor brightText);
203 void lightChanged(QColor light);
204 void midlightChanged(QColor midlight);
205 void darkChanged(QColor dark);
206 void midChanged(QColor mid);
207 void shadowChanged(QColor shadow);
208 void highlightChanged(QColor highlight);
209 void highlightedTextChanged(QColor highlightedText);
210 void linkChanged(QColor link);
211 void linkVisitedChanged(QColor linkVisited);
212 void itemBackgroundChanged(QColor itemBackground);
213 void textTitleChanged(QColor textTitle);
214 void textTipsChanged(QColor textTips);
215 void textWarningChanged(QColor textWarning);
216 void textLivelyChanged(QColor textLively);
217 void lightLivelyChanged(QColor lightLively);
218 void darkLivelyChanged(QColor darkLively);
219 void frameBorderChanged(QColor frameBorder);
220#endif
221 void dotsPerInchChanged(const QString &screen, int dpi);
222 void windowRadiusChanged(int r);
223
224private:
225 D_DECLARE_PRIVATE(DPlatformThemeProxy)
226};
227
228DQUICK_END_NAMESPACE
229
230#endif // DPLATFORMTHEMEPROXY_H
一个代理类,用于导出dtkgui的DPlatformTheme类的功能到QML使用,功能和接口基本和DPlatformTheme一致
Definition dplatformthemeproxy.h:19