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.
-
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 ]
-
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 ]
-
ginger Text.Ginger.Run.Builtins No documentation available.
appInfoShouldShow :: AppInfoClass appinfo => appinfo -> IO Boolgio System.GIO.File.AppInfo Checks if the application info should be shown in menus that list available applications.
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.
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.
widgetGetNoShowAll :: WidgetClass self => self -> IO Boolgtk 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
widgetNoShowAll :: WidgetClass self => Attr self Boolgtk Graphics.UI.Gtk.Abstract.Widget Whether widgetShowAll should not affect this widget. Default value: False
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
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.