Escala (Python) Marta Maria Casetti mmcasetti@gmail.com 2012 Un widget deslizador para seleccionar un valor de un rango Daniel Mustieles daniel.mustieles@gmail.com 2011 - 2017 Nicolás Satragno nsatragno@gmail.com 2012 - 2013 Jorge González jorgegonz@svn.gnome.org 2011 Escala

Desplace las escalas.

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="Scale Example", application=app) self.set_default_size(400, 300) self.set_border_width(5) # two adjustments (initial value, min value, max value, # step increment - press cursor keys to see!, # page increment - click around the handle to see!, # page size - not used here) ad1 = Gtk.Adjustment(0, 0, 100, 5, 10, 0) ad2 = Gtk.Adjustment(50, 0, 100, 5, 10, 0) # an horizontal scale self.h_scale = Gtk.Scale( orientation=Gtk.Orientation.HORIZONTAL, adjustment=ad1) # of integers (no digits) self.h_scale.set_digits(0) # that can expand horizontally if there is space in the grid (see # below) self.h_scale.set_hexpand(True) # that is aligned at the top of the space allowed in the grid (see # below) self.h_scale.set_valign(Gtk.Align.START) # we connect the signal "value-changed" emitted by the scale with the callback # function scale_moved self.h_scale.connect("value-changed", self.scale_moved) # a vertical scale self.v_scale = Gtk.Scale( orientation=Gtk.Orientation.VERTICAL, adjustment=ad2) # that can expand vertically if there is space in the grid (see below) self.v_scale.set_vexpand(True) # we connect the signal "value-changed" emitted by the scale with the callback # function scale_moved self.v_scale.connect("value-changed", self.scale_moved) # a label self.label = Gtk.Label() self.label.set_text("Move the scale handles...") # a grid to attach the widgets grid = Gtk.Grid() grid.set_column_spacing(10) grid.set_column_homogeneous(True) grid.attach(self.h_scale, 0, 0, 1, 1) grid.attach_next_to( self.v_scale, self.h_scale, Gtk.PositionType.RIGHT, 1, 1) grid.attach(self.label, 0, 1, 2, 1) self.add(grid) # any signal from the scales is signaled to the label the text of which is # changed def scale_moved(self, event): self.label.set_text("Horizontal scale is " + str(int(self.h_scale.get_value())) + "; vertical scale is " + str(self.v_scale.get_value()) + ".") 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 «Escala»

Se necesita un «Gtk.Adjustment» para construir la «Gtk.Scale». 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, página es el que se obtiene pulsando en la escala en sí. Tenga en cuenta que tamaño_de_página no se usa en este caso, y debe establecerse a 0.

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

get_value() obtiene el valor actual de la escala; set_value(valor) lo establece (si el valor, del tipo float, está fuera del rango mínimo o máximo, se ajustará para que entre). Estos son métodos de la clase «Gtk.Range».

Use set_draw_value(False) para evitar mostrar el valor actual como una cadena junto al deslizador.

Para resaltar la parte de la escala entre el origen y el valor actual:

self.h_scale.set_restrict_to_fill_level(False) self.h_scale.set_fill_level(self.h_scale.get_value()) self.h_scale.set_show_fill_level(True)

en la función de retorno de llamada de la señal «value-changed», para tener el relleno nuevo cada vez que cambie el valor. Estos son métodos de la clase «Gtk.Range».

add_mark(valor, posición, marca) añade una marca en el valor (float o int si esa es la precisión de la escala), en posición (Gtk.PositionType.LEFT, Gtk.PositionType.RIGHT, Gtk.PositionType.TOP, Gtk.PositionType.BOTTOM) con texto Null o marca en el lenguaje de marcado de Pango. Para limpiar las marcas, clear_marks().

set_digits(dígitos) establece la precisión de la escala en dígitos dígitos.

Referencias de la API

En este ejemplo se usa lo siguiente:

GtkScale

GtkAdjustment

Enumeraciones estándar