diff options
author | Anders Carlsson <andersca@src.gnome.org> | 2002-07-29 21:11:23 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@src.gnome.org> | 2002-07-29 21:11:23 +0000 |
commit | 0c87100036cbdf9bae8d8d1a575a3a1bdf890cc6 (patch) | |
tree | edca13410fe441e6b65a34541b8f443c687321f3 /gtk/gtkiconview.h | |
parent | cd44863bd654c2c1ac75f832e4e48e37d3601495 (diff) | |
download | gtk+-0c87100036cbdf9bae8d8d1a575a3a1bdf890cc6.tar.gz |
Changes, bug fixes etc.
Diffstat (limited to 'gtk/gtkiconview.h')
-rw-r--r-- | gtk/gtkiconview.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkiconview.h b/gtk/gtkiconview.h index 6244e0aca8..ae6be00c0a 100644 --- a/gtk/gtkiconview.h +++ b/gtk/gtkiconview.h @@ -30,9 +30,7 @@ G_BEGIN_DECLS #define EGG_IS_ICON_LIST_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), EGG_TYPE_ICON_LIST)) #define EGG_ICON_LIST_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), EGG_TYPE_ICON_LIST, EggIconListClass)) -#define EGG_TYPE_ICON_LIST_ITEM (egg_icon_list_item_get_type ()) -#define EGG_ICON_LIST_ITEM(obj) (GTK_CHECK_CAST ((obj), EGG_TYPE_ICON_LIST_ITEM, EggIconListItem)) -#define EGG_IS_ICON_LIST_ITEM(obj) (GTK_CHECK_TYPE ((obj), EGG_TYPE_ICON_LIST_ITEM)) +#define EGG_TYPE_ICON_LIST_ITEM (egg_icon_list_item_get_type ()) typedef struct _EggIconList EggIconList; typedef struct _EggIconListClass EggIconListClass; @@ -84,6 +82,8 @@ GtkWidget *egg_icon_list_new (void); EggIconListItem * egg_icon_list_item_new (GdkPixbuf *icon, const gchar *label); +void egg_icon_list_item_ref (EggIconListItem *item); +void egg_icon_list_item_unref (EggIconListItem *item); void egg_icon_list_item_set_data (EggIconListItem *item, gpointer data); void egg_icon_list_item_set_data_full (EggIconListItem *item, @@ -108,6 +108,7 @@ void egg_icon_list_insert_item_after (EggIconList EggIconListItem *item); void egg_icon_list_remove_item (EggIconList *icon_list, EggIconListItem *item); +void egg_icon_list_clear (EggIconList *icon_list); EggIconListItem * egg_icon_list_get_item_at_pos (EggIconList *icon_list, gint x, gint y); |