From 93dc89d9353e9f30d42528d8ffaba992f58139aa Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 26 Mar 2018 08:05:01 -0400 Subject: Room: isDirectChat() and directChatUsers() isDirectChat() has been declared previously but not implemented, hence a bit of strangeness in the commit. --- room.cpp | 10 ++++++++++ room.h | 3 +++ 2 files changed, 13 insertions(+) diff --git a/room.cpp b/room.cpp index 48c27ba0..01055013 100644 --- a/room.cpp +++ b/room.cpp @@ -631,6 +631,16 @@ bool Room::isLowPriority() const return d->tags.contains(LowPriorityTag); } +bool Room::isDirectChat() const +{ + return connection()->isDirectChat(id()); +} + +QList Room::directChatUsers() const +{ + return connection()->directChatUsers(this); +} + const RoomMessageEvent* Room::Private::getEventWithFile(const QString& eventId) const { diff --git a/room.h b/room.h index 0eb5ecc3..59566092 100644 --- a/room.h +++ b/room.h @@ -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 directChatUsers() const; + Q_INVOKABLE QUrl urlToThumbnail(const QString& eventId); Q_INVOKABLE QUrl urlToDownload(const QString& eventId); Q_INVOKABLE QString fileNameToDownload(const QString& eventId); -- cgit v1.2.3