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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164 | import QtQuick 2.0
import Ubuntu.Components 1.1
/*!
\brief MainView with a Label and Button elements.
*/
MainView {
// objectName for functional testing purposes (autopilot-qt5)
objectName: "mainView"
// Note! applicationName needs to match the "name" field of the click manifest
applicationName: "com.ubuntu.aaronhoneycutt.gazeteer.gazeteer"
/*
This property enables the application to change orientation
when the device is rotated. The default is false.
*/
//automaticOrientation: true
// Removes the old toolbar and enables new features of the new header.
useDeprecatedToolbar: false
width: units.gu(50)
height: units.gu(75)
Page {
title: i18n.tr("Gazeteer")
Column {
spacing: units.gu(1)
anchors {
top: parent.top
left: parent.left
right: parent.right
margins: units.gu(2)
fill: parent
}
property TextField focused: score1
property int myProperty: -1
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
TextField {
id: score1
text: actualValue.toString()
width: parent.width / 2
property int actualValue: 0
}
TextField {
id: score2
text: actualValue.toString()
width: parent.width / 2
property int actualValue: 0
}
}
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
text: i18n.tr(" + Plus")
width: parent.width / 2; height: units.gu(5)
}
Button {
text: i18n.tr(" - Minus")
width: parent.width / 2; height: units.gu(5)
}
}
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
text: i18n.tr("1")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += 1 * myProperty
}
Button {
text: i18n.tr("2")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "2"
}
Button {
text: i18n.tr("3")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "3"
}
}
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
text: i18n.tr("4")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "4"
}
Button {
text: i18n.tr("5")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "5"
}
Button {
text: i18n.tr("6")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "6"
}
}
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
text: i18n.tr("7")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "7"
}
Button {
text: i18n.tr("8")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "8"
}
Button {
text: i18n.tr("9")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "9"
}
}
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
id: _0
text: i18n.tr("0")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "0"
}
Button {
id: _00
text: i18n.tr("00")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "00"
}
Button {
id: _000
text: i18n.tr("000")
width: (parent.width - units.gu(1)) / 3; height: units.gu(5)
onClicked: parent.parent.focused.actualValue += "000"
}
}
Row { anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
id: swibutton
text: i18n.tr("Switch Scores")
width: parent.width; height: units.gu(5)
onClicked: parent.parent.focused = parent.parent.focused == score1 ? score2 : score1
}
}
}
}
}
|