aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-01 20:19:48 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-01 20:19:48 +0900
commite15645d0e7afc0f45727d0d6611445fc26ef5219 (patch)
tree03e5dbe17941a3bc4f7e1c75fc0567f55642883a
parent646ee63846c8985b6222ae1096ccc970a1834ce5 (diff)
downloadlibquotient-e15645d0e7afc0f45727d0d6611445fc26ef5219.tar.gz
libquotient-e15645d0e7afc0f45727d0d6611445fc26ef5219.zip
Connection::tagNames()
To be able to get all available tags throughout the connection.
-rw-r--r--connection.cpp11
-rw-r--r--connection.h3
2 files changed, 14 insertions, 0 deletions
diff --git a/connection.cpp b/connection.cpp
index 7914639e..1c65d66f 100644
--- a/connection.cpp
+++ b/connection.cpp
@@ -534,6 +534,17 @@ QHash<QString, QVector<Room*>> Connection::tagsToRooms() const
return result;
}
+QStringList Connection::tagNames() const
+{
+ QStringList tags ({"m.favourite"});
+ for (auto* r: d->roomMap)
+ for (const auto& tag: r->tagNames())
+ if (tag != "m.lowpriority" && !tags.contains(tag))
+ tags.push_back(tag);
+ tags.push_back("m.lowpriority");
+ return tags;
+}
+
QVector<Room*> Connection::roomsWithTag(const QString& tagName) const
{
QVector<Room*> rooms;
diff --git a/connection.h b/connection.h
index b45a171d..1e9df5e2 100644
--- a/connection.h
+++ b/connection.h
@@ -83,6 +83,9 @@ namespace QMatrixClient
*/
QHash<QString, QVector<Room*>> tagsToRooms() const;
+ /** Get all room tags known on this connection */
+ QStringList tagNames() const;
+
/** Get the list of rooms with the specified tag */
QVector<Room*> roomsWithTag(const QString& tagName) const;