aboutsummaryrefslogtreecommitdiffstats
path: root/demo/Main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'demo/Main.qml')
-rw-r--r--demo/Main.qml23
1 files changed, 2 insertions, 21 deletions
diff --git a/demo/Main.qml b/demo/Main.qml
index edf317c..db015e3 100644
--- a/demo/Main.qml
+++ b/demo/Main.qml
@@ -23,23 +23,10 @@ ApplicationWindow {
debugConsole.appendLog("ERROR: " + error);
}
- function onJcVersionReceived() {
- debugConsole.appendLog(
- "JC Version: controller=%1 fw=%2 hw=%3 phCount=%4".arg(
- Xpl2Client.controllerId).arg(
- Xpl2Client.firmwareVersion).arg(
- Xpl2Client.hardwareVersion).arg(
- Xpl2Client.printheadCount));
- }
-
function onStatusMessage(message: string) {
debugConsole.appendLog(message);
}
- function onWireDebugMessage(message: string) {
- debugConsole.appendLog("WIRE: " + message);
- }
-
target: Xpl2Client
}
@@ -84,13 +71,6 @@ ApplicationWindow {
Xpl2Client.connectToServer();
}
}
-
- CheckBox {
- checked: Xpl2Client.wireDebug
- text: "Wire debug"
-
- onToggled: Xpl2Client.wireDebug = checked
- }
}
}
@@ -134,7 +114,8 @@ ApplicationWindow {
id: debugConsole
function appendLog(msg: string): void {
- let ts = new Date().toLocaleTimeString(Qt.locale(), "HH:mm:ss");
+ let ts = new Date().toLocaleTimeString(Qt.locale(),
+ "HH:mm:ss.zzz");
debugLog.text += "[" + ts + "] " + msg + "\n";
debugLog.cursorPosition = debugLog.text.length;
}