Gtk.VScale¶
- Subclasses:
None
Methods¶
- Inherited:
Gtk.Scale (14), Gtk.Range (28), Gtk.Widget (278), GObject.Object (37), Gtk.Buildable (10), Gtk.Orientable (2)
- Structs:
class |
|
class |
|
Virtual Methods¶
Properties¶
- Inherited:
Gtk.Scale (4), Gtk.Range (8), Gtk.Widget (39), Gtk.Orientable (1)
Style Properties¶
- Inherited:
Signals¶
- Inherited:
Gtk.Scale (1), Gtk.Range (4), Gtk.Widget (69), GObject.Object (1)
Fields¶
- Inherited:
Gtk.Scale (1), Gtk.Range (4), Gtk.Widget (69), GObject.Object (1)
Name |
Type |
Access |
Description |
---|---|---|---|
scale |
r |
Class Details¶
- class Gtk.VScale(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
The
Gtk.VScale
widget is used to allow the user to select a value using a vertical slider. To create one, useGtk.HScale.new_with_range
().The position to show the current value, and the number of decimal places shown can be set using the parent
Gtk.Scale
class’s functions.Gtk.VScale
has been deprecated, useGtk.Scale
instead.- classmethod new(adjustment)[source]¶
- Parameters:
adjustment (
Gtk.Adjustment
) – theGtk.Adjustment
which sets the range of the scale.- Returns:
a new
Gtk.VScale
.- Return type:
Creates a new
Gtk.VScale
.Deprecated since version 3.2: Use
Gtk.Scale.new
() withGtk.Orientation.VERTICAL
instead
- classmethod new_with_range(min, max, step)[source]¶
- Parameters:
- Returns:
a new
Gtk.VScale
- Return type:
Creates a new vertical scale widget that lets the user input a number between min and max (including min and max) with the increment step. step must be nonzero; it’s the distance the slider moves when using the arrow keys to adjust the scale value.
Note that the way in which the precision is derived works best if step is a power of ten. If the resulting precision is not suitable for your needs, use
Gtk.Scale.set_digits
() to correct it.Deprecated since version 3.2: Use
Gtk.Scale.new_with_range
() withGtk.Orientation.VERTICAL
instead