Unix and Linux Discussions Tagged with reference |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
26,739 |
What is on Your Mind? |
|
|
|
5 |
10,975 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
0 |
1,137 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,987 |
Programming |
|
|
|
0 |
2,260 |
Software Releases - RSS News |
|
|
|
0 |
1,294 |
Software Releases - RSS News |
|
|
|
0 |
1,983 |
Solaris BigAdmin RSS |
|
|
|
0 |
1,437 |
OS X Support RSS |
|
|
|
6 |
6,049 |
Programming |
|
|
|
6 |
20,383 |
Programming |
|
|
|
0 |
1,146 |
Software Releases - RSS News |
|
|
|
2 |
3,965 |
Programming |
|
|
|
2 |
3,145 |
Shell Programming and Scripting |
|
|
|
0 |
1,260 |
Complex Event Processing RSS News |
|
|
|
0 |
1,457 |
Software Releases - RSS News |
|
|
|
0 |
1,632 |
Complex Event Processing RSS News |
|
|
|
0 |
1,306 |
Complex Event Processing RSS News |
|
|
|
0 |
1,900 |
Complex Event Processing RSS News |
|
|
|
0 |
1,455 |
UNIX and Linux RSS News |
|
|
|
2 |
6,844 |
AIX |
|
|
|
8 |
6,716 |
Shell Programming and Scripting |
|
|
|
0 |
1,804 |
UNIX and Linux RSS News |
|
|
|
0 |
1,482 |
Complex Event Processing RSS News |
|
|
|
2 |
16,387 |
Windows & DOS: Issues & Discussions |
|
|
|
2 |
5,160 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,971 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
5,565 |
Programming |
|
|
|
2 |
6,890 |
Programming |
|
|
|
3 |
2,933 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,131 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,862 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,821 |
Programming |
|
|
|
4 |
9,192 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,685 |
IP Networking |
|
|
|
1 |
4,282 |
Programming |
|
|
|
3 |
9,095 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,523 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,360 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,117 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,077 |
UNIX for Dummies Questions & Answers |
XtNameToWidget(3Xt) MIT X11R4 XtNameToWidget(3Xt)
Name
XtNameToWidget, XtWidgetToWindow - translating strings to widgets or widgets to windows
Syntax
Widget XtNameToWidget(reference, names);
Widget reference;
String names;
Widget XtWindowToWidget(display, window)
Display *display;
Window window;
Arguments
display Specifies the display on which the window is defined.
names Specifies the fully qualified name of the desired widget.
reference Specifies the widget from which the search is to start.
window Specify the window for which you want the widget.
Description
The function looks for a widget whose name is the first component in the specified names and that is a pop-up child of reference (or a nor-
mal child if reference is a subclass of It then uses that widget as the new reference and repeats the search after deleting the first com-
ponent from the specified names. If it cannot find the specified widget, returns NULL.
Note that the names argument contains the name of a widget with respect to the specified reference widget and can contain more than one
widget name (separated by periods) for widgets that are not direct children of the specified reference widget.
If more than one child of the reference widget matches the name, can return any of the children. The Intrinsics do not require that all
children of a widget have unique names. If the specified names contain more than one component and if more than one child matches the
first component, can return NULL if the single branch that it follows does not contain the named widget. That is, does not back up and
follow other matching branches of the widget tree.
The function translates the specified window and display pointer into the appropriate widget instance.
See Also
X Window System Toolkit: The Complete Programmer's Guide and Specification, Paul J. Asente and Ralph Swick
X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys
XtNameToWidget(3Xt)