-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathair.kv
142 lines (106 loc) · 4.24 KB
/
air.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
# KV file of the AiR player app
<base>:
id: Base
orientation: 'horizontal'
padding: 10
spacing: 10
#BoxLayout:
# Creating browser
FileChooserListView:
id: filechooser
dirselect: False
size_hint: 0.3, 1
#filter_dirs : True
filters : [lambda folder, filename: filename.endswith('.mp3')]
dirselect: True
on_selection: root.select(filechooser.selection[0])
BoxLayout:
orientation: 'vertical'
BoxLayout:
id: PL
orientation: 'horizontal'
#padding: 10
spacing: 10
# toggle buttons
BoxLayout:
orientation: 'vertical'
#size_hint: 0.7, 1
Button:
text: "canvas"
#size_hint: 0.7, 1
Label:
id : current
text: "Now : "
size_hint: 1,0.1
Button:
# will be a popup
text: "equalizer"
size_hint: 1, 0.2
#ScrollView:
#size_hint: 0.3, 1
#do_scroll_x : False
Label:
id : playlist
size_hint: 0.3, 1
halign: 'left'
valign: 'top'
markup: True
text_size: self.width, self.height
text : " <[u] P L A Y L I S T [/u]>\n"
on_ref_press: root.test(args[1])
#text: "playlist [ref=world]World[/ref]"
#on_ref_press: root.test(args[1])
BoxLayout:
orientation: 'vertical'
size_hint: 1, 0.3
BoxLayout:
orientation: 'horizontal'
padding: 10
spacing: 10
Label:
text : "Add to Fav | Show Fav"
size_hint: 0.3, 1
#on_press : root.paudio()
BoxLayout:
orientation: 'horizontal'
size_hint: 0.3, 1
padding: 1
Button:
text : "<<"
size_hint: 0.3, 1
on_press : root.paudio()
Button:
text : "||>"
on_press : root.playpause()
size_hint: 0.3, 1
Button:
text : ">>"
size_hint: 0.3, 1
on_press : root.naudio()
BoxLayout:
size_hint: 0.3, 1
orientation: 'horizontal'
Label:
text: "Vol : "
size_hint: 0.2, 1
Slider:
id: volume
min: 0
max: 100
step: 1
value: 100
orientation: 'horizontal'
Label:
text: str(int(volume.value))
size_hint: 0.2, 1
BoxLayout:
Slider:
id: slider
min: 0
max: 100
step: 1
orientation: 'horizontal'
Label:
#text: str(slider.value)
text : root.seconds_string # + '/' + root.songlength
size_hint: 0.2, 1