aboutsummaryrefslogtreecommitdiffstats
path: root/qml/KeyInfoRow.qml
blob: a1108dd305a548aa1cc00650bd9018765e10f899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
     }
}