diff options
Diffstat (limited to 'room.h')
-rw-r--r-- | room.h | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -20,6 +20,7 @@ #define QMATRIXCLIENT_ROOM_H #include <QtCore/QList> +#include <QtCore/QStringList> #include <QtCore/QObject> #include <QtCore/QJsonObject> @@ -55,9 +56,14 @@ namespace QMatrixClient /** * @brief Produces a disambiguated name for a given user in - * the context of the room. + * the context of the room */ Q_INVOKABLE QString roomMembername(User* u) const; + /** + * @brief Produces a disambiguated name for a user with this id in + * the context of the room + */ + Q_INVOKABLE QString roomMembername(QString userId) const; Q_INVOKABLE void addMessage( Event* event ); Q_INVOKABLE void addInitialState( State* state ); @@ -95,7 +101,7 @@ namespace QMatrixClient void notificationCountChanged(Room* room); protected: - Connection* connection(); + Connection* connection() const; virtual void processMessageEvent(Event* event); virtual void processStateEvent(Event* event); virtual void processEphemeralEvent(Event* event); |