SignalRun Lastcreated-SignalRun Lastdecide-This signal is emitted after response is received to
decide a destination for the download using
webkit_download_set_destination(). If this signal is not
handled, the file will be downloaded to GLib.UserDirectory.DIRECTORY_DOWNLOAD
directory using suggested_filename.
Since 2.40, you may handle this signal asynchronously by
returning true without calling webkit_download_set_destination().
This indicates intent to eventually call webkit_download_set_destination().
In this case, the download will not proceed until the destination is set
or cancelled with webkit_download_cancel().
SignalRun LastfailedThis signal is emitted when an error occurs during the download
operation. The given error, of the domain WEBKIT_DOWNLOAD_ERROR,
contains further details of the failure. If the download is cancelled
with webkit_download_cancel(), this signal is emitted with error
WebKit.DownloadError.CANCELLED_BY_USER. The download operation finishes
after an error and WebKit.Download::finished signal is emitted after this one.
SignalRun LastfinishedThis signal is emitted when download finishes successfully or due to an error. In case of errors WebKit.Download::failed signal is emitted before this one.
SignalRun Lastreceived-This signal is emitted after response is received, every time new data has been written to the destination. It's useful to know the progress of the download operation.
SignalDetailedActionRun FirstnotifyThe notify signal is emitted on an object when one of its properties has
its value set through g_object_set_property(), g_object_set(), et al.
Note that getting this signal doesn’t itself guarantee that the value of
the property has actually changed. When it is emitted is determined by the
derived GObject class. If the implementor did not create the property with
GObject.ParamFlags.EXPLICIT_NOTIFY, then any call to g_object_set_property() results
in ::notify being emitted, even if the new value is the same as the old.
If they did pass GObject.ParamFlags.EXPLICIT_NOTIFY, then this signal is emitted only
when they explicitly call g_object_notify() or g_object_notify_by_pspec(),
and common practice is to do that only when the value has actually changed.
This signal is typically used to obtain change notification for a
single property, by specifying the property name as a detail in the
g_signal_connect() call, like this:
g_signal_connect (text_view->buffer, "notify::paste-target-list",
G_CALLBACK (gtk_text_view_target_list_notify),
text_view)
It is important to note that you must use [canonical parameter names][class@GObject.ParamSpec#parameter-names] as detail strings for the notify signal.
This signal is emitted after WebKit.Download.SignalSignatures.decide_destination | WebKit.Download::decide-destination and before WebKit.Download.SignalSignatures.received_data | WebKit.Download::received-data to notify that destination file has been created successfully at
destination.