Top | ![]() |
![]() |
![]() |
![]() |
void | webkit_icon_database_clear () |
GdkPixbuf * | webkit_icon_database_get_icon_pixbuf () |
gchar * | webkit_icon_database_get_icon_uri () |
const gchar * | webkit_icon_database_get_path () |
GType | webkit_icon_database_get_type () |
void | webkit_icon_database_set_path () |
void
webkit_icon_database_clear (WebKitIconDatabase *database
);
webkit_icon_database_clear
has been deprecated since version 1.8 and should not be used in newly-written code.
Use webkit_favicon_database_clear()
instead.
Clears all icons from the database.
Since 1.3.13
GdkPixbuf * webkit_icon_database_get_icon_pixbuf (WebKitIconDatabase *database
,const gchar *page_uri
);
webkit_icon_database_get_icon_pixbuf
has been deprecated since version 1.8 and should not be used in newly-written code.
Use webkit_favicon_database_try_get_favicon_pixbuf()
instead.
Obtains a GdkPixbuf of the favicon for the given page URI, or
a default icon if there is no icon for the given page. Use
webkit_icon_database_get_icon_uri()
if you need to distinguish these cases.
Usually you want to connect to WebKitIconDatabase::icon-loaded and call this
method in the callback.
The pixbuf will have the largest size provided by the server and should
be resized before it is displayed.
See also webkit_web_view_get_icon_pixbuf()
.
Since 1.3.13
gchar * webkit_icon_database_get_icon_uri (WebKitIconDatabase *database
,const gchar *page_uri
);
webkit_icon_database_get_icon_uri
has been deprecated since version 1.8 and should not be used in newly-written code.
Use webkit_favicon_database_get_favicon_uri()
instead.
Obtains the URI for the favicon for the given page URI.
See also webkit_web_view_get_icon_uri()
.
Since 1.3.13
const gchar *
webkit_icon_database_get_path (WebKitIconDatabase *database
);
webkit_icon_database_get_path
has been deprecated since version 1.8 and should not be used in newly-written code.
Use webkit_favicon_database_get_path()
instead.
Determines the absolute path to the database folder on disk.
Since 1.3.13
void webkit_icon_database_set_path (WebKitIconDatabase *database
,const gchar *path
);
webkit_icon_database_set_path
has been deprecated since version 1.8 and should not be used in newly-written code.
Use webkit_favicon_database_set_path()
instead.
Specifies the absolute path to the database folder on disk.
Passing NULL
or "" disables the icon database.
Since 1.3.13
“icon-loaded”
signalvoid user_function (WebKitIconDatabase *database, WebKitWebFrame *frame, gchar *frame_uri, gpointer user_data)
This signal is emitted when a favicon is available for a page, or a child frame. See WebKitWebView::icon-loaded if you only need the favicon for the main frame of a particular WebKitWebView.
WebKitIconDatabase::icon-loaded
has been deprecated since version 1.8 and should not be used in newly-written code.
Use WebKitFaviconDatabase::icon-loaded instead.
database |
the object on which the signal is emitted |
|
frame |
the frame containing the icon |
|
frame_uri |
the URI of the frame containing the icon |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last
Since 1.3.13