39#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
41 QML_NAMED_ELEMENT(
Color)
42 QML_UNCREATABLE(
"Color is only available as enums.")
53 inline DColor(
const QColor &color) {
54 data.color.value = color;
56#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
57 DColor(
const QJSValue ¶ms) :
DColor(QColor(params.toString())) { }
61 memcpy(
static_cast<void*
>(&data),
static_cast<const void*
>(&other.data),
sizeof(Data));
67 [[nodiscard]]
bool isValid()
const noexcept;
68 [[nodiscard]]
bool isTypedColor()
const noexcept;
69 [[nodiscard]] quint8 type()
const noexcept;
71 bool operator==(
const DColor &c)
const noexcept;
72 bool operator!=(
const DColor &c)
const noexcept;
73 inline DColor &operator=(
const QColor &color) {
74 data.color.value = color;
78 memcpy(
static_cast<void*
>(&data),
static_cast<const void*
>(&other.data),
sizeof(Data));
82 data.hue = std::move(other.data.hue);
83 data.saturation = std::move(other.data.saturation);
84 data.lightness = std::move(other.data.lightness);
85 data.opacity = std::move(other.data.opacity);
86 data.color.value = std::move(other.data.color.value);
90 Q_INVOKABLE QColor toColor(
const QPalette &palette)
const;
91 Q_INVOKABLE QColor color()
const;
92 Q_INVOKABLE DTK_QUICK_NAMESPACE::DColor hue(qint8 floatValue)
const;
93 Q_INVOKABLE DTK_QUICK_NAMESPACE::DColor saturation(qint8 floatValue)
const;
94 Q_INVOKABLE DTK_QUICK_NAMESPACE::DColor lightness(qint8 floatValue)
const;
95 Q_INVOKABLE DTK_QUICK_NAMESPACE::DColor opacity(qint8 floatValue)
const;
100 qint8 saturation = 0;
105 #ifdef Q_COMPILER_UNIFORM_INIT
109 QColor value = QColor();
121 Q_PROPERTY(
bool hasBlurWindow READ hasBlurWindow NOTIFY hasBlurWindowChanged)
122 Q_PROPERTY(
bool hasComposite READ hasComposite NOTIFY hasCompositeChanged)
123 Q_PROPERTY(
bool hasNoTitlebar READ hasNoTitlebar NOTIFY hasNoTitlebarChanged)
124 Q_PROPERTY(
bool hasAnimation READ hasAnimation NOTIFY hasAnimationChanged)
125 Q_PROPERTY(
bool isSoftwareRender READ isSoftwareRender FINAL CONSTANT)
126 Q_PROPERTY(DTK_GUI_NAMESPACE::DWindowManagerHelper::WMName windowManagerName READ windowManagerName CONSTANT)
127 Q_PROPERTY(DTK_GUI_NAMESPACE::DGuiApplicationHelper::ColorType themeType READ themeType NOTIFY themeTypeChanged)
128 Q_PROPERTY(QString windowManagerNameString READ windowManagerNameString CONSTANT)
130 Q_PROPERTY(DTK_GUI_NAMESPACE::DFontManager *fontManager READ fontManager FINAL CONSTANT)
131#if QT_VERSION <= QT_VERSION_CHECK(6, 0, 0)
132 Q_PROPERTY(QPalette palette READ palette NOTIFY paletteChanged)
133 Q_PROPERTY(QPalette inactivePalette READ inactivePalette NOTIFY inactivePaletteChanged)
135 Q_PROPERTY(QQuickPalette* palette READ quickPalette NOTIFY paletteChanged)
136 Q_PROPERTY(QQuickPalette* inactivePalette READ inactiveQuickPalette NOTIFY inactivePaletteChanged)
138 Q_PROPERTY(QString deepinDistributionOrgLogo READ deepinDistributionOrgLogo CONSTANT)
139 Q_PROPERTY(QString deepinWebsiteName READ deepinWebsiteName CONSTANT)
140 Q_PROPERTY(QString deepinWebsiteLink READ deepinWebsiteLink CONSTANT)
141#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
142 QML_NAMED_ELEMENT(
DTK)
182#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
183 enum class CompositionMode {
184 Source = QPainter::CompositionMode_Source,
185 SourceOver = QPainter::CompositionMode_SourceOver,
186 Destination = QPainter::CompositionMode_Destination,
187 DestinationOver = QPainter::CompositionMode_DestinationOver,
188 Clear = QPainter::CompositionMode_Clear,
190 Q_ENUM(CompositionMode)
193 bool hasBlurWindow()
const;
194 bool hasComposite()
const;
195 bool hasNoTitlebar()
const;
196 static bool hasAnimation();
197 static bool isSoftwareRender();
199 DWindowManagerHelper::WMName windowManagerName()
const;
200 QString windowManagerNameString()
const;
202 DGuiApplicationHelper::ColorType themeType()
const;
205 DFontManager *fontManager()
const;
207 QPalette palette()
const;
208 QPalette inactivePalette()
const;
209#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
210 QQuickPalette *quickPalette()
const;
211 QQuickPalette *inactiveQuickPalette()
const;
214 Q_INVOKABLE QColor blendColor(
const QColor &substrate,
const QColor &superstratum);
215 Q_INVOKABLE DTK_QUICK_NAMESPACE::DColor makeColor(DTK_QUICK_NAMESPACE::DColor::Type type);
216 Q_INVOKABLE DTK_QUICK_NAMESPACE::DColor makeColor(
const QColor &color);
217 Q_INVOKABLE QUrl makeShadowImageUrl(qreal boxSize, qreal cornerRadius, qreal shadowBlur,
218 QColor color, qreal xOffset, qreal yOffset, qreal spread,
219 bool hollow,
bool inner);
220 Q_INVOKABLE QUrl makeShadowImageUrl(qreal boxSize, qreal topLeftRadius, qreal topRightRadius, qreal bottomLeftRadius, qreal bottomRightRadius,
221 qreal shadowBlur, QColor color, qreal xOffset, qreal yOffset, qreal spread,
222 bool hollow,
bool inner);
224 Q_INVOKABLE DTK_GUI_NAMESPACE::DGuiApplicationHelper::ColorType toColorType(
const QColor &color);
225 Q_INVOKABLE QColor selectColor(
const QColor &windowColor,
const QColor &light,
const QColor &dark);
227 QString deepinWebsiteName()
const;
228 QString deepinWebsiteLink()
const;
229 QString deepinDistributionOrgLogo()
const;
231 Q_INVOKABLE QPoint cursorPosition()
const;
233 Q_INVOKABLE DTK_QUICK_NAMESPACE::DQuickDciIcon makeIcon(
const QJSValue &qicon,
const QJSValue &iconExtra);
234#if QT_VERSION <= QT_VERSION_CHECK(6, 0, 0)
235 Q_INVOKABLE DTK_GUI_NAMESPACE::DDciIconPalette makeIconPalette(
const QPalette &palette);
237 Q_INVOKABLE DTK_GUI_NAMESPACE::DDciIconPalette makeIconPalette(
const QQuickPalette *palette);
240 Q_INVOKABLE
bool sendMessage(QObject *target,
const QString &content,
const QString &iconName = QString(),
int duration = 4000,
const QString &msgId = QString());
241 Q_INVOKABLE
bool sendMessage(QObject *target, QQmlComponent *delegate,
const QVariant &message,
int duration = 4000,
const QString &msgId = QString());
242 Q_INVOKABLE
void closeMessage(DTK_QUICK_NAMESPACE::FloatingMessageContainer *message);
243 Q_INVOKABLE
void closeMessage(QObject *target,
const QString &msgId);
244 Q_INVOKABLE
void sendSystemMessage(
const QString &summary,
const QString &body = QString(),
245 const QString &appIcon = QString(),
const QStringList &actions = QStringList(),
246 const QVariantMap hints = QVariantMap(),
const int timeout = 3000,
const uint replaceId = 0);
248 static void setPopupMode(
const PopupMode mode);
249 static bool loadTranslator();
251#if QT_VERSION_MAJOR > 5
252 static QSGRootNode *getRootNode(QQuickItem *item);
253 static int &QSGNode_subtreeRenderableCount(QSGNode *node);
254 static QSGNode* &QSGNode_firstChild(QSGNode *node);
255 static QSGNode* &QSGNode_lastChild(QSGNode *node);
256 static QSGNode* &QSGNode_parent(QSGNode *node);
261 void hasBlurWindowChanged();
262 void hasCompositeChanged();
263 void hasNoTitlebarChanged();
264 void hasAnimationChanged();
265 void paletteChanged();
266 void inactivePaletteChanged();
267 void themeTypeChanged(DTK_GUI_NAMESPACE::DGuiApplicationHelper::ColorType themeType);
272 D_PRIVATE_SLOT(
void _q_onPaletteChanged())