Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include <gdk/gdk.h>
#include <gtk/deprecated/gtktreemodel.h>
#include <gtk/deprecated/gtktreesortable.h>
Go to the source code of this file.
Data Structures | |
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 _GtkListStorePrivate | GtkListStorePrivate |
typedef struct _GtkListStoreClass | GtkListStoreClass |
#define GTK_IS_LIST_STORE | ( | obj | ) | (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LIST_STORE)) |
Definition at line 35 of file gtkliststore.h.
#define GTK_IS_LIST_STORE_CLASS | ( | klass | ) | (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LIST_STORE)) |
Definition at line 36 of file gtkliststore.h.
#define GTK_LIST_STORE | ( | obj | ) | (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LIST_STORE, GtkListStore)) |
Definition at line 33 of file gtkliststore.h.
#define GTK_LIST_STORE_CLASS | ( | klass | ) | (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LIST_STORE, GtkListStoreClass)) |
Definition at line 34 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 37 of file gtkliststore.h.
#define GTK_TYPE_LIST_STORE (gtk_list_store_get_type ()) |
Definition at line 32 of file gtkliststore.h.
typedef struct _GtkListStore GtkListStore |
Definition at line 39 of file gtkliststore.h.
typedef struct _GtkListStoreClass GtkListStoreClass |
Definition at line 41 of file gtkliststore.h.
typedef struct _GtkListStorePrivate GtkListStorePrivate |
Definition at line 40 of file gtkliststore.h.
void gtk_list_store_append | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter ) |
void gtk_list_store_clear | ( | GtkListStore * | list_store | ) |
GDK_AVAILABLE_IN_ALL GType gtk_list_store_get_type | ( | void | ) |
void gtk_list_store_insert | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
int | 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, | ||
int | position, | ||
... ) |
void gtk_list_store_insert_with_valuesv | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
int | position, | ||
int * | columns, | ||
GValue * | values, | ||
int | 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 | ( | int | n_columns, |
... ) |
GtkListStore * gtk_list_store_newv | ( | int | 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, |
int * | new_order ) |
void gtk_list_store_set | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
... ) |
void gtk_list_store_set_column_types | ( | GtkListStore * | list_store, |
int | 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, | ||
int | column, | ||
GValue * | value ) |
void gtk_list_store_set_valuesv | ( | GtkListStore * | list_store, |
GtkTreeIter * | iter, | ||
int * | columns, | ||
GValue * | values, | ||
int | n_values ) |
void gtk_list_store_swap | ( | GtkListStore * | store, |
GtkTreeIter * | a, | ||
GtkTreeIter * | b ) |