|
XmTextFieldInsertWcs(3) -- A TextField function that inserts a wide character string into a TextField widget
|
XmTextFieldInsertWcs inserts a wide character string into the TextField widget at a specified location. The character positions begin at 0 (zero) and are numbered sequentially from the beginning of the text. For example, to insert a string after the fourth character, the position parameter must be 4. This routine calls the widget's XmNvalueChangedCallback and verification callbacks, either XmNmod... |
XmTextFieldPaste(3) -- A TextField function that inserts the clipboard selection
|
XmTextFieldPaste inserts the clipboard selection at the insertion cursor of the destination widget. If XmNpendingDelete is True and the insertion cursor is inside the current selection, the clipboard selection replaces the selected text. This routine calls the widget's XmNvalueChangedCallback and verification callbacks, either XmNmodifyVerifyCallback or XmNmodifyVerifyCallbackWcs, or both. If bot... |
|
XmTextFieldPasteLink(3) -- A TextField function that inserts a link to the clipboard selection
|
XmTextFieldPasteLink inserts a link to the clipboard selection at the insertion cursor. This routine calls the widget's XmNdestinationCallback procedures with the selection member of the XmDestinationCallbackStruct set to CLIPBOARD and with the operation member set to XmLINK. The TextField widget itself performs no transfers; the XmNdestinationCallback procedures are responsible for inserting the... |
XmTextFieldPosToXY(3) -- A TextField function that accesses the x and y position of a character position
|
XmTextFieldPosToXY accesses the x and y position, relative to the upper left corner of the TextField widget, of a given character position in the text buffer. widget Specifies the TextField widget ID position Specifies the character position in the text for which the x and y position is accessed. This is an integer number of characters from the beginning of the buffer. The first character position... |
XmTextFieldRemove(3) -- A TextField function that deletes the primary selection
|
XmTextFieldRemove deletes the primary selected text. If there is a selection, this routine also 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 data is passed to the... |
XmTextFieldReplace(3) -- A TextField function that replaces part of a text string
|
XmTextFieldReplace replaces part of the text string in the TextField widget. The character positions begin at 0 (zero) and are numbered sequentially from the beginning of the text. An example text replacement would be to replace the second and third characters in the text string. To accomplish this, the parameter from_pos must be 1 and to_pos must be 3. To insert a string after the fourth characte... |
XmTextFieldReplaceWcs(3) -- A TextField function that replaces part of a wide character string in a TextField widget
|
XmTextFieldReplaceWcs replaces part of the wide character string in the TextField widget. The character positions begin at 0 (zero) and are numbered sequentially from the beginning of the text. An example text replacement would be to replace the second and third characters in the text string. To accomplish this, the parameter from_pos must be 1 and to_pos must be 3. To insert a string after the fo... |
XmTextFieldSetAddMode(3) -- A TextField function that sets the state of Add mode
|
XmTextFieldSetAddMode controls whether or not the TextField widget is in Add mode. When the widget is in Add mode, the insert cursor can be moved without disturbing the primary selection. widget Specifies the TextField widget ID state Specifies whether or not the widget is in Add mode. A value of True turns on Add mode; a value of False turns off Add mode. For a complete definition of TextField an... |
XmTextFieldSetEditable(3) -- A TextField function that sets the edit permission
|
XmTextFieldSetEditable sets the edit permission state of the TextField widget. When set to True, the text string can be edited. widget Specifies the TextField widget ID editable Specifies a Boolean value that when True allows text string edits For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldSetHighlight(3) -- A TextField function that highlights text
|
XmTextFieldSetHighlight highlights text between the two specified character positions. The mode parameter determines the type of highlighting. Highlighting text merely changes the visual appearance of the text; it does not set the selection. widget Specifies the TextField widget ID left Specifies the position of the left boundary of text to be highlighted. This is an integer number of characters f... |
XmTextFieldSetInsertionPosition(3) -- A TextField function that sets the position of the insertion cursor
|
XmTextFieldSetInsertionPosition sets the insertion cursor position of the TextField widget. This routine also calls the widget's XmNmotionVerifyCallback callbacks if the insertion cursor position changes. widget Specifies the TextField widget ID position Specifies the position of the insert cursor. This is an integer number of characters from the beginning of the text buffer. The first character ... |
XmTextFieldSetMaxLength(3) -- A TextField function that sets the value of the current maximum allowable length of a text string entered from
|
XmTextFieldSetMaxLength sets the value of the current maximum allowable length of the text string in the TextField widget. The maximum allowable length prevents the user from entering a text string from the keyboard that is larger than this limit. Strings that are entered using the XmNvalue (or XmNvalueWcs) resource, or the XmTextFieldSetString (or XmTextFieldSetStringWcs) function ignore this res... |
XmTextFieldSetSelection(3) -- A TextField function that sets the primary selection of the text
|
XmTextFieldSetSelection sets the primary selection of the text in the widget. It also sets the insertion cursor position to the last position of the selection and calls the widget's XmNmotionVerifyCallback callbacks. XmTextFieldSetSelection always generates an XmNgainPrimaryCallback unless it fails to take ownership of the primary text selection. widget Specifies the TextField widget ID first Mar... |
XmTextFieldSetString(3) -- A TextField function that sets the string value
|
XmTextFieldSetString sets the string value of the TextField widget. 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 data is passed to the XmNmodifyVerif... |
XmTextFieldSetStringWcs(3) -- A TextField function that sets a wide character string value
|
XmTextFieldSetStringWcs sets the wide character string value of the TextField widget. 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 data is passed to ... |