diff options
-rw-r--r-- | qml/keydetails.qml | 49 |
1 files changed, 33 insertions, 16 deletions
diff --git a/qml/keydetails.qml b/qml/keydetails.qml index 8ddf0c0..7eeda02 100644 --- a/qml/keydetails.qml +++ b/qml/keydetails.qml @@ -9,43 +9,60 @@ Rectangle { //color: "red" Text { // qsTr() for internationalisation, like tr() + x: 118 + y: 37 text: qsTr("id:") } Text { - x: 54 - y: 0 + x: 172 + y: 37 text: id } Text { id: text1 - x: 0 - y: 21 - text: qsTr("email") - font.pixelSize: 12 + x: 118 + y: 58 + text: qsTr("email:") } Text { id: text2 - x: 54 - y: 21 + x: 172 + y: 58 text: email - font.pixelSize: 12 } Text { id: text3 - x: -4 - y: 38 - text: qsTr("name") - font.pixelSize: 12 + x: 119 + y: 79 + text: qsTr("name:") } Text { id: text4 - x: 54 - y: 38 + x: 172 + y: 79 text: name - font.pixelSize: 12 + } + + Image { + id: image1 + x: 0 + y: 0 + width: 100 + height: 400 + source: "qrc:/wizard_keys.png" + } + + Text { + id: text5 + x: 119 + y: 0 + width: 20 + height: 15 + text: qsTr("Keydetails") + font.pixelSize:22 } } |