From 567d75fd47b185e6906f34b7c4aef0952b5c2f50 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 20 Mar 2017 22:07:15 +0900 Subject: Added an example of libqmatrixclient usage Compile and run with your username and password as the first two arguments. --- CMakeLists.txt | 5 +++++ examples/qmc-example.cpp | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 examples/qmc-example.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 24cdd58d..502fa2b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,8 +74,13 @@ set(libqmatrixclient_SRCS jobs/logoutjob.cpp ) +set(example_SRCS examples/qmc-example.cpp) + add_library(qmatrixclient ${libqmatrixclient_SRCS}) set_property(TARGET qmatrixclient PROPERTY VERSION "0.0.0") set_property(TARGET qmatrixclient PROPERTY SOVERSION 0 ) target_link_libraries(qmatrixclient Qt5::Core Qt5::Network Qt5::Gui) + +add_executable(qmc-example ${example_SRCS}) +target_link_libraries(qmc-example Qt5::Core qmatrixclient) diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp new file mode 100644 index 00000000..36446255 --- /dev/null +++ b/examples/qmc-example.cpp @@ -0,0 +1,43 @@ +#include +#include + +#include "connection.h" +#include "room.h" + +int main(int argc, char* argv[]) +{ + using namespace QMatrixClient; + using std::cout; + using std::endl; + + QCoreApplication app(argc, argv); + if (argc < 2) + return -1; + + auto conn = new Connection(QUrl("https://matrix.org")); + conn->connectToServer(argv[1], argv[2]); + QObject::connect(conn, &Connection::connected, [=] { + cout << "Connected" << endl; + conn->sync(); + }); + QObject::connect(conn, &Connection::syncDone, [=] { + cout << "Sync done" << endl; + conn->sync(30000); + }); + QObject::connect(conn, &Connection::newRoom, [=] (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; + }); + QObject::connect(r, &Room::aboutToAddNewMessages, [=] (Events evs) { + cout << "New events in room " << r->id().toStdString() << ":" << endl; + for (auto e: evs) + { + cout << e->originalJson().toStdString() << endl; + } + }); + }); + return app.exec(); +} -- cgit v1.2.3