diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-10-11 01:16:38 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2013-10-11 01:16:38 +0000 |
commit | c1692c993f4f4fe57396f07ebb6093fdc9c0fef5 (patch) | |
tree | f6ea535d87ac93158913060000dd66b525a97b79 | |
parent | show some keydata in qml (diff) | |
download | gpg4usb-c1692c993f4f4fe57396f07ebb6093fdc9c0fef5.tar.gz gpg4usb-c1692c993f4f4fe57396f07ebb6093fdc9c0fef5.zip |
layout
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1046 34ebc366-c3a9-4b3c-9f84-69acf7962910
-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 } } |