Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. rangeSetAdjustment :: RangeClass self => self -> Adjustment -> IO ()

    gtk3 Graphics.UI.Gtk.Abstract.Range

    Sets the adjustment to be used as the "model" object for this range widget. The adjustment indicates the current range value, the minimum and maximum range values, the step/page increments used for keybindings and scrolling, and the page size. The page size is normally 0 for Scale and nonzero for Scrollbar, and indicates the size of the visible area of the widget being scrolled. The page size affects the size of the scrollbar slider.

  2. widgetListMnemonicLabels :: WidgetClass self => self -> IO [Widget]

    gtk3 Graphics.UI.Gtk.Abstract.Widget

    Returns a list of the widgets, normally labels, for which this widget is a the target of a mnemonic (see for example, labelSetMnemonicWidget).

    • Available since Gtk+ version 2.4

  3. scaleButtonAdjustment :: ScaleButtonClass self => Attr self Adjustment

    gtk3 Graphics.UI.Gtk.Buttons.ScaleButton

    The Adjustment that contains the current value of this scale button object.

  4. spinButtonAdjustment :: SpinButtonClass self => Attr self Adjustment

    gtk3 Graphics.UI.Gtk.Entry.SpinButton

    The adjustment that holds the value of the spinbutton.

  5. spinButtonGetAdjustment :: SpinButtonClass self => self -> IO Adjustment

    gtk3 Graphics.UI.Gtk.Entry.SpinButton

    Get the adjustment associated with a SpinButton

  6. spinButtonSetAdjustment :: SpinButtonClass self => self -> Adjustment -> IO ()

    gtk3 Graphics.UI.Gtk.Entry.SpinButton

    Replaces the Adjustment associated with the spin button.

  7. eventRequestMotions :: EventM EMotion ()

    gtk3 Graphics.UI.Gtk.Gdk.EventM

    Request more motion notifies if this event is a motion notify hint event. This action should be used instead of drawWindowGetPointer to request further motion notifies, because it also works for extension events where motion notifies are provided for devices other than the core pointer. Coordinate extraction, processing and requesting more motion events from a motionNotifyEvent usually works like this:

    on widget motionNotifyEvent $ do
    (x, y) <- eventCoordinates
    -- handle the x,y motion:
    ...
    -- finally, notify that we are ready to get more motion events:
    eventRequestMotions
    

  8. afterSetScrollAdjustments :: LayoutClass self => self -> (Adjustment -> Adjustment -> IO ()) -> IO (ConnectId self)

    gtk3 Graphics.UI.Gtk.Layout.Layout

    In case the adjustments are replaced, this signal is emitted.

  9. layoutGetHAdjustment :: LayoutClass self => self -> IO Adjustment

    gtk3 Graphics.UI.Gtk.Layout.Layout

    This function should only be called after the layout has been placed in a ScrolledWindow or otherwise configured for scrolling. It returns the Adjustment used for communication between the horizontal scrollbar and layout. See ScrolledWindow, Scrollbar, Adjustment for details.

  10. layoutGetVAdjustment :: LayoutClass self => self -> IO Adjustment

    gtk3 Graphics.UI.Gtk.Layout.Layout

    This function should only be called after the layout has been placed in a ScrolledWindow or otherwise configured for scrolling. It returns the Adjustment used for communication between the vertical scrollbar and layout. See ScrolledWindow, Scrollbar, Adjustment for details.

Page 181 of many | Previous | Next