gi-webkit2-4.0.11: WebKit2 bindings

CopyrightWill Thompson, Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (garetxe@gmail.com)
Safe HaskellNone
LanguageHaskell2010

GI.WebKit2.Objects.FileChooserRequest

Contents

Description

 

Synopsis

Exported types

Methods

cancel

fileChooserRequestCancel Source #

Arguments

:: (HasCallStack, MonadIO m, IsFileChooserRequest a) 
=> a

request: a FileChooserRequest

-> m () 

Ask WebKit to cancel the request. It's important to do this in case no selection has been made in the client, otherwise the request won't be properly completed and the browser will keep the request pending forever, which might cause the browser to hang.

getMimeTypes

fileChooserRequestGetMimeTypes Source #

Arguments

:: (HasCallStack, MonadIO m, IsFileChooserRequest a) 
=> a

request: a FileChooserRequest

-> m [Text]

Returns: a Nothing-terminated array of strings if a list of accepted MIME types is defined or Nothing otherwise, meaning that any MIME type should be accepted. This array and its contents are owned by WebKitGTK+ and should not be modified or freed.

Get the list of MIME types the file chooser dialog should handle, in the format specified in RFC 2046 for "media types". Its contents depend on the value of the 'accept' attribute for HTML input elements. This function should normally be called before presenting the file chooser dialog to the user, to decide whether to allow the user to select multiple files at once or only one.

getMimeTypesFilter

fileChooserRequestGetMimeTypesFilter Source #

Arguments

:: (HasCallStack, MonadIO m, IsFileChooserRequest a) 
=> a

request: a FileChooserRequest

-> m FileFilter

Returns: a FileFilter if a list of accepted MIME types is defined or Nothing otherwise. The returned object is owned by WebKitGTK+ should not be modified or freed.

Get the filter currently associated with the request, ready to be used by FileChooser. This function should normally be called before presenting the file chooser dialog to the user, to decide whether to apply a filter so the user would not be allowed to select files with other MIME types.

See fileChooserRequestGetMimeTypes if you are interested in getting the list of accepted MIME types.

getSelectMultiple

fileChooserRequestGetSelectMultiple Source #

Arguments

:: (HasCallStack, MonadIO m, IsFileChooserRequest a) 
=> a

request: a FileChooserRequest

-> m Bool

Returns: True if the file chooser should allow selecting multiple files or False otherwise.

Determine whether the file chooser associated to this FileChooserRequest should allow selecting multiple files, which depends on the HTML input element having a 'multiple' attribute defined.

getSelectedFiles

fileChooserRequestGetSelectedFiles Source #

Arguments

:: (HasCallStack, MonadIO m, IsFileChooserRequest a) 
=> a

request: a FileChooserRequest

-> m [Text]

Returns: a Nothing-terminated array of strings if there are selected files associated with the request or Nothing otherwise. This array and its contents are owned by WebKitGTK+ and should not be modified or freed.

Get the list of selected files currently associated to the request. Initially, the return value of this method contains any files selected in previous file chooser requests for this HTML input element. Once webkit_file_chooser_request_select_files, the value will reflect whatever files are given.

This function should normally be called only before presenting the file chooser dialog to the user, to decide whether to perform some extra action, like pre-selecting the files from a previous request.

selectFiles

fileChooserRequestSelectFiles Source #

Arguments

:: (HasCallStack, MonadIO m, IsFileChooserRequest a) 
=> a

request: a FileChooserRequest

-> [Text]

files: a Nothing-terminated array of strings, containing paths to local files.

-> m () 

Ask WebKit to select local files for upload and complete the request.

Properties

filter

data FileChooserRequestFilterPropertyInfo Source #

Instances

AttrInfo FileChooserRequestFilterPropertyInfo Source # 
type AttrOrigin FileChooserRequestFilterPropertyInfo Source # 
type AttrLabel FileChooserRequestFilterPropertyInfo Source # 
type AttrGetType FileChooserRequestFilterPropertyInfo Source # 
type AttrBaseTypeConstraint FileChooserRequestFilterPropertyInfo Source # 
type AttrSetTypeConstraint FileChooserRequestFilterPropertyInfo Source # 
type AttrAllowedOps FileChooserRequestFilterPropertyInfo Source # 

mimeTypes

data FileChooserRequestMimeTypesPropertyInfo Source #

Instances

AttrInfo FileChooserRequestMimeTypesPropertyInfo Source # 
type AttrOrigin FileChooserRequestMimeTypesPropertyInfo Source # 
type AttrLabel FileChooserRequestMimeTypesPropertyInfo Source # 
type AttrGetType FileChooserRequestMimeTypesPropertyInfo Source # 
type AttrBaseTypeConstraint FileChooserRequestMimeTypesPropertyInfo Source # 
type AttrSetTypeConstraint FileChooserRequestMimeTypesPropertyInfo Source # 
type AttrAllowedOps FileChooserRequestMimeTypesPropertyInfo Source # 

selectMultiple

data FileChooserRequestSelectMultiplePropertyInfo Source #

Instances

AttrInfo FileChooserRequestSelectMultiplePropertyInfo Source # 
type AttrOrigin FileChooserRequestSelectMultiplePropertyInfo Source # 
type AttrLabel FileChooserRequestSelectMultiplePropertyInfo Source # 
type AttrGetType FileChooserRequestSelectMultiplePropertyInfo Source # 
type AttrBaseTypeConstraint FileChooserRequestSelectMultiplePropertyInfo Source # 
type AttrSetTypeConstraint FileChooserRequestSelectMultiplePropertyInfo Source # 
type AttrAllowedOps FileChooserRequestSelectMultiplePropertyInfo Source # 

selectedFiles

data FileChooserRequestSelectedFilesPropertyInfo Source #

Instances

AttrInfo FileChooserRequestSelectedFilesPropertyInfo Source # 
type AttrOrigin FileChooserRequestSelectedFilesPropertyInfo Source # 
type AttrLabel FileChooserRequestSelectedFilesPropertyInfo Source # 
type AttrGetType FileChooserRequestSelectedFilesPropertyInfo Source # 
type AttrBaseTypeConstraint FileChooserRequestSelectedFilesPropertyInfo Source # 
type AttrSetTypeConstraint FileChooserRequestSelectedFilesPropertyInfo Source # 
type AttrAllowedOps FileChooserRequestSelectedFilesPropertyInfo Source #