-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.kv
76 lines (70 loc) · 1.95 KB
/
box.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
<MainLayout>
BoxLayout:
orientation:"vertical"
size:root.width,root.height
spacing:'10'
padding:25
BoxLayout:
spacing:10
TextInput:
id:UserQuery
text:''
halign:'center'
font_size:42
multiline:False
size_hint:(1,1)
Button:
id:clear
text:"x"
font_size:36
spacing:10
size_hint:(0.1,1)
background_color:(1,1,1,1)
on_press:root.clear()
Button:
id:search
text:"Search"
background_color:(0,0,1,1)
on_press:root.show_result()
Button:
id:result1
text:"1......"
background_color:(0,1,1,1)
on_press:root.indexNo(0)
Button:
id:result2
text:"2......"
background_color:(0,1,1,1)
on_press:root.indexNo(1)
Button:
id:result3
text:"3......"
background_color:(0,1,1,1)
on_press:root.indexNo(2)
Button:
id:result4
text:"4......"
background_color:(0,1,1,1)
on_press:root.indexNo(3)
Button:
id:result5
text:"5......"
background_color:(0,1,1,1)
on_press:root.indexNo(4)
BoxLayout:
spacing:5
Button:
id:Pause
text:"Pause"
background_color:(0,0,1,1)
on_press:root.pauseSong()
Button:
id:Play
text:"Play"
background_color:(0,0,1,1)
on_press:root.playSong()
Button:
id:Pause
text:"Resume"
background_color:(0,0,1,1)
on_press:root.resumeSong()