|
XmDropSiteUnregister(3) -- A Drag and Drop function that frees drop site information
|
XmDropSiteUnregister informs the toolkit that the specified widget is no longer a registered drop site. The function frees all associated drop site information. widget Specifies the ID of the widget, registered as a drop site, that is to be unregistered For a complete definition of DropSite and its associated resources, see XmDropSite(3). |
XmDropSiteUpdate(3) -- A Drag and Drop function that sets resource values for a drop site
|
XmDropSiteUpdate modifies drop site resources associated with the specified widget. This routine updates the drop site resources specified in the arglist. widget Specifies the ID of the widget registered as a drop site arglist Specifies the argument list argcount Specifies the number of attribute/value pairs in the argument list (arglist) For a complete definition of DropSite and its associated re... |
|
XmDropTransfer(3) -- The DropTransfer widget class
|
DropTransfer provides a set of resources that identifies the procedures and associated information required by the toolkit in order to process and complete a drop transaction. Clients should not explicitly create a DropTransfer widget. Instead, a client initiates a transfer by calling XmDropTransferStart, which initializes and returns a DropTransfer widget. If this function is called within an XmN... |
XmDropTransferAdd(3) -- A Drag and Drop function that enables additional drop transfer entries to be processed after initiating a drop
|
XmDropTransferAdd identifies a list of additional drop transfer entries to be processed after a drop transfer is started. drop_transfer Specifies the ID of the DropTransfer widget returned by XmDropTransferStart transfers Specifies the additional drop transfer entries that the receiver wants processed num_transfers Specifies the number of items in the transfers array For a complete definition of D... |
XmDropTransferStart(3) -- A Drag and Drop function that initiates a drop transfer
|
XmDropTransferStart initiates a drop transfer and uses the specified argument list to initialize an XmDropTransfer object. The DropTransfer object can be manipulated with XtSetValues and XtGetValues until the last call to the XmNtransferProc procedure is made. After that point, the result of using the widget pointer is undefined. The DropTransfer object is freed by the toolkit when a transfer is c... |
XmFileSelectionBox(3) -- The FileSelectionBox widget class
|
FileSelectionBox traverses through directories, views the files and subdirectories in them, and then selects files. A FileSelectionBox has five main areas: + A text input field for displaying and editing a directory mask used to select the files to be displayed + An optional text input field for displaying and editing a filter mask used to select the files to be displayed. + A scrollable list of f... |
XmFileSelectionBoxGetChild(3) -- A FileSelectionBox function used to access a component
|
XmFileSelectionBoxGetChild is used to access a component within a FileSelectionBox. The parameters given to the function are the FileSelectionBox widget and a value indicating which component to access. NOTE: This routine is obsolete and exists for compatibility with previous releases. Instead of calling XmFileSelectionBoxGetChild, you should call XtNameToWidget as described in the XmFileSelection... |
XmFileSelectionDoSearch(3) -- A FileSelectionBox function that initiates a directory search
|
XmFileSelectionDoSearch initiates a directory and file search in a FileSelectionBox widget. For a description of the actions that the FileSelectionBox takes when doing a search, see XmFileSelectionBox(3). widget Specifies the FileSelectionBox widget ID. dirmask Specifies the directory mask used in determining the directories and files displayed in the FileSelectionBox lists. This value is used as ... |
XmFontList(3) -- Data type for a font list
|
XmFontList is the data type for a font list. A font list consists of font list entries. Each entry contains a font or a font set (a group of fonts) and is identified with a tag, which is optional. If this tag is NULL, the tag is set to XmFONTLIST_DEFAULT_TAG. The value of XmFONTLIST_DEFAULT_TAG is XmFONTLIST_DEFAULT_TAG_STRING. When a compound string is displayed, the font list element tag of the ... |
XmFontListAdd(3) -- A font list function that creates a new font list
|
XmFontListAdd creates a new font list consisting of the contents of oldlist and the new font list element being added. This function deallocates oldlist after extracting the required information; therefore, do not reference oldlist thereafter. NOTE: This function is obsolete and exists for compatibility with previous releases. It has been replaced by XmFontListAppendEntry. oldlist Specifies a poin... |
XmFontListAppendEntry(3) -- A font list function that appends an entry to a font list
|
XmFontListAppendEntry creates a new font list that contains the contents of oldlist. This function copies the contents of the font list entry being added into this new font list. If oldlist is NULL, XmFontListAppendEntry creates a new font list containing only the single entry specified. This function deallocates the original font list after extracting the required information. The caller must fre... |
XmFontListCopy(3) -- A font list function that copies a font list
|
XmFontListCopy creates a new font list consisting of the contents of the fontlist argument. fontlist Specifies a font list to be copied |
XmFontListCreate(3) -- A font list function that creates a font list
|
XmFontListCreate creates a new font list with a single element specified by the provided font and character set. It also allocates the space for the font list. NOTE: This function is obsolete and exists for compatibility with previous releases. It is replaced by XmFontListAppendEntry. font Specifies a pointer to a font structure for which the new font list is generated. This is the structure retur... |
XmFontListEntryCreate(3) -- A font list function that creates a font list entry
|
XmFontListEntryCreate creates a font list entry that contains either a font or font set and is identified by a tag. tag Specifies a NULL terminated string for the tag of the font list entry. The tag may be specified as XmFONTLIST_DEFAULT_TAG, which is used to identify the default font list element in a font list. type Specifies whether the font argument is a font structure or a font set. Valid val... |
XmFontListEntryFree(3) -- A font list function that recovers memory used by a font list entry
|
XmFontListEntryFree recovers memory used by a font list entry. This routine does not free the XFontSet or XFontStruct associated with the font list entry. entry Specifies a pointer to the font list entry to be freed. In addition, it may be necessary to take the address of the font list entry (via the & operator) before passing it to this function. |