Function
Coghandle_web_view_load_changed
Declaration [src]
void
cog_handle_web_view_load_changed (
WebKitWebView* web_view,
WebKitLoadEvent load_event,
void* userdata
)
Description [src]
Handles page load status changes, writing status reports to the standard error output.
This function is typically used as a callback for the WebKit.WebView::load-changed signal:
WebKitWebView* web_view = webkit_web_view_new(...);
g_signal_connect(web_view, "load-changed",
G_CALLBACK(cog_handle_web_view_load_changed), NULL);
This function is not directly available to language bindings |