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. setWidgetClassShowAll :: MonadIO m => WidgetClass -> FunPtr C_WidgetClassShowAllFieldCallback -> m ()

    gi-gtk3 GI.Gtk.Structs.WidgetClass

    Set the value of the “show_all” field. When overloading is enabled, this is equivalent to

    set widgetClass [ #showAll := value ]
    

  2. setWidgetClassShowHelp :: MonadIO m => WidgetClass -> FunPtr C_WidgetClassShowHelpFieldCallback -> m ()

    gi-gtk3 GI.Gtk.Structs.WidgetClass

    Set the value of the “show_help” field. When overloading is enabled, this is equivalent to

    set widgetClass [ #showHelp := value ]
    

  3. tshow :: Show a => a -> Text

    ginger Text.Ginger.Run.Builtins

    No documentation available.

  4. appInfoShouldShow :: AppInfoClass appinfo => appinfo -> IO Bool

    gio System.GIO.File.AppInfo

    Checks if the application info should be shown in menus that list available applications.

  5. afterShow :: WidgetClass w => w -> IO () -> IO (ConnectId w)

    gtk Graphics.UI.Gtk.Abstract.Widget

    The widget was asked to show itself.

    • This signal is emitted each time widgetShow is called. Use onMap when your application needs to be informed when the widget is actually shown.

  6. onShow :: WidgetClass w => w -> IO () -> IO (ConnectId w)

    gtk Graphics.UI.Gtk.Abstract.Widget

    The widget was asked to show itself.

    • This signal is emitted each time widgetShow is called. Use onMap when your application needs to be informed when the widget is actually shown.

  7. widgetGetNoShowAll :: WidgetClass self => self -> IO Bool

    gtk Graphics.UI.Gtk.Abstract.Widget

    Returns the current value of the noShowAll property, which determines whether calls to widgetShowAll and widgetHideAll will affect this widget.

    • Available since Gtk+ version 2.4

  8. widgetNoShowAll :: WidgetClass self => Attr self Bool

    gtk Graphics.UI.Gtk.Abstract.Widget

    Whether widgetShowAll should not affect this widget. Default value: False

  9. widgetSetNoShowAll :: WidgetClass self => self -> Bool -> IO ()

    gtk Graphics.UI.Gtk.Abstract.Widget

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

    • Available since Gtk+ version 2.4

  10. widgetShow :: WidgetClass self => self -> IO ()

    gtk Graphics.UI.Gtk.Abstract.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 333 of many | Previous | Next