aboutsummaryrefslogtreecommitdiff
path: root/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/chat.h b/chat.h
index 70a813c..0fc6152 100644
--- a/chat.h
+++ b/chat.h
@@ -12,6 +12,7 @@ class DcChat : public QObject {
Q_PROPERTY(bool isContactRequest READ isContactRequest CONSTANT)
Q_PROPERTY(bool canSend READ canSend CONSTANT)
Q_PROPERTY(bool muted READ isMuted CONSTANT)
+ Q_PROPERTY(int visibility READ getVisibility CONSTANT)
public:
explicit DcChat(QObject *parent = nullptr);
@@ -26,6 +27,7 @@ public:
Q_INVOKABLE bool isContactRequest ();
Q_INVOKABLE bool canSend();
Q_INVOKABLE bool isMuted();
+ Q_INVOKABLE int getVisibility();
private:
dc_chat_t *m_chat{nullptr};