diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-07-19 14:57:15 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-07-19 14:57:15 +0000 |
commit | aa49527fa78bf5b3a3f1394092b248e27e1bfa3f (patch) | |
tree | a1b7651c9e379ab1f7ffe2af68727cdccdf682e6 /docs/widget_system.txt | |
parent | 8f2bf7976d73ba58b808002268c49a19e9b586ee (diff) | |
download | gtk+-aa49527fa78bf5b3a3f1394092b248e27e1bfa3f.tar.gz |
Enforce the widget/child realization/mapping invariants.
Sat Jul 7 02:50:14 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_parent): Enforce
the widget/child realization/mapping invariants.
* gtk/gtkwidget.[ch] gtk/gtkprivate.h: Add functions
gtk_widget_[get/set]_child_visible() to control
whether visible children of a mapped window are
mapped.
* docs/widget_system.txt: Updated for changes in
container contract, and addition of GTK_CHILD_VISIBLE.
* gtk/gtkcontainer.c: Add generic map()/unmap()
functions that work for almost all containers.
* gtk/gtknotebook.c gtk/gtkpacker.c: Use
gtk_widget_set_child_visible() where necessary.
* gtk/*.c: Remove excess map(), unmap(), and
realization/mapping invariant enforcing code
from many containers.
Diffstat (limited to 'docs/widget_system.txt')
-rw-r--r-- | docs/widget_system.txt | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/docs/widget_system.txt b/docs/widget_system.txt index 1c6428af11..26efd02acd 100644 --- a/docs/widget_system.txt +++ b/docs/widget_system.txt @@ -88,6 +88,14 @@ GTK_VISIBLE: Set by gtk_widget_hide. Implies that a widget is not onscreen, therefore !GTK_MAPPED. +GTK_CHILD_VISIBLE + Set by gtk_widget_set_child_visible, and if FALSE indicates that + the widget should not be mapped even if the parent is mapped + and visible. Containers like GtkNotebook use this flag. + A private flag, not a public flag, so if you need to check + this flag, you should call gtk_widget_get_child_visible(). + (Should be very rarely necesary.) + GTK_SENSITIVE: Set and unset by gtk_widget_set_sensitive. The sensitivity of a widget determines whether it will receive @@ -228,10 +236,12 @@ In the following 5) if !GTK_WIDGET_TOPLEVEL (widget): GTK_WIDGET_MAPPED (widget) => GTK_WIDGET_VISIBLE (widget) + => GTK_WIDGET_CHILD_VISIBLE (widget) => GTK_WIDGET_REALIZED (widget) widget->parent && GTK_WIDGET_MAPPED (widget->parent) && - GTK_WIDGET_VISIBLE (widget) => GTK_WIDGET_MAPPED (widget) + GTK_WIDGET_VISIBLE (widget) && GTK_WIDGET_CHILD_VISIBLE + => GTK_WIDGET_MAPPED (widget) Note:, the definition @@ -305,18 +315,9 @@ Adding to a container When a widget is added to a container, the container: - 1) calls gtk_widget_set_parent (widget, container) - 2) calls gtk_widget_set_parent_window (widget, window) if + 1) calls gtk_widget_set_parent_window (widget, window) if the widget is being added to something other than container->window - 3) if container is realized, and not widget, realizes widget - 4) if container is mapped, and not widget and widget is GTK_VISIBLE, - maps widget - 5) Queues a resize if the widget is mapped - -Note: It would be nice to remove 3) and 4) out of widget specific code - since they are of the invariant-enforcing nature, but it is - a bit hard, since they can't be done until after 2) - + 2) calls gtk_widget_set_parent (widget, container) Removing from a container ------------------------- @@ -369,7 +370,9 @@ The Map signal 1) Set the MAPPED flag 2) If the widget has any windows, gdk_window_show those windows 3) call gtk_widget_map for all child widgets that are - VISIBLE and !MAPPED. + VISIBLE, CHILD_VISIBLE and !MAPPED. (A widget will only + be !CHILD_VISIBLE if the container set it that way, so + most containers will not have to check this.) 3) Do any other functions related to putting the widget onscreen. (for instance, showing extra popup windows...) |