Learn R Programming

RGtk2 (version 2.20.1)

GtkAdjustment: GtkAdjustment

Description

A GtkObject representing an adjustable bounded value

Arguments

Methods and Functions

gtkAdjustmentNew(value = NULL, lower = NULL, upper = NULL, step.incr = NULL, page.incr = NULL, page.size = NULL) gtkAdjustmentGetValue(object) gtkAdjustmentSetValue(object, value) gtkAdjustmentClampPage(object, lower, upper) gtkAdjustmentChanged(object) gtkAdjustmentValueChanged(object) gtkAdjustmentConfigure(object, value, lower, upper, step.increment, page.increment, page.size) gtkAdjustmentGetLower(object) gtkAdjustmentGetPageIncrement(object) gtkAdjustmentGetPageSize(object) gtkAdjustmentGetStepIncrement(object) gtkAdjustmentGetUpper(object) gtkAdjustmentSetLower(object, lower) gtkAdjustmentSetPageIncrement(object, page.increment) gtkAdjustmentSetPageSize(object, page.size) gtkAdjustmentSetStepIncrement(object, step.increment) gtkAdjustmentSetUpper(object, upper) gtkAdjustment(value = NULL, lower = NULL, upper = NULL, step.incr = NULL, page.incr = NULL, page.size = NULL)

Hierarchy

GObject +----GInitiallyUnowned +----GtkObject +----GtkAdjustment

Detailed Description

The GtkAdjustment object represents a value which has an associated lower and upper bound, together with step and page increments, and a page size. It is used within several GTK+ widgets, including GtkSpinButton, GtkViewport, and GtkRange (which is a base class for GtkHScrollbar, GtkVScrollbar, GtkHScale, and GtkVScale). The GtkAdjustment object does not update the value itself. Instead it is left up to the owner of the GtkAdjustment to control the value. The owner of the GtkAdjustment typically calls the gtkAdjustmentValueChanged and gtkAdjustmentChanged functions after changing the value and its bounds. This results in the emission of the "value_changed" or "changed" signal respectively.

Convenient Construction

gtkAdjustment is the equivalent of gtkAdjustmentNew.

References

http://library.gnome.org/devel//gtk/GtkAdjustment.html