Top |
WebKitWebPluginDatabaseWebKitWebPluginDatabase — Provides information about the plugins the engine knows about |
Description
This object allows you to query information about the plugins found by the engine while scanning the usual directories. You can then use the WebKitWebPlugin objects to get more information or enable/disable individual plugins.
Functions
webkit_web_plugin_database_get_plugin_for_mimetype ()
WebKitWebPlugin * webkit_web_plugin_database_get_plugin_for_mimetype (WebKitWebPluginDatabase *database
,const char *mime_type
);
Returns the WebKitWebPlugin that is handling mimeType
in the
database
, or NULL
if there's none doing so.
Since: 1.3.8
webkit_web_plugin_database_get_plugins ()
GSList *
webkit_web_plugin_database_get_plugins
(WebKitWebPluginDatabase *database
);
Returns all WebKitWebPlugin available in database
.
The returned list must be freed with webkit_web_plugin_database_plugins_list_free()
Since: 1.3.8
webkit_web_plugin_database_plugins_list_free ()
void
webkit_web_plugin_database_plugins_list_free
(GSList *list
);
Frees list
.
Since: 1.3.8
webkit_web_plugin_database_refresh ()
void
webkit_web_plugin_database_refresh (WebKitWebPluginDatabase *database
);
Refreshes database
adding new plugins that are now in use and
removing those that have been disabled or are otherwise no longer
available.
Since: 1.3.8