diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2014-05-01 20:04:32 +0200 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2014-10-05 17:14:25 -0400 |
commit | 1edbaec7b77218e659797d77daed8d0a84123e5e (patch) | |
tree | bf8f53789946d4f1b354409855a4a222a78f6d41 /docs/reference | |
parent | 682bca095068d2823a129bebae42bb4f27f3e118 (diff) | |
download | glib-wip/listmodel.tar.gz |
Add GListModelwip/listmodel
GListModel is an interface that represents a dynamic list of GObjects.
Also add GListStore, a simple implementation of GListModel that stores
all objects in memory.
https://bugzilla.gnome.org/show_bug.cgi?id=729351
Diffstat (limited to 'docs/reference')
-rw-r--r-- | docs/reference/gio/gio-sections.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/reference/gio/gio-sections.txt b/docs/reference/gio/gio-sections.txt index 80980fd6d..2c0bee2ad 100644 --- a/docs/reference/gio/gio-sections.txt +++ b/docs/reference/gio/gio-sections.txt @@ -4244,3 +4244,40 @@ G_TYPE_NOTIFICATION G_TYPE_NOTIFICATION_BACKEND g_notification_get_type </SECTION> + +<SECTION> +<FILE>glistmodel</FILE> +<TITLE>GListModel</TITLE> +GListModel +g_list_model_new +<SUBSECTION> +g_list_model_get_type +g_list_model_get_item_type +g_list_model_get_n_items +g_list_model_get_item +g_list_model_items_changed +<SUBSECTION> +G_TYPE_LIST_MODEL +G_LIST_MODEL +G_IS_LIST_MODEL +G_LIST_MODEL_GET_IFACE +</SECTION> + +<SECTION> +<FILE>gliststore</FILE> +<TITLE>GListStore</TITLE> +GListStore +g_list_store_new +<SUBSECTION> +g_list_store_get_type +g_list_store_new +g_list_store_insert +g_list_store_append +g_list_store_remove +g_list_store_remove_all +g_list_store_splice +<SUBSECTION> +#define G_TYPE_LIST_STORE (g_list_store_get_type ()) +#define G_LIST_STORE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_LIST_STORE, GListStore)) +#define G_IS_LIST_STORE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_LIST_STORE)) +</SECTION> |