Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xtwindow(3xt) [xfree86 man page]

XtDisplay(3Xt)							   XT FUNCTIONS 						    XtDisplay(3Xt)

NAME
XtDisplay, XtDisplayOfObject, XtScreen, XtScreenOfObject, XtWindow, XtWindowOfObject - obtain window information about a widget SYNTAX
Display *XtDisplay(Widget w); Display *XtDisplayOfObject(Widget object); Screen *XtScreen(Widget w); Screen *XtScreenOfObject(Widget object); Window XtWindow(Widget w); Window XtWindowOfObject(Widget object); ARGUMENTS
w Specifies the widget. object Specifies the widget. DESCRIPTION
XtDisplay returns the display pointer for the specified widget. XtDisplayOfObject returns the display pointer for the specified object. XtScreen returns the screen pointer for the specified widget. XtScreenOfObject returns the screen pointer for the specified object. XtWindow returns the window of the specified widget. XtWindowOfObject returns the window of the specified object. SEE ALSO
X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface XFree86 Version 4.7.0 XtDisplay(3Xt)

Check Out this Related Man Page

XtNameToWidget(3Xt)													       XtNameToWidget(3Xt)

NAME
XtNameToWidget, XtWindowToWidget - translating strings to widgets or widgets to windows SYNOPSIS
Widget XtNameToWidget(reference, names); Widget reference; String names; Widget XtWindowToWidget(display, window) Display *display; Window window; ARGUMENTS
Specifies the display on which the window is defined. Specifies the fully qualified name of the desired widget. Specifies the widget from which the search is to start. 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 XtNameToWidget(3Xt)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

fluxbox

I have a problem witch my fluxbox, I can't configurie my keys. I wrote : Mod1 Tab :NextWindow Mod1 F1 :Workspace 1 Mod1 F2 :Workspace 2 Mod1 F3 :Workspace 3 Mod1 F4 :Workspace 4 and I can't use F1 , F2 ... any suggestion ?? thx cU (2 Replies)
Discussion started by: kezzol
2 Replies

2. Programming

Motif Application will not refresh

I have a Motif Application created with XtVaAppInitialize. I have two field widgets, created with XmCreateTextField. Now when I programmatically change the data in any of the two fields, the widgets don't get refreshed, only after a mouse over. I have tried anything, from including the "xrefresh"... (4 Replies)
Discussion started by: JenniferKuiper
4 Replies

3. UNIX for Beginners Questions & Answers

Help with xbindkeys in blackbox

For keybinds, have used bbkeys with blackbox. Now, I can not compile it on debian 10, so I try to use xbindkeys It work OK with commands, but not with blackbox actions, such as Alt+F4 to "close window", or Alt+Tab to "switch tasks", and so. I have searched the internet but I can't find data about... (1 Reply)
Discussion started by: cesar60
1 Replies