|
XmTabListInsertTabs(3) -- A convenience function that inserts tabs into a tab list
|
XmTabListInsertTabs creates a new tab list that includes the tabs in oldlist. This function copies specified tabs to the tab list at the given position. The first tab_count tabs of the tabs array are added to the tab list. If oldlist is NULL, XmTabListInsertTabs creates a new tab list containing only the tabs specified. oldlist Specifies the tab list to add the tabs to. The function deallocates ol... |
XmTabListRemoveTabs(3) -- A convenience function that removes noncontiguous tabs
|
XmTabListRemoveTabs removes noncontiguous tabs from a tab list. The function creates a new tab list by copying the contents of oldlist and removing all tabs whose corresponding positions appear in the position_list array. A warning message is displayed if a specified position is invalid; for example, if the value is a number greater than the number of tabs in the tab list. tablist Specifies the ta... |
XmTabListReplacePositions(3) -- A convenience function that creates a new tab list with replacement tabs
|
XmTabListReplacePositions creates a new tab list that contains the contents of oldlist, but with the tabs at the positions in position_list replaced with copies of the corresponding tabs in tabs. A warning message is displayed if a specified position is invalid; for example, if the value is a number greater than the number of tabs in the tab list. This function deallocates the original tab list af... |
XmTabListTabCount(3) -- A convenience function that counts the number of tabs
|
XmTabListTabCount counts the number of tabs in the specified tablist. tablist Specifies the tab list. |
XmTabSetValue(3) -- A convenience function that sets a tab stop
|
XmTabSetValue sets the value field of the XmTab structure associated with tab. tab Specifies the tab to set the value of. value Specifies the floating point number which represents the distance that the rendering of the XmString segment associated with tab will be offset. The offset is from either the beginning of the rendering or from the previous tab stop, depending on the setting for the offset... |
XmTargetsAreCompatible(3) -- A function that tests whether the target types match between a drop site and source object
|
XmTargetsAreCompatible determines whether the import targets of the destination match any of the export targets of a source. If there is at least one target in common, the function returns True. display Specifies the display connection. export_targets Specifies the list of target atoms associated with the source object. This resource identifies the selection targets the source can convert to. num_... |
XmText(3) -- The Text widget class
|
Text provides a single-line and multiline text editor for customizing both user and programmatic interfaces. It can be used for single-line string entry, forms entry with verification procedures, and fullwindow editing. It provides an application with a consistent editing system for textual data. The screen's textual data adjusts to the application writer's needs. Text provides separate callback... |
XmTextClearSelection(3) -- A Text function that clears the primary selection
|
XmTextClearSelection clears the primary selection in the Text widget. widget Specifies the Text widget ID. time Specifies the server time at which the selection value is desired. This should be the time of the event that triggered this request. One source of a valid time stamp is the function XtLastTimestampProcessed(). For a complete definition of Text and its associated resources, see XmText(3). |
XmTextCopy(3) -- A Text function that copies the primary selection to the clipboard
|
XmTextCopy copies the primary selected text to the clipboard. This routine calls the XmNconvertCallback procedures, possibly multiple times, with the selection member of the XmConvertCallbackStruct set to CLIPBOARD and with the parm member set to XmCOPY. widget Specifies the Text widget ID. time Specifies the server time at which the selection value is to be modified. This should be the time of th... |
XmTextCopyLink(3) -- A Text function that copies a link to the primary selection to the clipboard
|
XmTextCopyLink copies a link to the primary selected text to the clipboard. This routine calls the XmNconvertCallback procedures, possibly multiple times, with the selection member of the XmConvertCallbackStruct set to CLIPBOARD and with the parm member set to XmLINK. The Text widget itself does not copy any links; XmNconvertCallback procedures are responsible for copying the link to the clipboard... |
XmTextCut(3) -- A Text function that copies the primary selection to the clipboard and deletes the selected text
|
XmTextCut copies the primary selected text to the clipboard and then deletes the primary selected text. This routine calls the widget's XmNvalueChangedCallback and verification callbacks, either XmNmodifyVerifyCallback or XmNmodifyVerifyCallbackWcs, or both. If both verification callback lists are registered, the procedures of the XmNmodifyVerifyCallback list are executed first and the resulting ... |
XmTextDisableRedisplay(3) -- A Text function that temporarily prevents visual update of the Text widget
|
XmTextDisableRedisplay prevents redisplay of the specified Text widget even though its visual attributes have been modified. The visual appearance of the widget remains unchanged until XmTextEnableRedisplay is called, although the insertion cursor is not displayed. This allows an application to make multiple changes to the widget without causing intermediate visual updates. widget Specifies the Te... |
XmTextEnableRedisplay(3) -- A Text function that forces the visual update of a Text widget
|
XmTextEnableRedisplay is used in conjunction with XmTextDisableRedisplay, which suppresses visual update of the Text widget. When XmTextEnableRedisplay is called, it determines if any visual attributes have been set or modified for the specified widget since XmTextDisableRedisplay was called. If so, it forces the widget to update its visual display for all of the intervening changes. Any subsequen... |