aboutsummaryrefslogtreecommitdiffstats
path: root/qml/KeyInfoRow.qml
diff options
context:
space:
mode:
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
+ }
+}