-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathui.kv
More file actions
433 lines (345 loc) · 13.2 KB
/
ui.kv
File metadata and controls
433 lines (345 loc) · 13.2 KB
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
MDScreenManager:
## == Catbox Screen == ##
MDScreen:
name: 'catbox'
md_bg_color: self.theme_cls.backgroundColor
#md_bg_color: "#FFDAAF"
## Top bar
MDTopAppBar:
type: 'small'
size_hint_y: 0.1
pos_hint: {"center_x": 0.5, "top": 1}
MDTopAppBarLeadingButtonContainer:
MDActionTopAppBarButton:
icon: 'menu'
on_release: drawer_c.set_state("toggle")
MDTopAppBarTitle:
pos_hint: {"center_x": 0.5}
text: "Catbox Uploader"
MDTopAppBarTrailingButtonContainer:
MDActionTopAppBarButton:
icon: 'theme-light-dark'
on_release: app.switch_theme()
MDActionTopAppBarButton:
icon: 'cog'
on_release:
app.last_screen()
root.transition.direction = "left"
root.current = "settings"
MDDivider:
thickness: dp(10)
pos_hint: {"center_x": 0.5, "top": 0.9}
size_hint_x: 1
MDDivider:
thickness: dp(10)
pos_hint: {"center_x": 0.5, "top": 0.899}
size_hint_x: 1
## Image, info and divider
AsyncImage:
size: "200dp", "200dp"
pos_hint: {"center_x": 0.5, "center_y": 0.675}
source: "https://catbox.moe/pictures/qts/1450722871010.png"
MDLabel:
text: 'Drop your files into the Catbox cloud\nUploads up to 200 MB are allowed'
pos_hint: {"center_x": 0.5, "center_y": 0.425}
halign: 'center'
padding: dp(30)
font_style: 'Title'
role: 'medium'
MDDivider:
thickness: dp(6)
pos_hint: {"center_x": 0.5, "center_y": 0.375}
size_hint_x: 0.95
## Method select
MDSegmentedButton:
padding: dp(10)
pos_hint: {"center_x": 0.5, "center_y": 0.3}
MDSegmentedButtonItem:
active: True
on_release: app.method_upd('anon')
MDSegmentButtonIcon:
icon: 'incognito-circle'
MDSegmentButtonLabel:
text: 'Anonymous'
MDSegmentedButtonItem:
on_release: app.method_upd('auth')
MDSegmentButtonIcon:
icon: 'account'
MDSegmentButtonLabel:
text: 'Authorized'
## File select
MDButton:
id: file_cb
style: 'outlined'
pos_hint: {"center_x": 0.5, "center_y": 0.2}
on_press: app.file_manager_open()
MDButtonText:
text: 'Select file'
MDButtonIcon:
icon: 'folder'
## Upload button
MDButton:
id: upload_cb
style: 'elevated'
pos_hint: {"center_x": 0.5, "center_y": 0.12}
font_size: "20sp"
on_release: app.upload_cb()
MDButtonText:
text: 'Upload to Catbox'
MDButtonIcon:
icon: 'upload-box'
## Attention label
MDLabel:
text: 'By uploading files you agree with the current Catbox rules'
padding: dp(10)
halign: 'center'
pos_hint: {"center_x": 0.5, "center_y": 0.025}
font_style: 'Body'
role: 'small'
## NavigationDrawer
MDNavigationLayout:
MDNavigationDrawer:
id: drawer_c
radius: 0, 0, 0, 0
size_hint_x: 0.8
MDNavigationDrawerMenu:
id: menu_cb
## Switch to LB
MDNavigationDrawerItem:
on_release:
root.transition.direction = "up"
root.current = "litterbox"
app.current_screen_upd()
drawer_c.set_state("close")
MDNavigationDrawerItemLeadingIcon:
icon: "swap-horizontal"
MDNavigationDrawerItemText:
text: "Switch to Litterbox"
## Divider
MDNavigationDrawerDivider:
## SegmentedButton
MDSegmentedButton:
padding: dp(10)
pos_hint: {"center_x": 0.5}
MDSegmentedButtonItem:
active: True
on_release:
app.list_choice_upd('anon'),
MDSegmentButtonLabel:
text: 'Anonymous'
MDSegmentedButtonItem:
on_release:
app.list_choice_upd('auth'),
MDSegmentButtonLabel:
text: 'Authorized'
## == Litterbox Screen == ##
MDScreen:
name: 'litterbox'
md_bg_color: self.theme_cls.backgroundColor
#md_bg_color: "#FFDAAF"
## Top bar
MDTopAppBar:
type: 'small'
size_hint_y: 0.1
pos_hint: {"center_x": 0.5, "top": 1}
MDTopAppBarLeadingButtonContainer:
MDActionTopAppBarButton:
icon: 'menu'
on_release: drawer_l.set_state("toggle")
MDTopAppBarTitle:
pos_hint: {"center_x": 0.5}
text: "Litterbox Uploader"
MDTopAppBarTrailingButtonContainer:
MDActionTopAppBarButton:
icon: 'theme-light-dark'
on_release: app.switch_theme()
MDActionTopAppBarButton:
icon: 'cog'
on_release:
app.last_screen()
root.transition.direction = "left"
root.current = "settings"
MDDivider:
thickness: dp(10)
pos_hint: {"center_x": 0.5, "top": 0.9}
size_hint_x: 1
MDDivider:
thickness: dp(10)
pos_hint: {"center_x": 0.5, "top": 0.899}
size_hint_x: 1
## Image, info and divider
AsyncImage:
size: "100dp", "100dp"
pos_hint: {"center_x": 0.5, "center_y": 0.675}
source: "https://litterbox.catbox.moe/resources/qts/1458602218407.png"
MDLabel:
text: 'Use Litterbox for temporary uploads\nUploads up to 1 GB are allowed'
pos_hint: {"center_x": 0.5, "center_y": 0.425}
halign: 'center'
padding: dp(30)
font_style: 'Title'
role: 'medium'
MDDivider:
thickness: dp(6)
pos_hint: {"center_x": 0.5, "center_y": 0.375}
size_hint_x: 0.95
## Time choise
MDSegmentedButton:
padding: dp(10)
pos_hint: {"center_x": 0.5, "center_y": 0.3}
MDSegmentedButtonItem:
active: True
on_release:
app.period_upd('1h')
MDSegmentButtonLabel:
text: '1 Hour'
MDSegmentedButtonItem:
on_release:
app.period_upd('12h')
MDSegmentButtonLabel:
text: '12 Hour'
MDSegmentedButtonItem:
on_release:
app.period_upd('24h')
MDSegmentButtonLabel:
text: '1 Day'
MDSegmentedButtonItem:
on_release:
app.period_upd('72h')
MDSegmentButtonLabel:
text: '3 Days'
## File select
MDButton:
id: file_lb
style: 'outlined'
pos_hint: {"center_x": 0.5, "center_y": 0.2}
on_press: app.file_manager_open()
MDButtonText:
text: 'Select file'
MDButtonIcon:
icon: 'folder'
## Upload button
MDButton:
id: upload_lb
style: 'elevated'
pos_hint: {"center_x": 0.5, "center_y": 0.12}
font_size: "20sp"
on_release: app.call_upload_lb()
MDButtonText:
text: 'Upload to Litterbox'
MDButtonIcon:
icon: 'upload-box'
## Attention label
MDLabel:
text: 'By uploading files you agree with the current Litterbox rules'
padding: dp(10)
halign: 'center'
pos_hint: {"center_x": 0.5, "center_y": 0.025}
font_style: 'Body'
role: 'small'
## NavigationDrawer
MDNavigationLayout:
MDNavigationDrawer:
id: drawer_l
radius: 0, 0, 0, 0
size_hint_x: 0.85
MDNavigationDrawerMenu:
id: menu_lb
## Switch to CB
MDNavigationDrawerItem:
on_release:
root.transition.direction = "down"
root.current = "catbox"
app.current_screen_upd()
drawer_l.set_state("close")
MDNavigationDrawerItemLeadingIcon:
icon: "swap-horizontal"
MDNavigationDrawerItemText:
text: "Switch to Catbox"
## Divider
MDNavigationDrawerDivider:
## List
## All items will be here
## == Settings Screen == ##
MDScreen:
name: 'settings'
md_bg_color: self.theme_cls.backgroundColor
#md_bg_color: "#FFDAAF"
## Top bar
MDTopAppBar:
type: 'small'
size_hint_y: 0.1
pos_hint: {"center_x": 0.5, "top": 1}
MDTopAppBarLeadingButtonContainer:
MDActionTopAppBarButton:
icon: 'arrow-left'
on_release:
root.transition.direction = "right"
app.back()
MDTopAppBarTitle:
pos_hint: {"center_x": 0.5}
text: "Settings"
MDTopAppBarTrailingButtonContainer:
MDActionTopAppBarButton:
icon: 'github'
on_release:
app.github()
MDDivider:
thickness: dp(10)
pos_hint: {"center_x": 0.5, "top": 0.9}
size_hint_x: 1
MDDivider:
thickness: dp(10)
pos_hint: {"center_x": 0.5, "top": 0.899}
size_hint_x: 1
## Settings text
MDLabel:
text: 'Enter your Catbox userhash code to use\nauthorized upload method'
padding: 0.6
halign: 'center'
pos_hint: {"center_x": 0.5, "center_y": 0.8}
## Code entry
MDBoxLayout:
orientation: 'horizontal'
size_hint_x: 0.8
spacing: dp(15)
pos_hint: {"center_x": 0.5}
## Entry
MDTextField:
id: entry
mode: 'outlined'
size_hint_x: 0.6
pos_hint: {"center_x": 0.5, "center_y": 0.7}
password: True
MDTextFieldHintText:
text: 'Enter new userhash'
MDTextFieldLeadingIcon:
icon: 'key'
## Save code btn
MDFabButton:
#color_map: "tertiary"
pos_hint: {"center_x": 0.5, "center_y": 0.7}
icon: "content-save-outline"
on_release: app.save_hash()
## See current userhash btn
MDButton:
style: "tonal"
pos_hint: {"center_x": 0.5, "center_y": 0.6}
on_release: app.show_hash('show')
MDButtonText:
text: "See current userhash"
## Info label
MDLabel:
text: 'Catbox client'
padding: dp(10)
halign: 'center'
pos_hint: {"center_x": 0.5, "center_y": 0.04}
font_style: 'Label'
role: 'large'
MDLabel:
text: 'v 1.2'
padding: dp(10)
halign: 'center'
pos_hint: {"center_x": 0.5, "center_y": 0.02}
font_style: 'Label'
role: 'small'