Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xmclipboardendretrieve(3) [centos man page]

XmClipboardEndRetrieve(library call)									      XmClipboardEndRetrieve(library call)

NAME
XmClipboardEndRetrieve -- A clipboard function that completes retrieval of data from the clipboard SYNOPSIS
#include <Xm/CutPaste.h> int XmClipboardEndRetrieve (display, window) Display * display; Window window; (void) DESCRIPTION
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 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 ID can be obtained with XtWindow. The same application instance should pass the same window ID to each of the clipboard functions that it calls. RETURN
XmClipboardSuccess The function was successful. XmClipboardLocked The function failed because the clipboard was locked by another application. The application can continue to call the function again with the same parameters until the lock goes away. This gives the application the opportunity to ask if the user wants to keep trying or to give up on the operation. RELATED
XmClipboardRetrieve(3), XmClipboardStartCopy(3), and XmClipboardStartRetrieve(3). XmClipboardEndRetrieve(library call)

Check Out this Related Man Page

XmClipboardEndRetrieve(3X)												XmClipboardEndRetrieve(3X)

NAME
XmClipboardEndRetrieve - A clipboard function that ends a copy from the clipboard SYNOPSIS
#include <Xm/Xm.h> #include <Xm/CutPaste.h> int XmClipboardEndRetrieve (display, window) Display * display; Window window; DESCRIPTION
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 by calling XmClipboardRetrieve. Specifies a pointer to the Display structure that was returned in a previous call to XOpenDisplay or XtDis- play. 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 of the clipboard functions that it calls. RETURN VALUE
The function is successful. The function failed because the clipboard was locked by another application. The application can continue to call the function again with the same parameters until the lock goes away. This gives the application the opportunity to ask if the user wants to keep trying or to give up on the operation. SEE ALSO
XmClipboardRetrieve(3X), XmClipboardStartCopy(3X), XmClipboardStartRetrieve(3X) XmClipboardEndRetrieve(3X)
Man Page

8 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

about libXm.so.2 library

I have installed RedHat7.3 on my pc.But when i open a application window it says libXm.so.2 does not exist.Yes it does not exist. there is a libXm.so.3 there. So how can i get libXm.so.2 or what's wrong with it?thanks. by the way,with windowXP vfat format disk,can it solve large size file,llike... (0 Replies)
Discussion started by: jingwp
0 Replies

2. UNIX for Dummies Questions & Answers

Reflection X clipboard issues

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)
Discussion started by: kingdbag
2 Replies

3. Programming

Copying!

Can anybody point out the difference between shallow copying, deep copying and bitwise copying in C++? (2 Replies)
Discussion started by: areef4u
2 Replies

4. UNIX for Dummies Questions & Answers

perl syntax for use with urxvt and X clipboard

I am trying to use the following perl code with urxvt terminal emulator to make using the X clipboard easier to deal with. #! /usr/bin/perl sub on_sel_grab { my $query=quotemeta $_->selection; $query=~ s/\n/\\n/g; $query=~ s/\r/\\r/g; system( "echo -en " . $query . " |... (2 Replies)
Discussion started by: jelloir
2 Replies

5. UNIX for Dummies Questions & Answers

cp/ditto and ignore I/O errors?

Hi I am copying some old CDs to HD and while copying a lot of them have I/O errors. What I'm doing right now is sudoing the cp command to force the cp to finish but when I do this it takes about an hour to copy 500mb, which without errors would normally take 2-3 minutes. I assume it takes so... (0 Replies)
Discussion started by: dloruss1
0 Replies

6. UNIX for Dummies Questions & Answers

Copying a command/line to clipboard

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)
Discussion started by: gkarthik.gk
1 Replies

7. Shell Programming and Scripting

Increase two numeric variables incrementally together

Hi, I was wondering if someone could help with what is probably a fairly easy problem. I have two variables, i is between 1-5, j is between 11-15 I'd like to produce this: 1_11 2_12 3_13 4_14 5_15 Each number goes up incrementally with the other. But my shoddy code is not... (5 Replies)
Discussion started by: hubleo
5 Replies

8. Shell Programming and Scripting

Splitting a file incrementally

Dear all, I would like to split a file incrementally. My file looks like: $path { $name "path_sparc_ifu_dec_1" ; $transition { "dtu_inst_d" v ; // (in) "U622/Y" ^ ; // (INVX16_LVT) "U870/Y" ^ ; // (AND2X1_LVT) "U873/Y" v ; // (INVX1_LVT) "U872/Y" ^ ; // (NAND3X0_LVT)... (3 Replies)
Discussion started by: jypark22
3 Replies