docs: add GTK_TREE_SORTABLE_*_COLUMN_ID to docs

This commit is contained in:
William Jon McCann 2014-01-21 15:40:50 -05:00
parent 1d7d6997e8
commit 650d25cdaf
2 changed files with 20 additions and 0 deletions

View File

@ -4430,6 +4430,8 @@ gtk_tree_selection_get_type
GtkTreeSortable
GtkTreeSortableIface
GtkTreeIterCompareFunc
GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID
GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID
gtk_tree_sortable_sort_column_changed
gtk_tree_sortable_get_sort_column_id
gtk_tree_sortable_set_sort_column_id

View File

@ -35,6 +35,24 @@ G_BEGIN_DECLS
#define GTK_IS_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_SORTABLE))
#define GTK_TREE_SORTABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
/**
* GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID:
*
* The GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID can be used to make a
* #GtkTreeSortable use the default sort function.
*
* See also gtk_tree_sortable_set_sort_column_id()
*/
/**
* GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID:
*
* The GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID can be used to make a
* #GtkTreeSortable use no sorting.
*
* See also gtk_tree_sortable_set_sort_column_id()
*/
enum {
GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID = -1,
GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID = -2