From db398e7134f3a7b6cd7f4281add1decfeb961a55 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 30 Jan 2018 16:47:14 +0900 Subject: Room: setName(), setCanonicalAlias() --- room.cpp | 11 +++++++++++ room.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/room.cpp b/room.cpp index d5079711..4270875c 100644 --- a/room.cpp +++ b/room.cpp @@ -862,6 +862,17 @@ void Room::postMessage(const RoomMessageEvent& event) connection()->callApi(id(), event); } +void Room::setName(const QString& newName) +{ + connection()->callApi(id(), RoomNameEvent(newName)); +} + +void Room::setCanonicalAlias(const QString& newAlias) +{ + connection()->callApi(id(), + RoomCanonicalAliasEvent(newAlias)); +} + void Room::setTopic(const QString& newTopic) { RoomTopicEvent evt(newTopic); diff --git a/room.h b/room.h index b908a763..0a9bc2b8 100644 --- a/room.h +++ b/room.h @@ -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); -- cgit v1.2.3