|
XmInstallImage(3) -- A pixmap caching function that adds an image to the image 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 applicati... |
XmInternAtom(3) -- A macro that returns an atom for a given name
|
XmInternAtom returns an atom for a given name. The returned atom remains defined even after the client's connection closes. The returned atom becomes undefined when the last connection to the X server closes. display Specifies the connection to the X server name Specifies the name associated with the atom you want returned. The value of name is case dependent. only_if_exists Specifies a Boolean v... |
XmIsMotifWMRunning(3) -- 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 b... |
XmIsTraversable(3) -- 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: + The widget and its ancestors are not being destroyed, are sensitive, and have a value of True for XmNtraversalOn. + The widget and its ancestors are realized, managed, and (except for gadg... |
XmLabel(3) -- 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 Motif Programmer's Guide for... |
XmLabelGadget(3) -- 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 Motif Programmer's Guide for more information on compound strings. The text can be multilingual, multiline, and/or multifont. When a LabelGadget is inse... |
XmList(3) -- 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 pos... |
XmListAddItem(3) -- 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 ... |
XmListAddItems(3) -- 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 Spe... |
XmListAddItemsUnselected(3) -- 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 nonnegative. positi... |
XmListAddItemUnselected(3) -- A List function that adds an item to the list
|
XmListAddItemUnselected adds an item to the list at the given position. The item does not appear selected, even if it matches an item in the current XmNselectedItems list. widget Specifies the ID of the List from whose list 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 i... |
XmListDeleteAllItems(3) -- A List function that deletes all items from the list
|
XmListDeleteAllItems deletes all items from the list. widget Specifies the ID of the List from whose list the items are deleted For a complete definition of List and its associated resources, see XmList(3). |
XmListDeleteItem(3) -- A List function that deletes an item from the list
|
XmListDeleteItem deletes the first item in the list that matches item. A warning message appears if the item does not exist. widget Specifies the ID of the List from whose list an item is deleted. item Specifies the text of the item to be deleted from the list. If item appears more than once in the List, only the first occurrence is matched. For a complete definition of List and its associated res... |