FaviconDatabase.connectFaviconChanged
gulong connectFaviconChanged(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == void)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == string)))
&& (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] == string)))
&& (Parameters!T.length < 3 || (ParameterStorageClassTuple!T[2] == ParameterStorageClass.none && is(Parameters!T[2] : webkit.favicon_database.FaviconDatabase)))
&& Parameters!T.length < 4)Connect to FaviconChanged signal.
This signal is emitted when the favicon URI of page_uri has been changed to favicon_uri in the database. You can connect to this signal and call [webkit.favicon_database.FaviconDatabase.getFavicon] to get the favicon. If you are interested in the favicon of a #WebKitWebView it's easier to use the #WebKitWebView:favicon property. See [webkit.web_view.WebView.getFavicon] for more details.
Parameters
callback | signal callback delegate or function to connect void callback(string pageUri, string faviconUri, webkit.favicon_database.FaviconDatabase faviconDatabase) pageUri the URI of the Web page containing the icon (optional) faviconUri the URI of the favicon (optional) faviconDatabase the instance the signal is connected to (optional) |
after | Yes.After to execute callback after default handler, No.After to execute before (default) |
Returns
Signal ID