aboutsummaryrefslogtreecommitdiffstats
path: root/demo/main.cpp
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-23 16:48:32 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-23 16:48:32 +0100
commit8bcf948b76c9564cb38d3611228ccaf73890a548 (patch)
tree5d7bc5aec767ff7911c067d1bc137f6905919c91 /demo/main.cpp
parent61debe99a269bf7e87f6ba2f8d2a376e619fcf12 (diff)
downloadQtXpl2-8bcf948b76c9564cb38d3611228ccaf73890a548.tar.gz
QtXpl2-8bcf948b76c9564cb38d3611228ccaf73890a548.zip
Rename demo/ → jetting-interface/, mock-server/ → mock-jetting-controller/
Executables: QtXpl2Demo → JettingInterfaceDemo, Xpl2MockServer → MockJettingController. Dev log prefixes: "Demo" → "JI", "MockServer" → "MockJC". Window title → "Jetting Interface".
Diffstat (limited to 'demo/main.cpp')
-rw-r--r--demo/main.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/demo/main.cpp b/demo/main.cpp
deleted file mode 100644
index e0651d9..0000000
--- a/demo/main.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/**
- * @file main.cpp
- * @brief Entry point for the QtXpl2 demo application.
- */
-#include "Xpl2Client.h"
-
-#include <QCommandLineParser>
-#include <QGuiApplication>
-#include <QQmlApplicationEngine>
-
-#include <QtQml/QQmlExtensionPlugin>
-Q_IMPORT_QML_PLUGIN (Xpl2Plugin)
-
-int
-main (int argc, char *argv[])
-{
- qSetMessagePattern ("Demo [%{time HH:mm:ss.zzz}] %{message}");
-
- QGuiApplication app (argc, argv);
-
- QCommandLineParser parser;
- parser.addOption ({ "wire-debug", "Log raw wire TX/RX to dev log" });
- parser.addOption ({ "printheads",
- "Number of simulated printheads (default 10)", "N",
- "10" });
- parser.addHelpOption ();
- parser.process (app);
-
- if (parser.isSet ("wire-debug"))
- Xpl2Client::enableWireDebug ();
-
- int phCount = qBound (1, parser.value ("printheads").toInt (), 99);
-
- QQmlApplicationEngine engine;
- engine.setInitialProperties ({ { "demoPhCount", phCount } });
- QObject::connect (
- &engine, &QQmlApplicationEngine::objectCreationFailed, &app,
- [] () { QCoreApplication::exit (1); }, Qt::QueuedConnection);
-
- engine.loadFromModule ("QtXpl2Demo", "Main");
- return app.exec ();
-}