diff options
author | Benjamin Otte <otte@redhat.com> | 2010-09-06 11:34:07 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-09-26 15:11:36 +0200 |
commit | 0cbe62f943c5bd0fc71824b2415d7ee330ff815e (patch) | |
tree | d3183b3707952e85a31d24711c0eacdfa65fcc17 /gtk/gtkcontainer.h | |
parent | 90379ed68af798d26272da559c07ff6b6202202a (diff) | |
download | gtk+-0cbe62f943c5bd0fc71824b2415d7ee330ff815e.tar.gz |
API: Add gtk_container_propagate_draw()
Equivalent to gtk_container_propagate_expose(), just for the draw event.
Also port GtkContainer to the draw vfunc
Diffstat (limited to 'gtk/gtkcontainer.h')
-rw-r--r-- | gtk/gtkcontainer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h index f4376759a6..cabe5472af 100644 --- a/gtk/gtkcontainer.h +++ b/gtk/gtkcontainer.h @@ -119,6 +119,9 @@ void gtk_container_foreach (GtkContainer *container, gpointer callback_data); GList* gtk_container_get_children (GtkContainer *container); +void gtk_container_propagate_draw (GtkContainer *container, + GtkWidget *child, + cairo_t *cr); void gtk_container_propagate_expose (GtkContainer *container, GtkWidget *child, GdkEventExpose *event); |