Blame platform-demos/C/samples/combobox.py

Packit 1470ea
from gi.repository import Gtk
Packit 1470ea
import sys
Packit 1470ea
Packit 1470ea
distros = [["Select distribution"], ["Fedora"], ["Mint"], ["Suse"]]
Packit 1470ea
Packit 1470ea
Packit 1470ea
class MyWindow(Gtk.ApplicationWindow):
Packit 1470ea
Packit 1470ea
    def __init__(self, app):
Packit 1470ea
        Gtk.Window.__init__(self, title="Welcome to GNOME", application=app)
Packit 1470ea
        self.set_default_size(200, -1)
Packit 1470ea
        self.set_border_width(10)
Packit 1470ea
Packit 1470ea
        # the data in the model, of type string
Packit 1470ea
        listmodel = Gtk.ListStore(str)
Packit 1470ea
        # append the data in the model
Packit 1470ea
        for i in range(len(distros)):
Packit 1470ea
            listmodel.append(distros[i])
Packit 1470ea
Packit 1470ea
        # a combobox to see the data stored in the model
Packit 1470ea
        combobox = Gtk.ComboBox(model=listmodel)
Packit 1470ea
Packit 1470ea
        # a cellrenderer to render the text
Packit 1470ea
        cell = Gtk.CellRendererText()
Packit 1470ea
Packit 1470ea
        # pack the cell into the beginning of the combobox, allocating
Packit 1470ea
        # no more space than needed
Packit 1470ea
        combobox.pack_start(cell, False)
Packit 1470ea
        # associate a property ("text") of the cellrenderer (cell) to a column (column 0)
Packit 1470ea
        # in the model used by the combobox
Packit 1470ea
        combobox.add_attribute(cell, "text", 0)
Packit 1470ea
Packit 1470ea
        # the first row is the active one by default at the beginning
Packit 1470ea
        combobox.set_active(0)
Packit 1470ea
Packit 1470ea
        # connect the signal emitted when a row is selected to the callback
Packit 1470ea
        # function
Packit 1470ea
        combobox.connect("changed", self.on_changed)
Packit 1470ea
Packit 1470ea
        # add the combobox to the window
Packit 1470ea
        self.add(combobox)
Packit 1470ea
Packit 1470ea
    def on_changed(self, combo):
Packit 1470ea
        # if the row selected is not the first one, write its value on the
Packit 1470ea
        # terminal
Packit 1470ea
        if combo.get_active() != 0:
Packit 1470ea
            print("You chose " + str(distros[combo.get_active()][0]) + ".")
Packit 1470ea
        return True
Packit 1470ea
Packit 1470ea
Packit 1470ea
class MyApplication(Gtk.Application):
Packit 1470ea
Packit 1470ea
    def __init__(self):
Packit 1470ea
        Gtk.Application.__init__(self)
Packit 1470ea
Packit 1470ea
    def do_activate(self):
Packit 1470ea
        win = MyWindow(self)
Packit 1470ea
        win.show_all()
Packit 1470ea
Packit 1470ea
    def do_startup(self):
Packit 1470ea
        Gtk.Application.do_startup(self)
Packit 1470ea
Packit 1470ea
app = MyApplication()
Packit 1470ea
exit_status = app.run(sys.argv)
Packit 1470ea
sys.exit(exit_status)