-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLYRICS.kv
More file actions
396 lines (357 loc) · 11.3 KB
/
Copy pathLYRICS.kv
File metadata and controls
396 lines (357 loc) · 11.3 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
<MenuScreen>:
background_color:[1,1,1,1]
canvas.before:
Color:
rgba:self.background_color
Rectangle:
pos: self.pos
size: self.size
BoxLayout:
orientation:"vertical"
spacing:100
TextInput:
id:song_box
size_hint:(1,5)
background_color:[1,1,1,1]#white
foreground_color:[0,0,0,1]#black
hint_text:"SEARCH LYRICS:"
multiline:False
ScrollView:
size_hint:(1,40)
do_scroll_x:False
do_scrool_y:True
Label:
id:searched_lyrics_label
size_hint_y:None
height:self.texture_size[1]
width:500
padding:(10,10)
text:"LYRICS FINDER\n"
color:[0,0,0,1]#black
font_size:30
BoxLayout:
Button:
id:go_settings_button
text:"&"
size_hint:(.1,2)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_go_settings_button()
Button:
id:downloaded_lyrics_button
text:"DOWNLOADED LYRICS"
size_hint:(.3,2)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_downloaded_lyrics_button()
Button:
id:search_button
text:"SEARCH"
size_hint:(.15,2)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_search_button()
Button:
id:open_button
text:"OPEN"#root.str#
size_hint:(.15,2)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_open_button()
<LyricsScreen>:
background_color:[1,1,1,1]
canvas.before:
Color:
rgba:self.background_color
Rectangle:
pos: self.pos
size: self.size
BoxLayout:
orientation:"vertical"
spacing:100
ScrollView:
size_hint:(1,100)
do_scroll_x:False
do_scrool_y:True
Label:
id:song_label
size_hint_y:None
height:self.texture_size[1]
padding:(10,10)
text:" \n"*100
color:[0,0,0,1]#black
font_size:20
BoxLayout:
Button:
id:back_menu_lyrics
size_hint:(1,5)
text:"RETURN MENU"
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.manager.current = "menu"
root.manager.transition.direction = "right"
Button:
id:save_lyrics_in_lyrics
text:"SAVE THIS LYRICS"
size_hint:(1,5)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.manager.current="add_lyrics"
root.manager.transition.direction="up"
Button:
id:plus_button
text:"+"
size_hint:(.2,5)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_plus_button()
Button:
id:minus_button
text:"-"
size_hint:(.2,5)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_minus_button()
<SettingsScreen>:
background_color:[1,1,1,1]
switch_dark: switch_dark
canvas.before:
Color:
rgba:self.background_color
Rectangle:
pos: self.pos
size: self.size
FloatLayout:
Button:
text:"RED"
#pos:(0,1500)
pos_hint:{"center_x":.1,"center_y":.8}
size_hint:(.2,.05)
background_color:(255,0,0,1)
Switch:
id:switch_red
#pos:(350,1450)
pos_hint:{"center_x":.3,"center_y":.8}
size_hint:(.1,.1)
active:False
on_active:
root.click_switch_red(self,self.active)
Button:
text:"BLUE"
#pos:(0,1350)
pos_hint:{"center_x":.1,"center_y":.7}
size_hint:(.2,.05)
background_color:(0,0,255,1)
foreground_color:(0,0,0,1)
Switch:
id:switch_blue
#pos:(350,1300)
pos_hint:{"center_x":.3,"center_y":.7}
size_hint:(.1,.1)
active:False
on_active:
root.click_switch_blue(self,self.active)
Button:
text:"CYAN"
#pos:(0,1200)
pos_hint:{"center_x":.1,"center_y":.6}
size_hint:(.2,.05)
background_color:(0,139,139,1)
Switch:
id:switch_cyan
#pos:(350,1150)
pos_hint:{"center_x":.3,"center_y":.6}
size_hint:(.1,.1)
active:False
on_active:
root.click_switch_cyan(self,self.active)
Button:
id:dark_button
#pos:(0,250)
pos_hint:{"center_x":.1,"center_y":.3}
size_hint:(.2,.05)
background_color:(0,0,0,1)
color:[1,1,1,1]
text:"DARK"
Switch:
id:switch_dark
#pos:(300,200)
pos_hint:{"center_x":.3,"center_y":.3}
size_hint:(.1,.1)
active:False
on_active:
root.dark(self,self.active)
Button:
id:light_button
#pos:(0,150)
pos_hint:{"center_x":.1,"center_y":.2}
size_hint:(.2,.05)
background_color:(255,255,255,1)
color:(0,0,0,1)
text:"LIGHT"
Switch:
id:switch_light
#pos:(300,100)
pos_hint:{"center_x":.3,"center_y":.2}
size_hint:(.1,.1)
active:True
on_active:
root.light(self,self.active)
Button:
id:back_menu_settings
text:"RETURN MENU"
pos:(0,0)
size_hint:(.4,.03)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.manager.current = "menu"
root.manager.transition.direction = "left"
Label:
id:settings_label
text:"SETTINGS"
#pos:(0,850)
pos_hint:{"center_x":.5,"center_y":.9}
color:[0,0,0,1]#black
Label:
id:colors_label
text:"COLORS"
#pos:(-450,700)
pos_hint:{"center_x":.1,"center_y":.85}
color:[0,0,0,1]#black
<AddLyricsScreen>:
background_color:[1,1,1,1]
canvas.before:
Color:
rgba:self.background_color
Rectangle:
pos: self.pos
size: self.size
FloatLayout:
TextInput:
id:path_ti
hint_text:"NAME:"
background_color:[1,1,1,1]#white
foreground_color:[0,0,0,1]#black
#pos:(0,1700)
pos_hint:{"center_x":.5,"center_y":.9}
size_hint:(1,.1)
TextInput:
id:lyrics_ti
hint_text:"LYRICS:"
background_color:[1,1,1,1]#white
foreground_color:[0,0,0,1]#black
font_size:10
#pos:(0,350)
pos_hint:{"center_x":.5,"center_y":.5}
size_hint:(1,.7)
focus:False
Button:
id:save_lyrics_button
text:"SAVE"
#pos:(440,0)
pos_hint:{"center_x":.5,"center_y":.01}
size_hint:(.3,.03)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_save()
Button:
id:back_lyrics_button
text:"RETURN LYRICS"
#pos:(0,0)
pos_hint:{"center_x":.2,"center_y":.01}
size_hint:(.4,.03)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_back_lyrics_button()
root.manager.current="lyrics"
root.manager.transition.direction="down"
Button:
id:plus_button
text:"+"
#pos:(770,0)
pos_hint:{"center_x":.7,"center_y":.01}
size_hint:(.130,.03)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_plus()
Button:
id:minus_button
text:"-"
#pos:(910,0)
pos_hint:{"center_x":.8,"center_y":.01}
size_hint:(.120,.03)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_minus()
<DownloadedLyricsScreen>:
background_color:[1,1,1,1]
canvas.before:
Color:
rgba:self.background_color
Rectangle:
pos: self.pos
size: self.size
BoxLayout:
orientation:"vertical"
spacing:100
TextInput:
id:song_box_downloaded_lyrics
hint_text:"LYRICS:"
size_hint:(1,10)
background_color:[1,1,1,1]#white
foreground_color:[0,0,0,1]#black
multiline:False
on_text:
root.on_text_song_box_downloaded_lyrics(self)
ScrollView:
size_hint:(1,60)
do_scroll_x:False
do_scrool_y:True
Label:
id:downloaded_lyrics_label
size_hint_y:None
height:self.texture_size[1]
padding:(10,10)
text:""
font_size:30
color:[0,0,0,1]#black
BoxLayout:
Button:
id:return_menu_downloaded
text:"RETURN MENU"
size_hint:(.3,5)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.manager.current="menu"
root.manager.transition.direction="down"
root.click_return_menu_downloaded()
Button:
id:delete_downloaded_lyrics
text:"DELETE"
size_hint:(.3,5)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_delete_downloaded_lyrics()
Button:
id:open_downloaded_lyrics
text:"OPEN"
size_hint:(.3,5)
background_color:(255,255,255,1)
color:[0,0,0,1]
on_press:
root.click_open_downloaded_lyrics()