ComboBox (Python) Marta Maria Casetti mmcasetti@gmail.com 2012 Un widget usado para elegir de una lista de elementos Daniel Mustieles daniel.mustieles@gmail.com 2011 - 2017 Nicolás Satragno nsatragno@gmail.com 2012 - 2013 Jorge González jorgegonz@svn.gnome.org 2011 ComboBox (una columna)

Esta ComboBox imprime su selección en la terminal cuando cambia la cambia.

Código usado para generar este ejemplo from gi.repository import Gtk import sys distros = [["Select distribution"], ["Fedora"], ["Mint"], ["Suse"]] class MyWindow(Gtk.ApplicationWindow): def __init__(self, app): Gtk.Window.__init__(self, title="Welcome to GNOME", application=app) self.set_default_size(200, -1) self.set_border_width(10) # the data in the model, of type string listmodel = Gtk.ListStore(str) # append the data in the model for i in range(len(distros)): listmodel.append(distros[i]) # a combobox to see the data stored in the model combobox = Gtk.ComboBox(model=listmodel) # a cellrenderer to render the text cell = Gtk.CellRendererText() # pack the cell into the beginning of the combobox, allocating # no more space than needed combobox.pack_start(cell, False) # associate a property ("text") of the cellrenderer (cell) to a column (column 0) # in the model used by the combobox combobox.add_attribute(cell, "text", 0) # the first row is the active one by default at the beginning combobox.set_active(0) # connect the signal emitted when a row is selected to the callback # function combobox.connect("changed", self.on_changed) # add the combobox to the window self.add(combobox) def on_changed(self, combo): # if the row selected is not the first one, write its value on the # terminal if combo.get_active() != 0: print("You chose " + str(distros[combo.get_active()][0]) + ".") return True 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 «ComboBox»

El widget «ComboBox» está desarrollado sobre el diseño Modelo/Vista/Controlador: el Modelo almacena los datos, la Vista obtiene las notificaciones de cambio y muestra el contenido del modelo; el Controlador, finalmente, cambia el estado del modelo y le notifica a la vista los cambios. Para más información, y una lista de métodos útiles de «ComboBox» y «TreeModel», consulte la .

En la línea 35 la señal «changed» se conecta a la función de retorno de llamada on_changed() usando widget.connect(señal, función de retorno de llamada). Consulte la para obtener una explicación más detallada.

Referencias de la API

En este ejemplo se usa lo siguiente:

GtkComboBox

GtkListStore

GtkCellRendererText

GtkCellLayout

pygobject: vinculaciones de Python para introspección de GObject