| Safe Haskell | None |
|---|---|
| Language | GHC2021 |
Brillo.Data.FileDialog
Synopsis
- data FileDialog = FileDialog {
- title :: !Text
- defaultPath :: !Text
- filterPatterns :: ![Text]
- filterDescription :: !Text
- selectionMode :: !SelectionMode
- data SelectionMode
Documentation
data FileDialog Source #
The FileDialog represents a dialog
| that can be opened by the user to select files or directories.
Constructors
| FileDialog | |
Fields
| |
Instances
| Show FileDialog Source # | |
Defined in Brillo.Data.FileDialog Methods showsPrec :: Int -> FileDialog -> ShowS # show :: FileDialog -> String # showList :: [FileDialog] -> ShowS # | |
| Eq FileDialog Source # | |
Defined in Brillo.Data.FileDialog | |
data SelectionMode Source #
Constructors
| SingleFileSelect | |
| MultiFileSelect | |
| SingleDirectorySelect |
Instances
| Show SelectionMode Source # | |
Defined in Brillo.Data.FileDialog Methods showsPrec :: Int -> SelectionMode -> ShowS # show :: SelectionMode -> String # showList :: [SelectionMode] -> ShowS # | |
| Eq SelectionMode Source # | |
Defined in Brillo.Data.FileDialog Methods (==) :: SelectionMode -> SelectionMode -> Bool # (/=) :: SelectionMode -> SelectionMode -> Bool # | |