|
Xm/XmGetTabGroup(o) -- Returns the widget ID of a tab group
|
XmGetTabGroup returns the widget ID of the tab group that contains the specified widget. widget Specifies a widget ID within a tab group |
Xm/XmGetTearOffControl(o) -- A RowColumn function that obtains the
|
XmGetTearOffControl provides the application with the means for obtaining the widget ID of the internally created tearoff control in a tear-off menu. RowColumn creates a tear-off control for a PulldownMenu or PopupMenu when the XmNtearOffModel resource is initialized or set to XmTEAR_OFF_ENABLED. The tear-off control is a widget that appears as the first element in the menu. The user tears off the menu by means of mouse or keyboard events in the tear-off control. The tear-off control has Separat... |
|
Xm/XmGetVisibility(o) -- A function that determines if a widget is visible
|
XmGetVisibility returns the visibility state of the specified widget. widget Specifies the ID of the widget |
Xm/XmGetXmDisplay(o) -- A Display function that returns the XmDisplay object ID for a specified display
|
XmGetXmDisplay returns the XmDisplay object ID associated with a display. The application can access Display resources by using XtGetValues. displaySpecifies the display for which the XmDisplay object ID is to be returned For a complete definition of Display and its associated resources, see XmDisplay(3X). |
Xm/XmGetXmScreen(o) -- A Screen function that returns the XmScreen object ID for a specified screen
|
XmGetXmScreen returns the XmScreen object ID associated with a screen. The application can access and manipulate Screen resources by using XtGetValues and XtSetValues. screen Specifies the screen for which the XmScreen ID is to be returned For a complete definition of Screen and its associated resources, see XmScreen(3X). |
Xm/XmInstallImage(o) -- A pixmap caching function that adds an image to the pixmap cache
|
XmInstallImage stores an image in an image cache that can later be used to generate a pixmap. Part of the installation process is to extend the resource converter used to reference these images. The resource converter is given the image name so that the image can be referenced in a .Xdefaults file. Since an image can be referenced by a widget through its pixmap resources, it is up to the application to ensure that the image is installed before the widget is created. image Points to the image str... |
Xm/XmInternAtom(o) -- A function that returns an atom for a given name
|
XmInternAtom returns an atom for a given name. It mirrors the Xlib interfaces for atom management, but provides client-side caching. When and where caching is provided in Xlib, the routines will become pseudonyms for the Xlib routines. display Specifies the connection to the X server name Specifies the name associated with the atom you want returned only_if_exists Specifies a Boolean value that indicates whether XInternAtom creates the atom... |
Xm/XmIsMotifWMRunning(o) -- A function that determines whether the window manager is running
|
XmIsMotifWMRunning lets a user know whether the Motif Window Manager is running on a screen that contains a specific widget hierarchy. This function first sees whether the _MOTIF_WM_INFO property is present on the root window of the shell's screen. If it is, its window field is used to query for the presence of the specified window as a child of root. shell Specifies the shell whose screen will be tested for mwm's presence.... |
Xm/XmIsTraversable(o) -- A function that identifies whether a widget can be traversed
|
XmIsTraversable 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: o The widget and its ancestors are not being destroyed, are sensitive, and have a value of True for XmNtraversalOn. o The widget and its ancestors are realized, managed, and (except for gadgets) mapped. o Some part of the widget's rectangular area is unobscured by the widget's ancestors,... |
Xm/XmLabel(o) -- The Label widget class
|
Label is an instantiable widget and is also used as a superclass for other button widgets, such as PushButton and ToggleButton. The Label widget does not accept any button or key input, and the help callback is the only callback defined. Label also receives enter and leave events. Label can contain either text or a pixmap. Label text is a compound string. Refer to the OSF/Motif Programmer's Guide for more information on compound strings. The text can be multilingual, multiline, and/or multifont... |
Xm/XmLabelGadget(o) -- The LabelGadget widget class
|
LabelGadget is an instantiable widget and is also used as a superclass for other button gadgets, such as PushButtonGadget and ToggleButtonGadget. LabelGadget can contain either text or a pixmap. LabelGadget text is a compound string. Refer to the OSF/Motif Programmer's Guide for more information on compound strings. The text can be multilingual, multiline, and/or multifont. When a LabelGadget is insensitive, its text is stippled, or the user-supplied insensitive pixmap is displayed. LabelGadget... |
Xm/XmList(o) -- The List widget class
|
List allows a user to select one or more items from a group of choices. Items are selected from the list in a variety of ways, using both the pointer and the keyboard. List operates on an array of compound strings that are defined by the application. Each compound string becomes an item in the List, with the first compound string becoming the item in position 1, the second becoming the item in position 2, and so on. The size of the List is set by specifying the number of items that are visible. ... |
Xm/XmListAddItem(o) -- A List function that adds an item to the list
|
XmListAddItem adds an item to the list at the given position. When the item is inserted into the list, it is compared with the current XmNselectedItems list. If the new item matches an item on the selected list, it appears selected. widget Specifies the ID of the List to which an item is added. item Specifies the item to be added to the list. position Specifies the position of the new item in the list. A value of 1 makes the new item the first item in the list; a value of 2 makes it the second i... |
Xm/XmListAddItems(o) -- A List function that adds items to the list
|
XmListAddItems adds the specified items to the list at the given position. The first item_count items of the items array are added to the list. When the items are inserted into the list, they are compared with the current XmNselectedItems list. If any of the new items matches an item on the selected list, it appears selected. widget Specifies the ID of the List to which an item is added. items Specifies a pointer to the items to be added to the list. item_count Specifies the number of items in i... |
Xm/XmListAddItemsUnselected(o) -- A List function that adds items to a list
|
XmListAddItemsUnselected adds the specified items to the list at the given position. The inserted items remain unselected, even if they currently appear in the XmNselectedItems list. widget Specifies the ID of the List widget to add items to. items Specifies a pointer to the items to be added to the list. item_count Specifies the number of elements in items. This number must be non-negative. position Specifies the position of the first new item in the list. A value of 1 makes the first new item ... |