XtName(3Xt) XT FUNCTIONS XtName(3Xt)NAME
XtName - obtain widget's name
SYNTAX
String XtName(Widget w);
ARGUMENTS
w Specifies the widget.
DESCRIPTION
XtName returns the widget's name.
SEE ALSO
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface
XFree86 Version 4.7.0 XtName(3Xt)
Check Out this Related Man Page
XtNameToWidget(3Xt) XT FUNCTIONS XtNameToWidget(3Xt)NAME
XtNameToWidget, XtWindowToWidget - translating strings to widgets or widgets to windows
SYNTAX
Widget XtNameToWidget(Widget reference, String names);
Widget XtWindowToWidget(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 XtNameToWidget function looks for a widget whose name is the first component in the specified names and that is a pop-up child of ref-
erence (or a normal child if reference is a subclass of compositeWidgetClass). It then uses that widget as the new reference and repeats
the search after deleting the first component from the specified names. If it cannot find the specified widget, XtNameToWidget 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, XtNameToWidget 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, XtNameToWidget can return NULL if the single branch that it follows does not contain the named widget. That
is, XtNameToWidget does not back up and follow other matching branches of the widget tree.
The XtWindowToWidget function translates the specified window and display pointer into the appropriate widget instance.
SEE ALSO
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface
XFree86 Version 4.7.0 XtNameToWidget(3Xt)
Hi,
I have a file which contains 1000's of lines. Each line is a log which is pretty long. So i want to split the each line based on 3 category.
1> Date
2><REQUEST>
3><RESPONSE>
So below is the example of a line.
2010-11-16 00:45:12,314<REQUEST><VALIDATION-ERROR><soapenv:Envelope... (16 Replies)
Hi, I want to check out a word in the text file and generate a clear report for me to see...
The text file content:
Content:
............
20120608:
20120608:
............
20120608:
..........
2012031201: , hime]
End of the file
My expected output is:
Full TXT:
manatsu
TXT:... (3 Replies)
Hi everyone, I am struggling with something that I thought it would be really easy. I want to disable snmpd, but every time y reboot my server, it starts again. I've commented it out on the rc.tcpip file, but still it starts automatically.
# Start up the Simple Network Management Protocol (SNMP)... (4 Replies)
Hi,
I am facing problems whie trying to do a passwordless ssh to Unix box from windows. Public key was generated using F-secure. When the F-secure client attempts it connects without password but when I try to use sftp2 in command line it prompts for password.
I have tried several options and... (0 Replies)
Hi,
I am facing problems whie trying to do a passwordless ssh to Unix box from windows. Public key was generated using F-secure. When the F-secure client attempts it connects without password but when I try to use sftp2 in command line it prompts for password.
I have tried several options and... (3 Replies)
Hi all,
Given here under a section of a script I am using.
SIMDIR="/home/Ins/forces"
cd $SIMDIR
for file in `ls *.forces`
do
basename=`echo $file | sed 's/\.*$//'`
extname=`echo $file | sed 's/*\(*\)\.\(.*\)/\2\1/'`
echo "Processing file: "$basename
python convert.py... (4 Replies)
Hi all,
I have a file >> data30000.stop. I want to have an output from it which will be the extension+the number i.e stop30000. I used
extname=`echo $file | sed 's/.*\.//'`
and I get stop, I want the 30000 so it reads stop30000
Thank you (6 Replies)
Hello All,
After getting inspired from Neo, I have started a bit of JS learning these days. Whenever I learn something I will try to post it here(as of now my learning is NOT exactly bookish where I am going chapter by chapter etc, it could be more like small-small project vice kind of), I... (25 Replies)
Hi,
i have here found a very good texteditor source code programmed in the MOTIF GUI language.
For myself i need NOTHING else to program.
To start from a very easy point of view i want to RUN this editor on my LINUX machine and type simple C code.
The reason for this post is that the text... (7 Replies)
Hi,
This is Solaris 9, which is service as NTP server for many unix clients. At backend, it it synching time with three GPS clocks. From past few days, I am noticing time reset to 1 second. Is this a problem ?
I was assuming that if it is a network issue or GPS clock connectivity issue, it... (14 Replies)