|
DtDtsFreeAttributeValue(3) -- free a data attribute value
|
The DtDtsFreeAttributeValue function frees the memory used for an attribute value. The attr_value argument is the value of an attribute. |
DtDtsFreeDataType(3) -- free data type pointer memory
|
The DtDtsFreeDataType function frees the memory used for a data type name. The datatype argument is a pointer to a data type name string. |
DtDtsFreeDataTypeNames(3) -- free a list of data type names
|
The DtDtsFreeDataTypeNames function frees the memory used for a list of data type names. The namelist argument is a list of data type names. |
DtDtsIsTrue(3) -- return a Boolean value associated with a string
|
The DtDtsIsTrue function tests a string for a Boolean value. Any of the following string values, without regard to case, causes a return value of True: true yes on 1 |
DtDtsLoadDataTypes(3) -- load and initialize the data types database
|
The DtDtsLoadDataTypes function initializes and loads the database fields for the data typing functions. |
DtDtsRelease(3) -- free memory associated with the data types database
|
The DtDtsRelease function releases the data structures and data associated with the data types database, generally in preparation for a reload. |
DtDtsSetDataType(3) -- set the data type of a directory
|
The DtDtsSetDataType function sets the data type of a directory. This may be accomplished by adding a file named with a leading dot to the directory. The dirpath argument is a pathname of the directory. The datatype argument is a data type. If the value is already set, DtDtsSetDataType does not change the value unless the override argument is set to True. |
DtEditor(3) -- the DtEditor widget class
|
The DtEditor widget supports creating and editing text files. It gives applications running in the desktop environment a consistent method for editing text data. The widget consists of: + A scrolled edit window for text + Dialogs for finding and changing text + Optional status line + Spell checking option + Formatting options + Convenience functions for programmatically controlling the widget The ... |
DtEditorAppend(3) -- append data to a DtEditor widget
|
The DtEditorAppend function appends either a NULL-terminated string, wide character string or sized buffer after the last character in a DtEditor widget. The data is transferred to the DtEditor widget using a DtEditorContentRec, which indicates the type of data being transferred along with the actual data. After the data is appended, the insertion cursor is positioned at the new last character. Th... |
DtEditorAppendFromFile(3) -- append data from a file into a DtEditor widget
|
DtEditorAppendFromFile function appends data from a file to after the last character in a DtEditor widget. After the data is appended, the insertion cursor is positioned at the new last character. The widget argument specifies the DtEditor widget ID. The fileName argument is the pathname of the file relative to the local system. For a complete definition of the DtEditor widget and its associated r... |
DtEditorChange(3) -- change one or all occurrences of a string in a DtEditor widget
|
The DtEditorChange function replaces the next occurrence of a string, all occurrences of the string, or the currently selected text in a DtEditor widget with a replacement string. The string to search for and the value to change it to can be the last values entered in the Find/Change dialog (see DtEditorInvokeFindChangeDialog(3)) or passed as arguments to DtEditorChange. The search begins at the i... |
DtEditorCheckForUnsavedChanges(3) -- report whether text has been edited
|
The DtEditorCheckForUnsavedChanges function reports whether the text contained in the edit window of a DtEditor widget has been modified since the last call to DtEditorGetContents(3) or DtEditorSaveContentsToFile(3), including inserting, deleting or moving text with the keyboard or mouse. For information about retrieving the text without affecting whether DtEditorCheckForUnsavedChanges reports tha... |
DtEditorClearSelection(3) -- clear the primary selection in a DtEditor widget
|
The DtEditorClearSelection function replaces the primary selection in a DtEditor widget, specified by widget, with blanks (ASCII character 0x20) and newlines. Text can be selected and deselected programmatically with DtEditorSelectAll(3) and DtEditorDeselect(3). The widget argument specifies the DtEditor widget ID. For a complete definition of the DtEditor widget and its associated resources, see ... |