From be34fd354c0123cec1b33494324e8655a6bd2ae4 Mon Sep 17 00:00:00 2001 From: vladimir Date: Tue, 29 Jan 2013 01:10:41 +0000 Subject: Mejora de version --- diff --git a/activity.pyc b/activity.pyc deleted file mode 100644 index c52d5f8..0000000 --- a/activity.pyc +++ /dev/null Binary files differ diff --git a/activity/activity-helloworld.svg b/activity/activity-helloworld.svg deleted file mode 100644 index 8da7c63..0000000 --- a/activity/activity-helloworld.svg +++ /dev/null @@ -1,26 +0,0 @@ - - -]> - - - - - - - - - - - - - - diff --git a/dist/Elegir-1.xo b/dist/Elegir-1.xo deleted file mode 100644 index 6f265a7..0000000 --- a/dist/Elegir-1.xo +++ /dev/null Binary files differ diff --git a/dist/Elegir-3.xo b/dist/Elegir-3.xo deleted file mode 100644 index 5fefe3d..0000000 --- a/dist/Elegir-3.xo +++ /dev/null Binary files differ diff --git a/dist/HelloWorld-3.xo b/dist/HelloWorld-3.xo deleted file mode 100644 index 095cbc1..0000000 --- a/dist/HelloWorld-3.xo +++ /dev/null Binary files differ diff --git a/elegir/config.ini b/elegir/config.ini deleted file mode 100644 index 555a52d..0000000 --- a/elegir/config.ini +++ /dev/null @@ -1,28 +0,0 @@ -[pregunta1] -enunciado = Como se escribe la palabra cubo -imagen = imagenes/cubo.jpg -correcta = cubo -incorrecta1 = cuvo -incorrecta2 = kubo - -[pregunta2] -enunciado = Como se escribe la palabra flor -imagen = imagenes/flor.jpg -correcta =flor -incorrecta1 = florr -incorrecta2 = forl - -[pregunta3] -enunciado = Como se escribe la palabra pingüino -imagen = imagenes/tux.png -correcta = pingüino -incorrecta1 = piguino -incorrecta2 = pimguino - -[pregunta4] -enunciado = Como se escribe la palabra manzana -imagen = imagenes/manzana.jpg -correcta = manzana -incorrecta1 = mansana -incorrecta2 = mamzana - diff --git a/elegir/config.ini~ b/elegir/config.ini~ deleted file mode 100644 index 555a52d..0000000 --- a/elegir/config.ini~ +++ /dev/null @@ -1,28 +0,0 @@ -[pregunta1] -enunciado = Como se escribe la palabra cubo -imagen = imagenes/cubo.jpg -correcta = cubo -incorrecta1 = cuvo -incorrecta2 = kubo - -[pregunta2] -enunciado = Como se escribe la palabra flor -imagen = imagenes/flor.jpg -correcta =flor -incorrecta1 = florr -incorrecta2 = forl - -[pregunta3] -enunciado = Como se escribe la palabra pingüino -imagen = imagenes/tux.png -correcta = pingüino -incorrecta1 = piguino -incorrecta2 = pimguino - -[pregunta4] -enunciado = Como se escribe la palabra manzana -imagen = imagenes/manzana.jpg -correcta = manzana -incorrecta1 = mansana -incorrecta2 = mamzana - diff --git a/elegir/elegir.py b/elegir/elegir.py deleted file mode 100644 index 037ac2b..0000000 --- a/elegir/elegir.py +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/python -import gtk -import gobject -import random -from ConfigParser import SafeConfigParser - -from subprocess import Popen - - -class MyApp(): - - - def __init__(self,puntaje=0,numero=1): - self.puntaje=puntaje - self.numero=numero - Popen(['espeak', '-v', 'es', 'Como se escribe la palabra cubo????']) - image = gtk.Image() - #image = gtk.image_new_from_pixbuf(gtk.gdk.pixbuf_new_from_file_at_size('imagenes/cubo.jpg', 100, 100)) - image.set_from_file('imagenes/cubo.jpg') - - window = gtk.Window() - window.set_position(gtk.WIN_POS_CENTER) - window.set_border_width(200) - window.set_title('ELEGIR') - vbox = gtk.VBox() - hbox = gtk.HBox() - button_1 = gtk.Button("cubo") - button_2 = gtk.Button("cuvo") - button_3 = gtk.Button("kubo") - - window.connect('destroy', self.destroy) - button_1.connect('clicked',self.cambio, button_2,button_3,image,1) - button_2.connect('clicked',self.cambio, button_1,button_3,image,0) - button_3.connect('clicked',self.cambio, button_1,button_2,image,0) - - - window.add(vbox) - vbox.add(image) - vbox.add(hbox) - hbox.add(button_1) - hbox.add(button_2) - hbox.add(button_3) - - window.show() - vbox.show() - image.show() - hbox.show() - button_1.show() - button_2.show() - button_3.show() - - def cambio(self,b,b2=None,b3=None,i=None,p=0): - parser = SafeConfigParser() - parser.read('config.ini') - if b.get_label()== parser.get('pregunta'+str(self.numero), 'correcta'): - text ='Felicidades, elegiste la respuesta correcta!!!' - print 'Felicidades, elegiste la respuesta correcta!!!' - else: - text ='La palabra seleccionada, no es la correcta' - print 'Felicidades, elegiste la respuesta correcta!!!' - - self.puntaje=self.puntaje +p - text=text + ' tu puntajes adicional es : ' + str(p) - Popen(['espeak', '-v', 'es', text]) - # parser = SafeConfigParser() - # NECESITO UNA PAUSA ANTES DE CAMBIAR LA FIGURA - - - self.numero=random.randint(1,4)# pregunta seleccionada al azar - #i = gtk.image_new_from_pixbuf(gtk.gdk.pixbuf_new_from_file_at_size(parser.get('pregunta'+str(self.numero), 'imagen'), 100, 100)) - i.set_from_file(parser.get('pregunta'+str(self.numero), 'imagen')) - b3.set_label(parser.get('pregunta'+str(self.numero), 'correcta')) - b.set_label(parser.get('pregunta'+str(self.numero), 'incorrecta1')) - b2.set_label(parser.get('pregunta'+str(self.numero), 'incorrecta2')) - - - def say(self,b,text): - Popen(['espeak', '-v', 'es', text]) - - def destroy(self, window, data=None): - gtk.main_quit() - - -if __name__ == "__main__": - my_app = MyApp() - gtk.main() diff --git a/elegir/elegir.py~ b/elegir/elegir.py~ deleted file mode 100644 index ca18662..0000000 --- a/elegir/elegir.py~ +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/python -import gtk -import gobject -import random -from ConfigParser import SafeConfigParser - -from subprocess import Popen - - -class MyApp(): - - - def __init__(self,puntaje=0,numero=1): - self.puntaje=puntaje - self.numero=numero - Popen(['espeak', '-v', 'es', 'Como se escribe la palabra cubo????']) - image = gtk.Image() - #image = gtk.image_new_from_pixbuf(gtk.gdk.pixbuf_new_from_file_at_size('imagenes/cubo.jpg', 100, 100)) - image.set_from_file('imagenes/cubo.jpg') - - window = gtk.Window() - window.set_position(gtk.WIN_POS_CENTER) - window.set_border_width(200) - window.set_title('ELEGIR') - vbox = gtk.VBox() - hbox = gtk.HBox() - button_1 = gtk.Button("cubo") - button_2 = gtk.Button("cuvo") - button_3 = gtk.Button("kubo") - - window.connect('destroy', self.destroy) - button_1.connect('clicked',self.cambio, button_2,button_3,image,1) - button_2.connect('clicked',self.cambio, button_1,button_3,image,0) - button_3.connect('clicked',self.cambio, button_1,button_2,image,0) - - - window.add(vbox) - vbox.add(image) - vbox.add(hbox) - hbox.add(button_1) - hbox.add(button_2) - hbox.add(button_3) - - window.show() - vbox.show() - image.show() - hbox.show() - button_1.show() - button_2.show() - button_3.show() - - def cambio(self,b,b2=None,b3=None,i=None,p=0): - parser = SafeConfigParser() - parser.read('config.ini') - if b.get_label()== parser.get('pregunta'+str(self.numero), 'correcta'): - text ='Felicidades, elegiste la respuesta correcta!!!' + b.get_label() - print 'Felicidades, elegiste la respuesta correcta!!!' - else: - text ='La palabra seleccionada, no es la correcta' - print 'Felicidades, elegiste la respuesta correcta!!!' - - self.puntaje=self.puntaje +p - text=text + ' tu puntajes adicional es : ' + str(p) - Popen(['espeak', '-v', 'es', text]) - # parser = SafeConfigParser() - # NECESITO UNA PAUSA ANTES DE CAMBIAR LA FIGURA - - - self.numero=random.randint(1,4)# pregunta seleccionada al azar - #i = gtk.image_new_from_pixbuf(gtk.gdk.pixbuf_new_from_file_at_size(parser.get('pregunta'+str(self.numero), 'imagen'), 100, 100)) - i.set_from_file(parser.get('pregunta'+str(self.numero), 'imagen')) - b3.set_label(parser.get('pregunta'+str(self.numero), 'correcta')) - b.set_label(parser.get('pregunta'+str(self.numero), 'incorrecta1')) - b2.set_label(parser.get('pregunta'+str(self.numero), 'incorrecta2')) - - - def say(self,b,text): - Popen(['espeak', '-v', 'es', text]) - - def destroy(self, window, data=None): - gtk.main_quit() - - -if __name__ == "__main__": - my_app = MyApp() - gtk.main() diff --git a/elegir/imagenes/cubo.jpg b/elegir/imagenes/cubo.jpg deleted file mode 100644 index ada80a1..0000000 --- a/elegir/imagenes/cubo.jpg +++ /dev/null Binary files differ diff --git a/elegir/imagenes/flor.jpg b/elegir/imagenes/flor.jpg deleted file mode 100644 index 66462ed..0000000 --- a/elegir/imagenes/flor.jpg +++ /dev/null Binary files differ diff --git a/elegir/imagenes/manzana.jpg b/elegir/imagenes/manzana.jpg deleted file mode 100644 index 4f2a9b9..0000000 --- a/elegir/imagenes/manzana.jpg +++ /dev/null Binary files differ diff --git a/elegir/imagenes/tux.png b/elegir/imagenes/tux.png deleted file mode 100644 index ee1f557..0000000 --- a/elegir/imagenes/tux.png +++ /dev/null Binary files differ -- cgit v0.9.1