Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. afterWidgetShow :: (IsWidget a, MonadIO m) => a -> ((?self :: a) => WidgetShowCallback) -> m SignalHandlerId

    gi-gtk3 GI.Gtk.Objects.Widget

    Connect a signal handler for the show signal, to be run after the default handler. When overloading is enabled, this is equivalent to

    after widget #show callback
    
    By default the object invoking the signal is not passed to the callback. If you need to access it, you can use the implit ?self parameter. Note that this requires activating the ImplicitParams GHC extension.

  2. afterWidgetShowHelp :: (IsWidget a, MonadIO m) => a -> ((?self :: a) => WidgetShowHelpCallback) -> m SignalHandlerId

    gi-gtk3 GI.Gtk.Objects.Widget

    Connect a signal handler for the showHelp signal, to be run after the default handler. When overloading is enabled, this is equivalent to

    after widget #showHelp callback
    
    By default the object invoking the signal is not passed to the callback. If you need to access it, you can use the implit ?self parameter. Note that this requires activating the ImplicitParams GHC extension.

  3. constructWidgetNoShowAll :: (IsWidget o, MonadIO m) => Bool -> m (GValueConstruct o)

    gi-gtk3 GI.Gtk.Objects.Widget

    Construct a GValueConstruct with valid value for the “no-show-all” property. This is rarely needed directly, but it is used by new.

  4. getWidgetNoShowAll :: (MonadIO m, IsWidget o) => o -> m Bool

    gi-gtk3 GI.Gtk.Objects.Widget

    Get the value of the “no-show-all” property. When overloading is enabled, this is equivalent to

    get widget #noShowAll
    

  5. onWidgetShow :: (IsWidget a, MonadIO m) => a -> ((?self :: a) => WidgetShowCallback) -> m SignalHandlerId

    gi-gtk3 GI.Gtk.Objects.Widget

    Connect a signal handler for the show signal, to be run before the default handler. When overloading is enabled, this is equivalent to

    on widget #show callback
    

  6. onWidgetShowHelp :: (IsWidget a, MonadIO m) => a -> ((?self :: a) => WidgetShowHelpCallback) -> m SignalHandlerId

    gi-gtk3 GI.Gtk.Objects.Widget

    Connect a signal handler for the showHelp signal, to be run before the default handler. When overloading is enabled, this is equivalent to

    on widget #showHelp callback
    

  7. setWidgetNoShowAll :: (MonadIO m, IsWidget o) => o -> Bool -> m ()

    gi-gtk3 GI.Gtk.Objects.Widget

    Set the value of the “no-show-all” property. When overloading is enabled, this is equivalent to

    set widget [ #noShowAll := value ]
    

  8. widgetGetNoShowAll :: (HasCallStack, MonadIO m, IsWidget a) => a -> m Bool

    gi-gtk3 GI.Gtk.Objects.Widget

    Returns the current value of the Widget:noShowAll property, which determines whether calls to widgetShowAll will affect this widget. Since: 2.4

  9. widgetSetNoShowAll :: (HasCallStack, MonadIO m, IsWidget a) => a -> Bool -> m ()

    gi-gtk3 GI.Gtk.Objects.Widget

    Sets the Widget:noShowAll property, which determines whether calls to widgetShowAll will affect this widget. This is mostly for use in constructing widget hierarchies with externally controlled visibility, see UIManager. Since: 2.4

  10. widgetShow :: (HasCallStack, MonadIO m, IsWidget a) => a -> m ()

    gi-gtk3 GI.Gtk.Objects.Widget

    Flags a widget to be displayed. Any widget that isn’t shown will not appear on the screen. If you want to show all the widgets in a container, it’s easier to call widgetShowAll on the container, instead of individually showing the widgets. Remember that you have to show the containers containing a widget, in addition to the widget itself, before it will appear onscreen. When a toplevel container is shown, it is immediately realized and mapped; other shown widgets are realized and mapped when their toplevel container is realized and mapped.

Page 331 of many | Previous | Next