2024-06-13 15:41:40 +08:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import Analyser
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
ConnectionItem {}
|
|
|
|
|
|
|
|
GroupBox {
|
|
|
|
title: "命令"
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
enabled: App.connected
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
|
|
|
GroupBox {
|
|
|
|
title: "注册用户"
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
|
|
|
Text {
|
|
|
|
text: qsTr("用户姓名")
|
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
id: enrollName
|
|
|
|
implicitWidth: 100
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
text: qsTr("超时时间")
|
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
id: enrollTimeout
|
|
|
|
implicitWidth: 100
|
|
|
|
text: "10"
|
|
|
|
}
|
2024-07-15 17:47:19 +08:00
|
|
|
|
|
|
|
Text {
|
|
|
|
text: qsTr("持久化")
|
|
|
|
}
|
|
|
|
Switch {
|
|
|
|
id: persistence
|
|
|
|
checked: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
text: qsTr("保存图片")
|
|
|
|
}
|
|
|
|
Switch {
|
|
|
|
id: extendedMode
|
|
|
|
}
|
|
|
|
|
2024-06-13 15:41:40 +08:00
|
|
|
Button {
|
2024-07-15 17:47:19 +08:00
|
|
|
property bool enrolling: App.module ? (App.module.currentMessageId === 0x1d)
|
|
|
|
|| (App.module.currentMessageId
|
|
|
|
=== 0x1e) : false
|
|
|
|
text: enrolling ? "取消" : "注册"
|
|
|
|
onClicked: {
|
|
|
|
if (enrolling) {
|
|
|
|
App.module.reset()
|
|
|
|
} else if (extendedMode.checked) {
|
|
|
|
App.enrollExtended(enrollName.text,
|
|
|
|
persistence.checked,
|
|
|
|
parseInt(enrollTimeout.text))
|
|
|
|
} else {
|
|
|
|
App.enroll(enrollName.text,
|
|
|
|
persistence.checked,
|
|
|
|
parseInt(enrollTimeout.text))
|
|
|
|
}
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GroupBox {
|
|
|
|
title: "识别用户"
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
|
|
|
Text {
|
|
|
|
text: qsTr("超时时间(s)")
|
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
id: verifyTimeout
|
|
|
|
implicitWidth: 80
|
|
|
|
text: "10"
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
text: qsTr("持续识别")
|
|
|
|
}
|
|
|
|
Switch {
|
|
|
|
checked: App.persistenceMode
|
|
|
|
onToggled: App.persistenceMode = !App.persistenceMode
|
|
|
|
}
|
2024-07-31 16:08:38 +08:00
|
|
|
Text {
|
|
|
|
text: qsTr("保存图片")
|
|
|
|
}
|
|
|
|
Switch {
|
|
|
|
id: extendedVerifyMode
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
Text {
|
|
|
|
text: qsTr("识别间隔(s)")
|
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
id: verifyIntetval
|
|
|
|
implicitWidth: 80
|
|
|
|
text: App.persistenceVerifyInterval
|
|
|
|
}
|
|
|
|
Item {}
|
|
|
|
Button {
|
2024-06-21 11:02:28 +08:00
|
|
|
text: App.isVerifying ? "停止" : "识别"
|
2024-06-13 15:41:40 +08:00
|
|
|
onClicked: {
|
2024-06-21 11:02:28 +08:00
|
|
|
if (App.isVerifying) {
|
2024-06-13 15:41:40 +08:00
|
|
|
App.module.reset()
|
2024-06-21 11:02:28 +08:00
|
|
|
} else {
|
2024-06-13 15:41:40 +08:00
|
|
|
App.persistenceVerifyInterval = parseInt(
|
|
|
|
verifyIntetval.text)
|
2024-07-31 16:08:38 +08:00
|
|
|
App.verify(extendedVerifyMode.checked,
|
|
|
|
parseInt(verifyTimeout.text))
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GroupBox {
|
|
|
|
title: "删除用户"
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
|
|
|
Text {
|
|
|
|
text: qsTr("用户ID")
|
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
id: deleteUserId
|
|
|
|
implicitWidth: 100
|
|
|
|
}
|
|
|
|
Button {
|
|
|
|
text: "删除"
|
|
|
|
onClicked: App.deleteUser(parseInt(deleteUserId.text))
|
|
|
|
}
|
|
|
|
Button {
|
|
|
|
text: "删除所有"
|
|
|
|
onClicked: App.deleteAll()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-06-19 16:02:58 +08:00
|
|
|
GroupBox {
|
|
|
|
title: "图片注册"
|
|
|
|
GridLayout {
|
|
|
|
columns: 1
|
|
|
|
Button {
|
|
|
|
text: "图片下发注册"
|
2024-06-20 21:28:30 +08:00
|
|
|
onClicked: App.uploadImage()
|
2024-06-19 16:02:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
Button {
|
|
|
|
text: "复位"
|
|
|
|
onClicked: App.module.reset()
|
|
|
|
}
|
2024-06-21 15:11:18 +08:00
|
|
|
Button {
|
|
|
|
text: "状态查询"
|
|
|
|
onClicked: App.module.requestCurrentStatus()
|
|
|
|
}
|
2024-07-15 17:47:19 +08:00
|
|
|
Button {
|
|
|
|
text: "ID查询"
|
|
|
|
onClicked: App.module.requestUniqueId()
|
|
|
|
}
|
2024-07-31 16:08:38 +08:00
|
|
|
Row {
|
|
|
|
Text {
|
|
|
|
text: qsTr("日志")
|
|
|
|
}
|
|
|
|
Switch {
|
|
|
|
id: debugMode
|
|
|
|
onToggled: App.module.setDebugEnabled(debugMode.checked)
|
|
|
|
}
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|