Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (inaki@blueleaf.cc) |
Safe Haskell | None |
Language | Haskell2010 |
AppChooser
is an interface that can be implemented by widgets which
allow the user to choose an application (typically for the purpose of
opening a file). The main objects that implement this interface are
AppChooserWidget
, AppChooserDialog
and AppChooserButton
.
Applications are represented by GIO AppInfo
objects here.
GIO has a concept of recommended and fallback applications for a
given content type. Recommended applications are those that claim
to handle the content type itself, while fallback also includes
applications that handle a more generic content type. GIO also
knows the default and last-used application for a given content
type. The AppChooserWidget
provides detailed control over
whether the shown list of applications should include default,
recommended or fallback applications.
To obtain the application that has been selected in a AppChooser
,
use appChooserGetAppInfo
.
Synopsis
- newtype AppChooser = AppChooser (ManagedPtr AppChooser)
- noAppChooser :: Maybe AppChooser
- class (GObject o, IsDescendantOf AppChooser o) => IsAppChooser o
- toAppChooser :: (MonadIO m, IsAppChooser o) => o -> m AppChooser
- appChooserGetAppInfo :: (HasCallStack, MonadIO m, IsAppChooser a) => a -> m (Maybe AppInfo)
- appChooserGetContentType :: (HasCallStack, MonadIO m, IsAppChooser a) => a -> m Text
- appChooserRefresh :: (HasCallStack, MonadIO m, IsAppChooser a) => a -> m ()
- constructAppChooserContentType :: IsAppChooser o => Text -> IO (GValueConstruct o)
- getAppChooserContentType :: (MonadIO m, IsAppChooser o) => o -> m (Maybe Text)
Exported types
newtype AppChooser Source #
Memory-managed wrapper type.
Instances
GObject AppChooser Source # | |
Defined in GI.Gtk.Interfaces.AppChooser gobjectType :: IO GType # | |
HasParentTypes AppChooser Source # | |
Defined in GI.Gtk.Interfaces.AppChooser | |
type ParentTypes AppChooser Source # | |
Defined in GI.Gtk.Interfaces.AppChooser |
noAppChooser :: Maybe AppChooser Source #
A convenience alias for Nothing
:: Maybe
AppChooser
.
class (GObject o, IsDescendantOf AppChooser o) => IsAppChooser o Source #
Type class for types which can be safely cast to AppChooser
, for instance with toAppChooser
.
Instances
(GObject o, IsDescendantOf AppChooser o) => IsAppChooser o Source # | |
Defined in GI.Gtk.Interfaces.AppChooser |
toAppChooser :: (MonadIO m, IsAppChooser o) => o -> m AppChooser Source #
Cast to AppChooser
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
getAppInfo
:: (HasCallStack, MonadIO m, IsAppChooser a) | |
=> a |
|
-> m (Maybe AppInfo) | Returns: a |
Returns the currently selected application.
Since: 3.0
getContentType
appChooserGetContentType Source #
:: (HasCallStack, MonadIO m, IsAppChooser a) | |
=> a |
|
-> m Text | Returns: the content type of |
Returns the current value of the AppChooser
:content-type
property.
Since: 3.0
refresh
:: (HasCallStack, MonadIO m, IsAppChooser a) | |
=> a |
|
-> m () |
Reloads the list of applications.
Since: 3.0
Properties
contentType
The content type of the AppChooser
object.
See [GContentType][gio-GContentType] for more information about content types.
constructAppChooserContentType :: IsAppChooser o => Text -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “content-type
” property. This is rarely needed directly, but it is used by new
.
getAppChooserContentType :: (MonadIO m, IsAppChooser o) => o -> m (Maybe Text) Source #
Get the value of the “content-type
” property.
When overloading is enabled, this is equivalent to
get
appChooser #contentType