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.
-
hxt Text.XML.HXT.DOM.ShowXml convert an XML tree into a binary large object (a bytestring)
bindtiersShow :: Show a => a -> [[Binding]]leancheck Test.LeanCheck.Function.ShowFunction A drop-in implementation of bindtiers for showable types. Define instances for showable algebraic datatypes as:
instance ShowFunction Ty where bindtiers = bindtiersShow
-
some Data.GADT.Show Show-like class for 1-type-parameter GADTs. GShow t => ... is equivalent to something like (forall a. Show (t a)) => .... The easiest way to create instances would probably be to write (or derive) an instance Show (T a), and then simply say:
instance GShow t where gshowsPrec = defaultGshowsPrec
gshowsPrec :: forall (a :: k) . GShow t => Int -> t a -> ShowSsome Data.GADT.Show No documentation available.
appInfoShouldShow :: (HasCallStack, MonadIO m, IsAppInfo a) => a -> m Boolgi-gio GI.Gio.Interfaces.AppInfo Checks if the application info should be shown in menus that list available applications.
-
gi-gio GI.Gio.Objects.DesktopAppInfo Checks if the application info should be shown in menus that list available applications for a specific name of the desktop, based on the OnlyShowIn and NotShowIn keys. desktopEnv should typically be given as Nothing, in which case the XDG_CURRENT_DESKTOP environment variable is consulted. If you want to override the default mechanism then you may specify desktopEnv, but this is not recommended. Note that appInfoShouldShow for info will include this check (with Nothing for desktopEnv) as well as additional checks. Since: 2.30
type
MountOperationShowProcessesCallback = Text -> [Int32] -> [Text] -> IO ()gi-gio GI.Gio.Objects.MountOperation Emitted when one or more processes are blocking an operation e.g. unmounting/ejecting a Mount or stopping a Drive. Note that this signal may be emitted several times to update the list of blocking processes as processes close files. The application should only respond with mountOperationReply to the latest signal (setting MountOperation:choice to the choice the user made). If the message contains a line break, the first line should be presented as a heading. For example, it may be used as the primary text in a GtkMessageDialog. Since: 2.22
type
MountOperationShowUnmountProgressCallback = Text -> Int64 -> Int64 -> IO ()gi-gio GI.Gio.Objects.MountOperation Emitted when an unmount operation has been busy for more than some time (typically 1.5 seconds). When unmounting or ejecting a volume, the kernel might need to flush pending data in its buffers to the volume stable storage, and this operation can take a considerable amount of time. This signal may be emitted several times as long as the unmount operation is outstanding, and then one last time when the operation is completed, with bytesLeft set to zero. Implementations of GMountOperation should handle this signal by showing an UI notification, and then dismiss it, or show another notification of completion, when bytesLeft reaches zero. If the message contains a line break, the first line should be presented as a heading. For example, it may be used as the primary text in a GtkMessageDialog. Since: 2.34
-
gi-gio GI.Gio.Objects.MountOperation Connect a signal handler for the showProcesses signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after mountOperation #showProcesses 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. -
gi-gio GI.Gio.Objects.MountOperation Connect a signal handler for the showUnmountProgress signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after mountOperation #showUnmountProgress 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.