Creates a new #GtkAdjustment.
Emits a #GtkAdjustment::changed signal from the #GtkAdjustment. This is typically called by the owner of the #GtkAdjustment after it has changed any of the #GtkAdjustment properties other than the value.
Updates the #GtkAdjustment:value property to ensure that the range between lower and upper is in the current page (i.e. between #GtkAdjustment:value and #GtkAdjustment:value + #GtkAdjustment:page-size). If the range is larger than the page size, then only the start of it will be in the current page.
Sets all properties of the adjustment at once.
Connect to Changed signal.
Connect to ValueChanged signal.
Retrieves the minimum value of the adjustment.
Gets the smaller of step increment and page increment.
Retrieves the page increment of the adjustment.
Retrieves the page size of the adjustment.
Retrieves the step increment of the adjustment.
Retrieves the maximum value of the adjustment.
Gets the current value of the adjustment. See gtk.adjustment.Adjustment.setValue.
Returns this, for use in with statements.
Sets the minimum value of the adjustment.
Sets the page increment of the adjustment.
Sets the page size of the adjustment.
Sets the step increment of the adjustment.
Sets the maximum value of the adjustment.
Sets the #GtkAdjustment value. The value is clamped to lie between #GtkAdjustment:lower and #GtkAdjustment:upper.
Emits a #GtkAdjustment::value-changed signal from the #GtkAdjustment. This is typically called by the owner of the #GtkAdjustment after it has changed the #GtkAdjustment:value property.
Get lower property.
Set lower property.
Get pageIncrement property.
Set pageIncrement property.
Get pageSize property.
Set pageSize property.
Get stepIncrement property.
Set stepIncrement property.
Get upper property.
Set upper property.
Get value property.
Set value property.
Get builder for gtk.adjustment.Adjustment
Returns this, for use in with statements.
Get builder for gobject.initially_unowned.InitiallyUnowned
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 #GtkScrollbar and #GtkScale).
The #GtkAdjustment object does not update the value itself. Instead it is left up to the owner of the #GtkAdjustment to control the value.