diff options
-rw-r--r-- | room.cpp | 5 | ||||
-rw-r--r-- | room.h | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -414,6 +414,11 @@ int Room::memberCount() const return d->membersMap.size(); } +int Room::timelineSize() const +{ + return int(d->timeline.size()); +} + void Room::Private::insertMemberIntoMap(User *u) { auto namesakes = membersMap.values(u->name()); @@ -97,6 +97,7 @@ namespace QMatrixClient Q_INVOKABLE QList<User*> users() const; Q_INVOKABLE QStringList memberNames() const; Q_INVOKABLE int memberCount() const; + Q_INVOKABLE int timelineSize() const; /** * Returns a room avatar and requests it from the network if needed |