diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-26 08:03:16 -0400 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-26 08:03:16 -0400 |
commit | de05579f18a5c264fe0dbea68ea83abcff526d00 (patch) | |
tree | f59c53cf4732dab0aa346153e0105a6a5e5e7d5c | |
parent | aacc01fbddc32ceee36a0baedad219ad5d07f955 (diff) | |
download | libquotient-de05579f18a5c264fe0dbea68ea83abcff526d00.tar.gz libquotient-de05579f18a5c264fe0dbea68ea83abcff526d00.zip |
Connection::directChatUsers()
-rw-r--r-- | connection.cpp | 6 | ||||
-rw-r--r-- | connection.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/connection.cpp b/connection.cpp index db8bb085..e4e622a3 100644 --- a/connection.cpp +++ b/connection.cpp @@ -702,6 +702,12 @@ bool Connection::isDirectChat(const QString& roomId) const return d->directChats.key(roomId) != nullptr; } +QList<const User*> Connection::directChatUsers(const Room* room) const +{ + Q_ASSERT(room != nullptr); + return d->directChats.keys(room->id()); +} + QMap<QString, User*> Connection::users() const { return d->userMap; diff --git a/connection.h b/connection.h index 7c11c32d..c6d543ec 100644 --- a/connection.h +++ b/connection.h @@ -114,6 +114,12 @@ namespace QMatrixClient /** Check whether the room id corresponds to a direct chat */ bool isDirectChat(const QString& roomId) const; + /** Retrieve the list of users the room is a direct chat with + * @return The list of users for which this room is marked as + * a direct chat; an empty list if the room is not a direct chat + */ + QList<const User*> directChatUsers(const Room* room) const; + QMap<QString, User*> users() const; // FIXME: Convert Q_INVOKABLEs to Q_PROPERTIES |