-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportapapeles.py
79 lines (62 loc) · 2.64 KB
/
portapapeles.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
import tkinter as tk
import tkinter.messagebox as messagebox
import pickle
# Función para copiar el contenido de un botón al portapapeles
def copy_to_clipboard(text):
root.clipboard_clear()
root.clipboard_append(text)
root.update()
# Función para eliminar un botón existente
def delete_button(button, text):
button.destroy()
buttons.remove(text)
with open('buttons.pickle', 'wb') as file:
pickle.dump(buttons, file)
# Función para crear un nuevo botón personalizado
def create_custom_button():
text = entry.get()
if text:
button_frame = tk.Frame(frame, bg='black')
button_frame.pack()
button = tk.Button(button_frame, text=text, command=lambda t=text: copy_to_clipboard(t), bg='green', fg='white', bd=1)
button.pack(side=tk.LEFT)
delete_button_button = tk.Button(button_frame, text='X', command=lambda b=button, t=text: delete_button(b, t), bg='red', fg='white', bd=1, width=2)
delete_button_button.pack(side=tk.LEFT)
entry.delete(0, tk.END)
# Guardar el contenido del botón en el archivo
buttons.append(text)
with open('buttons.pickle', 'wb') as file:
pickle.dump(buttons, file)
else:
messagebox.showwarning('Advertencia', 'Por favor, ingresa un texto válido')
# Crear la ventana principal
root = tk.Tk()
root.title('Gestor de Portapapeles')
root.configure(bg='black')
# Crear el marco principal
frame = tk.Frame(root, bg='black')
frame.pack(padx=10, pady=10)
# Crear un campo de texto para ingresar texto personalizado
entry = tk.Entry(frame, width=30, fg='white', bg='black', bd=1)
entry.pack(pady=10)
# Crear un botón para crear botones personalizados
create_button = tk.Button(frame, text='Crear Botón', command=create_custom_button, bg='black', fg='white', bd=1)
create_button.pack(pady=5)
# Cargar los botones desde el archivo
try:
with open('buttons.pickle', 'rb') as file:
buttons = pickle.load(file)
except FileNotFoundError:
buttons = []
# Crear los botones guardados anteriormente
button_frames = [] # Lista para almacenar los marcos de los botones
for text in buttons:
button_frame = tk.Frame(frame, bg='black')
button_frame.pack()
button = tk.Button(button_frame, text=text, command=lambda t=text: copy_to_clipboard(t), bg='green', fg='white', bd=1)
button.pack(side=tk.LEFT)
delete_button_button = tk.Button(button_frame, text='X', command=lambda b=button_frame, t=text: delete_button(b, t), bg='red', fg='white', bd=1, width=2)
delete_button_button.pack(side=tk.LEFT)
button_frames.append(button_frame) # Agregar el marco a la lista
# Ejecutar la aplicación
root.mainloop()