XtSetSensitive(3Xt) XT FUNCTIONS XtSetSensitive(3Xt)
XtSetSensitive, XtIsSensitive - set and check a widget's
sensitivity state
void XtSetSensitive(Widget w, Boolean sensitive);
Boolean XtIsSensitive(Widget w);
sensitive Specifies a Boolean value that indicates whether
the widget should receive keyboard and pointer
events.
w Specifies the widget.
The XtSetSensitive function first calls XtSetValues on the
current widget with an argument list specifying that the
sensitive field should change to the new value. It then
recursively propagates the new value down the managed chil-
dren tree by calling XtSetValues on each child to set the
ancestor_sensitive to the new value if the new values for
sensitive and the child's ancestor_sensitive are not the
same.
XtSetSensitive calls XtSetValues to change sensitive and
ancestor_sensitive. Therefore, when one of these changes,
the widget's set_values procedure should take whatever
display actions are needed (for example, greying out or
stippling the widget).
XtSetSensitive maintains the invariant that if parent has
either sensitive or ancestor_sensitive False, then all chil-
dren have ancestor_sensitive False.
The XtIsSensitive function returns True or False to indicate
whether or not user input events are being dispatched. If
both core.sensitive and core.ancestor_sensitive are True,
XtIsSensitive returns True; otherwise, it returns False.
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface
XFree86 Version 4.5.0 1
Generated on 2012-02-20 02:47:02 by $MirOS: src/scripts/roff2htm,v 1.70 2011/12/03 18:21:12 tg Exp $
These manual pages and other documentation are copyrighted by their respective writers;
their source is available at our CVSweb,
AnonCVS, and other mirrors. The rest is Copyright © 2002‒2011 The MirOS Project, Germany.
This product includes material
provided by Thorsten Glaser.
This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report – diffs preferred.