diff options
-rw-r--r-- | room.cpp | 10 | ||||
-rw-r--r-- | room.h | 3 |
2 files changed, 13 insertions, 0 deletions
@@ -631,6 +631,16 @@ bool Room::isLowPriority() const return d->tags.contains(LowPriorityTag); } +bool Room::isDirectChat() const +{ + return connection()->isDirectChat(id()); +} + +QList<const User*> Room::directChatUsers() const +{ + return connection()->directChatUsers(this); +} + const RoomMessageEvent* Room::Private::getEventWithFile(const QString& eventId) const { @@ -269,6 +269,9 @@ namespace QMatrixClient /** Check whether this room is a direct chat */ bool isDirectChat() const; + /** Get the list of users this room is a direct chat with */ + QList<const User*> directChatUsers() const; + Q_INVOKABLE QUrl urlToThumbnail(const QString& eventId); Q_INVOKABLE QUrl urlToDownload(const QString& eventId); Q_INVOKABLE QString fileNameToDownload(const QString& eventId); |