Ardour
9.0-pre0-350-gf17a656217
|
Go to the source code of this file.
Classes | |
struct | _GtkListStore |
struct | _GtkListStoreClass |
Macros | |
#define | GTK_TYPE_LIST_STORE (gtk_list_store_get_type ()) |
#define | GTK_LIST_STORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LIST_STORE, GtkListStore)) |
#define | GTK_LIST_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_STORE, GtkListStoreClass)) |
#define | GTK_IS_LIST_STORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LIST_STORE)) |
#define | GTK_IS_LIST_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_STORE)) |
#define | GTK_LIST_STORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LIST_STORE, GtkListStoreClass)) |
Typedefs | |
typedef struct _GtkListStore | GtkListStore |
typedef struct _GtkListStoreClass | GtkListStoreClass |
#define GTK_IS_LIST_STORE | ( | obj | ) | (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LIST_STORE)) |
Definition at line 38 of file gtkliststore.h.
#define GTK_IS_LIST_STORE_CLASS | ( | klass | ) | (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_STORE)) |
Definition at line 39 of file gtkliststore.h.
#define GTK_LIST_STORE | ( | obj | ) | (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LIST_STORE, GtkListStore)) |
Definition at line 36 of file gtkliststore.h.
#define GTK_LIST_STORE_CLASS | ( | klass | ) | (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_STORE, GtkListStoreClass)) |
Definition at line 37 of file gtkliststore.h.
#define GTK_LIST_STORE_GET_CLASS | ( | obj | ) | (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LIST_STORE, GtkListStoreClass)) |
Definition at line 40 of file gtkliststore.h.
#define GTK_TYPE_LIST_STORE (gtk_list_store_get_type ()) |
Definition at line 35 of file gtkliststore.h.
typedef struct _GtkListStore GtkListStore |
Definition at line 32 of file gtkliststore.h.
typedef struct _GtkListStoreClass GtkListStoreClass |
Definition at line 32 of file gtkliststore.h.
void gtk_list_store_append | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter | ||
) |
void gtk_list_store_clear | ( | GtkListStore * | list_store | ) |
GType gtk_list_store_get_type | ( | void | ) |
void gtk_list_store_insert | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
gint | position | ||
) |
void gtk_list_store_insert_after | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
GtkTreeIter * | sibling | ||
) |
void gtk_list_store_insert_before | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
GtkTreeIter * | sibling | ||
) |
void gtk_list_store_insert_with_values | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
gint | position, | ||
... | |||
) |
void gtk_list_store_insert_with_valuesv | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
gint | position, | ||
gint * | columns, | ||
GValue * | values, | ||
gint | n_values | ||
) |
gboolean gtk_list_store_iter_is_valid | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter | ||
) |
void gtk_list_store_move_after | ( | GtkListStore * | store, |
GtkTreeIter * | iter, | ||
GtkTreeIter * | position | ||
) |
void gtk_list_store_move_before | ( | GtkListStore * | store, |
GtkTreeIter * | iter, | ||
GtkTreeIter * | position | ||
) |
GtkListStore* gtk_list_store_new | ( | gint | n_columns, |
... | |||
) |
GtkListStore* gtk_list_store_newv | ( | gint | n_columns, |
GType * | types | ||
) |
void gtk_list_store_prepend | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter | ||
) |
gboolean gtk_list_store_remove | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter | ||
) |
void gtk_list_store_reorder | ( | GtkListStore * | store, |
gint * | new_order | ||
) |
void gtk_list_store_set | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
... | |||
) |
void gtk_list_store_set_column_types | ( | GtkListStore * | list_store, |
gint | n_columns, | ||
GType * | types | ||
) |
void gtk_list_store_set_valist | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
va_list | var_args | ||
) |
void gtk_list_store_set_value | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
gint | column, | ||
GValue * | value | ||
) |
void gtk_list_store_set_valuesv | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
gint * | columns, | ||
GValue * | values, | ||
gint | n_values | ||
) |
void gtk_list_store_swap | ( | GtkListStore * | store, |
GtkTreeIter * | a, | ||
GtkTreeIter * | b | ||
) |