diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-10 16:10:54 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-10 16:22:26 +0900 |
commit | df7f9bd2c26ca67fb3d221f9d3a68e34fb25a235 (patch) | |
tree | a9b4609a85c310c7b270b8f703b84ab3ec992899 /examples | |
parent | 6ecdefd8463c0b393dc51535ddb4b4283b5891d8 (diff) | |
download | libquotient-df7f9bd2c26ca67fb3d221f9d3a68e34fb25a235.tar.gz libquotient-df7f9bd2c26ca67fb3d221f9d3a68e34fb25a235.zip |
Process incoming redactions
This only applies to new messages; historical redaction events are just skipped because historical events are already redacted on the server side. Closes #117.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/qmc-example.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp index dc0c94e4..62ae8310 100644 --- a/examples/qmc-example.cpp +++ b/examples/qmc-example.cpp @@ -15,15 +15,21 @@ void onNewRoom(Room* r) { cout << "New room: " << r->id().toStdString() << endl; QObject::connect(r, &Room::namesChanged, [=] { - cout << "Room " << r->id().toStdString() << ", name(s) changed:" << endl; - cout << " Name: " << r->name().toStdString() << endl; - cout << " Canonical alias: " << r->canonicalAlias().toStdString() << endl; + cout << "Room " << r->id().toStdString() << ", name(s) changed:" << endl + << " Name: " << r->name().toStdString() << endl + << " Canonical alias: " << r->canonicalAlias().toStdString() + << endl << endl; }); - QObject::connect(r, &Room::aboutToAddNewMessages, [=] (RoomEvents evs) { - cout << "New events in room " << r->id().toStdString() << ":" << endl; - for (auto e: evs) + QObject::connect(r, &Room::aboutToAddNewMessages, [=] (RoomEventsView events) { + cout << events.size() << " new event(s) in room " + << r->id().toStdString() << ":" << endl; + for (auto e: events) { - cout << string(e->originalJson()) << endl; + cout << "From: " + << r->roomMembername(e->senderId()).toStdString() + << endl << "Timestamp:" + << e->timestamp().toString().toStdString() << endl + << "JSON:" << endl << e->originalJson().toStdString() << endl; } }); } @@ -36,7 +42,7 @@ int main(int argc, char* argv[]) auto conn = new Connection(QUrl("https://matrix.org")); conn->connectToServer(argv[1], argv[2], "QMatrixClient example application"); - QObject::connect(conn, &Connection::connected, [=] { + auto c = QObject::connect(conn, &Connection::connected, [=] { cout << "Connected" << endl; conn->sync(); }); |