Struct

WebKitImageList

unstable since: 2.54

Description [src]

struct WebKitImageList {
  /* No available fields */
}

Represents a set of related images.

The list supports iterating over each WebKitImage:

g_autoptr(WebKitImageList) list = webkit_favicon_database_get_page_icons_finish(database, result, NULL);
for (gsize i = 0; i < webkit_image_list_get_length(list); i++) {
    WebKitImage *image = webkit_image_list_get(list, i);
    // Do something with "image".
}

Image lists can be obtained as the result of webkit_favicon_database_get_page_icons().

Available since: 2.54

Instance methods

webkit_image_list_get

Gets an image given its index.

unstable since: 2.54

webkit_image_list_get_length

Gets the number of elements in the image list.

unstable since: 2.54

webkit_image_list_ref

Atomically acquires a reference on the given image_list.

unstable since: 2.54

webkit_image_list_unref

Atomically releases a reference on the given image_list.

unstable since: 2.54