Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. adjustmentConfigure :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> Double -> Double -> Double -> Double -> Double -> Double -> m ()

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Sets all properties of the adjustment at once. Use this function to avoid multiple emissions of the Adjustment::changed signal. See adjustmentSetLower for an alternative way of compressing multiple emissions of Adjustment::changed into one.

  2. adjustmentGetLower :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Retrieves the minimum value of the adjustment.

  3. adjustmentGetMinimumIncrement :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Gets the smaller of step increment and page increment.

  4. adjustmentGetPageIncrement :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Retrieves the page increment of the adjustment.

  5. adjustmentGetPageSize :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Retrieves the page size of the adjustment.

  6. adjustmentGetStepIncrement :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Retrieves the step increment of the adjustment.

  7. adjustmentGetUpper :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Retrieves the maximum value of the adjustment.

  8. adjustmentGetValue :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> m Double

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Gets the current value of the adjustment.

  9. adjustmentNew :: (HasCallStack, MonadIO m) => Double -> Double -> Double -> Double -> Double -> Double -> m Adjustment

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Creates a new GtkAdjustment.

  10. adjustmentSetLower :: (HasCallStack, MonadIO m, IsAdjustment a) => a -> Double -> m ()

    gi-gtk4 GI.Gtk.Objects.Adjustment

    Sets the minimum value of the adjustment. When setting multiple adjustment properties via their individual setters, multiple Adjustment::changed signals will be emitted. However, since the emission of the Adjustment::changed signal is tied to the emission of the notify signals of the changed properties, it’s possible to compress the Adjustment::changed signals into one by calling objectFreezeNotify and objectThawNotify around the calls to the individual setters. Alternatively, using a single g_object_set() for all the properties to change, or using adjustmentConfigure has the same effect.

Page 93 of many | Previous | Next