Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- data OpenURIOptions = OpenURIOptions {}
- openURIOptions :: URI -> OpenURIOptions
- openURI :: Client -> OpenURIOptions -> IO (Request ())
- data OpenFileOptions = OpenFileOptions {}
- openFileOptions :: FileSpec -> OpenFileOptions
- openFile :: Client -> OpenFileOptions -> IO (Request ())
- data OpenDirectoryOptions = OpenDirectoryOptions {}
- openDirectoryOptions :: FileSpec -> OpenDirectoryOptions
- openDirectory :: Client -> OpenDirectoryOptions -> IO (Request ())
Open URI
data OpenURIOptions Source #
Instances
Show OpenURIOptions Source # | |
Defined in Desktop.Portal.OpenURI showsPrec :: Int -> OpenURIOptions -> ShowS # show :: OpenURIOptions -> String # showList :: [OpenURIOptions] -> ShowS # | |
Eq OpenURIOptions Source # | |
Defined in Desktop.Portal.OpenURI (==) :: OpenURIOptions -> OpenURIOptions -> Bool # (/=) :: OpenURIOptions -> OpenURIOptions -> Bool # |
:: URI | The URI to open. |
-> OpenURIOptions |
Open File
data OpenFileOptions Source #
Instances
Show OpenFileOptions Source # | |
Defined in Desktop.Portal.OpenURI showsPrec :: Int -> OpenFileOptions -> ShowS # show :: OpenFileOptions -> String # showList :: [OpenFileOptions] -> ShowS # | |
Eq OpenFileOptions Source # | |
Defined in Desktop.Portal.OpenURI (==) :: OpenFileOptions -> OpenFileOptions -> Bool # (/=) :: OpenFileOptions -> OpenFileOptions -> Bool # |
:: FileSpec | The file to open. |
-> OpenFileOptions |
Open Directory
data OpenDirectoryOptions Source #
Instances
Show OpenDirectoryOptions Source # | |
Defined in Desktop.Portal.OpenURI showsPrec :: Int -> OpenDirectoryOptions -> ShowS # show :: OpenDirectoryOptions -> String # showList :: [OpenDirectoryOptions] -> ShowS # | |
Eq OpenDirectoryOptions Source # | |
Defined in Desktop.Portal.OpenURI (==) :: OpenDirectoryOptions -> OpenDirectoryOptions -> Bool # (/=) :: OpenDirectoryOptions -> OpenDirectoryOptions -> Bool # |
:: FileSpec | The directory to open. |
-> OpenDirectoryOptions |
openDirectory :: Client -> OpenDirectoryOptions -> IO (Request ()) Source #