WebKit2GTK+ Reference Manual | ||||
---|---|---|---|---|
Top | Description | Object Hierarchy | Signals |
struct WebKitWebContext; enum WebKitCacheModel; WebKitWebContext * webkit_web_context_get_default (void
); WebKitCacheModel webkit_web_context_get_cache_model (WebKitWebContext *context
); void webkit_web_context_set_cache_model (WebKitWebContext *context
,WebKitCacheModel cache_model
); WebKitDownload * webkit_web_context_download_uri (WebKitWebContext *context
,const gchar *uri
); WebKitCookieManager * webkit_web_context_get_cookie_manager (WebKitWebContext *context
); void webkit_web_context_set_additional_plugins_directory (WebKitWebContext *context
,const gchar *directory
); void webkit_web_context_get_plugins (WebKitWebContext *context
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
); GList * webkit_web_context_get_plugins_finish (WebKitWebContext *context
,GAsyncResult *result
,GError **error
);
typedef enum { WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER, WEBKIT_CACHE_MODEL_WEB_BROWSER, WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER } WebKitCacheModel;
Enum values used for determining the webview cache model.
Disable the cache completely, which substantially reduces memory usage. Useful for applications that only access a single local file, with no navigation to other pages. No remote resources will be cached. | |
Improve document load speed substantially by caching a very large number of resources and previously viewed content. | |
A cache model optimized for viewing a series of local files -- for example, a documentation viewer or a website designer. WebKit will cache a moderate number of resources. |
WebKitWebContext * webkit_web_context_get_default (void
);
Gets the default web context
Returns : |
(transfer none) a WebKitWebContext |
WebKitCacheModel webkit_web_context_get_cache_model (WebKitWebContext *context
);
Returns the current cache model. For more information about this
value check the documentation of the function
webkit_web_context_set_cache_model()
.
|
the WebKitWebContext |
Returns : |
the current WebKitCacheModel |
void webkit_web_context_set_cache_model (WebKitWebContext *context
,WebKitCacheModel cache_model
);
Specifies a usage model for WebViews, which WebKit will use to determine its caching behavior. All web views follow the cache model. This cache model determines the RAM and disk space to use for caching previously viewed content .
Research indicates that users tend to browse within clusters of documents that hold resources in common, and to revisit previously visited documents. WebKit and the frameworks below it include built-in caches that take advantage of these patterns, substantially improving document load speed in browsing situations. The WebKit cache model controls the behaviors of all of these caches, including various WebCore caches.
Browsers can improve document load speed substantially by specifying WEBKIT_CACHE_MODEL_WEB_BROWSER. Applications without a browsing interface can reduce memory usage substantially by specifying WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER. The default value is WEBKIT_CACHE_MODEL_WEB_BROWSER.
|
the WebKitWebContext |
|
a WebKitCacheModel |
WebKitDownload * webkit_web_context_download_uri (WebKitWebContext *context
,const gchar *uri
);
Requests downloading of the specified URI string.
|
a WebKitWebContext |
|
the URI to download |
Returns : |
a new WebKitDownload representing the the download operation. [transfer full] |
WebKitCookieManager * webkit_web_context_get_cookie_manager
(WebKitWebContext *context
);
Get the WebKitCookieManager of context
.
|
a WebKitWebContext |
Returns : |
the WebKitCookieManager of context . [transfer none]
|
void webkit_web_context_set_additional_plugins_directory (WebKitWebContext *context
,const gchar *directory
);
Set an additional directory where WebKit will look for plugins.
|
a WebKitWebContext |
|
the directory to add |
void webkit_web_context_get_plugins (WebKitWebContext *context
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously get the list of installed plugins.
When the operation is finished, callback
will be called. You can then call
webkit_web_context_get_plugins_finish()
to get the result of the operation.
|
a WebKitWebContext |
|
a GCancellable or NULL to ignore. [allow-none]
|
|
a GAsyncReadyCallback to call when the request is satisfied. [scope async] |
|
the data to pass to callback function. [closure] |
GList * webkit_web_context_get_plugins_finish (WebKitWebContext *context
,GAsyncResult *result
,GError **error
);
Finish an asynchronous operation started with webkit_web_context_get_plugins.
|
a WebKitWebContext |
|
a GAsyncResult |
|
return location for error or NULL to ignore |
Returns : |
a GList of WebKitPlugin. You must free the GList with
g_list_free() and unref the WebKitPlugins with g_object_unref() when you're done with them. [element-type WebKitPlugin][transfer full]
|
"download-started"
signalvoid user_function (WebKitWebContext *context,
WebKitDownload *download,
gpointer user_data) : Run Last
This signal is emitted when a new download request is made.
|
the WebKitWebContext |
|
the WebKitDownload associated with this event |
|
user data set when the signal handler was connected. |