From c03d9b0a595caf8a2d3fbc225625c0e9a083a95c Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 24 May 2018 19:44:56 +0900 Subject: Room: Make isFavourite/LowPriority/DirectChat accessible from QML The first two as Q_PROPERTYs, the last one as Q_INVOKABLE. --- lib/room.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/room.h b/lib/room.h index 0d629e20..bdf4e1c1 100644 --- a/lib/room.h +++ b/lib/room.h @@ -121,6 +121,8 @@ namespace QMatrixClient Q_PROPERTY(bool hasUnreadMessages READ hasUnreadMessages NOTIFY unreadMessagesChanged) Q_PROPERTY(int unreadCount READ unreadCount NOTIFY unreadMessagesChanged) Q_PROPERTY(QStringList tagNames READ tagNames NOTIFY tagsChanged) + Q_PROPERTY(bool isFavourite READ isFavourite NOTIFY tagsChanged) + Q_PROPERTY(bool isLowPriority READ isLowPriority NOTIFY tagsChanged) public: using Timeline = std::deque; @@ -310,7 +312,7 @@ namespace QMatrixClient bool isLowPriority() const; /** Check whether this room is a direct chat */ - bool isDirectChat() const; + Q_INVOKABLE bool isDirectChat() const; /** Get the list of users this room is a direct chat with */ QList directChatUsers() const; -- cgit v1.2.3