SpinButton (Python) Marta Maria Casetti mmcasetti@gmail.com 2012 Obtener un número entero o en coma flotante del usuario. Daniel Mustieles daniel.mustieles@gmail.com 2011 - 2017 Nicolás Satragno nsatragno@gmail.com 2012 - 2013 Jorge González jorgegonz@svn.gnome.org 2011 SpinButton

Elija un número, escribiéndolo o pulsando los botones -/+.

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="SpinButton Example", application=app) self.set_default_size(210, 70) self.set_border_width(5) # an adjustment (initial value, min value, max value, # step increment - press cursor keys or +/- buttons to see!, # page increment - not used here, # page size - not used here) ad = Gtk.Adjustment(0, 0, 100, 1, 0, 0) # a spin button for integers (digits=0) self.spin = Gtk.SpinButton(adjustment=ad, climb_rate=1, digits=0) # as wide as possible self.spin.set_hexpand(True) # we connect the signal "value-changed" emitted by the spinbutton with the callback # function spin_selected self.spin.connect("value-changed", self.spin_selected) # a label self.label = Gtk.Label() self.label.set_text("Choose a number") # a grid to attach the widgets grid = Gtk.Grid() grid.attach(self.spin, 0, 0, 1, 1) grid.attach(self.label, 0, 1, 2, 1) self.add(grid) # callback function: the signal of the spinbutton is used to change the # text of the label def spin_selected(self, event): self.label.set_text( "The number you selected is " + str(self.spin.get_value_as_int()) + ".") 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 «SpinButton»

Se necesita un «Gtk.Adjustment» para construir el «Gtk.SpinButton». Este es la representación de un valor con un límite superior e inferior, junto con pasos y páginas de incrementos, y un tamaño de página, y se construye como Gtk.Adjustment(valor, mínimo, ,máximo, paso, página, tamaño_de_página) donde los campos son del tipo float; paso es el incremento/decremento que se obtiene usando las teclas de dirección o los botones del botón incremental. Tenga en cuenta que página y tamaño_de_página no se usan en este caso, y deben establecerse a 0.

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

Si quiere que el valor del botón incremental dé la vuelta cuando exceda el máximo o el mínimo, establezca set_wrap(True). La señal "wrapped" se emite cuando esto sucede.

set_digits(dígitos) establece la precisión que muestra el botón incremental, hasta 20 dígitos.

Para obtener el valor del botón incremental como un entero, use get_value_as_int().

Referencias de la API

En este ejemplo se usa lo siguiente:

GtkSpinButton

GtkAdjustment