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.

  1. adjustmentNew :: Double -> Double -> Double -> Double -> Double -> Double -> IO Adjustment

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Creates a new Adjustment. The creation function take every value that is contained in the object: value is the initial value and should be between the upper and lower bounds of the slider. Clicking on the arrows increases this value by stepIncrement. Clicking in the slider advances by pageIncrement. The pageSize is needed to determine if the end of the slider is still in the range.

  2. adjustmentPageIncrement :: Attr Adjustment Double

    gtk Graphics.UI.Gtk.Misc.Adjustment

    The page increment of the adjustment. Default value: 0

  3. adjustmentPageSize :: Attr Adjustment Double

    gtk Graphics.UI.Gtk.Misc.Adjustment

    The page size of the adjustment. Note that the page-size is irrelevant and should be set to zero if the adjustment is used for a simple scalar value, e.g. in a SpinButton. Default value: 0

  4. adjustmentSetLower :: Adjustment -> Double -> IO ()

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Set the lower value.

  5. adjustmentSetPageIncrement :: Adjustment -> Double -> IO ()

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Set the page increment value.

  6. adjustmentSetPageSize :: Adjustment -> Double -> IO ()

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Set the page size value.

  7. adjustmentSetStepIncrement :: Adjustment -> Double -> IO ()

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Set the step-increment value.

  8. adjustmentSetUpper :: Adjustment -> Double -> IO ()

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Set the upper value.

  9. adjustmentSetValue :: Adjustment -> Double -> IO ()

    gtk Graphics.UI.Gtk.Misc.Adjustment

    Sets the current value of the Adjustment object. The value is clamped to lie between the adjustment's lower and upper values. See adjustmentNew for details of these properties. Note that for adjustments which are used in a Scrollbar, the effective range of allowed values goes from lower to upper - page_size.

  10. adjustmentStepIncrement :: Attr Adjustment Double

    gtk Graphics.UI.Gtk.Misc.Adjustment

    The step increment of the adjustment. Default value: 0

Page 96 of many | Previous | Next