diff options
author | Lars Hamann <lars@gtk.org> | 1998-11-18 23:55:10 +0000 |
---|---|---|
committer | Lars Hamann <lars@src.gnome.org> | 1998-11-18 23:55:10 +0000 |
commit | 735132708950a2f9b39410bceb43434ba06d9be1 (patch) | |
tree | d08c29afa17d41a4c7a950a2754cd4ac4e2ede16 /gtk/gtkclist.h | |
parent | 3725bc3ad9f8a4669674b51b351c72be8a1b1d89 (diff) | |
download | gtk+-735132708950a2f9b39410bceb43434ba06d9be1.tar.gz |
return the nth GtkCTreeNode in row_list. (from Samuel Solon
Thu Nov 19 00:15:27 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.c (gtk_ctree_node_nth): return the nth GtkCTreeNode
in row_list. (from Samuel Solon <ssolon@usa.net>)
* gtk/gtkclist.c (gtk_clist_get_column_title): return column title
(gtk_clist_get_column_widget): return column widget
Diffstat (limited to 'gtk/gtkclist.h')
-rw-r--r-- | gtk/gtkclist.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk/gtkclist.h b/gtk/gtkclist.h index 37a6d81eb5..c9948abd29 100644 --- a/gtk/gtkclist.h +++ b/gtk/gtkclist.h @@ -429,11 +429,19 @@ void gtk_clist_set_column_title (GtkCList *clist, gint column, const gchar *title); +/* returns the title of column. Returns NULL if title is not set */ +gchar * gtk_clist_get_column_title (GtkCList *clist, + gint column); + /* set a widget instead of a title for the column title button */ void gtk_clist_set_column_widget (GtkCList *clist, gint column, GtkWidget *widget); +/* returns the column widget */ +GtkWidget * gtk_clist_get_column_widget (GtkCList *clist, + gint column); + /* set the justification on a column */ void gtk_clist_set_column_justification (GtkCList *clist, gint column, |