DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
dmessagemanager_p.h
1// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#pragma once
6
7#include <dtkdeclarative_global.h>
8
9#include <QQmlComponent>
10#include <QQuickItem>
11
12DQUICK_BEGIN_NAMESPACE
13
14class MessageManager;
15class FloatingMessageContainer : public QObject
16{
17 Q_OBJECT
18 Q_PROPERTY(QQuickItem *panel READ panel WRITE setPanel)
19 Q_PROPERTY(QVariant message READ message WRITE setMessage NOTIFY messageChanged)
20 Q_PROPERTY(int duration READ duration WRITE setDuration NOTIFY durationChanged)
21 Q_PROPERTY(bool immediateClose READ immediateClose WRITE setImmediateClose)
22 Q_CLASSINFO("DefaultProperty", "panel")
23#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
24 QML_NAMED_ELEMENT(FloatingMessageContainer)
25#endif
26public:
27 explicit FloatingMessageContainer(QObject *parent = nullptr);
28
29 QVariant message() const;
30 void setMessage(const QVariant &message);
31 QQuickItem *panel() const;
32 void setPanel(QQuickItem *panel);
33 QString messageId() const;
34 void setMessageId(const QString &msgId);
35 int duration() const;
36 void setDuration(int duration);
37 bool immediateClose() const;
38 void setImmediateClose(bool immediateClose);
39
40public Q_SLOT:
41 void close();
42
43Q_SIGNALS:
44 void messageChanged();
45 void durationChanged();
46 void delayClose();
47
48private:
49 friend MessageManager;
50
51 QQuickItem *m_panel = nullptr;
52 QVariant m_message;
53 QString m_msgId;
54 int m_duration = 4000;
55 bool m_immediateClose = false;
56};
57
58class MessageManager : public QObject
59{
60 Q_OBJECT
61 Q_PROPERTY(QQmlComponent *delegate READ delegate WRITE setDelegate)
62 Q_PROPERTY(QQuickItem *layout READ layout WRITE setLayout)
63 Q_PROPERTY(int capacity READ capacity WRITE setCapacity)
64 Q_PROPERTY(int count READ count NOTIFY countChanged)
65#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
66 QML_UNCREATABLE("MessageManager Attached.")
67 QML_NAMED_ELEMENT(MessageManager)
68 QML_ATTACHED(MessageManager)
69#endif
70
71public:
72 explicit MessageManager(QQuickWindow *parent = nullptr);
73
74 QQuickWindow *window() const;
75 QQmlComponent *delegate() const;
76 void setDelegate(QQmlComponent *delegate);
77 QQuickItem *layout() const;
78 void setLayout(QQuickItem * layout);
79 int capacity() const;
80 void setCapacity(int capacity);
81 int count() const;
82 QList<FloatingMessageContainer *> messages(const QString &msgId) const;
83
84 static MessageManager *qmlAttachedProperties(QObject *object);
85
86public Q_SLOTS:
87 bool sendMessage(const QString &content, const QString &iconName = QString(), int duration = 4000, const QString &msgId = QString());
88 bool sendMessage(QQmlComponent *delegate, const QVariant &message, int duration = 4000, const QString &msgId = QString());
89 void close(DTK_QUICK_NAMESPACE::FloatingMessageContainer *message);
90 void close(const QString &msgId);
91
92Q_SIGNALS:
93 void countChanged();
94
95protected:
96 virtual void timerEvent(QTimerEvent *e) override;
97
98private:
99 void ensureLayout();
100 void ensureDelegate();
101 bool reachedUpperLimit() const;
102 FloatingMessageContainer *replaceMessage(const QString &msgId);
103 void stackBeforeMessage(QQuickItem *message);
104 FloatingMessageContainer *beginCreateMessage(QQmlComponent *component);
105 void endCreateMessage(QQmlComponent *component, FloatingMessageContainer *container);
106
107private:
108 QQmlComponent *m_delegate;
109 QQuickItem *m_layout;
110 QList<QPair<int, FloatingMessageContainer *>> m_timers;
111 int m_capacity = 3;
112};
113
114DQUICK_END_NAMESPACE
115
116QML_DECLARE_TYPEINFO(DTK_QUICK_NAMESPACE::MessageManager, QML_HAS_ATTACHED_PROPERTIES)
Definition dmessagemanager_p.h:16
Definition dmessagemanager_p.h:59
一种控制 FloatingMessage 的附加对象.