summaryrefslogtreecommitdiff
path: root/gtk/gtkclist.h
diff options
context:
space:
mode:
authorJay Painter <jpaint@src.gnome.org>1998-01-24 19:14:42 +0000
committerJay Painter <jpaint@src.gnome.org>1998-01-24 19:14:42 +0000
commit3942cb76af880d5bfb23f66499540da199f11c9b (patch)
treec1c4bf67ab54b11d45f9bdaedc4cf1fce54a22d9 /gtk/gtkclist.h
parent6365ebc9eae9ea52f7395b33bcf23475149c883d (diff)
downloadgdk-pixbuf-3942cb76af880d5bfb23f66499540da199f11c9b.tar.gz
Changed static function names/reorganized to make more sense. -Jay
Diffstat (limited to 'gtk/gtkclist.h')
-rw-r--r--gtk/gtkclist.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/gtk/gtkclist.h b/gtk/gtkclist.h
index 8b1770c48..33d2a6cf5 100644
--- a/gtk/gtkclist.h
+++ b/gtk/gtkclist.h
@@ -87,13 +87,13 @@ struct _GtkCList
guint8 flags;
+ /* mem chunks */
+ GMemChunk *row_mem_chunk;
+ GMemChunk *cell_mem_chunk;
+
/* allocation rectangle after the conatiner_border_width
* and the width of the shadow border */
GdkRectangle internal_allocation;
-
- /* memory chunks */
- GMemChunk *row_mem_chunk;
- GMemChunk *cell_mem_chunk;
/* rows */
gint rows;
@@ -341,6 +341,10 @@ void gtk_clist_moveto (GtkCList * clist,
gfloat row_align,
gfloat col_align);
+/* returns true if the row is visible */
+gint gtk_clist_row_isvisable (GtkCList * clist,
+ gint row);
+
/* sets a given cell's text, replacing it's current contents */
void gtk_clist_set_text (GtkCList * clist,
gint row,