-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain12.py
597 lines (467 loc) · 26.5 KB
/
main12.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
import os
from tkinter import simpledialog
from tkinter.tix import Tree
from numpy import roots
import pydicom as dicom
import tkinter as tk
from tkinter import ttk, filedialog, messagebox
from datetime import datetime
from threading import Thread
from ttkthemes import ThemedTk
from PIL import Image, ImageTk
from dicom_utils import view_dicom_series, on_table_click
from gui_utils import create_gui, open_viewer_window, update_table, on_double_click_column_resize, filter_by_name
from reportlab.lib.pagesizes import letter, landscape
from reportlab.platypus import PageBreak, Table, TableStyle, SimpleDocTemplate
from reportlab.lib import colors, pagesizes # Adiciona a importação da biblioteca pagesizes
import subprocess
from concurrent.futures import ThreadPoolExecutor
from functools import partial
def on_startup(event=None):
# Distribui uniformemente as colunas ao iniciar o programa
total_width = tree.winfo_width()
num_columns = len(Tree["columns"])
column_width = total_width / num_columns
for col in ttk.Treeview["columns"]:
ttk.Treeview.column(col, width=int(column_width))
# Adicione esta linha após a criação do widget da árvore (tree)
ttk.Treeview.column("#0", width=300)
def format_date(date_str):
return f"{date_str[6:8]}/{date_str[4:6]}/{date_str[0:4]}"
def calculate_age(birth_date_str):
try:
birth_date = datetime.strptime(birth_date_str, "%Y%m%d")
current_date = datetime.now()
age = current_date.year - birth_date.year -- ((current_date.month, current_date.day) < (birth_date.month, birth_date.day))
return age
except ValueError:
return "N/D"
def extract_clean_name(given_name, family_name):
given_name = ''.join(char for char in given_name if char.isalpha() or char.isspace())
family_name = ''.join(char for char in family_name if char.isalpha() or char.isspace())
return f"{given_name.strip()} {family_name.strip()}"
def calculate_slice_thickness(ds):
try:
return "{:.2f}".format(float(getattr(ds, 'SliceThickness', "N/A")))
except ValueError:
return "N/A"
def get_sex(ds):
return getattr(ds, 'PatientSex', "N/A")
# Modifique a lista de cabeçalhos para incluir apenas as colunas desejadas
headers = ["Nascimento", "Sexo", "Idade", "Exame", "Descrição do Estudo", "Quantidade de Slices"]
def get_table_data(tree):
# Obtém os cabeçalhos da tabela
headers = tree["columns"]
# Obtém os dados das linhas da tabela
data = []
for item in tree.get_children():
row_values = tree.item(item, "values")
data.append([tree.item(item, "text")] + [row_values[headers.index(column)] for column in headers])
# Retorna os cabeçalhos e os dados da tabela
return [headers] + data
def edit_patient_name(event):
# Obtenha a linha selecionada
selected_item = tree.selection()[0]
# Obtenha o nome atual do paciente
current_name = ttk.Treeview.item(selected_item, "text")
# Crie uma janela de diálogo para editar o nome do paciente
new_name = simpledialog.askstring("Editar Nome do Paciente", f"Novo Nome para {current_name}:")
# Se o usuário inserir um novo nome, atualize a árvore
if new_name:
ttk.Treeview.item(selected_item, text=new_name)
messagebox.showinfo("Alteração Confirmada", "Você alterou o nome do paciente com sucesso!")
def generate_pdf_report_and_open(tree):
# Mapeamento dos índices das colunas para os nomes dos cabeçalhos
header_mapping = {
0: "Nome do paciente",
1: "Data de nascimento",
3: "Idade",
2: "Sexo",
4: "Data do exame",
6: "Fabricante",
7: "Equipamento",
9: "Quantidade de Slices",
10: "Espessura do Slice"
}
# Obtém os dados da tabela
table_data = get_table_data(tree)
# Seleciona apenas as colunas desejadas (colunas 1, 2, 4, 5, 7, 8, 10 e 11)
selected_columns_indices = [0, 1, 3, 2, 4, 6, 7, 9]
table_data_selected = [[row[i] for i in selected_columns_indices] for row in table_data]
# Renomeia os cabeçalhos das colunas
headers = [header_mapping.get(i, "") for i in selected_columns_indices]
table_data_selected.insert(0, headers)
# Define o nome do arquivo PDF
filename = "dicom_report.pdf"
# Cria um documento PDF em modo paisagem
pdf = SimpleDocTemplate(filename, pagesize=landscape(letter))
# Adiciona os dados da tabela ao PDF, excluindo a primeira linha (cabeçalhos)
table = Table(table_data_selected[1:], repeatRows=1)
# Define o estilo da tabela
table.setStyle(TableStyle([
('BACKGROUND', (0, 0), (-1, 0), colors.grey),
('TEXTCOLOR', (0, 0), (-1, 0), colors.whitesmoke),
('ALIGN', (0, 0), (-1, -1), 'CENTER'),
('FONTNAME', (0, 0), (-1, 0), 'Helvetica-Bold'),
('BOTTOMPADDING', (0, 0), (-1, 0), 12),
('BACKGROUND', (0, 1), (-1, -1), colors.beige),
('GRID', (0, 0), (-1, -1), 1, colors.black),
('FONT', (0, 0), (-1, -1), 'Helvetica', 8) # Reduz o tamanho da fonte da tabela
]))
# Define o estilo do cabeçalho da tabela
header_style = TableStyle([
('BACKGROUND', (0, 0), (-1, 0), colors.grey),
('TEXTCOLOR', (0, 0), (-1, 0), colors.whitesmoke),
('ALIGN', (0, 0), (-1, -1), 'CENTER'),
('FONTNAME', (0, 0), (-1, 0), 'Helvetica-Bold'),
('BOTTOMPADDING', (0, 0), (-1, 0), 12),
('BACKGROUND', (0, 1), (-1, -1), colors.beige),
('GRID', (0, 0), (-1, -1), 1, colors.black),
('FONT', (0, 0), (-1, -1), 'Helvetica', 8) # Reduz o tamanho da fonte do cabeçalho
])
# Aplica o estilo do cabeçalho à primeira linha da tabela
for i, header in enumerate(headers):
header_style.add('BACKGROUND', (i, 0), (i, 0), colors.grey)
header_style.add('TEXTCOLOR', (i, 0), (i, 0), colors.whitesmoke)
# Adiciona a tabela ao documento PDF
table.setStyle(header_style)
pdf.build([table])
# Abre o relatório PDF no visualizador padrão do sistema
subprocess.Popen([filename], shell=True)
def minha_funcao(root):
popup = tk.Toplevel(root)
# Restante do código aqui
def get_folder_size(folder):
total_size = 0
for dirpath, dirnames, filenames in os.walk(folder):
for filename in filenames:
if filename.lower().endswith('.dcm'):
filepath = os.path.join(dirpath, filename)
total_size += os.path.getsize(filepath)
total_size_mb = total_size / (1024 * 1024)
return "{:.2f} MB".format(total_size_mb)
def show_context_menu(event):
# Obtenha a linha selecionada
item = ttk.Treeview.selection()[0]
# Crie um menu de contexto
context_menu = tk.Menu(roots, tearoff=0)
context_menu.add_command(label="Editar Dados", command=lambda: edit_data(item))
context_menu.add_command(label="Outra Opção", command=lambda: other_option(item))
# Exiba o menu de contexto na posição do evento
context_menu.post(event.x_root, event.y_root)
def edit_data(item):
# Lógica para editar os dados da linha selecionada
pass
def other_option(item):
# Lógica para a outra opção do menu de contexto
pass
def show_dicom_info(main_directory):
analyzed_directories = set()
analysis_interrupted = False # Flag para verificar se a análise foi interrompida
def update_table(new_directory, sort_by_name=False, analyze_folders=False):
tree.delete(*tree.get_children())
main_directory.set(new_directory)
analyzed_directories.clear()
if new_directory and analyze_folders:
analyze_directory()
if sort_by_name:
items = list(tree.get_children())
items.sort(key=lambda item: tree.item(item, 'text').lower())
for item in items:
tree.move(item, "", "end")
def choose_directory():
new_directory = filedialog.askdirectory(title="Escolha o diretório para análise")
if new_directory:
analyze_folders = analyze_on_button_click.get()
update_table(new_directory, sort_by_name=True, analyze_folders=analyze_folders)
def analyze_directory():
nonlocal analysis_interrupted
analysis_interrupted = False # Reinicia a flag ao iniciar a análise
current_directory = main_directory.get()
if current_directory in analyzed_directories:
tk.messagebox.showinfo("Diretório Já Analisado", "Este diretório já foi analisado e está na tabela.")
return
progress_window = tk.Toplevel(root)
progress_window.title("Analisando Diretório")
def on_close():
nonlocal analysis_interrupted
analysis_interrupted = True # Define a flag para indicar que a análise foi interrompida
progress_window.destroy()
progress_window.protocol("WM_DELETE_WINDOW", on_close) # Configura o evento de fechar a janela
progress_window.update_idletasks()
screen_width = progress_window.winfo_screenwidth()
screen_height = progress_window.winfo_screenheight()
window_width = 300
window_height = 100
x = (screen_width - window_width) // 2
y = (screen_height - window_height) // 2
progress_window.geometry(f"{window_width}x{window_height}+{x}+{y}")
progress_label = tk.Label(progress_window, text="Analisando... Aguarde.")
progress_label.pack(pady=10)
progress_bar = ttk.Progressbar(progress_window, orient="horizontal", length=300, mode="indeterminate")
progress_bar.pack(pady=10)
progress_bar.start()
def analyze_directory_async():
nonlocal progress_bar, progress_label, analysis_interrupted
try:
for root_folder, _, _ in os.walk(current_directory):
if analysis_interrupted: # Verifica se a análise foi interrompida
break
dicom_files = [f for f in os.listdir(root_folder) if f.lower().endswith('.dcm')]
patient_info = {}
for dicom_file in dicom_files:
dicom_path = os.path.join(root_folder, dicom_file)
try:
ds = dicom.dcmread(dicom_path, force=True)
patient_name = extract_clean_name(ds.PatientName.given_name, ds.PatientName.family_name)
patient_key = f"{patient_name}_{ds.PatientID}"
if patient_key not in patient_info:
patient_folder = os.path.join(current_directory, root_folder)
patient_info[patient_key] = {
"Nascimento": format_date(ds.PatientBirthDate),
"Sexo": get_sex(ds),
"Idade": calculate_age(ds.PatientBirthDate),
"Exame": format_date(ds.StudyDate),
"Descrição do Estudo": getattr(ds, 'StudyDescription', "N/A"),
"Fabricante": getattr(ds, 'Manufacturer', "N/A"),
"Equipamento": getattr(ds, 'ManufacturerModelName', "N/A"),
"Tipo de Exame": getattr(ds, 'Modality', "N/A"),
"Quantidade de Slices": 0,
"Espessura do Slice": "N/A",
"Tamanho da Pasta": get_folder_size(patient_folder),
"Visualizar": "👁️",
"Pasta": patient_folder # Adiciona a coluna para abrir a pasta
}
patient_info[patient_key]["Quantidade de Slices"] += 1
patient_info[patient_key]["Espessura do Slice"] = calculate_slice_thickness(ds)
except dicom.errors.InvalidDicomError:
print(f"Aviso: Ignorando arquivo DICOM inválido: {dicom_path}")
for patient_key, info in patient_info.items():
if analysis_interrupted: # Verifica se a análise foi interrompida
break
# Inserção na árvore com o caminho do diretório oculto
item_id = tree.insert("", "end", text=f"{patient_name}", values=(
info["Nascimento"],
info["Sexo"],
info["Idade"],
info["Exame"],
info["Descrição do Estudo"],
info["Fabricante"],
info["Equipamento"],
info["Tipo de Exame"],
info["Quantidade de Slices"],
info["Espessura do Slice"],
info["Tamanho da Pasta"],
info["Visualizar"],
"Clique para abrir pasta",
))
# Define o caminho do diretório como valor oculto
tree.set(item_id, "#13", info["Pasta"])
for col in tree["columns"]:
tree.column(col, anchor=tk.CENTER)
if not analysis_interrupted: # Atualiza a tabela apenas se a análise não foi interrompida
analyzed_directories.add(current_directory)
total_rows_label.config(text=f"Total de Tomografias Analisadas: {len(tree.get_children())}")
on_double_click_column_resize(tree)
finally:
progress_bar.stop()
progress_window.destroy()
analysis_thread = Thread(target=analyze_directory_async)
analysis_thread.start()
def clear_table_and_cache():
tree.delete(*tree.get_children())
main_directory.set("")
analyzed_directories.clear()
total_rows_label.config(text="Total de Tomografias Analisadas: 0")
def toggle_dark_mode():
current_theme = root.tk.call("ttk::style", "theme", "use")
# Defina as características do tema escuro
dark_theme = {
"treeview_background": "#2e2e2e",
"treeview_fieldbackground": "#2e2e2e",
"treeview_foreground": "#ffffff",
"treeview_selected_background": "#555555",
"window_background": "#2e2e2e",
"label_background": "#2e2e2e",
"label_foreground": "#ffffff",
"button_text": "Light Mode" # Texto para o botão quando estiver no modo escuro
}
if current_theme == "clam": # Verifica se o tema atual é claro
# Altere os estilos dos elementos para o tema escuro
tree_style.configure("Treeview", background=dark_theme["treeview_background"],
fieldbackground=dark_theme["treeview_fieldbackground"],
foreground=dark_theme["treeview_foreground"])
tree_style.map("Treeview", background=[("selected", dark_theme["treeview_selected_background"])])
btn_dark_mode.config(text=dark_theme["button_text"])
# Altere o plano de fundo e texto da janela principal para o tema escuro
root.configure(background=dark_theme["window_background"])
total_rows_label.configure(background=dark_theme["label_background"], foreground=dark_theme["label_foreground"])
reserved_rights_label.configure(background=dark_theme["label_background"], foreground=dark_theme["label_foreground"])
# Atualize o comando do botão para alternar para o modo claro
btn_dark_mode.config(text="Light Mode", command=toggle_light_mode)
else:
# Restaure os estilos e cores para o tema claro
tree_style.configure("Treeview", background="white", fieldbackground="white", foreground="black")
tree_style.map("Treeview", background=[("selected", "#a6a6a6")])
btn_dark_mode.config(text="Dark Mode") # Altere o texto do botão para indicar o modo escuro
# Restaure o plano de fundo e texto da janela principal para o tema claro
root.configure(background="white")
total_rows_label.configure(background="white", foreground="black")
reserved_rights_label.configure(background="white", foreground="black")
# Atualize o comando do botão para alternar para o modo escuro
btn_dark_mode.config(command=toggle_dark_mode)
def toggle_light_mode():
current_theme = root.tk.call("ttk::style", "theme", "use")
# Defina as características do tema claro
light_theme = {
"treeview_background": "white",
"treeview_fieldbackground": "white",
"treeview_foreground": "black",
"treeview_selected_background": "#a6a6a6",
"window_background": "white",
"label_background": "white",
"label_foreground": "black",
"button_text": "Dark Mode" # Texto para o botão quando estiver no modo claro
}
if current_theme == "clam": # Verifica se o tema atual é escuro
# Altere os estilos dos elementos para o tema claro
tree_style.configure("Treeview", background=light_theme["treeview_background"],
fieldbackground=light_theme["treeview_fieldbackground"],
foreground=light_theme["treeview_foreground"])
tree_style.map("Treeview", background=[("selected", light_theme["treeview_selected_background"])])
btn_dark_mode.config(text=light_theme["button_text"])
# Altere o plano de fundo e texto da janela principal para o tema claro
root.configure(background=light_theme["window_background"])
total_rows_label.configure(background=light_theme["label_background"], foreground=light_theme["label_foreground"])
reserved_rights_label.configure(background=light_theme["label_background"], foreground=light_theme["label_foreground"])
# Atualize o comando do botão para alternar para o modo escuro
btn_dark_mode.config(command=toggle_dark_mode)
else:
# Restaure os estilos e cores para o tema escuro
tree_style.configure("Treeview", background="#2e2e2e", fieldbackground="#2e2e2e", foreground="#ffffff")
tree_style.map("Treeview", background=[("selected", "#555555")])
btn_dark_mode.config(text="Dark Mode") # Altere o texto do botão para indicar o modo escuro
# Restaure o plano de fundo e texto da janela principal para o tema escuro
root.configure(background="#2e2e2e")
total_rows_label.configure(background="#2e2e2e", foreground="#ffffff")
reserved_rights_label.configure(background="#2e2e2e", foreground="#ffffff")
# Atualize o comando do botão para alternar para o modo claro
btn_dark_mode.config(command=toggle_dark_mode)
def on_double_click(event, tree):
selected_item = tree.selection()[0]
values = tree.item(selected_item, 'values')
patient_key = selected_item.split(" - ")[1]
dicom_files = values[-1]["Dicom Files"] # Recupere a lista de arquivos DICOM
open_viewer_window(patient_key, dicom_files)
def open_folder(event):
region = tree.identify_region(event.x, event.y)
if region == "cell":
item = tree.identify_row(event.y)
column = tree.identify_column(event.x)
if column == "#13": # Verifica se o clique ocorreu na última coluna
# Recupera o caminho do diretório da linha clicada na última coluna
directory = tree.set(item, "#13")
os.startfile(directory) # Abre a pasta no Windows Explorer
def filter_by_name():
query = entry_search.get().lower()
for item in tree.get_children():
# Obtenha o texto do item e converta para minúsculas para comparar com a consulta
item_text = tree.item(item, "text").lower()
# Verifique se a consulta está presente no texto do item
if query in item_text:
tree.item(item, open=True)
tree.selection_add(item)
else:
tree.item(item, open=False)
tree.selection_remove(item)
def on_startup(event=None):
# Distribui uniformemente as colunas ao iniciar o programa
total_width = tree.winfo_width()
num_columns = len(tree["columns"])
column_width = total_width / num_columns
for col in tree["columns"]:
tree.column(col, width=int(column_width))
# Remova o evento de duplo clique para redimensionar a coluna
"""tree.unbind("<Double-1>")"""
def on_search_entry_change(event):
entry_text = entry_search.get()
entry_search.delete(0, "end") # Limpa o conteúdo atual do campo de entrada
entry_search.insert(0, entry_text.upper()) # Insere o texto em maiúsculas no campo de entrada
def on_enter_key(event):
filter_by_name()
# Obtém o diretório do script
script_dir = os.path.dirname(os.path.realpath(__file__))
root = ThemedTk(theme="clam")
root.title("Cad4Share - Dicom Info")
# Adiciona a linha abaixo para maximizar a janela ao iniciar
root.wm_state('zoomed')
main_directory = tk.StringVar(value="./data2")
analyze_on_button_click = tk.BooleanVar(value=False)
tree_style = ttk.Style()
tree_style.configure("Treeview", background="white", fieldbackground="white", foreground="black")
tree_style.map("Treeview", background=[("selected", "#a6a6a6")])
frame_buttons = ttk.Frame(root)
tree = ttk.Treeview(root, columns=("Nascimento", "Sexo", "Idade", "Exame", "Descrição do Estudo",
"Fabricante", "Equipamento", "Tipo de Exame",
"Quantidade de Slices", "Espessura do Slice", "Tamanho da Pasta", "Visualizar", "Pasta"))
tree.heading("#0", text="Paciente")
tree.heading("Nascimento", text="Data de Nascimento", anchor=tk.CENTER)
tree.heading("Sexo", text="Sexo", anchor=tk.CENTER)
tree.heading("Idade", text="Idade", anchor=tk.CENTER)
tree.heading("Exame", text="Data do Exame", anchor=tk.CENTER)
tree.heading("Descrição do Estudo", text="Descrição do Estudo", anchor=tk.CENTER)
tree.heading("Fabricante", text="Fabricante", anchor=tk.CENTER)
tree.heading("Equipamento", text="Equipamento", anchor=tk.CENTER)
tree.heading("Tipo de Exame", text="Tipo de Exame", anchor=tk.CENTER)
tree.heading("Quantidade de Slices", text="Quantidade de Slices", anchor=tk.CENTER)
tree.heading("Espessura do Slice", text="Espessura do Slice (mm)", anchor=tk.CENTER)
tree.heading("Tamanho da Pasta", text="Tamanho da Pasta", anchor=tk.CENTER)
tree.heading("Visualizar", text="Visualizar", anchor=tk.CENTER)
tree.heading("Pasta", text="Pasta", anchor=tk.CENTER) # Adiciona o cabeçalho para a nova coluna
for col in tree["columns"]:
tree.column(col, anchor=tk.CENTER)
style = ttk.Style()
style.configure("TButton", padding=5, relief="flat", foreground="white", background="#483D8B",
font=("Helvetica", 12, "bold"))
style.map("TButton", background=[("pressed", "#4B0082"), ("active", "#4B0082")])
btn_choose_dir = ttk.Button(frame_buttons, text="Escolher Diretório", command=choose_directory, style="TButton")
btn_analyze = ttk.Button(frame_buttons, text="Analisar", command=analyze_directory, style="TButton")
btn_dark_mode = ttk.Button(frame_buttons, text="Dark Mode", command=toggle_dark_mode, style="TButton")
"""btn_light_mode = ttk.Button(frame_buttons, text="Light Mode", command=toggle_light_mode, style="TButton")"""
btn_clear_table = ttk.Button(frame_buttons, text="Limpar Tabela", command=clear_table_and_cache, style="TButton")
btn_gerar_relatorio = ttk.Button(frame_buttons, text="Gerar Relatorio PDF", command=clear_table_and_cache, style="TButton")
entry_search = ttk.Entry(frame_buttons, style="TEntry")
btn_search = ttk.Button(frame_buttons, text="Buscar por Nome", command=filter_by_name, style="TButton")
total_rows_label = tk.Label(root, text="Total de Tomografias Analisadas: 0", font=("Helvetica", 14, "bold"))
reserved_rights_label = tk.Label(root, text="Cad4Share - Dicom Info - Todos os direitos reservados", font=("Helvetica", 14))
header_image = tk.PhotoImage(file=r"img\logo.png")
# Crie um rótulo para exibir a imagem
resized_image = header_image.subsample(2, 2)
header_image_label = tk.Label(root, image=resized_image)
header_image_label.grid(row=1, column=0, columnspan=5, pady=5, padx=5, sticky="nsew")
btn_choose_dir.grid(row=0, column=0, pady=5, padx=5, sticky="nsew")
btn_analyze.grid(row=0, column=1, pady=5, padx=5, sticky="nsew")
btn_dark_mode.grid(row=0, column=3, pady=5, padx=5, sticky="nsew")
btn_clear_table.grid(row=0, column=4, pady=5, padx=5, sticky="nsew")
entry_search.grid(row=1, column=0, columnspan=3, pady=5, padx=5, sticky="nsew")
btn_search.grid(row=1, column=3, pady=5, padx=5, sticky="nsew")
btn_gerar_relatorio.grid(row=1, column=4, pady=5, padx=5, sticky="nsew")
btn_gerar_relatorio.config(command=lambda: generate_pdf_report_and_clear_table(tree))
btn_gerar_relatorio.config(command=lambda: generate_pdf_report_and_open(tree))
tree.tag_bind("my_tag", "<Button-3>", show_context_menu)
entry_search.bind("<KeyRelease>", on_search_entry_change) # Adiciona o evento de liberação de tecla ao campo de entrada
entry_search.bind("<Return>", on_enter_key)
frame_buttons.grid(row=2, column=0, columnspan=5, pady=4, padx=5, sticky="nsew")
frame_buttons.grid_columnconfigure(0, weight=1) # Adiciona esta linha para centralizar no eixo horizontal
total_rows_label.grid(row=3, column=0, columnspan=5, pady=5, padx=5, sticky="n")
reserved_rights_label.grid(row=1, column=0, columnspan=5, pady=5, padx=5, sticky="nsew")
tree.grid(row=5, column=0, columnspan=5, padx=5, pady=5, sticky="nsew")
root.grid_rowconfigure(5, weight=1)
root.grid_columnconfigure(0, weight=1)
tree.bind("<Map>", on_startup)
tree.bind("<Double-1>", open_folder) # Muda o evento de duplo clique para abrir a pasta no Windows Explorer
root.bind("<Map>", on_startup)
root.mainloop()
# Substitua o caminho abaixo pelo caminho real para o diretório com suas imagens DICOM
main_directory = "./data2"
show_dicom_info(main_directory)