|
XmSelectionBox(3) -- The SelectionBox widget class
|
SelectionBox is a general dialog widget that allows the user to select one item from a list. By default, a SelectionBox includes the following: + A scrolling list of alternatives + An editable text field for the selected alternative + Labels for the list and text field + Three or four buttons The default button labels are OK, Cancel, and Help. By default an Apply button is also created; if the par... |
XmSelectionBoxGetChild(3) -- A SelectionBox function that is used to access a component
|
XmSelectionBoxGetChild is used to access a component within a SelectionBox. The parameters given to the function are the SelectionBox widget and a value indicating which component to access. NOTE: This routine is obsolete and exists for compatibility with previous releases. Instead of calling XmSelectionBoxGetChild, you should call XtNameToWidget as described in the XmSelectionBox(3) reference pag... |
XmSeparator(3) -- The Separator widget class
|
Separator is a primitive widget that separates items in a display. Several different line drawing styles are provided, as well as horizontal or vertical orientation. The Separator line drawing is automatically centered within the height of the widget for a horizontal orientation and centered within the width of the widget for a vertical orientation. An XtSetValues with a new XmNseparatorType resiz... |
XmSeparatorGadget(3) -- The SeparatorGadget widget class
|
SeparatorGadget separates items in a display. Several line drawing styles are provided, as well as horizontal or vertical orientation. Lines drawn within the SeparatorGadget are automatically centered within the height of the gadget for a horizontal orientation and centered within the width of the gadget for a vertical orientation. An XtSetValues with a new XmNseparatorType resizes the widget to i... |
XmSetColorCalculation(3) -- A function to set the procedure used for default color calculation
|
XmSetColorCalculation sets the procedure to calculate default colors. This procedure is used to calculate the foreground, top shadow, bottom shadow, and select colors on the basis of a given background color. If called with an argument of NULL, it restores the default procedure used to calculate colors. color_proc Specifies the procedure to use for color calculation. Following is a description of ... |
XmSetFontUnit(3) -- A function that sets the font unit value for a display
|
XmSetFontUnit provides an external function to initialize font unit values. Applications may want to specify resolution-independent data based on a global font size. See the XmNunitType resource description in the reference pages for XmGadget, XmManager, and XmPrimitive for more information on resolution independence. This function sets the font units for all screens on the display. NOTE: XmSetFon... |
XmSetFontUnits(3) -- A function that sets the font unit value for a display
|
XmSetFontUnits provides an external function to initialize font unit values. Applications may want to specify resolution-independent data based on a global font size. This function must be called before any widgets with resolution-independent data are created. See the XmNunitType resource description in the reference pages for XmGadget, XmManager, and XmPrimitive for more information on resolution... |
XmSetMenuCursor(3) -- A function that modifies the menu cursor for a client
|
XmSetMenuCursor programmatically modifies the menu cursor for a client; after the cursor has been created by the client, this function registers the cursor with the menu system. After calling this function, the specified cursor is displayed whenever this client displays a Motif menu on the indicated display. The client can then specify different cursors on different displays. This function sets th... |
XmSetProtocolHooks(3) -- A VendorShell function that allows preactions and postactions to be executed when a protocol message is receiv
|
XmSetProtocolHooks is used by shells that want to have preactions and postactions executed when a protocol message is received from MWM. Since there is no guaranteed ordering in execution of event handlers or callback lists, this allows the shell to control the flow while leaving the protocol manager structures opaque. XmSetWMProtocolHooks is a convenience interface. It calls XmSetProtocolHooks wi... |
XmSetWMProtocolHooks(3) -- A VendorShell convenience interface that allows preactions and postactions to be executed when a protocol mess
|
XmSetWMProtocolHooks is a convenience interface. It calls XmSetProtocolHooks with the property value set to the atom returned by interning WM_PROTOCOLS. shell Specifies the widget with which the protocol property is associated protocol Specifies the protocol atom (or an int cast to Atom) prehook Specifies the procedure to call before calling entries on the client callback list pre_closure Specifie... |
XmSimpleSpinBox(3) -- a simple SpinBox widget class
|
The XmSimpleSpinBox widget is a user interface control to increment and decrement an arbitrary TextField. For example, it can be used to cycle through the months of the year or days of the month. Widget subclassing is not supported for the XmSimpleSpinBox widget class. |
XmSimpleSpinBoxAddItem(3) -- add an item to the XmSimpleSpinBox
|
The XmSimpleSpinBoxAddItem function adds the given item to the XmSimpleSpinBox at the given position. The w argument specifies the widget ID. The item argument specifies the XmString for the new item. The pos argument specifies the position of the new item. |
XmSimpleSpinBoxDeletePos(3) -- delete a XmSimpleSpinBox item
|
The XmSimpleSpinBoxDeletePos function deletes a specified item from a XmSimpleSpinBox widget. The w argument specifies the widget ID. The pos argument specifies the position of the item to be deleted. A value of 1 means the first item in the list; zero means the last item. |