*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages              
Title
Content
Arch
Section
 
 Xm/XmClipboardInquireFormat(o) -- 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 a widget's window ID that relates the application window to the clipboard. The widget's window ID can be obtained by using XtWindow. The same application instance should pass the same window ID to e...
 Xm/XmClipboardInquireLength(o) -- 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 zero. Any format passed by name is assumed to have the length passed in a call to XmClipboardCopy, even though the data has not yet been transferred to the clipboard in that format. display Specifies a pointer to the Display structure that was returned in a ...
 Xm/XmClipboardInquirePendingItems(o) -- 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 memory, call XtFree. This function is used by an application when exiting, to determine if the data th...
 Xm/XmClipboardLock(o) -- 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 XmClipboardStartCopy and XmClipboardEndCopy or to XmClipboardStartRetrieve and XmClipboardEndRetrieve. If...
 Xm/XmClipboardRegisterFormat(o) -- 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 the ICCCM conventions are preregistered. Any other format that the application wants to use must either be 8-bit data or be registered via this routine. Failure to register the length of the data r...
 Xm/XmClipboardRetrieve(o) -- 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 being incrementally copied from the clipboard until the data in that format has all been copied. The...
 Xm/XmClipboardStartCopy(o) -- 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 copied, no application will ever request that data. The Motif Toolkit provides a mechanism so that an application does not need to actually pass data to the cli...
 Xm/XmClipboardStartRetrieve(o) -- A clipboard function that starts a copy 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 incrementally copied from the clipboard until the data in that format has all been copied. The return value ...
 Xm/XmClipboardUndoCopy(o) -- A clipboard function that deletes the last item placed on the clipboard
    XmClipboardUndoCopy deletes the last item placed on the clipboard if the item was placed there by an application with the passed display and window arguments. Any data item deleted from the clipboard by the original call to XmClipboardCopy is restored. If the display or window IDs do not match the last copied item, no action is taken, and this function has no effect. display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay or XtDisplay. window Spe...
 Xm/XmClipboardUnlock(o) -- A clipboard function that unlocks the clipboard
    XmClipboardUnlock unlocks the clipboard, enabling it to be accessed by other applications. If multiple calls to XmClipboardLock have occurred, the same number of calls to XmClipboardUnlock is necessary to unlock the clipboard, unless remove_all_locks is set to True. display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay or XtDisplay. window Specifies a widget's window ID that relates the application window to the clipboard. The widget's window...
 Xm/XmClipboardWithdrawFormat(o) -- A clipboard function that indicates that the application no longer wants to supply a data item
    XmClipboardWithdrawFormat indicates that the application no longer supplies a data item to the clipboard that the application had previously passed by name. display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay or XtDisplay. window Specifies a widget's window ID that relates the application window to the clipboard. The widget's window ID can be obtained by using XtWindow. The same application instance should pass the same window ID to each cl...
 Xm/XmCommand(o) -- The Command widget class
    Command is a special-purpose composite widget for command entry that provides a built-in command-history mechanism. Command includes a command-line text-input field, a command-line prompt, and a command-history list region. One additional WorkArea child may be added to the Command after creation. Whenever a command is entered, it is automatically added to the end of the command-history list and made visible. This does not change the selected item in the list, if there is one. Many of the new res...
 Xm/XmCommandAppendValue(o) -- A Command function that appends the passed XmString to the end of the string displayed in the command area of
    XmCommandAppendValue appends the passed XmString to the end of the string displayed in the command area of the Command widget. widget Specifies the Command widget ID commandSpecifies the passed XmString For a complete definition of Command and its associated resources, see XmCommand(3X).
 Xm/XmCommandError(o) -- A Command function that displays an error message
    XmCommandError displays an error message in the history area of the Command widget. The XmString error is displayed until the next command entered occurs. widget Specifies the Command widget ID error Specifies the passed XmString For a complete definition of Command and its associated resources, see XmCommand(3X).
 Xm/XmCommandGetChild(o) -- A Command function that is used to access a component
    XmCommandGetChild is used to access a component within a Command. The parameters given to the function are the Command widget and a value indicating which component to access. widget Specifies the Command widget ID. child Specifies a component within the Command. The following are legal values for this parameter: o XmDIALOG_COMMAND_TEXT o XmDIALOG_PROMPT_LABEL o XmDIALOG_HISTORY_LIST o XmDIALOG_WORK_AREA For a complete definition of Command and its associated resources, see XmCommand(3X)....
<<  [Prev]  422  423  424  425  426  427  428  429  430  431  432  433  434  435  436  437  438  439  440  441  442  
443  444  445  446  447  448  449  450  451  452  453  454  455  456  457  458  459  460  461  462  [Next]  >>
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service