-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.py
409 lines (328 loc) · 11.7 KB
/
gui.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
import datetime
from functools import partial
from PyQt4 import QtGui, QtCore, uic
import utils
def validar_variable(var):
# valida que var cumpla el formato de una variable
# Aclaracion: no se checkea que sea alfanumerico para no perder
# el soporte a arrays y objetos
try:
str(var)
except UnicodeEncodeError:
return False
except Exception as exp:
raise exp
if str(var)[0].isalpha():
return True
return False
def dialogo(padre, filemode, namefilter, titulo, modo_aceptar=0):
dialogo = QtGui.QFileDialog(padre, titulo)
dialogo.setFileMode(filemode)
dialogo.setNameFilter(namefilter)
dialogo.setViewMode(QtGui.QFileDialog.Detail)
dialogo.setAcceptMode(modo_aceptar)
return dialogo
def dialogo_guardar(padre):
return dialogo(
padre, QtGui.QFileDialog.AnyFile, "Erdos (*.erd)", "Guardar como...", 1
)
def dialogo_exportar(padre):
return dialogo(
padre, QtGui.QFileDialog.AnyFile, "Archivo PNG (*.png)", "Exportar", 1
)
def dialogo_abrir(padre):
return dialogo(
padre, QtGui.QFileDialog.ExistingFile, "Erdos (*.erd)", "Abrir"
)
class VentanaEjecuccion(QtGui.QDialog):
def __init__(self, padre):
super(VentanaEjecuccion, self).__init__(padre)
uic.loadUi(utils.path_ui("salida_ejecuccion.ui"), self)
self.btnCerrar.connect(
self.btnCerrar, QtCore.SIGNAL("clicked()"), self.cerrar
)
self.btnLimpiar.connect(
self.btnLimpiar, QtCore.SIGNAL("clicked()"), self.limpiar
)
def agregar_salida(self, nombre_diag, salida):
stamp = datetime.datetime.now().strftime("%d/%m/%Y %H:%M:%S")
separador = "==== Ejecutando: %s (%s) ====" % (nombre_diag, stamp)
self.textEdit.append(separador)
self.textEdit.append(salida)
self.textEdit.append("")
def limpiar(self):
self.textEdit.clear()
def cerrar(self):
self.close()
class VentanaModal(QtGui.QDialog):
def __init__(self, padre, archivo_ui):
super(VentanaModal, self).__init__(padre)
uic.loadUi(archivo_ui, self)
self.res = 0
def done(self, r):
if r == QtGui.QDialog.Accepted:
if self.validar():
self.aceptar()
QtGui.QDialog.done(self, r) # super() aca no anda :-/
return
else:
self.error()
return
else:
QtGui.QDialog.done(self, r)
return
def error(self):
msg = "Valores invalidos. Por favor revise el manual de usuario."
QtGui.QMessageBox.warning(
self, "Error", msg
)
def aceptar(self):
self.res = self.ubicacion()
def ubicacion(self):
if self.radioButton.isChecked():
return utils.AL_FINAL
elif self.radioButton_2.isChecked():
return utils.DEBAJO
else:
return utils.ENCIMA
def validar(self):
# implementar en cada clase
pass
class SentenciaInput(VentanaModal):
def __init__(self, padre, sent_text=None):
super(SentenciaInput, self).__init__(
padre, utils.path_ui("input_sentencia.ui")
)
if sent_text:
self.sentencia_text.setText(sent_text)
self.exec_()
def validar(self):
sent = self.sentencia_text.text()
if sent:
return validar_variable(sent)
return False
def get(self):
return self.res, self.sentencia_text.text()
class IfInput(VentanaModal):
def __init__(self, padre, condiciones=None):
super(self.__class__, self).__init__(
padre, utils.path_ui("input_cond.ui")
)
self.condiciones = Condiciones(self, condiciones)
self.exec_()
def aceptar(self):
self.condiciones.procesar()
super(self.__class__, self).aceptar()
def get(self):
return self.res, self.condiciones
def validar(self):
return self.condiciones.validar()
class Condiciones(object):
def __init__(self, ventana, condiciones=None):
self.condiciones = []
self.pos = 1
self.ventana = ventana
if condiciones:
primero = True
for cond in condiciones.condiciones:
self.agregar(primero, cond)
primero = False
else:
self.agregar(True)
def agregar(self, primero=False, valores=None):
if primero:
callback = self.agregar
else:
callback = self.quitar
if valores:
cond = Condicion(
callback, primero, self.ventana.grilla, self.pos, *valores
)
else:
cond = Condicion(callback, primero, self.ventana.grilla, self.pos)
self.condiciones.append(cond)
self.pos += 1
def quitar(self, condicion):
self.condiciones.remove(condicion)
condicion.borrarse()
self.ventana.adjustSize() # no me pregunten porque pero si no lo
self.ventana.adjustSize() # llamo 2 veces no se achica la 1era vez
def procesar(self):
for c in self.condiciones:
c.almacenar_texto()
self.condiciones = [c.get() for c in self.condiciones]
self.ventana = None
def get_texto(self):
texto = ""
for cond in self.condiciones:
formato = "%s %s %s"
valores = cond[0:3]
if cond[3] != '--':
formato += " %s "
valores = cond
texto += formato % valores
return texto
def validar(self):
for i in self.condiciones[:-1]:
if not i.validar() or not i.conectado():
return False
ultimo = self.condiciones[-1]
if not ultimo.validar() or ultimo.conectado():
return False
return True
class Condicion(object):
TIPOS_CONDICIONES = ['==', '!=', '<=', '>=', '<', '>']
TIPOS_CONECTORES = ['--', 'and', 'or']
def __init__(self, callback, primero, grilla, posicion,
var=None, cond=None, valor=None, conector=None):
super(self.__class__, self).__init__()
self.grilla = grilla
self.posicion = posicion
self.callback = callback
self.construir(primero, var, cond, valor, conector)
def construir(self, primero, var, cond, valor, conector):
self.variable = QtGui.QLineEdit()
self.grilla.addWidget(self.variable, self.posicion, 0)
if primero:
self.variable.setFocus()
if var:
self.variable.setText(var)
self.condicion = QtGui.QComboBox()
self.grilla.addWidget(self.condicion, self.posicion, 1)
self.condicion.insertItems(0, self.TIPOS_CONDICIONES)
if cond:
index = self.TIPOS_CONDICIONES.index(cond)
self.condicion.setCurrentIndex(index)
self.valor = QtGui.QLineEdit()
self.grilla.addWidget(self.valor, self.posicion, 2)
if valor:
self.valor.setText(valor)
self.conector = QtGui.QComboBox()
self.grilla.addWidget(self.conector, self.posicion, 3)
self.conector.insertItems(0, self.TIPOS_CONECTORES)
if conector:
index = self.TIPOS_CONECTORES.index(conector)
self.conector.setCurrentIndex(index)
if primero:
texto = '+'
else:
texto = '-'
self.callback = partial(self.callback, self)
self.accion = QtGui.QPushButton(texto)
self.grilla.addWidget(self.accion, self.posicion, 4)
self.accion.connect(
self.accion, QtCore.SIGNAL("clicked()"), self.callback
)
def borrarse(self):
for item in [self.variable, self.condicion, self.valor, self.conector,
self.accion]:
self.grilla.removeWidget(item)
item.deleteLater()
del item
def almacenar_texto(self):
# Los valores de los textos se guardan aca porque
# si se cierra el dialog, ya no se puede acceder (cosas de Qt...)
self.variable_text = self.variable.text()
self.condicion_text = self.condicion.currentText()
self.valor_text = self.valor.text()
self.conector_text = self.conector.currentText()
def get(self):
return (self.variable_text, self.condicion_text, self.valor_text,
self.conector_text)
def validar(self):
var = str(self.variable.text())
val = str(self.valor.text())
if var and val:
if validar_variable(var):
return True
return False
def conectado(self):
conector = str(self.conector.currentText())
if conector != '--':
return True
return False
class ForInput(VentanaModal):
def __init__(self, padre, case=False, n_var=None, r_min=None, r_max=None):
super(self.__class__, self).__init__(
padre, utils.path_ui("input_for.ui")
)
self.case = case
if self.case:
self.lbl_var.setText("Variable de decision")
if n_var:
self.n_var.setText(str(n_var))
if r_min:
self.r_min.setText(str(r_min))
if r_max:
self.r_max.setText(str(r_max))
self.exec_()
def validar(self):
var = str(self.n_var.text())
r_max = str(self.r_max.text())
r_min = str(self.r_min.text())
if not var or not r_max or not r_min:
return False
if not validar_variable(var):
return False
if self.case:
if not r_max.isdigit() or not r_min.isdigit():
return False
if not int(r_max) > int(r_min):
return False
else:
if r_max.isdigit() and r_min.isdigit():
if not int(r_max) > int(r_min):
return False
return True
def get(self):
r_max = self.r_max.text()
r_min = self.r_min.text()
return self.res, self.n_var.text(), r_max, r_min
class ESInput(VentanaModal):
def __init__(self, padre, archivo_ui, variable, texto, prompt):
super(ESInput, self).__init__(padre, utils.path_ui(archivo_ui))
if variable:
self.variable_text.setText(variable)
if texto:
self.texto_text.setText(texto)
self.variable_text.setFocus()
def validar(self):
var = self.variable_text.text()
texto = self.texto_text.text()
if var:
if not validar_variable(var):
return False
if var or texto:
return True
return False
def get(self):
return self.res, self.variable_text.text(), self.texto_text.text()
class EntradaInput(ESInput):
TIPOS = ["Texto", "Numerico", "Booleano"]
def __init__(self, padre, variable=None, texto=None, tipo_dato=None):
super(self.__class__, self).__init__(
padre, "input_entrada.ui", variable, texto, False
)
for tipo in self.TIPOS:
self.comboBox.addItem(tipo)
if tipo_dato:
self.comboBox.setCurrentIndex(self.TIPOS.index(tipo_dato))
self.exec_()
def validar(self):
if not self.variable_text.text():
return False
return super(self.__class__, self).validar()
def get(self):
return self.res, self.variable_text.text(), \
self.comboBox.currentText(), self.texto_text.text()
class SalidaInput(ESInput):
def __init__(self, padre, variable=None, texto=None, prompt=False):
super(self.__class__, self).__init__(
padre, "input_salida.ui", variable, texto, prompt
)
self.prompt = prompt
if prompt:
self.checkBox.setCheckState(2)
self.exec_()
def get(self):
return super(self.__class__, self).get() + (self.checkBox.isChecked(),)