signal callback delegate or function to connect
bool callback(webkit.file_chooser_request.FileChooserRequest request, webkit.web_view.WebView webView)
request a #WebKitFileChooserRequest (optional)
webView the instance the signal is connected to (optional)
Returns true to stop other handlers from being invoked for the event. false to propagate the event further.
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to RunFileChooser signal.
This signal is emitted when the user interacts with a <input type='file' /> HTML element, requesting from WebKit to show a dialog to select one or more files to be uploaded. To let the application know the details of the file chooser, as well as to allow the client application to either cancel the request or perform an actual selection of files, the signal will pass an instance of the #WebKitFileChooserRequest in the request argument.
The default signal handler will asynchronously run a regular #GtkFileChooserDialog for the user to interact with.