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
edit(3U)						    InterViews Reference Manual 						  edit(3U)

NAME
ConnectCmd, CopyCmd, CutCmd, DeleteCmd, DupCmd, MobilityCmd, PasteCmd, RedoCmd, ReplaceCmd, SlctAllCmd, UndoCmd - editing commands SYNOPSIS
#include <Unidraw/Commands/edit.h> DESCRIPTION
The Unidraw library defines several commands that offer common component editing functionality. ConnectCmd is a non-interpretive command that connects two connectors. CopyCmd copies selected components onto its clipboard (if it defines one) or onto the global clipboard. CutCmd, DeleteCmd, DupCmd, and PasteCmd are purely interpretive commands that are always interpreted by their editor's component. Mobility- Cmd gives selected components the opportunity to set their mobility based on the value it provides. UndoCmd and RedoCmd are non-interpre- tive commands that simply undo and redo the last command that affected their editor's component. ReplaceCmd replaces selected components with the component it stores. Finally, SlctAllCmd is a non-interpretive command that selects all the components displayed in its editor. CONNECTCMD PUBLIC OPERATIONS
ConnectCmd( ControlInfo*, Connector* source = nil, Connector* target = nil ) ConnectCmd(Editor* = nil, Connector* = nil, Connector* = nil) The ConnectCmd constructor optionally takes two connectors as parameters, the source and the target. When executed, it will call Connect on source with target as its argument. It will also set the source's mobility to floating. void GetConnectors(Connector*& source, Connector*& target) Return the connectors supplied in the constructor. COPYCMD PUBLIC OPERATIONS
CopyCmd(ControlInfo*, Clipboard* = nil) CopyCmd(Editor* = nil, Clipboard* = nil) Create a CopyCmd instance, optionally specifying a clipboard in which to store copied components. virtual void Execute() Execute does nothing if no components are selected. Otherwise, Execute places a copy of the selected components onto the CopyCmd's clipboard if is non-nil or else onto the global clipboard (obtained from the catalog). virtual boolean Reversible() CopyCmd is not reversible. CUTCMD PUBLIC OPERATIONS
CutCmd(ControlInfo*, Clipboard* = nil) CutCmd(Editor* = nil, Clipboard* = nil) Create a CutCmd instance, optionally specifying a clipboard in which to store the components that were cut. virtual void Execute() virtual void Unexecute() CutCmd redefines these operations to let the editor's component interpret it. Execute will set the value of the _executed protected member variable to true as a side effect. Similarly, Unexecute will reset the value to false as a side effect. DELETECMD PUBLIC OPERATIONS
DeleteCmd(ControlInfo*, Clipboard* = nil) DeleteCmd(Editor* = nil, Clipboard* = nil) Create a DeleteCmd instance, optionally specifying a clipboard in which to store the components that were deleted. virtual void Execute() virtual void Unexecute() DeleteCmd redefines these operations to let the editor's component interpret it. Execute will set the value of the _executed pro- tected member variable to true as a side effect. Similarly, Unexecute will reset the value to false as a side effect. DUPCMD PUBLIC OPERATIONS
DupCmd(ControlInfo*, Clipboard* = nil) DupCmd(Editor* = nil, Clipboard* = nil) Create a DupCmd instance, optionally specifying a clipboard in which to store the components that were duplicated. virtual void Execute() virtual void Unexecute() DupCmd redefines these operations to let the editor's component interpret it. Execute will set the value of the _executed protected member variable to true as a side effect. Similarly, Unexecute will reset the value to false as a side effect. MOBILITYCMD PUBLIC OPERATIONS
MobilityCmd(ControlInfo*, Mobility = Fixed) MobilityCmd(Editor* = nil, Mobility = Fixed) Create a MobilityCmd instance, optionally specifying the mobility that interpreting components may use. Mobility GetMobility() Return the mobility specified in the constructor. PASTECMD PUBLIC OPERATIONS
PasteCmd(ControlInfo*, Clipboard* = nil) PasteCmd(Editor* = nil, Clipboard* = nil) Create a PasteCmd instance, optionally specifying a clipboard in which to store the components that will be pasted. virtual void Execute() virtual void Unexecute() PasteCmd redefines these operations to let the editor's component interpret it. Execute will set the value of the _executed pro- tected member variable to true as a side effect. Similarly, Unexecute will reset the value to false as a side effect. virtual boolean Reversible() PasteCmd is reversible if either its clipboard or the global clipboard is non-empty. REDOCMD PUBLIC OPERATIONS
RedoCmd(ControlInfo*) RedoCmd(Editor* = nil) Construct a new RedoCmd. virtual boolean Reversible() RedoCmd is not reversible. REPLACECMD PUBLIC OPERATIONS
ReplaceCmd(ControlInfo*, GraphicComp* replacement = nil) ReplaceCmd(Editor* = nil, GraphicComp* replacement = nil) Create a new ReplaceCmd, optionally supplying the GraphicComp that will replace those that are selected. GraphicComp* GetReplacement() Return the replacement GraphicComp supplied in the constructor. SLCTALLCMD PUBLIC OPERATIONS
SlctAllCmd(ControlInfo*) SlctAllCmd(Editor* = nil) Construct a new SlctAllCmd. virtual boolean Reversible() SlctAllCmd is not reversible. UNDOCMD PUBLIC OPERATIONS
UndoCmd(ControlInfo*) UndoCmd(Editor* = nil) Construct a new UndoCmd. virtual boolean Reversible() UndoCmd is not reversible. SEE ALSO
Catalog(3U), Clipboard(3U), Command(3U), Connector(3U), GraphicComp(3U), globals(3U) Unidraw 24 January 1991 edit(3U)