From 6431636e6a02d4fddb848e09e79156724e00f6f6 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 9 May 2017 04:43:27 +0900 Subject: Allow to get a Connection object of the Room It's just natural, after all, Connection is a parent of Room. But seriously, this will be needed when we have rooms from different Connections living next to each other. --- room.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/room.h b/room.h index 8b810ae4..e277a3f9 100644 --- a/room.h +++ b/room.h @@ -63,6 +63,7 @@ namespace QMatrixClient class Room: public QObject { Q_OBJECT + Q_PROPERTY(const Connection* connection READ connection CONSTANT) Q_PROPERTY(QString id READ id CONSTANT) Q_PROPERTY(QString name READ name NOTIFY namesChanged) Q_PROPERTY(QStringList aliases READ aliases NOTIFY namesChanged) @@ -77,6 +78,7 @@ namespace QMatrixClient Room(Connection* connection, QString id); virtual ~Room(); + Connection* connection() const; QString id() const; QString name() const; QStringList aliases() const; @@ -173,7 +175,6 @@ namespace QMatrixClient void unreadMessagesChanged(Room* room); protected: - Connection* connection() const; virtual void doAddNewMessageEvents(const Events& events); virtual void doAddHistoricalMessageEvents(const Events& events); virtual void processStateEvents(const Events& events); -- cgit v1.2.3