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.

Parameters

web_view

Type: WebKitWebView*

A WebKit.WebView.

The data is owned by the caller of the function.
load_event

Type: WebKitLoadEvent

Load event.

userdata

Type: void*

User data.

The argument can be NULL.
The data is owned by the caller of the function.