ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection-popup
(Generate patch)

Comparing rxvt-unicode/src/perl/selection-popup (file contents):
Revision 1.4 by root, Mon Jan 9 04:19:36 2006 UTC vs.
Revision 1.28 by root, Tue Sep 4 22:41:12 2012 UTC

1#! perl 1#! perl
2 2
3#:META:X_RESOURCE:url-launcher:string:shell command to use
4
5=head1 NAME
6
7selection-popup (enabled by default)
8
9=head1 DESCRIPTION
10
11Binds a popup menu to Ctrl-Button3 that lets you convert the selection
12text into various other formats/action (such as uri unescaping, perl
13evaluation, web-browser starting etc.), depending on content.
14
15Other extensions can extend this popup menu by pushing a code reference
16onto C<< @{ $term->{selection_popup_hook} } >>, which gets called whenever
17the popup is being displayed.
18
19Its sole argument is the popup menu, which can be modified. The selection
20is in C<$_>, which can be used to decide whether to add something or not.
21It should either return nothing or a string and a code reference. The
22string will be used as button text and the code reference will be called
23when the button gets activated and should transform C<$_>.
24
25The following will add an entry C<a to b> that transforms all C<a>s in
26the selection to C<b>s, but only if the selection currently contains any
27C<a>s:
28
29 push @{ $self->{term}{selection_popup_hook} }, sub {
30 /a/ ? ("a to b" => sub { s/a/b/g }
31 : ()
32 };
33
34=cut
35
3sub msg { 36sub msg {
4 my ($self, $msg1, $msg2) = @_; 37 my ($self, $msg) = @_;
5 38
6 my $overlay = $self->overlay (0, 0, 39 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1);
7 (List::Util::max map $self->strwidth ($_), $msg1, $msg2), 2);
8 $overlay->set (0, 0, $msg1); 40 $overlay->set (0, 0, $msg);
9 $overlay->set (0, 1, $msg2);
10 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub { 41 my $iow; $iow = urxvt::timer->new->after (1)->cb (sub {
11 undef $overlay; 42 undef $overlay;
12 undef $iow; 43 undef $iow;
13 }); 44 });
14} 45}
15 46
16sub on_start { 47sub on_start {
17 my ($self) = @_; 48 my ($self) = @_;
18 49
50 $self->{browser} = $self->x_resource ("url-launcher") || "sensible-browser";
51
19 $self->grab_button (3, urxvt::ControlMask); 52 $self->grab_button (3, urxvt::ControlMask);
53
54 ()
20} 55}
21 56
22sub on_button_press { 57sub on_button_press {
23 my ($self, $event) = @_; 58 my ($self, $event) = @_;
24 59
44 my $orig = $_; 79 my $orig = $_;
45 $cb->(); 80 $cb->();
46 81
47 if ($orig ne $_) { 82 if ($orig ne $_) {
48 $self->selection ($_); 83 $self->selection ($_);
49 $self->msg ("Selection replaced by", $_); 84 s/[\x00-\x1f\x80-\x9f]/ยท/g;
85 $self->msg ($self->special_encode ($_));
50 } 86 }
51 } 87 }
52 }); 88 });
53 }; 89 };
54 90
55 for ($text) { 91 for ($text) {
56 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 92 /\n/
93 and $add_button->("newlines to spaces" => sub { y/\n/ / });
57 94
58 urxvt::safe 95 /./
59 and $add_button->("eval perl expression" => sub { $_ = eval urxvt::untaint $_ }); 96 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
60 97
98 /./
99 and $add_button->("eval perl expression" => sub { my $self = $self; no warnings; $_ = eval $_; $_ = "$@" if $@ });
100
101 /./
102 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
103
61 /^(\S+):(\d+):?$/ 104 /(\S+):(\d+):?/
62 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 105 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
63 106
64 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 107 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
65 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge }); 108 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
66 109
67 /[\\"'\ \t|&;<>()]/ 110 /[\\"'\ \t|&;<>()]/
68 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 111 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
69 112
70 /^(http|ftp|telnet|irc|news):\// 113 /^(https?|ftp|telnet|irc|news):\//
71 and $add_button->("run x-www-browser" => sub { system "x-www-browser \Q$_\E &" }); 114 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
115
116 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
117 if (my ($title, $cb) = $hook->($popup)) {
118 $add_button->($title, $cb);
119 }
120 }
121
122 if (/^\s*((?:0x)?\d+)\s*$/) {
123 $popup->add_title (sprintf "%20s", eval $1);
124 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
125 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);
126 }
72 } 127 }
73 128
74 $popup->show; 129 $popup->show;
75 130
76 return 1; 131 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines