|
NAMEXmIsTraversable — A function that identifies whether a widget can be traversedSYNOPSIS#include <Xm/Xm.h> Boolean XmIsTraversable( Widget widget); DESCRIPTIONXmIsTraversable determines whether the specified widget is eligible to receive focus through keyboard traversal. In general, a widget is eligible to receive focus when all of the following conditions are true:
Some widgets may not be eligible to receive focus even if they meet all these conditions. For example, most managers cannot receive focus through keyboard traversal. Some widgets may be eligible to receive focus under particular conditions. For example, a DrawingArea is eligible to receive focus if it meets the conditions above and has no child whose XmNtraversalOn resource is True. Note that when all widgets in a shell hierarchy have been made untraversable, they are considered to have lost focus. When a widget in this hierarchy is made traversable again, it regains focus. XmIsTraversable may return unexpected results when widget or its ancestors are overlapped by their siblings.
RETURNReturns True if the widget is eligible to receive focus through keyboard traversal; otherwise, returns False.RELATEDXmGetVisibility(3) and XmProcessTraversal(3). Visit the GSP FreeBSD Man Page Interface. |