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.
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.
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
scaleButtonAdjustment :: ScaleButtonClass self => Attr self Adjustmentgtk3 Graphics.UI.Gtk.Buttons.ScaleButton The Adjustment that contains the current value of this scale button object.
spinButtonAdjustment :: SpinButtonClass self => Attr self Adjustmentgtk3 Graphics.UI.Gtk.Entry.SpinButton The adjustment that holds the value of the spinbutton.
spinButtonGetAdjustment :: SpinButtonClass self => self -> IO Adjustmentgtk3 Graphics.UI.Gtk.Entry.SpinButton Get the adjustment associated with a SpinButton
spinButtonSetAdjustment :: SpinButtonClass self => self -> Adjustment -> IO ()gtk3 Graphics.UI.Gtk.Entry.SpinButton Replaces the Adjustment associated with the spin button.
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
-
gtk3 Graphics.UI.Gtk.Layout.Layout In case the adjustments are replaced, this signal is emitted.
layoutGetHAdjustment :: LayoutClass self => self -> IO Adjustmentgtk3 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.
layoutGetVAdjustment :: LayoutClass self => self -> IO Adjustmentgtk3 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.