-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathargue.kv
327 lines (280 loc) · 6.9 KB
/
argue.kv
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
ScreenManager:
id: screen_manager
# Main screen
Screen:
name: 'main'
FloatLayout:
Image:
source: 'background.jpg'
allow_stretch: True
keep_ratio: False
MDLabel:
text: 'Argüe'
halign: 'center'
valign: 'top'
font_name: 'JetBrainsMono'
font_size: '80sp'
size_hint_y: None
pos_hint: {'center_x': 0.5, 'top': 0.9}
MDLabel:
id: author
text: app.translate('titles/author')
halign: 'center'
valign: 'top'
font_name: 'JetBrainsMono'
font_size: '20sp'
color: 1, 1, 1, 1
size_hint_y: None
pos_hint: {'center_x': 0.5, 'top': 0.8}
MDBoxLayout:
orientation: 'horizontal'
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
spacing: 10
adaptive_width: True
adaptive_height: True
# Correct counter
MDBoxLayout:
orientation: 'vertical'
size_hint: None, None
width: '150dp'
height: '250dp'
pos_hint: {'center_x': 0.5, 'center_y': 0.575}
MDFloatingActionButton:
icon: 'plus'
icon_size: '50dp'
on_release: app.show_reason_dialog('correct')
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
MDLabel:
id: correct_label
text: str(app.correct)
halign: 'center'
valign: 'center'
theme_text_color: 'Custom'
text_color: 0.07, 0.83, 0.13, 1
bold: True
font_style: 'H2'
size_hint: None, None
width: '150dp'
height: '100dp'
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
MDLabel:
id: correct_percentage_label
halign: 'center'
valign: 'center'
theme_text_color: 'Custom'
text_color: 0.07, 0.83, 0.13, 0.7
font_style: 'Subtitle1'
size_hint: None, None
width: '150dp'
height: '40dp'
pos_hint: {'center_x': 0.5, 'center_y': 0.2}
# Incorrect counter
MDBoxLayout:
orientation: 'vertical'
size_hint: None, None
width: '150dp'
height: '250dp'
pos_hint: {'center_x': 0.5, 'center_y': 0.575}
MDFloatingActionButton:
icon: 'plus'
icon_size: '50dp'
on_release: app.show_reason_dialog('incorrect')
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
MDLabel:
id: incorrect_label
text: str(app.incorrect)
halign: 'center'
valign: 'center'
theme_text_color: 'Custom'
text_color: 1, 0, 0, 1
bold: True
font_style: 'H2'
size_hint: None, None
width: '150dp'
height: '100dp'
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
MDLabel:
id: incorrect_percentage_label
halign: 'center'
valign: 'center'
theme_text_color: 'Custom'
text_color: 1, 0, 0, 0.7
font_style: 'Subtitle1'
size_hint: None, None
width: '150dp'
height: '40dp'
pos_hint: {'center_x': 0.5, 'center_y': 0.2}
# History, info and GitHub buttons
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
MDBoxLayout:
size_hint: None, None
width: '240dp'
height: '80dp'
padding: '10dp'
spacing: '15dp'
MDFloatingActionButton:
icon: 'github'
icon_size: '40dp'
theme_text_color: 'Custom'
text_color: 1, 1, 1, 1
on_release: app.open_github()
MDFloatingActionButton:
icon: 'information'
icon_size: '40dp'
theme_text_color: 'Custom'
text_color: 1, 1, 1, 1
on_release: app.show_info()
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
MDFloatingActionButton:
icon: 'cog'
icon_size: '40dp'
theme_text_color: 'Custom'
text_color: 1, 1, 1, 1
on_release: app.go_to_settings()
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
AnchorLayout:
anchor_x: 'right'
anchor_y: 'bottom'
MDBoxLayout:
size_hint: None, None
width: '70dp'
height: '80dp'
spacing: '15dp'
MDFloatingActionButton:
icon: 'history'
icon_size: '40dp'
on_release: app.show_history()
md_bg_color: app.theme_cls.primary_color
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
# History screen
Screen:
name: 'history'
Image:
source: 'background.jpg'
allow_stretch: True
keep_ratio: False
BoxLayout:
orientation: 'vertical'
pos_hint: {'center_x': 0.5, 'center_y': 0.62}
ScrollView:
size_hint_y: None
height: self.parent.height - 210
MDList:
id: history_list
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
MDBoxLayout:
size_hint: None, None
width: '80dp'
height: '80dp'
padding: '10dp'
MDFloatingActionButton:
icon: 'arrow-left'
icon_size: '50dp'
on_release: app.go_to_main_screen()
AnchorLayout:
anchor_x: 'right'
anchor_y: 'bottom'
MDBoxLayout:
size_hint: None, None
width: '80dp'
height: '80dp'
padding: '10dp'
MDFloatingActionButton:
icon: 'delete'
icon_size: '40dp'
on_release: app.clear_history()
md_bg_color: 1, 0, 0, 1
# Info screen
Screen:
name: 'info'
Image:
source: 'background.jpg'
allow_stretch: True
keep_ratio: False
MDLabel:
id: info_title
text: app.translate('titles/info')
halign: 'center'
font_size: '50sp'
color: 1, 1, 1, 1
font_name: 'JetBrainsMono'
size_hint_y: 1.75
height: '120dp'
MDLabel:
id: info
text: app.translate('other/info')
halign: 'center'
font_size: '14sp'
color: 1, 1, 1, 1
font_name: 'JetBrainsMono'
size_hint_y: None
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
padding: '10dp'
markup: True
# Back Button
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
MDBoxLayout:
size_hint: None, None
width: '80dp'
height: '80dp'
padding: '10dp'
MDFloatingActionButton:
icon: 'arrow-left'
icon_size: '50dp'
on_release: app.go_to_main_screen()
# Settings screen
Screen:
name: 'settings'
Image:
source: 'background.jpg'
allow_stretch: True
keep_ratio: False
MDLabel:
id: settings_title
text: app.translate('titles/settings')
halign: 'center'
font_size: '50sp'
color: 1, 1, 1, 1
font_name: 'JetBrainsMono'
size_hint_y: 1.75
height: '120dp'
MDLabel:
id: selected_language_label
text: app.translate('other/selected_language')
font_size: '16sp'
size_hint_x: None
width: '300dp'
halign: 'center'
color: 1, 1, 1, 1
font_name: 'JetBrainsMono'
markup: True
pos_hint: {'center_x': 0.5, 'center_y': 0.7}
MDFlatButton:
id: select_language_button
text: app.translate('buttons/select_language')
size_hint: None, None
width: '200dp'
height: '40dp'
md_bg_color: app.theme_cls.primary_color
font_size: '24sp'
on_release: app.open_language_menu()
pos_hint: {'center_x': 0.5, 'center_y': 0.6}
# Back Button
AnchorLayout:
anchor_x: 'left'
anchor_y: 'bottom'
MDBoxLayout:
size_hint: None, None
width: '80dp'
height: '80dp'
padding: '10dp'
MDFloatingActionButton:
icon: 'arrow-left'
icon_size: '50dp'
on_release: app.go_to_main_screen()