aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-30 15:13:35 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-30 16:07:53 +0900
commitfcb0342410beaacc84c59813a1a7b6195c6abf7f (patch)
treea2707f12bbb02962d918a28c5903082785c9d890
parent096fbd4ed4033bbf770769b50ed709862c369281 (diff)
downloadlibquotient-fcb0342410beaacc84c59813a1a7b6195c6abf7f.tar.gz
libquotient-fcb0342410beaacc84c59813a1a7b6195c6abf7f.zip
Connection: more Q_PROPERTYs, newUser signal
-rw-r--r--connection.cpp1
-rw-r--r--connection.h18
2 files changed, 14 insertions, 5 deletions
diff --git a/connection.cpp b/connection.cpp
index 00116c5f..01d7461d 100644
--- a/connection.cpp
+++ b/connection.cpp
@@ -461,6 +461,7 @@ User* Connection::user(const QString& userId)
return d->userMap.value(userId);
auto* user = userFactory(this, userId);
d->userMap.insert(userId, user);
+ emit newUser(user);
return user;
}
diff --git a/connection.h b/connection.h
index 47f8e4de..792ed126 100644
--- a/connection.h
+++ b/connection.h
@@ -52,6 +52,11 @@ namespace QMatrixClient
/** Whether or not the rooms state should be cached locally
* \sa loadState(), saveState()
*/
+ Q_PROPERTY(User* localUser READ user CONSTANT)
+ Q_PROPERTY(QString localUserId READ userId CONSTANT)
+ Q_PROPERTY(QString deviceId READ deviceId CONSTANT)
+ Q_PROPERTY(QByteArray accessToken READ accessToken CONSTANT)
+ Q_PROPERTY(QUrl homeserver READ homeserver WRITE setHomeserver NOTIFY homeserverChanged)
Q_PROPERTY(bool cacheState READ cacheState WRITE setCacheState NOTIFY cacheStateChanged)
public:
using room_factory_t =
@@ -83,14 +88,14 @@ namespace QMatrixClient
// FIXME: Convert Q_INVOKABLEs to Q_PROPERTIES
// (breaks back-compatibility)
- Q_INVOKABLE QUrl homeserver() const;
+ QUrl homeserver() const;
Q_INVOKABLE User* user(const QString& userId);
- Q_INVOKABLE User* user();
- Q_INVOKABLE QString userId() const;
- Q_INVOKABLE QString deviceId() const;
+ User* user();
+ QString userId() const;
+ QString deviceId() const;
/** @deprecated Use accessToken() instead. */
Q_INVOKABLE QString token() const;
- Q_INVOKABLE QByteArray accessToken() const;
+ QByteArray accessToken() const;
Q_INVOKABLE SyncJob* syncJob() const;
Q_INVOKABLE int millisToReconnect() const;
@@ -257,6 +262,8 @@ namespace QMatrixClient
void syncDone();
void syncError(QString error);
+ void newUser(User* user);
+
/**
* \group Signals emitted on room transitions
*
@@ -364,3 +371,4 @@ namespace QMatrixClient
static user_factory_t userFactory;
};
} // namespace QMatrixClient
+Q_DECLARE_METATYPE(QMatrixClient::Connection*)