aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-05-09 04:43:27 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-05-09 05:30:30 +0900
commit6431636e6a02d4fddb848e09e79156724e00f6f6 (patch)
treea1cbd504be9b16a205fed0b192e8b82123e5a70e
parent5038ae0a0099c2a5c6ffdd08734b597d92edac70 (diff)
downloadlibquotient-6431636e6a02d4fddb848e09e79156724e00f6f6.tar.gz
libquotient-6431636e6a02d4fddb848e09e79156724e00f6f6.zip
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.
-rw-r--r--room.h3
1 files changed, 2 insertions, 1 deletions
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);