-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathone_point_search.kv
293 lines (268 loc) · 10.3 KB
/
one_point_search.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
#:import Factory kivy.factory.Factory
<OnePointSearchLayout>:
FloatLayout:
size: root.width, root.height
canvas.before:
Color:
rgba: 0.1, 0.1, 0.1, 1
Rectangle:
pos: self.pos
size: self.size
Label:
pos_hint: {"center_x": 0.5, "center_y": 0.94}
size_hint: 0.2, 0.2
text: "Find songs closest to choosen parameters"
font_size: 28
bold: True
color: 0.9, 0.25, 0.9, 1
Label:
pos_hint: {"center_x": 0.2, "center_y": 0.85}
size_hint: 0.2, 0.2
text: "Loudness"
CheckBox:
id: loudness_checkbox
pos_hint: {"center_x": 0.1, "center_y": 0.8}
size_hint: 0.05, 0.05
active: True
background_checkbox_down: app.resource_path("pictures/checkbox_down.png")
background_checkbox_normal: app.resource_path("pictures/checkbox_normal.png")
on_release:
root.update_states()
Slider:
id: loudness_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.3, "center_y": 0.8}
size_hint: 0.3, 0.1
min: 0
max: 1
step: 0.01
orientation: 'horizontal'
value: 0.5
Label:
pos_hint: {"center_x": 0.2, "center_y": 0.75}
size_hint: 0.2, 0.2
text: "Energy"
CheckBox:
id: energy_checkbox
pos_hint: {"center_x": 0.1, "center_y": 0.7}
size_hint: 0.05, 0.05
active: True
background_checkbox_down: app.resource_path("pictures/checkbox_down.png")
background_checkbox_normal: app.resource_path("pictures/checkbox_normal.png")
on_release:
root.update_states()
Slider:
id: energy_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.3, "center_y": 0.7}
size_hint: 0.3, 0.1
min: 0
max: 1
step: 0.01
orientation: 'horizontal'
value: 0.5
Label:
pos_hint: {"center_x": 0.2, "center_y": 0.65}
size_hint: 0.2, 0.2
text: "Instrumentalness"
CheckBox:
id: instrumentalness_checkbox
pos_hint: {"center_x": 0.1, "center_y": 0.6}
size_hint: 0.05, 0.05
active: True
background_checkbox_down: app.resource_path("pictures/checkbox_down.png")
background_checkbox_normal: app.resource_path("pictures/checkbox_normal.png")
on_release:
root.update_states()
Slider:
id: instrumentalness_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.3, "center_y": 0.6}
size_hint: 0.3, 0.1
min: 0
max: 1
step: 0.01
orientation: 'horizontal'
value: 0.5
Label:
pos_hint: {"center_x": 0.2, "center_y": 0.55}
size_hint: 0.2, 0.2
text: "Tempo"
CheckBox:
id: tempo_checkbox
pos_hint: {"center_x": 0.1, "center_y": 0.5}
size_hint: 0.05, 0.05
active: True
background_checkbox_down: app.resource_path("pictures/checkbox_down.png")
background_checkbox_normal: app.resource_path("pictures/checkbox_normal.png")
on_release:
root.update_states()
Slider:
id: tempo_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.3, "center_y": 0.5}
size_hint: 0.3, 0.1
min: 0
max: 1
step: 0.01
orientation: 'horizontal'
value: 0.5
Label:
pos_hint: {"center_x": 0.2, "center_y": 0.45}
size_hint: 0.2, 0.2
text: "Valence"
CheckBox:
id: valence_checkbox
pos_hint: {"center_x": 0.1, "center_y": 0.4}
size_hint: 0.05, 0.05
active: True
background_checkbox_down: app.resource_path("pictures/checkbox_down.png")
background_checkbox_normal: app.resource_path("pictures/checkbox_normal.png")
on_release:
root.update_states()
Slider:
id: valence_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.3, "center_y": 0.4}
size_hint: 0.3, 0.1
min: 0
max: 1
step: 0.01
orientation: 'horizontal'
value: 0.5
Label:
pos_hint: {"center_x": 0.2, "center_y": 0.35}
size_hint: 0.2, 0.2
text: "Danceability"
CheckBox:
id: danceability_checkbox
pos_hint: {"center_x": 0.1, "center_y": 0.3}
size_hint: 0.05, 0.05
active: True
background_checkbox_down: app.resource_path("pictures/checkbox_down.png")
background_checkbox_normal: app.resource_path("pictures/checkbox_normal.png")
on_release:
root.update_states()
Slider:
id: danceability_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.3, "center_y": 0.3}
size_hint: 0.3, 0.1
min: 0
max: 1
step: 0.01
orientation: 'horizontal'
value: 0.5
Label:
text: "percentage of playlist returned"
font_size: 20
pos_hint: {"center_x": 0.7, "center_y": 0.65}
size_hint: 0.2, 0.2
valign: "center"
halign: "center"
Label:
id: percentage_label
font_size: 40
color: (0.9, 0.25, 0.9, 1)
pos_hint: {"center_x": 0.7, "center_y": 0.5}
size_hint: 0.2, 0.2
valign: "center"
halign: "center"
Slider:
id: percentage_slider
padding: 0
cursor_size: 20, 20
cursor_image: "pictures/slider_cursor.png"
value_track: True
value_track_color: (0.9, 0.25, 0.9, 1) if self.disabled == False else (0.25, 0.25, 0.25, 1)
background_horizontal: app.resource_path("pictures/black.png")
cursor_disabled_image: app.resource_path("pictures/no_image.png")
background_width: 5
pos_hint: {"center_x": 0.7, "center_y": 0.3}
size_hint: 0.4, 0.1
min: 0.01
max: 0.33
step: 0.01
orientation: 'horizontal'
value: 0.15
on_touch_move:
root.update_states()
on_touch_up:
root.update_states()
Button:
text: "Back"
pos_hint: {"center_x": 0.4, "center_y": 0.1}
size_hint: 0.14, 0.08
background_color: 0,0,0,0
bold: True
color: 1, 1, 1, 1
canvas.before:
Color:
rgba: (0.5, 0.5, 0.5, 1) if self.state=='normal' else (0,.7,.7,1)
RoundedRectangle:
pos: self.pos
size: self.size
radius: [25,]
on_release:
root.manager.transition.direction = "right"
app.root.current = "player"
Button:
text: "Add to queue"
pos_hint: {"center_x": 0.6, "center_y": 0.1}
size_hint: 0.15, 0.08
background_color: 0,0,0,0
bold: True
color: 1, 1, 1, 1
canvas.before:
Color:
rgba: (0.9, 0.25, 0.9, 1) if self.state=='normal' else (0,.7,.7,1)
RoundedRectangle:
pos: self.pos
size: self.size
radius: [25,]
on_release:
root.apply_one_point_search()
root.manager.transition.direction = "right"
app.root.current = "player"