Paned (Python) Marta Maria Casetti mmcasetti@gmail.com 2012 Un widget con dos paneles ajustables Daniel Mustieles daniel.mustieles@gmail.com 2011 - 2017 Nicolás Satragno nsatragno@gmail.com 2012 - 2013 Jorge González jorgegonz@svn.gnome.org 2011 Paned

Dos imágenes en dos paneles ajustables, alineados horizontalmente.

Código usado para generar este ejemplo from gi.repository import Gtk import sys class MyWindow(Gtk.ApplicationWindow): def __init__(self, app): Gtk.Window.__init__(self, title="Paned Example", application=app) self.set_default_size(450, 350) # a new widget with two adjustable panes, # one on the left and one on the right paned = Gtk.Paned.new(Gtk.Orientation.HORIZONTAL) # two images image1 = Gtk.Image() image1.set_from_file("gnome-image.png") image2 = Gtk.Image() image2.set_from_file("tux.png") # add the first image to the left pane paned.add1(image1) # add the second image to the right pane paned.add2(image2) # add the panes to the window self.add(paned) class MyApplication(Gtk.Application): def __init__(self): Gtk.Application.__init__(self) def do_activate(self): win = MyWindow(self) win.show_all() def do_startup(self): Gtk.Application.do_startup(self) app = MyApplication() exit_status = app.run(sys.argv) sys.exit(exit_status)
Métodos útiles para un widget «Paned»

Para tener dos paneles alineados verticalmente, use Gtk.Orientation.VERTICAL en lugar de Gtk.Orientation.HORIZONTAL. El método add1(widget1) añadirá el widget1 al panel superior, y add2(widget2) añadirá el widget2 al panel inferior.

Referencias de la API

En este ejemplo se usa lo siguiente:

GtkPaned

Enumeraciones estándar

GtkImage