From 3adc7ee78033c4ad2be32a8bf38d0971c7eb30d5 Mon Sep 17 00:00:00 2001 From: ubbo Date: Mon, 14 Oct 2013 22:22:22 +0000 Subject: add keyinforow qml widget git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1060 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- qml/KeyInfoRow.qml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 qml/KeyInfoRow.qml (limited to 'qml/KeyInfoRow.qml') 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 + } +} -- cgit v1.2.3