blob: 3e4cce9cb26a56fb50464f9c0e868099924d81f7 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
import QtQuick 1.1
Rectangle {
width: 1200 //these are the only explicit sizes set
height: 1000 //all others are relative
anchors.fill: parent
//color: "red"
Rectangle {
id: rectangle2
x: 0
y: 0
width: 1200
height: 47
color: "#99bff1"
}
Rectangle {
id: rectangle1
x: 0
y: 0
width: 107
height: 1000
color: "#978c79"
}
Text {
// qsTr() for internationalisation, like tr()
x: 118
y: 54
text: qsTr("id:")
}
Text {
x: 172
y: 54
text: id
}
Text {
id: text1
x: 118
y: 75
text: qsTr("email:")
}
Text {
id: text2
x: 172
y: 75
text: email
}
Text {
id: text3
x: 119
y: 96
text: qsTr("name:")
}
Text {
id: text4
x: 172
y: 96
text: name
}
Image {
id: image1
x: 0
y: 0
width: 107
height: 229
source: "qrc:/wizard_keys.png"
}
Text {
id: text5
x: 118
y: 7
width: 20
height: 15
text: qsTr("Keydetails")
font.pixelSize:22
}
}
|