-
Notifications
You must be signed in to change notification settings - Fork 2
/
Control.py
311 lines (248 loc) · 11.9 KB
/
Control.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
#!/usr/bin/env python
# MATETON - Un pizarron para los ninos
# Copyright (C) 2011 - 2013 Rodrigo Perez Fulloni
#Departamento de Ingenieria, Fundacion Teleton
# Montevideo, Uruguay
#
#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 <http://www.gnu.org/licenses/>.
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, Gdk
import sys
sys.path.append('./objects')
sys.path.append('./operaciones')
sys.path.append('./historia')
sys.path.append('./data')
from Suma import Suma
from Resta import Resta
from Multiplicacion import Multiplicacion
from Division import Division
from Numeros import Numeros
from Menu import Menu
from Historia import Historia
from Suceso import Suceso
from Manager import Manager
from EstadoOperacion import EstadoOperacion
class Control:
def deleteEvent(self, widget, event, data=None):
Gtk.main_quit()
return False
def __init__(self):
#variable initialization
self.seleccionado = None
self.guardado = False
self.hist = Historia()
self.cuenta = None
self.zoom = 2
#Contiene todo
self.todo = Gtk.HBox(False, 0)
self.todo.show()
#Contiene los menus
self.menus = Gtk.VBox(False, 0)
self.menus.show()
self.todo.pack_start(self.menus, False, False, 0)
#Contiene el pizarron
self.pizarron = Gtk.ScrolledWindow()
self.pizarron.show()
self.cargarCuenta(0)
self.todo.add(self.pizarron)
self.num = Numeros()
self.menus.add(self.num.agregar)
self.menu = Menu()
self.menus.add(self.menu.agregar)
self.menu.setDeshacerListeners((self.__deshacer,))
self.menu.setHistListeners((self.__moverHistoria,))
self.menu.setSumaListeners((self.__suma,))
self.menu.setRestaListeners((self.__resta,))
self.menu.setDivisionListeners((self.__division,))
self.menu.setMultiplicacionListeners((self.__multiplicacion,))
self.menu.setZoomListeners((self.__moverZoom, self.cuenta.actualizarLineHor))
self.menu.setBorrarListeners((self.__agregarAHistCV, self.__numClic, self.__actualizarAdj))
#registro listeners
self.num.setListener((self.__agregarAHistCV, self.__numClic, self.__actualizarAdj))
self.mngr = Manager((self.__digClic,))
#<uncomment for PC>
#self.menu.setGuardarListeners((self.mantener,))
#self.menu.setAbrirListeners((self.cargar,))
# Create a new window
#self.window = Gtk.Window(Gtk.WindowType.TOPLEVEL)
#self.window.set_title("Mateton")
#self.window.connect("delete_event", self.deleteEvent)
#self.window.set_border_width(5)
#self.window.set_default_size(800, 600)
#self.window.add(self.todo)
#self.window.show()
#self.window.connect('key_press_event', self.onKeyPress)
#</uncomment for PC>
def cargarCuenta(self, tipo, operacion=None):
if self.seleccionado != None:
self.__desseleccionar()
if not self.cuenta == None:
self.todo.remove(self.pizarron)
self.pizarron = Gtk.ScrolledWindow()
self.pizarron.show()
self.todo.add(self.pizarron)
del self.cuenta
del self.hist
self.hist = Historia()
self.__actualizarAdj()
if not operacion == None:
self.cuenta = operacion
else:
if tipo == 0:
self.cuenta = Suma((self.__digClic,))
elif tipo == 1:
self.cuenta = Resta((self.__digClic,))
elif tipo == 2:
self.cuenta = Multiplicacion((self.__digClic,))
elif tipo == 3:
self.cuenta = Division((self.__digClic,))
if tipo == 0 or tipo == 1:
self.cuenta.factores.setListenerClicMas((self.__agregarAHistAF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.factores.setListenerClicMenos((self.__agregarAHistQF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.factores.setListenerFactores((self.__agregarAHistAD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom), (self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
for e in self.cuenta.extra:
e.setListenerClicMas((self.__agregarAHistAD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
e.setListenerClicMenos((self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
elif tipo == 2:
self.cuenta.factores.setListenerClicMas((self.__agregarAHistAF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.factores.setListenerClicMenos((self.__agregarAHistQF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.factores.setListenerFactores((self.__agregarAHistAD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom), (self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.suma.factores.setListenerFactores((self.__agregarAHistAD, self.__actualizarAdj, self.__moverZoom), (self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.suma.factores.setListenerClicMenos((self.__agregarAHistQF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.suma.factores.setListenerClicMas((self.__agregarAHistAF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom, self.__actualizarFactores))
for e in self.cuenta.extra:
e.setListenerClicMas((self.__agregarAHistAD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
e.setListenerClicMenos((self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
elif tipo == 3:
self.cuenta.restos.setListenerClicMas((self.__agregarAHistAF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.restos.setListenerClicMenos((self.__agregarAHistQF, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.restos.setListenerFactores((self.__agregarAHistAD, self.__actualizarAdj, self.__moverZoom), (self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.cociente.setListenerClicMas((self.__agregarAHistAD, self.__actualizarAdj, self.__desseleccionar, self.__moverZoom))
self.cuenta.cociente.setListenerClicMenos((self.__agregarAHistQD, self.__actualizarAdj, self.__desseleccionar))
self.pizarron.add_with_viewport(self.cuenta.agregar)
self.cuenta.setZoom(self.zoom)
def __numClic(self, valor): #callback para clic en boton numero
if self.seleccionado:
self.seleccionado.setValor(valor)
def __digClic(self, digito): #callback para clic en digitos
if self.seleccionado != None:
self.seleccionado.seleccionar(False)
self.seleccionado = digito
self.seleccionado.seleccionar(True)
def __agregarAHistCV(self, valor): #callback para clic en boton numero
if self.seleccionado and self.seleccionado.getValor() != valor:
suc = Suceso(0)
suc.setObjeto(self.seleccionado.idFactor, self.seleccionado.idDigito)
suc.setValor((self.seleccionado.getValor(), valor))
self.hist.agregar(suc)
def __agregarAHistAF(self): #callback para agregar factor
suc = Suceso(1)
self.hist.agregar(suc)
def __agregarAHistQF(self): #callback para quitar factor
suc = Suceso(2)
self.hist.agregar(suc)
def __agregarAHistAD(self, idFactor):
suc = Suceso(3)
suc.setObjeto(idFactor)
self.hist.agregar(suc)
def __agregarAHistQD(self, idFactor):
suc = Suceso(4)
suc.setObjeto(idFactor)
self.hist.agregar(suc)
def __actualizarAdj(self, data1=0, data2=0):
self.menu.cargarAdj(self.hist.getPosicion() + 1, 0, len(self.hist.suc)-1)
self.menu.setHistListeners((self.__moverHistoria,))
def __deshacer(self, boton, data): #callback para el boton deshacer
self.hist.setPosicion(self.hist.getPosicion()-1, self.cuenta)
self.menu.adj.set_value(self.hist.getPosicion())
def __moverHistoria(self, obj): #callback el slider
valor = obj.get_value()
if valor != self.hist.getPosicion():
self.hist.setPosicion(int(round(valor)), self.cuenta)
def __moverZoom(self, obj=None, data=0): #callback el slider
if obj != None:
try:
self.zoom = obj.get_value()
except:
pass
self.cuenta.setZoom(self.zoom)
def mantener(self, obj=None, data=None, nombre=""):
if (nombre != ""):
self.mngr.setArchivo(nombre)
else:
self.mngr.setArchivo("prueba1")
self.guardado = True
self.mngr.setHistoria(self.hist)
estado = EstadoOperacion(self.cuenta)
self.mngr.setEstadoOperacion(estado)
self.mngr.guardar()
def cargar(self, obj=None, data=None, nombre=""):
if (nombre != ""):
self.mngr.setArchivo(nombre)
else:
self.mngr.setArchivo("prueba1")
(hist, op) = self.mngr.abrir()
self.cargarCuenta(op.tipo, op)
self.hist = hist
self.__actualizarAdj()
def __suma(self, obj, data):
self.cargarCuenta(0)
def __resta(self, obj, data):
self.cargarCuenta(1)
def __multiplicacion(self, obj, data):
self.cargarCuenta(2)
def __division(self, obj, data):
self.cargarCuenta(3)
def __desseleccionar(self, obj=0, data=0):
if self.seleccionado != None:
self.seleccionado.seleccionar(False)
self.seleccionado = None
def __actualizarFactores(self):
"""Solucion chancha. Solo para multiplicaciones. Agrega el nuevo factor de la
suma a la lista de factores"""
self.cuenta.factores.factores.append(self.cuenta.suma.factores.factores[len(self.cuenta.suma.factores.factores)-1])
def onKeyPress(self, widget, event):
if self.seleccionado != None:
keyname = Gdk.keyval_name(event.keyval)
value = -1
if keyname == "0" or keyname == "KP_0":
value = 0
elif keyname == "1" or keyname == "KP_1":
value = 1
elif keyname == "2" or keyname == "KP_2":
value = 2
elif keyname == "3" or keyname == "KP_3":
value = 3
elif keyname == "4" or keyname == "KP_4":
value = 4
elif keyname == "5" or keyname == "KP_5":
value = 5
elif keyname == "6" or keyname == "KP_6":
value = 6
elif keyname == "7" or keyname == "KP_7":
value = 7
elif keyname == "8" or keyname == "KP_8":
value = 8
elif keyname == "9" or keyname == "KP_9":
value = 9
elif keyname == "period" or keyname == "KP_Decimal":
value =","
if value!= -1:
self.num.simularClic(value)
def main():
Gtk.main()
if __name__ == "__main__":
hello = Control()
main()