Clipboard Modifier 0.2.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Clipboard Modifier 0.2.0 (Default branch)
# 1  
Old 01-02-2008
Clipboard Modifier 0.2.0 (Default branch)

ImageClipboard Modifier is a flexible system to modify the text in a clipboard in a variety of ways. It can copy a spreadsheet and change the clipboard so that it can be pasted into a wiki, with vertical bars (|) instead of tabs. It can modify multi-line clipboard text so that it can be pasted into Java or Python as strings. An URL in the clipboard pointing to Amazon can be modified so that it has your Associate ID in it. It can pipe the clipboard to a shell command and retrieve the output from it. A clibpboard can be forced to text, removing things like formatting. A complicated URL can be converted into its Python equivalent, using urlencode. License: GNU General Public License v2Changes:
Plugins can now add their own controls. Thefollowing plugins were updated: Amazon link,runapp, url2python, and show_python_var.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. 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

2. Shell Programming and Scripting

Clipboard transformation scripting

Hello all, I've done a bit of clipboard transformation scripting using xclip before, piping contents with " xclip -o -selection clipboard " to grep, sed, awk, then back into the clipboard with " xclip -i -selection clipboard " ... but I am not a fantastically skilled user of either of the three... (4 Replies)
Discussion started by: la2ar0
4 Replies

3. Linux

Making CapsLock a Unique Modifier

I would like to use Caps Lock as its own UNIQUE modifier key (not merely replace it with Ctrl). I have figured out how to do this on windows but not yet in Ubuntu. Here is what I'm looking for: 1. When I press "Caps Lock" on its own, it is equivalent to the Escape key (or at least sends the... (2 Replies)
Discussion started by: lawschool121
2 Replies

4. Solaris

Tar too large to archive. Use E function modifier.

hey all, i am trying to tar up a folder with sub folders the over all size will be about 70gb but when i use the normal command tar -cvf tar -cvf CLPSI_PRU_Escrow_31994.tar CLPSI_PRU_Escrow_31994 i get an error tar: CLPSI_PRU_Escrow_31994/dump1/PROD_SAE_jria3_dump.5 too large to archive. ... (9 Replies)
Discussion started by: dshakey
9 Replies

5. 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

6. Shell Programming and Scripting

How to redirect the output to a buffer/clipboard ?

Hi, I was wondering if there is a way by which I can redirect the output of a command to the buffer so that if I do a Ctrl+v or Alt+v it should paste the data. Ex : cat myfile.txt | grep hello . Hello there 1 Hello there 2 The output of the file should go to the buffer(clipboard info) so... (1 Reply)
Discussion started by: preethgideon
1 Replies

7. UNIX for Dummies Questions & Answers

convert column into row with some modifier

A file content have 1 1:-0.289433 2:0.833778 3:0.314471 4:-0.289433 5:-0.81876 6:-0.456693 7:-0.17511 8:-0.644555 9:-0.00666341 10:-1.13603 I will like to have that column into row with numbers to be printed (red color) only after colon output shud be like that -0.289433... (1 Reply)
Discussion started by: cdfd123
1 Replies

8. Shell Programming and Scripting

Perl: Getting back reference from s modifier

My input text has the following pattens: func_a(3, 4, 5); I want to replace it with this: func_b(3, 4, 5, 6); I'm trying the following expression, but it does not work: perl -p -e "s/func_a\((.*)?\);/func_b(\1,\n6)/s" <... (8 Replies)
Discussion started by: cooldude
8 Replies

9. 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
Login or Register to Ask a Question
DwtStartCopyToClipboard(3Dwt)											     DwtStartCopyToClipboard(3Dwt)

Name
       DwtStartCopyToClipboard - Sets up storage and data structures to receive clipboard data.

Syntax
       int DwtStartCopyToClipboard(display, window, clip_label,
				  time, widget, callback, item_id)
	    Display *display;
	    Window window;
	    DwtCompString clip_label;
	    Time time;
	    Widget widget;
	    VoidProc callback;
	    long *item_id;

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.

       clip_label
		 Specifies  the  label	to  be	associated with the data item.	This argument is used to identify the data item, for example, in a
		 clipboard viewer.  An example of a label is the name of the application that places the data in the clipboard.

       time	 Specifies the timestamping of the event that triggered the copy.

       widget	 Specifies the ID of the widget that will receive messages requesting data previously passed  by  name.   This	argument  must	be
		 present in order to pass data by name.  Any valid widget ID in your application can be used.  All message handling is done by the
		 cut and paste functions.

       callback  Specifies the address of the callback function that is called when the clipboard needs data that was originally passed  by  name.
		 This  is  also  the  callback to receive the DELETE message for items that were originally passed by name.  This argument must be
		 present in order to pass data by name.

       item_id	 Specifies the number assigned to this data item.  The application uses this number in calls to DwtCopyToClipboard,  DwtEndCopyTo-
		 Clipboard, and DwtCancelCopyToClipboard.

Description
       The  DwtStartCopyToClipboard  function sets up storage and data structures to receive clipboard data.  An application calls DwtStartCopyTo-
       Clipboard during a cut or copy operation.  The data item that these structures receive through calls to DwtCopyToClipboard then becomes the
       next item to be pasted (the next-paste item) in the clipboard after the call to DwtEndCopyToClipboard.

       DwtStartCopyToClipboard is like DwtBeginCopyToClipboard except that it has the time argument to support the ICCCM clipboard selection mech-
       anism.  To perform cut and paste operations between your application and an application using the ICCCM clipboard selection mechanism,  you
       must use DwtStartCopyToClipboard and provide a timestamping value for time, not a CurrentTime value.  Use of the value CurrentTime for time
       may cause the ICCCM interface to fail.

       The window and callback arguments must be present in order to pass data by name.

       The callback format is as follows:

       function name(widget, data_id, private_id, reason)
	    Widget *widget;
	    int *data_id;
	    int *private_id;
	    int *reason;

       widget	 Specifies the ID of the widget passed to DwtStartCopyToClipboard.

       data_id	 Specifies the identifying number returned by DwtCopyToClipboard, which identifies the pass-by-name data.

       private_id
		 Specifies the private information passed to DwtCopyToClipboard.

       reason	 Specifies the reason, which is either DwtCRClipboardDataDelete or DwtCRClipboardDataRequest.

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 Also
       DwtCopyToClipboard(3Dwt), DwtEndCopyToClipboard(3Dwt), DwtCancelCopyToClipboard(3Dwt), DwtBeginCopyToClipboard(3Dwt)
       Guide to the XUI Toolkit: C Language Binding
       Guide to the XUI Toolkit Intrinsics: C Language Binding

														     DwtStartCopyToClipboard(3Dwt)