aboutsummaryrefslogtreecommitdiffstats
path: root/qml/KeyInfoRow.qml
diff options
context:
space:
mode:
authorubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2013-10-14 22:22:22 +0000
committerubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2013-10-14 22:22:22 +0000
commit3adc7ee78033c4ad2be32a8bf38d0971c7eb30d5 (patch)
treea2ebfb740e0ef741bc076d74a6b6dc69c5deb136 /qml/KeyInfoRow.qml
parentupdated TODO (diff)
downloadgpg4usb-3adc7ee78033c4ad2be32a8bf38d0971c7eb30d5.tar.gz
gpg4usb-3adc7ee78033c4ad2be32a8bf38d0971c7eb30d5.zip
add keyinforow qml widget
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1060 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'qml/KeyInfoRow.qml')
-rw-r--r--qml/KeyInfoRow.qml24
1 files changed, 24 insertions, 0 deletions
diff --git a/qml/KeyInfoRow.qml b/qml/KeyInfoRow.qml
new file mode 100644
index 0000000..a1108dd
--- /dev/null
+++ b/qml/KeyInfoRow.qml
@@ -0,0 +1,24 @@
+import QtQuick 1.1
+
+Rectangle {
+
+ id: keyinforow
+
+ width: 200
+ height: 23
+
+ property variant key
+ property variant value
+
+ Text {
+ id: keyText
+ text: key
+ }
+
+ Text {
+ id: valueText
+ x: 50
+ y: 0
+ text: value
+ }
+}