Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
gi-gtk4 GI.Gtk.Interfaces.Scrollable Sets the horizontal adjustment of the GtkScrollable.
-
gi-gtk4 GI.Gtk.Interfaces.Scrollable Sets the vertical adjustment of the GtkScrollable.
setScrollableHadjustment :: (MonadIO m, IsScrollable o, IsAdjustment a) => o -> a -> m ()gi-gtk4 GI.Gtk.Interfaces.Scrollable Set the value of the “hadjustment” property. When overloading is enabled, this is equivalent to
set scrollable [ #hadjustment := value ]
setScrollableVadjustment :: (MonadIO m, IsScrollable o, IsAdjustment a) => o -> a -> m ()gi-gtk4 GI.Gtk.Interfaces.Scrollable Set the value of the “vadjustment” property. When overloading is enabled, this is equivalent to
set scrollable [ #vadjustment := value ]
module GI.Gtk.Objects.
Adjustment GtkAdjustment is a model for a numeric value. The GtkAdjustment has an associated lower and upper bound. It also contains step and page increments, and a page size. Adjustments are used within several GTK widgets, including SpinButton, Viewport, Scrollbar and Scale. The GtkAdjustment object does not update the value itself. Instead it is left up to the owner of the GtkAdjustment to control the value.
-
gi-gtk4 GI.Gtk.Objects.Adjustment Memory-managed wrapper type.
Adjustment :: ManagedPtr Adjustment -> Adjustmentgi-gtk4 GI.Gtk.Objects.Adjustment No documentation available.
type
AdjustmentChangedCallback = IO ()gi-gtk4 GI.Gtk.Objects.Adjustment Emitted when one or more of the GtkAdjustment properties have been changed. Note that the Adjustment:value property is covered by the Adjustment::valueChanged signal.
type
AdjustmentValueChangedCallback = IO ()gi-gtk4 GI.Gtk.Objects.Adjustment Emitted when the value has been changed.
class (GObject o, IsDescendantOf Adjustment o) =>
IsAdjustment ogi-gtk4 GI.Gtk.Objects.Adjustment Type class for types which can be safely cast to Adjustment, for instance with toAdjustment.