1
0

qml: add hint property to QRScan

This commit is contained in:
Sander van Grieken
2023-04-24 13:19:40 +02:00
parent 959d481e93
commit 49df18c613

View File

@@ -10,6 +10,7 @@ Item {
property bool active: false
property string url
property string scanData
property string hint
property bool _pointsVisible
@@ -41,6 +42,20 @@ Item {
anchors.bottom: parent.bottom
color: Qt.rgba(0,0,0,0.5)
}
InfoTextArea {
visible: scanner.hint
background.opacity: 0.5
iconStyle: InfoTextArea.IconStyle.None
anchors {
top: parent.top
topMargin: constants.paddingXLarge
left: parent.left
leftMargin: constants.paddingXXLarge
right: parent.right
rightMargin: constants.paddingXXLarge
}
text: scanner.hint
}
}
Image {
@@ -151,7 +166,7 @@ Item {
}
Component.onCompleted: {
console.log('Scan page initialized')
console.log('enumerating cameras')
QtMultimedia.availableCameras.forEach(function(item) {
console.log('cam found, id=' + item.deviceId + ' name=' + item.displayName)
console.log('pos=' + item.position + ' orientation=' + item.orientation)