[pyar] La muerte de PyGTK?,que pasa con Wx?

John Rowland Lenton john.lenton en canonical.com
Sab Nov 6 11:45:44 ART 2010


On Wed, 3 Nov 2010 21:51:11 -0300, Juan Carlos Ojeda <juancarlospaco en gmail.com> wrote:
> 
> A ver si entiendo, PyGTK muere y renace como PyGObject?

no leí en detalle todo el thread, pero cómo les gusta hablar! Nadie se
animó a mostrar código?

Ufa.

Bueno, acá te dejo dos programas. Vos decime cuál es la diferencia.

con PyGtk:

    import gtk

    l = gtk.Label()
    l.set_markup("<big><b>Hola, PyAr</b></big>\n\nShut up and show me the code.")
    w = gtk.Window()
    w.set_border_width(16)
    w.connect("delete-event", lambda *_: gtk.main_quit())
    w.add(l)
    w.show_all()

    gtk.main()

con gobject introspection:

    from gi.repository import Gtk

    l = Gtk.Label()
    l.set_markup("<big><b>Hola, PyAr</b></big>\n\nShut up and show me the code.")
    w = Gtk.Window()
    w.set_border_width(16)
    w.connect("delete-event", lambda *_: Gtk.main_quit())
    w.add(l)
    w.show_all()

    Gtk.main()
------------ próxima parte ------------
A non-text attachment was scrubbed...
Name: no disponible
Type: application/pgp-signature
Size: 489 bytes
Desc: no disponible
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20101106/9ad81604/attachment.sig>


More information about the pyar mailing list