diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-30 16:47:14 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-30 16:47:14 +0900 |
commit | db398e7134f3a7b6cd7f4281add1decfeb961a55 (patch) | |
tree | 04fa33845b446e25eb2855a732407c7ce556b408 | |
parent | db5d99c8b3f68b116fc55a4563bb66db4bf82cf8 (diff) | |
download | libquotient-db398e7134f3a7b6cd7f4281add1decfeb961a55.tar.gz libquotient-db398e7134f3a7b6cd7f4281add1decfeb961a55.zip |
Room: setName(), setCanonicalAlias()
-rw-r--r-- | room.cpp | 11 | ||||
-rw-r--r-- | room.h | 2 |
2 files changed, 13 insertions, 0 deletions
@@ -862,6 +862,17 @@ void Room::postMessage(const RoomMessageEvent& event) connection()->callApi<SendEventJob>(id(), event); } +void Room::setName(const QString& newName) +{ + connection()->callApi<SetRoomStateJob>(id(), RoomNameEvent(newName)); +} + +void Room::setCanonicalAlias(const QString& newAlias) +{ + connection()->callApi<SetRoomStateJob>(id(), + RoomCanonicalAliasEvent(newAlias)); +} + void Room::setTopic(const QString& newTopic) { RoomTopicEvent evt(newTopic); @@ -235,6 +235,8 @@ namespace QMatrixClient /** @deprecated If you have a custom event type, construct the event * and pass it as a whole to postMessage() */ void postMessage(const QString& type, const QString& plainText); + void setName(const QString& newName); + void setCanonicalAlias(const QString& newAlias); void setTopic(const QString& newTopic); void getPreviousContent(int limit = 10); |