forked from yaribussi/Blindo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtilityView.py
646 lines (543 loc) · 26.7 KB
/
UtilityView.py
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
from tkinter import *
import fileManaging as fm
import os
import StaticParameter as SP
import KeyboardView
from ListAssociationView import ListAssociationView as lav
import shutil
# funzione che mostra a video un messaggio
# passatole come primo parametro per un tempo (in secondi) passato come secondo parametrp
import registrazione as reg
import KeyboardView as key
def show_dialog_with_time(text, time):
def close(to_close):
to_close.quit()
to_close.destroy()
dialog = Tk()
dialog.config(bg=SP.root_background_color_gray_scale)
dialog.overrideredirect(1) # rimuove la barra che permetterebbe di chiudere la finestra appena creata
screen_width = dialog.winfo_screenwidth()
screen_height = dialog.winfo_screenheight()
# calculate position x and y coordinates
x = (screen_width / 2) - 200
y = (screen_height / 2) - 30
dialog.geometry('+%d+%d' % (x, y))
label = Label(dialog,
text=text,
bg=SP.standard_color_setting("pop_up_background_color"),
font=SP.font_small,
wraplength=500,
bd=4,
fg=SP.root_font_color,
relief=GROOVE
)
label.configure(anchor="center")
label.pack(expand=True)
# time*1000 serve a convertire i secondi passati come parametro in millisecondi richiesti dalla funzione after
dialog.after(time * 1000, close, dialog)
dialog.mainloop()
# funzione per avere un pulsante di uscita dalla schermata attuale con testo variabile passato come param
def exit_button_with_text(root, text, recording=False):
exit_button = Button(root,
text=text,
command=lambda: root.destroy(),
bg=SP.standard_color_setting("exit_button_with_text"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("exit_button_with_text")
)
exit_button.config(height=3, width=10)
exit_button.pack(side=BOTTOM, fill=BOTH)
# pulsante torna al menù chiude la registrazione audio come se fosse uno stop
file_audio_memoria_interna = os.listdir(SP.path_che_simula_la_memoria_interna_del_raspberry)
if recording:
reg.stop()
# funzione che richiama la tastiera e chiede all'utente il nome del file
file_not_found = True
label_keboard = "Scegli il nome del file appena registrato"
while file_not_found:
new_name = key.keyboard(label_keboard)
new_name_with_format = new_name + ".wav"
for file in file_audio_memoria_interna:
if new_name_with_format == file:
# print("-----------------------------------trovato")
file_not_found = True
label_keboard = "File già esistente"
break
else:
# print("-----------------------------------non trovato")
file_not_found = False
return exit_button
# questa funzione permette di creare un pulsante
# che quando premuto apre la schermata show_file
# i parametri richiesti per la creazione del bottone sono: -frame su cui il bottone verrà applicato
# -testo che apparirà sul pulsante
def bottom_with_text(frame, text):
button = Button(frame,
text=text,
bg=SP.standard_color_setting("button_utility_view"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
relief=SP.bord_style,
command=lambda: show_file(text.replace("Pulsante ", "")),
activebackground=SP.active_background_color_gray_scale,
activeforeground=SP.black)
button.config(width=20, height=3)
return button
# funzione che richiama una schermata chiedendo all'utente la conferma dell'eliminazione del file selezionato
def elimina_file_con_conferma(path, nome_file):
def confirmed_deletion(path, nome_file):
for list in os.listdir(SP.path_liste):
fm.delete_element_from_list(nome_file, list)
path_file = os.path.join(path, nome_file)
# se si vuole eliminare una cartella, si usa il comando shutile.rmtree
# se si vuole eliminare un file si usa il comando di os
if os.path.isdir(path_file):
shutil.rmtree(path_file)
else:
os.remove(path_file)
root.quit()
root.destroy()
def abort_deletion():
# root.quit()
root.destroy()
root = Tk()
root.attributes('-fullscreen', SP.full_screen_option)
root.config(bg=SP.standard_color_setting("root_utility_view"))
frame = Frame(root)
frame.config(bg=SP.standard_color_setting("frame_utility_view"))
frame.pack()
label = Label(frame,
text="Attenzione!\nVuoi eliminare\n" + nome_file + " ?",
bg=SP.standard_color_setting("root_utility_view"),
fg=SP.root_font_color,
width=90, height=3,
font=SP.font_medium)
label.pack()
delete_button = Button(frame,
text="Elimina",
bg=SP.standard_color_setting("delete_button_background"),
command=lambda: confirmed_deletion(path, nome_file),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
relief=SP.bord_style,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("delete_button_background"))
delete_button.config(height=5, width=23)
delete_button.pack(side=LEFT)
abort_button = Button(frame,
text="Annulla",
bg=SP.standard_color_setting("confirm_button_background"),
command=lambda: abort_deletion(),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
relief=SP.bord_style,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("confirm_button_background"))
abort_button.config(height=5, width=23) # altezza 5
abort_button.pack(side=RIGHT)
root.mainloop()
def multiple_delete_with_choice(selected_file):
def confirmed_deletion():
for list in os.listdir(SP.path_liste):
for file in selected_file:
fm.delete_element_from_list(file, list)
for el in selected_file:
os.remove(os.path.join(SP.path_che_simula_la_memoria_interna_del_raspberry, el))
root.quit()
root.destroy()
def abort_deletion():
root.quit()
root.destroy()
root = Tk()
root.attributes('-fullscreen', SP.full_screen_option)
root.config(bg=SP.standard_color_setting("root_utility_view"))
frame = Frame(root)
frame.config(bg=SP.standard_color_setting("frame_utility_view"))
frame.pack()
label = Label(
frame, text="Attenzione!\nVuoi eliminare " + str(len(selected_file)) + " file audio?",
bg=SP.standard_color_setting("label_utility_view"),
fg=SP.button_font_color_gray_scale,
width=90, height=3,
font=SP.font_medium)
label.pack()
delete_button = Button(frame,
text="Elimina",
bg=SP.standard_color_setting("delete_button_background"),
fg=SP.button_font_color_gray_scale,
command=lambda: confirmed_deletion(),
font=SP.font_small,
relief=SP.bord_style,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("delete_button_background"))
delete_button.config(height=5, width=23)
delete_button.pack(side=LEFT)
abort_button = Button(frame,
text="Annulla",
bg=SP.standard_color_setting("confirm_button_background"),
fg=SP.button_font_color_gray_scale,
command=lambda: abort_deletion(),
font=SP.font_small,
relief=SP.bord_style,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("confirm_button_background"))
abort_button.config(height=5, width=23) # altezza 5
abort_button.pack(side=RIGHT)
root.mainloop()
def multi_choice_view(text_label, yes_button_text, no_button_text):
def confirmed_selection():
global choice
choice = True
root.quit()
root.destroy()
def abort_deletion():
global choice
choice = False
root.quit()
root.destroy()
root = Tk()
root.attributes('-fullscreen', SP.full_screen_option)
root.config(bg=SP.standard_color_setting("root_utility_view"))
frame = Frame(root)
frame.config(bg=SP.standard_color_setting("frame_utility_view"))
frame.pack()
label = Label(
frame, text=text_label,
bg=SP.standard_color_setting("label_utility_view"),
fg=SP.root_font_color,
width=90, height=3,
font=SP.font_medium)
label.pack()
confirm_button = Button(frame,
text=yes_button_text,
bg=SP.standard_color_setting("confirm_button_background"),
command=lambda: confirmed_selection(),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
relief=SP.bord_style,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("confirm_button_background"))
confirm_button.config(height=5, width=23)
confirm_button.pack(side=LEFT)
abort_button = Button(frame,
text=no_button_text,
bg=SP.standard_color_setting("delete_button_background"),
command=lambda: abort_deletion(),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
relief=SP.bord_style,
bd=SP.bord_size,
activebackground=SP.standard_color_setting("delete_button_background"))
abort_button.config(height=5, width=23) # altezza 5
abort_button.pack(side=RIGHT)
root.mainloop()
return choice
# schermata che appare DOPO aver cliccato uno dei pulsanti della lista
# che vengono mostrati DOPO aver cliccato il pulsante ASSOCIA nel MENUPRINCIPALE
# richiede come parametro l'ID del pulsante che ha richiamato questa funzione
# parametro necessario per un trackback
def show_file(idButton):
# permette di fare l'associazione di un fileAudio dato un ID di un pulsante passato come parametro
def bind_button(id, root):
song_name = mylist.get('active')
fm.bind(song_name, id)
root.destroy()
# funzione che elimina l'elemento selezionato dopo aver chiesto all'utente #########
def delete_item(root):
# for list in os.listdir(PS)
song_name = mylist.get('active')
elimina_file_con_conferma(SP.path_che_simula_la_memoria_interna_del_raspberry, song_name)
root.destroy()
# ############# END OF delete_item ####################
# START OF show_file
root = Tk()
root.attributes('-fullscreen', SP.full_screen_option)
root.config(bg=SP.standard_color_setting("root_list_association_view"))
scrollbar = Scrollbar(root)
scrollbar.config(width=70)
scrollbar.pack(side=LEFT, fill=Y)
formats = SP.audio_formats
mydict = {}
mylist = Listbox(root,
yscrollcommand=scrollbar.set,
font=SP.font_small,
fg=SP.root_font_color,
bg=SP.standard_color_setting("root_list_association_view"))
# questo ciclo controlla tutte le sottocartelle del path passato in os.walk
# e inserisce in mylist tutti i file con un'estensione contenuta in "formats"
for radice, cartelle, files in os.walk(SP.path_che_simula_la_memoria_interna_del_raspberry, topdown=False):
for name in files:
for tipo in formats:
if tipo in name:
temp_str = os.path.join(radice, name)
mydict[name] = temp_str
mylist.insert(END, name)
mylist.pack(side=LEFT, fill=BOTH, expand=True)
mylist.pack(side=LEFT, fill=BOTH, expand=1, )
scrollbar.config(command=mylist.yview)
# pulsante che si trova alla destra della lista di file audio NELLA schermata ASSOCIA
bind_file_audio_button = Button(root,
text="Scegli il file \n"
"da associare\n "
"al Pulsante" + idButton + "\n"
"e clicca qui \n",
command=lambda: bind_button(int(idButton), root),
bg=SP.standard_color_setting("button_list_association_view"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("button_list_association_view"))
bind_file_audio_button.config(height=5, width=25)
bind_file_audio_button.pack(side=TOP, fill=BOTH)
# pulsante per eliminare i file audio selezionati ###############
delete_file_audio_button = Button(root,
text="Scegli il file \n"
"da eliminare\n"
"e clicca qui",
command=lambda: delete_item(root),
bg=SP.standard_color_setting("delete_button_background"),
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("delete_button_background"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale)
delete_file_audio_button.config(height=4, width=25)
delete_file_audio_button.pack(fill=BOTH)
exit_button_with_text(root, "Torna alla lista pulsanti")
# questa funzione permette di creare un pulsante
# che quando premuto apre la schermata show_file
# i parametri richiesti per la creazione del bottone sono: -frame su cui il bottone verrà applicato
# -testo che apparirà sul pulsante
def bottom_with_text(frame, text):
button = Button(frame,
text=text,
bg=SP.standard_color_setting("button_list_association_view"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
relief=SP.bord_style,
command=lambda: show_file(text.replace("Pulsante", "")),
activebackground=SP.standard_color_setting("button_list_association_view"),
)
button.config(width=20, height=3)
return button
# funzione che crea un pulsante che visualizza i file da un path di origine
# e li copia in un path destinzaione
# mod: può essere "ESPORTA" o "IMPORTA" serve a rendere questa funzione più generale
def button_usb_key(frame, mod, nome_chiavetta, path_origine, path_destinzaione, cl_root):
# cl_root.destroy
button = Button(frame, text=nome_chiavetta,
bg=SP.standard_color_setting("usb_key_button"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("usb_key_button"),
command=lambda: show_and_select_item_from_path(mod, path_origine, path_destinzaione, nome_chiavetta,
cl_root)
)
button.config(width=40, height=3)
return button
'''
function not used in project
'''
def button_usb_key_list(frame, nome_chiavetta):
button = Button(frame, text=nome_chiavetta,
bg=SP.standard_color_setting("usb_key_button"),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("usb_key_button"),
# command=lav.show_list().es
)
button.config(width=40, height=3)
return button
# funzione che appare nel menu principale dopo aver cliccato su "Gestisci archivio")
def raspberry_memory_manager():
# funzione che permette du selezionare ed eliminare elementi multipli
def delete_selected_elements(root):
selected_items = [mylist.get(idx) for idx in mylist.curselection()]
if len(selected_items) > 0:
multiple_delete_with_choice(selected_items)
root.destroy()
raspberry_memory_manager()
# _____________________ end of delete_selected_elements______________________________
# funzione che permette du selezionare e rinominare elementi multipli
# solamente il primo elemento il lista verrà rinominato
def rename_selected_element(root):
# array con tutti gli elementi selezionati
selected_items = [mylist.get(idx) for idx in mylist.curselection()]
# selezione del primo elemento dell'array
if len(selected_items) > 0:
selected = selected_items[0]
size = len(selected)
new_name = KeyboardView.keyboard("Rinomina '" + selected[0:size - 4] + "'")
format = selected[size - 4:size]
final_name = new_name + format
# format accoglie gli ultimi 4 caratteri del primo elemento di tutti i file selezionati dall'utente
file_in_memory = os.listdir(SP.path_che_simula_la_memoria_interna_del_raspberry)
choice = True
for el in file_in_memory:
if final_name == el:
# richiesta all'utente
choice = multi_choice_view("Nome file \n'" + el + "'\n già presente", "Sostituisci", "Annulla")
if choice:
os.remove(os.path.join(SP.path_che_simula_la_memoria_interna_del_raspberry, el))
break
if choice:
# path file da rinominare
src = os.path.join(SP.path_che_simula_la_memoria_interna_del_raspberry, selected)
# path file rinominato
dst = os.path.join(SP.path_che_simula_la_memoria_interna_del_raspberry, final_name)
id_renamed_element = fm.give_id_button(selected)
os.rename(src, dst)
if id_renamed_element is not None:
fm.bind(final_name, id_renamed_element)
root.destroy()
raspberry_memory_manager()
root = Tk()
root.attributes('-fullscreen', SP.full_screen_option)
root.config(bg=SP.standard_color_setting("root_archive_manager_view"))
# lista di formati audio manipolabili
formats = [".mp3", ".wav", ".wma", ".ogg", ".flac"]
text_layer = "Memoria interna"
label_info = Label(root, text=text_layer,
bg=SP.standard_color_setting("label_archive_manager_view"),
fg=SP.root_font_color,
width=90, height=3,
font=SP.font_small
)
label_info.pack()
# visualizzazione brani con scrollbar
scrollbar = Scrollbar(root)
scrollbar.pack(side=LEFT, fill=Y)
mylist = Listbox(root,
yscrollcommand=scrollbar.set,
selectmode=MULTIPLE,
font=SP.font_small,
fg=SP.root_font_color,
bg=SP.standard_color_setting("listbox_archive_manager_view")
)
mydict = {}
# ciclo che aggiunge i file audio alla scrolbar
for radice, cartelle, files in os.walk(SP.path_che_simula_la_memoria_interna_del_raspberry, topdown=False):
for name in files:
for tipo in formats:
if tipo in name:
temp_str = os.path.join(radice, name)
mydict[name] = temp_str
mylist.insert(END, name)
mylist.pack(side=LEFT, fill=BOTH, expand=True)
scrollbar.config(width=70, command=mylist.yview)
button_delete = Button(root,
text="Scegli i file \nche vuoi eliminare",
bg=SP.standard_color_setting("delete_button_background"),
fg=SP.button_font_color_gray_scale,
command=lambda: delete_selected_elements(root),
font=SP.font_small,
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("delete_button_background")
)
button_delete.config(height=4, width=20)
button_delete.pack(side=TOP, fill=BOTH)
button_rename = Button(root,
text="Scegli il file \nche vuoi rinominare",
bg=SP.standard_color_setting("button_archive_manager_view"),
fg=SP.button_font_color_gray_scale,
command=lambda: rename_selected_element(root),
font=SP.font_small,
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("button_archive_manager_view")
)
button_rename.config(height=4, width=20)
button_rename.pack(side=TOP, fill=BOTH)
exit_button_with_text(root, "Torna indietro")
# schermata che stampa a video i file contenuti in un determinato path
def show_and_select_item_from_path(mod, path_origine, path_destinzaione, nome_chiavetta, cl_root):
# funzione che copia la lista dei file selezionati in un'altra directory
# dall'utente nella schermata IMPORTA, dopo aver cliccato sul pulsante
# avente la scritta, appunto IMPORTA
def select_items_and_copy(root):
# lista contenente i brani selezionati
selected = [mylist.get(idx) for idx in mylist.curselection()]
# pop up con durata 2 secondi che informa di attendere
show_dialog_with_time("L'operazione potrebbe richedere alcuni istanti...", 2)
# ciclo che copia tutti i file selezionati dall'utente
for file in selected:
fm.copy_file_from_path_to_another(mydict[file], path_destinzaione)
# poup-up informativo
show_dialog_with_time("Operazione conclusa con successo", 2)
root.destroy()
# ###### END OF select_items_and_copy ###################
def delete_selected_elements(root):
selected = [mylist.get(idx) for idx in mylist.curselection()]
# elimina_file_con_conferma(path_origine, str(number_of_deleted_file) + " file audio")
multiple_delete_with_choice(selected)
# root.destroy()
root = Tk()
root.attributes('-fullscreen', SP.full_screen_option)
root.config(bg=SP.standard_color_setting("root_import_export_view"))
formats = [".mp3", ".wav", ".wma", ".ogg", ".flac"]
if mod == "esportare":
text_layer = "Memoria interna"
bg_label_color = SP.standard_color_setting("export_root_background")
bg_list_color = SP.standard_color_setting("export_root_background")
else:
text_layer = nome_chiavetta
bg_label_color = SP.standard_color_setting("import_root_background")
bg_list_color = SP.standard_color_setting("import_root_background")
label_info = Label(root, text=text_layer,
bg=bg_label_color,
fg=SP.root_font_color,
width=90, height=3,
font=SP.font_small
)
label_info.pack()
# visualizzazione brani con scrollbar
scrollbar = Scrollbar(root)
scrollbar.pack(side=LEFT, fill=Y)
mylist = Listbox(root,
yscrollcommand=scrollbar.set,
selectmode=MULTIPLE,
font=SP.font_small,
fg=SP.root_font_color,
bg=bg_list_color
)
mydict = {}
# ciclo che aggiunge i file audio alla scrolbar
for radice, cartelle, files in os.walk(path_origine, topdown=False):
for name in files:
for tipo in formats:
if tipo in name:
temp_str = os.path.join(radice, name)
mydict[name] = temp_str
mylist.insert(END, name)
mylist.pack(side=LEFT, fill=BOTH, expand=True)
scrollbar.config(width=70, command=mylist.yview)
exit_button_with_text(root, "Torna al menu principale")
# ############ caratteristiche pulsante IMPORTA/ESPORTA ######################
button_text = "Seleziona i file \nche desideri " + mod + "\ne poi clicca qui"
# se sono presenti chiavette viene abilitato il pulsante "IMPORTA"
# otherwise viene visualizzato solamente il pulsante ELIMINA BRANI
if mod != "Memoria interna":
import_button = Button(root,
text=button_text,
bg=SP.standard_color_setting("import_button_background"),
command=lambda: select_items_and_copy(root),
font=SP.font_small,
fg=SP.button_font_color_gray_scale,
bd=SP.bord_size,
relief=SP.bord_style,
activebackground=SP.standard_color_setting("import_button_background"))
import_button.config(height=3, width=20)
import_button.pack(side=TOP, fill=BOTH)
# visualizza il pulsante ELIMINA solo in modalità esporta o se NON sono presenti chiavette
cl_root.destroy()
root.mainloop()