|
XmTextFieldGetBaseline(3) -- A TextField function that accesses the y position of the baseline
|
XmTextFieldGetBaseline accesses the y position of the baseline in the TextField widget, relative to the y position of the top of the widget. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetEditable(3) -- A TextField function that accesses the edit permission state
|
XmTextFieldGetEditable accesses the edit permission state of the TextField widget. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetInsertionPosition(3) -- A TextField function that accesses the position of the insertion cursor
|
XmTextFieldGetInsertionPosition accesses the insertion cursor position of the TextField widget. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetLastPosition(3) -- A TextField function that accesses the position of the last text character
|
XmTextFieldGetLastPosition accesses the position of the last character in the text buffer of the TextField widget. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetMaxLength(3) -- A TextField function that accesses the value of the current maximum allowable length of a text string entered
|
XmTextFieldGetMaxLength accesses the value of the current maximum allowable length of the text string in the TextField widget entered from the keyboard. The maximum allowable length prevents the user from entering a text string larger than this limit. Note that the maximum allowable length is the same as the value of the widget's XmNmaxLength resource. widget Specifies the TextField widget ID For... |
XmTextFieldGetSelection(3) -- A TextField function that retrieves the value of the primary selection
|
XmTextFieldGetSelection retrieves the value of the primary selection. It returns a NULL pointer if no text is selected in the widget. The application is responsible for freeing the storage associated with the string by calling XtFree. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetSelectionPosition(3) -- A TextField function that accesses the position of the primary selection
|
XmTextFieldGetSelectionPosition accesses the left and right position of the primary selection in the text buffer of the TextField widget. widget Specifies the TextField widget ID left Specifies the pointer in which the position of the left boundary of the primary selection is returned. This is an integer number of characters from the beginning of the buffer. The first character position is 0 (zero... |
XmTextFieldGetSelectionWcs(3) -- A TextField function that retrieves the value of a wide character encoded primary selection
|
XmTextFieldGetSelectionWcs retrieves the value of the primary selection, encoded in a wide character format. It returns a NULL pointer if no text is selected in the widget. The application is responsible for freeing the storage associated with the wide character buffer by calling XtFree. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, s... |
XmTextFieldGetString(3) -- A TextField function that accesses the string value
|
XmTextFieldGetString accesses the string value of the TextField widget. The application is responsible for freeing the storage associated with the string by calling XtFree. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetStringWcs(3) -- A TextField function that retrieves a copy of the wide character string value of a TextField widget
|
XmTextFieldGetStringWcs retrieves a copy of the wide character string value of the TextField widget. The application is responsible for freeing the storage associated with the string by calling XtFree. widget Specifies the TextField widget ID For a complete definition of TextField and its associated resources, see XmTextField(3). |
XmTextFieldGetSubstring(3) -- A TextField function that retrieves a copy of a portion of the internal text buffer
|
XmTextFieldGetSubstring retrieves a copy of a portion of the internal text buffer of a TextField widget. The function copies a specified number of characters from a given start position in the internal text buffer into a buffer provided by the application. A NULL terminator is placed at the end of the copied data. The size of the required buffer depends on the maximum number of bytes per character... |
XmTextFieldGetSubstringWcs(3) -- A TextField function that retrieves a portion of a wide character internal text buffer
|
XmTextFieldGetSubstringWcs retrieves a copy of a portion of the internal text buffer of a TextField widget that is stored in a wide character format. The function copies a specified number of characters from a given start position in the internal text buffer into a buffer provided by the application. A NULL terminator is placed at the end of the copied data. widget Specifies the TextField widget I... |
XmTextFieldInsert(3) -- A TextField function that inserts a character string into a text string
|
XmTextFieldInsert inserts a character string into the text string in the TextField widget. 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 XmNmodifyVerifyCall... |