DwtEndCopyFromClipboard(3Dwt)DwtEndCopyFromClipboard(3Dwt)Name
DwtEndCopyFromClipboard - Notifies the cut and paste functions that the application has completed copying an item from the clipboard and
unlocks the clipboard.
Syntax
int DwtEndCopyFromClipboard(display, window)
Display *display;
Window window;
Arguments
display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay. For information on XOpenDis-
play and the Display structure, see the Guide to the Xlib Library: C Language Binding.
window Specifies the window ID that relates the application window to the clipboard. The same application instance should pass the same
window ID to each clipboard function that it calls.
Description
The DwtEndCopyFromClipboard function unlocks the clipboard when the application has copied all data from the clipboard. If the application
calls DwtStartCopyFromClipboard, it must call DwtEndCopyFromClipboard. These two functions lock and unlock the clipboard and allow the
application to copy data from the clipboard incrementally.
Return Values
This function returns one of these status return constants:
ClipboardSuccess The function is success-
ful.
ClipboardLocked The function failed
because the clipboard was
locked by another appli-
cation. The application
can continue to call the
function with the same
parameters until the
clipboard is unlocked.
Optionally, the applica-
tion can ask if the user
wants to keep trying or
to give up on the opera-
tion.
See AlsoDwtCopyFromClipboard(3Dwt), DwtStartCopyFromClipboard(3Dwt)
Guide to the XUI Toolkit: C Language Binding
Guide to the XUI Toolkit Intrinsics: C Language Binding
DwtEndCopyFromClipboard(3Dwt)
Check Out this Related Man Page
DwtClipboardUnlock(3Dwt)DwtClipboardUnlock(3Dwt)Name
DwtClipboardUnlock - Unlocks the clipboard, enabling other applications to access it.
Syntax
int DwtClipboardUnlock(display, window, remove_all_locks)
Display *display;
Window window;
Boolean remove_all_locks;
Arguments
display Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay. For information on XOpenDis-
play and the Display structure, see the Guide to the Xlib Library: C Language Binding.
window Specifies the window ID that relates the application window to the clipboard. The same application instance should pass the same
window ID to each clipboard function that it calls.
remove_all_locks
Specifies a boolean value that, when True, indicates that all nested locks should be removed. If False, indicates that only one
level of lock should be removed.
Description
The DwtClipboardUnlock function unlocks the clipboard, enabling it to be accessed by other applications.
If multiple calls to DwtClipboardLock have occurred, then the same number of calls to DwtClipboardUnlock is necessary to unlock the clip-
board, unless the remove_all_locks argument is True.
Return Values
This function returns one of these status return constants:
ClipboardSuccess The function is success-
ful.
ClipboardLocked The function failed
because the clipboard was
locked by another appli-
cation. The application
can continue to call the
function with the same
parameters until the
clipboard is unlocked.
Optionally, the applica-
tion can ask if the user
wants to keep trying or
to give up on the opera-
tion.
See AlsoDwtClipboardLock(3Dwt)
Guide to the XUI Toolkit: C Language Binding
Guide to the XUI Toolkit Intrinsics: C Language Binding
DwtClipboardUnlock(3Dwt)
Hey,
Has anyone else ever run into a problem with Reflection X and clipboard not working? I'll copy something command line, try to vi into a file and paste it and it either pastes nothing or sometimes the correct data and even in some cases it will print stuff in the clipboard from 3 copies ago.... (2 Replies)
Hello, I'm absolutely new to this world... but I've a problem with a terminal connected via PuTTY (or Termlite) to an AIX 5.1 application.
The problem: I need to paste from clipboard a text containing both input text strings and special keys as ESC, Arrows and so on, to execute in the AIX... (1 Reply)
Hi,
I am trying to figure out how to copy the contents of a file to the clipboard, then paste into a command. i.e copy contents of file /path/filename.txt to <command> <paste text>
Hope that makes sense. Basically tryting to copy the text for use in a command without having to open the... (8 Replies)
hi all,
i am newbie to Unix scripting..
I am writing a script which will have a line of commands, which needs to be copied to clipboard.
Any ideas welcome..
Usage::
I am using the script in this way, The script will have some lines (like below)
export TERM=xterm; cd test_env; TMOUT=0
... (1 Reply)
I want to be able to take a file name and then use sedto paste that text into the file.
I believe I know how to do the latter portion of pasting into the file at the location I want, but I do not know how to "copy" the file name to the "clipboard" for pasting.
Ideally I want to be able to... (1 Reply)
trying to add my Google analytics code to every page on my site.
I want to paste in into every file. I have it in Notepad++.
If I open a file in VI, using Putty to connect is it easy to just paste into the VI session? (3 Replies)