gtkVScaleNew(adjustment = NULL, show = TRUE)
gtkVScaleNewWithRange(min, max, step, show = TRUE)
gtkVScale(adjustment = NULL, min, max, step, show = TRUE)
GObject +----GInitiallyUnowned +----GtkObject +----GtkWidget +----GtkRange +----GtkScale +----GtkVScale
GtkBuildable
and GtkOrientable
.GtkVScale
widget is used to allow the user to select a value using
a vertical slider. To create one, use gtkHScaleNewWithRange
. The position to show the current value, and the number of decimal places
shown can be set using the parent GtkScale
class's functions.gtkVScale
is the result of collapsing the constructors of GtkVScale
(gtkVScaleNew
, gtkVScaleNewWithRange
) and accepts a subset of its arguments matching the required arguments of one of its delegate constructors.