-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.qml
88 lines (73 loc) · 1.97 KB
/
main.qml
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
import QtQuick 2.6
import QtQuick.Window 2.2
import QtQuick.Controls 1.0
Window {
visible: true
height : 600
width : 400
// Background
Rectangle{
anchors.fill : parent
color : "#180126"
}
Row{
height : 200
width : parent.width
anchors.horizontalCenter: parent.horizontalCenter
anchors.top : parent.top
anchors.topMargin: Qt.platform.os === "android" ? 150 : 20
Image{
height : parent.height
width : parent.width / 3
fillMode: Image.PreserveAspectFit
source : "flag_france.png"
MouseArea{
anchors.fill : parent
onClicked: {
translateItem.selectLanguage("FR")
}
}
}
Image{
height : parent.height
width : parent.width / 3
fillMode: Image.PreserveAspectFit
source : "flag_uk.png"
MouseArea{
anchors.fill : parent
onClicked: {
translateItem.selectLanguage("EN")
}
}
}
Image{
height : parent.height
width : parent.width / 3
fillMode: Image.PreserveAspectFit
source : "flag_german.png"
MouseArea{
anchors.fill : parent
onClicked: {
translateItem.selectLanguage("DE")
}
}
}
}
Item{
width : parent.width
height: Qt.platform.os === "android" ? 150 : 75
anchors.centerIn: parent
Rectangle{
width : parent.width
height : parent.height
color : "#FF9F1C"
}
Text {
text: qsTr("Hello World") + translateItem.emptyString
color : "#180126"
font.pointSize: 20
font.bold: true
anchors.centerIn: parent
}
}
}