summaryrefslogtreecommitdiff
path: root/gtk/gtkcontainer.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2001-03-22 20:59:37 +0000
committerHavoc Pennington <hp@src.gnome.org>2001-03-22 20:59:37 +0000
commit23b98cc1ec97aa5b50c28af204eb6d3fe7bf00c6 (patch)
tree3364901642e1b3dff5ab53591d77cc76849ac4e7 /gtk/gtkcontainer.h
parentc2c98d9e120a0ed4493c7743c9e79ef5b71fb5b1 (diff)
downloadgdk-pixbuf-23b98cc1ec97aa5b50c28af204eb6d3fe7bf00c6.tar.gz
Add ability to override the focus chain for a container explicitly
2001-03-22 Havoc Pennington <hp@redhat.com> * gtk/gtkcontainer.c (gtk_container_set_focus_chain): (gtk_container_unset_focus_chain): Add ability to override the focus chain for a container explicitly
Diffstat (limited to 'gtk/gtkcontainer.h')
-rw-r--r--gtk/gtkcontainer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h
index 9b725b89f..fa1c03add 100644
--- a/gtk/gtkcontainer.h
+++ b/gtk/gtkcontainer.h
@@ -62,6 +62,7 @@ struct _GtkContainer
guint need_resize : 1;
guint resize_mode : 2;
guint reallocate_redraws : 1;
+ guint has_focus_chain : 1;
/* The list of children that requested a resize
*/
@@ -134,6 +135,10 @@ void gtk_container_propagate_expose (GtkContainer *container,
GtkWidget *child,
GdkEventExpose *event);
+void gtk_container_set_focus_chain (GtkContainer *container,
+ GList *focusable_widgets);
+void gtk_container_unset_focus_chain (GtkContainer *container);
+
/* Widget-level methods */
void gtk_container_set_reallocate_redraws (GtkContainer *container,