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
|
#! /usr/bin/python3
"""
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import tkinter as tk
from tkinter import ttk
from graphviz import Digraph
import sqlite3
import base64
class GUI(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
self.title("Editor de datos del Librojuego")
self.contenedor = tk.Frame(self)
self.contenedor.grid(row=0, column=1, sticky="news")
self.contenedor.grid_rowconfigure(0, weight=1)
self.contenedor.grid_columnconfigure(1, weight=1)
menubar = tk.Menu(self)
menubar.add_command(label="Pasajes", command=lambda: self.mostrar_frame("FramePasajes"))
menubar.add_command(label="Requisitos", command=lambda: self.mostrar_frame("FrameRequisitos"))
menubar.add_command(label="Tipos de requisitos", command=lambda: self.mostrar_frame("FrameTiposRequisitos"))
self.config(menu=menubar)
self.c = self.bdd()
self.imagen_nodos = tk.PhotoImage(data=self.generar_grafico())
self.frames = {}
self.crear_frames(self.frames)
self.frames["FramePasajes"].grid(row=0, column=0, sticky="nsew")
self.grafico.grid(row=0, column=1, sticky="nes")
def crear_frames(self, frames):
"""Crea y guarda los frames"""
self.frames["FramePasajes"] = FramePasajes(padre=self.contenedor, controlador=self)
self.frames["FrameRequisitos"] = FrameRequisitos(padre=self.contenedor, controlador=self)
self.frames["FrameTiposRequisitos"] = FrameTiposRequisitos(padre=self.contenedor, controlador=self)
self.grafico = Grafico(padre=self.contenedor, controlador=self)
def mostrar_frame(self, frame):
"""Muestra sólo el frame seleccionado entre el de pasajes, requisitos y tipos de requisitos."""
if not self.frames[frame].grid_info():
for f in self.frames:
self.frames[f].grid_remove()
self.frames[frame].grid(row=0, column=0, sticky="nsew")
def bdd(self):
"""Crea la conexión y devuelve el cursor"""
self.conn = sqlite3.connect('librojuego.db')
return self.conn.cursor()
def generar_grafico(self):
"""Genera el gráfico dirigido usando graphviz"""
self.c.execute('SELECT * FROM conexiones')
conexiones = self.c.fetchall()
g = Digraph(format='png')
for i in conexiones:
if i[2] is None:
g.edge(str(i[0]), str(i[1]))
else:
g.edge(str(i[0]), str(i[1]), label='[{}] {}={}'.format(i[2], i[3], i[4]))
return base64.b64encode(g.pipe())
class FramePasajes(tk.Frame):
def __init__(self, padre, controlador):
tk.Frame.__init__(self, padre)
self.controlador = controlador
self.pasaje_actual = None
label_pasajes = ttk.Label(self, text="Edición de pasajes", font=("Helvetica", 16))
label_pasajes.grid(row=0, column=0, sticky="new")
ttk.Label(self, text="Número de pasaje").grid(row=1, column=0, sticky="new")
self.listado_pasajes = tk.Listbox(self, font=("Helvetica", 12))
self.listado_pasajes.grid(row=2, column=0, sticky="news")
self.listado_pasajes.bind('<Double-Button-1>', self.abrir_pasaje)
self.llenar_listbox()
scrollbar = ttk.Scrollbar(self, orient="vertical", command=self.listado_pasajes.yview)
scrollbar.grid(row=2, column=1, sticky="nws")
self.listado_pasajes.config(yscrollcommand=scrollbar.set)
self.label_contenido = ttk.Label(self, text="Contenido de nuevo pasaje")
self.label_contenido.grid(row=1, column=2, sticky="new")
self.contenido = tk.Text(self)
self.contenido.grid(row=2, column=2, sticky="news")
tk.Button(self, text="Guardar", command=self.guardar_pasaje).grid(row=3, column=2, sticky="news")
tk.Button(self, text="Nuevo", command=self.nuevo_pasaje).grid(row=4, column=2, sticky="news")
tk.Button(self, text="Eliminar", command=self.eliminar_pasaje).grid(row=5, column=2, sticky="news")
def nuevo_pasaje(self):
"""Pone en blanco la variable del pasaje actual y limpia la caja de texto para recibir nuevos datos"""
self.pasaje_actual = None
self.contenido.delete("1.0", tk.END)
self.label_contenido.config(text="Contenido de nuevo pasaje")
def guardar_pasaje(self):
"""Comprueba que la caja no esté vacía antes de proceder a guardar en la base de datos"""
if self.contenido.compare("end-1c", "==", "1.0") == False:
terminos = [self.contenido.get("1.0", tk.END)]
if self.pasaje_actual is not None:
terminos.append(self.pasaje_actual)
self.controlador.c.execute('UPDATE pasaje SET contenido = ? WHERE id = ?', terminos)
else:
self.controlador.c.execute('INSERT INTO pasaje(contenido) VALUES (?)', terminos)
self.pasaje_actual = self.controlador.c.lastrowid
self.label_contenido.config(text="Contenido de pasaje {}".format(self.pasaje_actual))
self.controlador.conn.commit()
self.llenar_listbox()
def eliminar_pasaje(self):
"""Elimina el pasaje en la base de datos y limpia la pantalla"""
if self.pasaje_actual is not None:
terminos = [self.pasaje_actual]
self.controlador.c.execute('DELETE FROM pasaje WHERE id = ?', terminos)
self.controlador.conn.commit()
self.pasaje_actual = None
self.contenido.delete("1.0", tk.END)
self.llenar_listbox()
self.label_contenido.config(text="Contenido de nuevo pasaje")
def abrir_pasaje(self, elemento):
"""Abre el pasaje solicitado"""
seleccionado = elemento.widget.curselection()
terminos = (elemento.widget.get(seleccionado)[0],)
self.controlador.c.execute('SELECT * FROM pasaje WHERE id = ?', terminos)
pasaje = self.controlador.c.fetchone()
self.pasaje_actual = pasaje[0]
self.contenido.delete("1.0", tk.END)
self.contenido.insert("1.0", pasaje[1])
self.label_contenido.config(text="Contenido de pasaje {}".format(self.pasaje_actual))
def llenar_listbox(self):
"""Limpia y rellena el listbox con el listado de ids de los pasajes"""
self.controlador.c.execute('SELECT id FROM pasaje')
pasajes = self.controlador.c.fetchall()
self.listado_pasajes.delete(0,tk.END)
for p in pasajes:
self.listado_pasajes.insert(tk.END, p)
class FrameRequisitos(tk.Frame):
def __init__(self, padre, controlador):
tk.Frame.__init__(self, padre)
self.controlador = controlador
label_requisitos = ttk.Label(self, text="requisitos")
label_requisitos.grid(row=0, column=0, sticky="nws")
class FrameTiposRequisitos(tk.Frame):
def __init__(self, padre, controlador):
tk.Frame.__init__(self, padre)
self.controlador = controlador
label_tipos_requisitos = ttk.Label(self, text="tipos de requisitos")
label_tipos_requisitos.grid(row=0, column=0, sticky="nws")
class Grafico(tk.Frame):
def __init__(self, padre, controlador):
tk.Frame.__init__(self, padre)
self.controlador = controlador
canvas = tk.Canvas(self, width=self.controlador.imagen_nodos.width(), height=self.controlador.imagen_nodos.height(), scrollregion=(0,0,500,500))
canvas.create_image(0, 0, image=self.controlador.imagen_nodos, anchor="nw")
scrollbarx = ttk.Scrollbar(self, orient="horizontal")
scrollbarx.grid(row=1, column=1, sticky="nes", padx=5, pady=5)
scrollbarx.config(command=canvas.xview)
scrollbary = ttk.Scrollbar(self, orient="vertical")
scrollbary.grid(row=0, column=2, sticky="wes", padx=5, pady=5)
scrollbary.config(command=canvas.yview)
canvas.config(xscrollcommand=scrollbarx.set, yscrollcommand=scrollbary.set)
canvas.grid(row=0, column=1, sticky="news", padx=5, pady=5)
gui = GUI()
gui.mainloop()
|