-
Notifications
You must be signed in to change notification settings - Fork 0
/
myapp.kv
230 lines (205 loc) · 7.32 KB
/
myapp.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
#: import CheckBox kivy.uix.checkbox
<CustLabel@Label>:
color: 0, 0, 0, 1
<CustCkb@CheckBox>:
color: 0, 0, 0, 1
<CustSwitch@Switch>:
values: ['OFF', 'ON']
canvas:
Color:
rgb: 0.2, 0.709, 0.898, 1
Rectangle:
size: [sp(40), sp(25)]
pos: [self.center_x - sp(40), self.center_y - sp(12)]
Color:
rgb: 0.2, 0.709, 0.898, 1
Rectangle:
size: [sp(43), sp(25)]
pos: [self.center_x, self.center_y - sp(12)]
Label:
text: '[b]{}[/b]'.format(root.values[0])
markup: True
font_size: 13
pos: [root.center_x - sp(70), root.center_y - sp(50)]
Label:
text: '[b]{}[/b]'.format(root.values[1])
markup: True
font_size: 13
pos: [root.center_x - sp(30), root.center_y - sp(50)]
<MyWidget>
id: BL_Main
orientation: "horizontal"
padding: 10
spacing: 10
########################### LEFT PANE
BoxLayout:
id: BL_folder
size_hint: None, 1
width:320
orientation: "vertical"
BoxLayout: # color behind FileChooserIconView
orientation:"horizontal"
canvas.before:
Color:
rgb: .4,.5,.5
Rectangle:
pos: self.pos
size: self.size
## multiple select folder not possible with FileChooserListView / other attribute not used : on_selection: root.selected(filechooser.selection)
FileChooserIconView:
id: filechooser
pos:self.pos
multiselect: True
dirselect: True
path : root.Filechooser_initial_path
######## CRITERES
BoxLayout:
id: BL_Crit_ListView
orientation: "vertical"
padding: 10
canvas.before:
Color:
rgb: .9,.9,.9, 0.2
Rectangle:
pos: self.pos
size: self.size
CustLabel:
text: "[b]Critères[/b]"
markup:True
BoxLayout: # Empty folder
id: BL_Crit
orientation: "horizontal"
CustLabel:
text: "Empty folder only"
CustCkb:
id:Ck_emptyfolder
## active: root.Oj_Ck_emptyfolder
BoxLayout: # desktop ini
id: BL_Crit
orientation: "horizontal"
CustLabel:
text: "Contains only desktop.ini"
CustCkb:
id:Ck_only_desktop_ini
## active: root.Oj_Ck_only_desktop_ini
BoxLayout: # srt txt
id: BL_Crit
orientation: "horizontal"
CustLabel:
text: "Contains only .srt/.txt"
CustCkb:
id:Ck_only_srt_txt
## active : root.Oj_Ck_only_srt_txt
Label:
text:""
BoxLayout: # srt txt
id: BL_Crit
orientation: "vertical"
size_hint_y: None
height: 50
canvas.before:
Color:
rgb: 0.808, 0.808, 0.808
Rectangle:
pos: self.pos
size: self.size
CustLabel:
text: "Delete folder containing only (ex: .pdf, .mp3):"
size_hint: 1,None
height:20
TextInput:
size_hint: 1,None
height:30
id: Txt_extension
multiline:False
Label:
text:""
BoxLayout: # size
id: BL_size
orientation: "vertical"
size_hint_y: None
height: 50
canvas.before:
Color:
rgb:0.808, 0.808, 0.808
Rectangle:
pos: self.pos
size: self.size
CustLabel:
text: "Size (Kb= .txt / Mb= .pdf / Gb = DVD)"
size_hint: 1,None
height:20
BoxLayout:
id: BL_size
orientation: "horizontal"
CustSwitch:
id:sup_inf
values: ['<', '>']
active:True
TextInput:
size_hint: 1,None
height:30
id: Txt_size
multiline:False
ToggleButton:
text:'Kb'
id:Kb
group:'size'
state:'down'
size_hint: None, None
height: 30
width: 25
allow_no_selection : False
ToggleButton:
text:'Mb'
id: Mb
group:'size'
size_hint: None, None
height: 30
width: 25
allow_no_selection : False
ToggleButton:
text:'Gb'
id:Gb
group:'size'
size_hint: None, None
height: 30
width: 25
allow_no_selection : False
CustLabel: ## Lbl used as separator
id: Lb_ListViewFolder
text: ""
size_hint_x: .75
Button:
id:ok
text:'OK'
background_color: 0,0,1,1
size_hint: None, None
height: 30
width: 25
on_press: root.selected(filechooser.path, filechooser.selection, Ck_emptyfolder.active,Ck_only_desktop_ini.active,Ck_only_srt_txt.active, Txt_extension.text, sup_inf.active, Txt_size.text, Kb.state, Mb.state, Gb.state)
## ## Image:
## ## source : 'loading.zip'
## ## anim_delay : 0.02
## ## allow_stretch : True
## ## keep_ratio : True
## ## keep_data : True
<Loading_Image_KV>
Image:
source : 'loading.zip'
anim_delay : 0.2
allow_stretch : True
keep_ratio : True
keep_data : True
<CustomCheckbox>: ##
canvas.before:
Color:
rgb: 1,1,0
Rectangle:
pos:self.center_x-8, self.center_y-8
size:[16,16]
Color:
rgb: 0,0,0
Rectangle:
pos:self.center_x-7, self.center_y-7
size:[14,14]