Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/imagen.py
blob: 56a683c5a7964f4f7ebe630bf57f7fd602bc8b98 (plain)
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
#!/usr/bin/python
# -*- encoding: utf-8 -*-
import gtk
import voice
from ConfigParser import SafeConfigParser


class MyApp():
    def __init__(self):
        parser = SafeConfigParser()
        parser.read('config.ini')
        self.indice = 1
        self.ITERACION = 10

        window = gtk.Window()
        vbox = gtk.VBox()
        hbox = gtk.HBox()

        window.connect('destroy', self.destroy)
        window.add(vbox)
        window.set_title('Piensa y Escribe')
        window.set_size_request(700,600)
        window.set_position(gtk.WIN_POS_CENTER)
        vbox.add(hbox)

        imagen1 = gtk.Image() 
        imagen2 = gtk.Image()
        button1 = gtk.Button()
        button2 = gtk.Button()
        button3 = gtk.Button()

        imagen1.set_from_file(parser.get('Pregunta' + str(self.indice), 'imagen1'))
        imagen2.set_from_file(parser.get('Pregunta' + str(self.indice), 'imagen2'))
        
        button1.set_label(parser.get('Pregunta' + str(self.indice), 'opcion1'))
        button2.set_label(parser.get('Pregunta' + str(self.indice), 'opcion2'))
        button3.set_label(parser.get('Pregunta' + str(self.indice), 'opcion3'))	
        button1.connect('enter', self.__sobre_boton_cb)
        button2.connect('enter', self.__sobre_boton_cb)
        button3.connect('enter', self.__sobre_boton_cb)
        button1.connect('clicked', self.__correcto_cb, imagen1,
								imagen2, button1, button2, button3)
        button2.connect('clicked', self.__correcto_cb, imagen1,
								imagen2, button1, button2, button3)
        button3.connect('clicked', self.__correcto_cb, imagen1,
								imagen2, button1, button2, button3)

        hbox.add(imagen1)
        hbox.add(imagen2)
        vbox.add(button1)
        vbox.add(button2)
        vbox.add(button3)
        window.show_all()

    def resetear(self, imagen1, imagen2, button1, button2, button3):
        parser = SafeConfigParser()
        parser.read('config.ini')
        
        self.indice += 1
        imagen1.set_from_file(parser.get('Pregunta' + str(self.indice), 'imagen1'))
        imagen2.set_from_file(parser.get('Pregunta' + str(self.indice), 'imagen2'))
        button1.set_label(parser.get('Pregunta' + str(self.indice), 'opcion1'))
        button2.set_label(parser.get('Pregunta' + str(self.indice), 'opcion2'))
        button3.set_label(parser.get('Pregunta' + str(self.indice), 'opcion3'))

    def __correcto_cb(self, button, imagen1, imagen2, button1, button2, button3):
        parser = SafeConfigParser()
        parser.read('config.ini')
        
        if button.get_label() == parser.get('Pregunta' + str(self.indice), 'Respuesta'):
		    voice.say('Opcion correcta')
		    
		    if self.ITERACION == self.indice:
		           self.indice = 0
		    self.resetear(imagen1, imagen2, button1, button2, button3)
        else:
		    voice.say('Opcion incorrecta - Intente de nuevo')
       

    def destroy(self, window, data=None):
        gtk.main_quit()
    
    def __sobre_boton_cb(self, button):
        voice.say(button.get_label())

if __name__ == "__main__":
    my_app = MyApp()
    gtk.main()