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

Packit 1470ea
from gi.repository import Gtk
Packit 1470ea
import sys
Packit 1470ea
Packit 1470ea
Packit 1470ea
class MyWindow(Gtk.ApplicationWindow):
Packit 1470ea
    # a window
Packit 1470ea
Packit 1470ea
    def __init__(self, app):
Packit 1470ea
        Gtk.Window.__init__(
Packit 1470ea
            self, title="ToggleButton Example", application=app)
Packit 1470ea
        self.set_default_size(300, 300)
Packit 1470ea
        self.set_border_width(30)
Packit 1470ea
Packit 1470ea
        # a spinner animation
Packit 1470ea
        self.spinner = Gtk.Spinner()
Packit 1470ea
        # with extra horizontal space
Packit 1470ea
        self.spinner.set_hexpand(True)
Packit 1470ea
        # with extra vertical space
Packit 1470ea
        self.spinner.set_vexpand(True)
Packit 1470ea
Packit 1470ea
        # a togglebutton
Packit 1470ea
        button = Gtk.ToggleButton.new_with_label("Start/Stop")
Packit 1470ea
        # connect the signal "toggled" emitted by the togglebutton
Packit 1470ea
        # when its state is changed to the callback function toggled_cb
Packit 1470ea
        button.connect("toggled", self.toggled_cb)
Packit 1470ea
Packit 1470ea
        # a grid to allocate the widgets
Packit 1470ea
        grid = Gtk.Grid()
Packit 1470ea
        grid.set_row_homogeneous(False)
Packit 1470ea
        grid.set_row_spacing(15)
Packit 1470ea
        grid.attach(self.spinner, 0, 0, 1, 1)
Packit 1470ea
        grid.attach(button, 0, 1, 1, 1)
Packit 1470ea
Packit 1470ea
        # add the grid to the window
Packit 1470ea
        self.add(grid)
Packit 1470ea
Packit 1470ea
    # callback function for the signal "toggled"
Packit 1470ea
    def toggled_cb(self, button):
Packit 1470ea
        # if the togglebutton is active, start the spinner
Packit 1470ea
        if button.get_active():
Packit 1470ea
            self.spinner.start()
Packit 1470ea
        # else, stop it
Packit 1470ea
        else:
Packit 1470ea
            self.spinner.stop()
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)