blob: 7eeda02f8ac2a19c1f495110e6f417b04c30d6a4 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
import QtQuick 1.1
Rectangle {
width: 400 //these are the only explicit sizes set
height: 400 //all others are relative
anchors.fill: parent
//color: "red"
Text {
// qsTr() for internationalisation, like tr()
x: 118
y: 37
text: qsTr("id:")
}
Text {
x: 172
y: 37
text: id
}
Text {
id: text1
x: 118
y: 58
text: qsTr("email:")
}
Text {
id: text2
x: 172
y: 58
text: email
}
Text {
id: text3
x: 119
y: 79
text: qsTr("name:")
}
Text {
id: text4
x: 172
y: 79
text: name
}
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
}
}
|