aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt5
-rw-r--r--examples/qmc-example.cpp43
2 files changed, 48 insertions, 0 deletions
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 <iostream>
+#include <QCoreApplication>
+
+#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();
+}