Esempio n. 1
0
 def __accion_menu(self, widget, texto):
     child = self.vbox.get_children()[-1]
     if child:
         self.vbox.remove(child)
         child.destroy()
     t = "Cargando . . ."
     t = "%s\n%s" % (t, "Por favor espera un momento.")
     dialogo = DialogoLoad(self, t)
     dialogo.connect("running", self.__load, texto)
     dialogo.run()
Esempio n. 2
0
 def __make(self, widget):
     t = "Construyendo el Instalador."
     t = "%s\n%s" % (t, "Por favor espera un momento . . .")
     dialogo = DialogoLoad(self.get_toplevel(), t)
     dialogo.connect("running", self.__run_make)
     dialogo.run()