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.2 by root, Mon Jan 9 01:21:43 2006 UTC vs.
Revision 1.16 by root, Thu Jan 19 21:03:34 2006 UTC

1#! perl 1#! perl
2
3sub msg {
4 my ($self, $msg) = @_;
5
6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1);
7 $overlay->set (0, 0, $msg);
8 my $iow; $iow = urxvt::timer->new->after (1)->cb (sub {
9 undef $overlay;
10 undef $iow;
11 });
12}
2 13
3sub on_start { 14sub on_start {
4 my ($self) = @_; 15 my ($self) = @_;
5 16
17 $self->{browser} = $self->x_resource ("urlLauncher") || "x-www-browser";
18
6 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20
21 ()
7} 22}
8 23
9sub on_button_press { 24sub on_button_press {
10 my ($self, $event) = @_; 25 my ($self, $event) = @_;
11 26
26 my $add_button = sub { 41 my $add_button = sub {
27 my ($title, $cb) = @_; 42 my ($title, $cb) = @_;
28 43
29 $popup->add_button ($title => sub { 44 $popup->add_button ($title => sub {
30 for ($text) { 45 for ($text) {
46 my $orig = $_;
31 $cb->(); 47 $cb->();
48
49 if ($orig ne $_) {
32 $self->selection ($_); 50 $self->selection ($_);
51 s/[\x00-\x1f\x80-\x9f]/ยท/g;
52 $self->msg ($self->special_encode ($_));
53 }
33 } 54 }
34 }); 55 });
35 }; 56 };
36 57
37 for ($text) { 58 for ($text) {
59 /./
38 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 60 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
61
62 /./
63 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
39 64
40 /^(\S+):(\d+):?$/ 65 /^(\S+):(\d+):?$/
41 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 66 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
42 67
43 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 68 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
44 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge }); 69 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
45 70
71 /[\\"'\ \t|&;<>()]/
72 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
73
46 /^(http|ftp|telnet|irc|news):\// 74 /^(http|ftp|telnet|irc|news):\//
47 and $add_button->("run x-www-browser" => sub { system "x-www-browser \Q$_\E &" }); 75 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
76
77 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
78 if (my ($title, $cb) = $hook->($popup)) {
79 $add_button->($title, $cb);
80 }
81 }
82
83 if (/^\s*((?:0x)?\d+)\s*$/) {
84 $popup->add_title (sprintf "%20s", eval $1);
85 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
86 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);
87 }
48 } 88 }
49 89
50 $popup->show; 90 $popup->show;
51 91
52 return 1; 92 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines