-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDigitSelector6.qml
158 lines (130 loc) · 4.22 KB
/
DigitSelector6.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
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
/****************************************************************************
Copyright 2013-2014 Michał Prędotka
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
****************************************************************************/
import QtQuick 1.1
Item {
id: root
property alias digit_list: digit_list
property alias digit_root: digit_root
property alias current_digit: digit_list.currentIndex
property int digit_text: 5 - parseInt(current_digit, 10)
focus: true
width: digit_root.width
height: up_rectangle.height + digit_root.height + down_rectangle.height + 12
Keys.onUpPressed: if (current_digit > 0 ){
current_digit = current_digit - 1;
}
Keys.onDownPressed: if (current_digit < 5){
current_digit = current_digit + 1;
}
Keys.onDigit0Pressed: current_digit = 5-0
Keys.onDigit1Pressed: current_digit = 5-1
Keys.onDigit2Pressed: current_digit = 5-2
Keys.onDigit3Pressed: current_digit = 5-3
Keys.onDigit4Pressed: current_digit = 5-4
Keys.onDigit5Pressed: current_digit = 5-5
// Up arrow
Rectangle {
id: up_rectangle
color: "#989898"
width: 20
height: 20
radius: 4
anchors {
bottom: digit_root.top
bottomMargin: 6
horizontalCenter: parent.horizontalCenter
}
Image {
id: up_image
source: "images/back.png"
width: 12
fillMode: Image.PreserveAspectFit
rotation: 90
anchors.centerIn: parent
smooth: true
}
MouseArea {
id: up_rectangle_ma
anchors.fill: parent
onClicked: {
if (current_digit > 0 ){
current_digit = current_digit - 1;
root.focus = true;
}
}
}
}
// Digit
Rectangle {
id: digit_root
color: root.focus ? "#989898" : "transparent"
width: digit_list.currentItem.width + 10
height: digit_list.currentItem.height + 10
radius: 4
anchors.centerIn: parent
ListView {
id: digit_list
width: digit_list.currentItem.width
height: digit_list.currentItem.height
anchors.centerIn: parent
maximumFlickVelocity: 400
snapMode: ListView.SnapToItem
clip: true
model: [5,4,3,2,1,0]
delegate:
Text {
id: digit_text
color: styl.text_color_primary
font.pixelSize: 40
text: modelData
}
highlightRangeMode: ListView.StrictlyEnforceRange
}
MouseArea {
anchors.fill: parent
onClicked: root.focus = true
}
}
// Down arrow
Rectangle {
id: down_rectangle
color: "#989898"
width: 20
height: 20
radius: 4
anchors {
top: digit_root.bottom
topMargin: 6
horizontalCenter: parent.horizontalCenter
}
Image {
id: down_image
source: "images/back.png"
width: 12
fillMode: Image.PreserveAspectFit
rotation: 270
anchors.centerIn: parent
smooth: true
}
MouseArea {
id: down_rectangle_ma
anchors.fill: parent
onClicked: {
if (current_digit < 5){
current_digit = current_digit + 1;
root.focus = true;
}
}
}
}
}