|
XmChangeColor(3) -- Recalculates all associated colors of a widget
|
XmChangeColor handles all color modifications for the specified widget when a new background pixel value is specified. This function recalculates the foreground, select, and shadow colors based on the new background color and sets the corresponding resources for the widget. If a color calculation procedure has been set by a call to XmSetColorCalculation, XmChangeColor uses that procedure to calcul... |
XmClipboardCancelCopy(3) -- A clipboard function that cancels a copy to the clipboard
|
XmClipboardCancelCopy cancels the copy to clipboard that is in progress and frees up temporary storage. When a copy is to be performed, XmClipboardStartCopy allocates temporary storage for the clipboard data. XmClipboardCopy copies the appropriate data into the the temporary storage. XmClipboardEndCopy copies the data to the clipboard structure and frees up the temporary storage structures. If XmC... |
|
XmClipboardCopy(3) -- A clipboard function that copies a data item to temporary storage for later copying to clipboard
|
XmClipboardCopy copies a data item to temporary storage. The data item is moved from temporary storage to the clipboard data structure when a call to XmClipboardEndCopy is made. Additional calls to XmClipboardCopy before a call to XmClipboardEndCopy add additional data item formats to the same data item or append data to an existing format. Formats are described in the Inter-Client Communication C... |
XmClipboardCopyByName(3) -- A clipboard function that copies a data item passed by name
|
XmClipboardCopyByName copies the actual data for a data item that was previously passed by name to the clipboard. Data is considered to be passed by name when a call to XmClipboardCopy is made with a NULL buffer parameter. Additional calls to this function append new data to the existing data. display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay... |
XmClipboardEndCopy(3) -- A clipboard function that completes the copying of data to the clipboard
|
XmClipboardEndCopy locks the clipboard from access by other applications, places data in the clipboard data structure, and unlocks the clipboard. Data items copied to the clipboard by XmClipboardCopy are not actually entered in the clipboard data structure until the call to XmClipboardEndCopy. This function also frees up temporary storage that was allocated by XmClipboardStartCopy, which must be c... |
XmClipboardEndRetrieve(3) -- A clipboard function that completes retrieval of data from the clipboard
|
XmClipboardEndRetrieve suspends copying data incrementally from the clipboard. It tells the clipboard routines that the application is through copying an item from the clipboard. Until this function is called, data items can be retrieved incrementally from the clipboard with XmClipboardRetrieve. The act of copying data is started with the XmClipboardStartRetrieve function. display Specifies a poin... |
XmClipboardInquireCount(3) -- A clipboard function that returns the number of data item formats
|
XmClipboardInquireCount returns the number of data item formats available for the data item in the clipboard. This function also returns the maximum name-length for all formats in which the data item is stored. display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay or XtDisplay. window Specifies the window ID of a widget that relates the applicati... |
XmClipboardInquireFormat(3) -- A clipboard function that returns a specified format name
|
XmClipboardInquireFormat returns a specified format name for the data item in the clipboard. If the name must be truncated, the function returns a warning status. display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay or XtDisplay. window Specifies the window ID of a widget that relates the application window to the clipboard. The widget's window... |
XmClipboardInquireLength(3) -- A clipboard function that returns the length of the stored data
|
XmClipboardInquireLength returns the length of the data stored under a specified format name for the clipboard data item. If no data is found for the specified format, or if there is no item on the clipboard, this function returns a value of 0 (zero) in the length argument. Any format passed by name is assumed to have length passed in a call to XmClipboardCopy, even though the data has not yet bee... |
XmClipboardInquirePendingItems(3) -- A clipboard function that returns a list of data ID/private ID pairs
|
XmClipboardInquirePendingItems returns a list of data ID/private ID pairs for the specified format name. A data item is considered pending if the application originally passed it by name, the application has not yet copied the data, and the item has not been deleted from the clipboard. The application is responsible for freeing the memory provided by this function to store the list. To free the me... |
XmClipboardLock(3) -- A clipboard function that locks the clipboard
|
XmClipboardLock locks the clipboard from access by another application until XmClipboardUnlock is called. All clipboard functions lock and unlock the clipboard to prevent simultaneous access. This function allows the application to keep the clipboard data from changing between calls to Inquire and other clipboard functions. The application does not need to lock the clipboard between calls to XmCli... |
XmClipboardRegisterFormat(3) -- A clipboard function that registers a new format
|
XmClipboardRegisterFormat registers a new format. Each format stored on the clipboard should have a length associated with it; this length must be known to the clipboard routines. Formats are known as targets in the Inter-Client Communication Conventions Manual (ICCCM). All of the formats specified by version 1.1 of the ICCCM conventions are preregistered. Any other format that the application wan... |
XmClipboardRetrieve(3) -- A clipboard function that retrieves a data item from the clipboard
|
XmClipboardRetrieve retrieves the current data item from clipboard storage. It returns a warning if the clipboard is locked, if there is no data on the clipboard, or if the data needs to be truncated because the buffer length is too short. Between a call to XmClipboardStartRetrieve and a call to XmClipboardEndRetrieve, multiple calls to XmClipboardRetrieve with the same format name result in data ... |
XmClipboardStartCopy(3) -- A clipboard function that sets up a storage and data structure
|
XmClipboardStartCopy sets up storage and data structures to receive clipboard data. An application calls this function during a cut or copy operation. The data item that these structures receive then becomes the next data item in the clipboard. Copying a large piece of data to the clipboard can take a long time. It is possible that, once the data is copied, no application will ever request that da... |
XmClipboardStartRetrieve(3) -- A clipboard function that prepares to retrieve data from the clipboard
|
XmClipboardStartRetrieve tells the clipboard routines that the application is ready to start copying an item from the clipboard. The clipboard is locked by this routine and stays locked until XmClipboardEndRetrieve is called. Between a call to XmClipboardStartRetrieve and a call to XmClipboardEndRetrieve, multiple calls to XmClipboardRetrieve with the same format name result in data being incremen... |