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.7 by root, Mon Jan 9 19:25:57 2006 UTC vs.
Revision 1.23 by root, Tue Jan 4 21:35:35 2011 UTC

3sub msg { 3sub msg {
4 my ($self, $msg) = @_; 4 my ($self, $msg) = @_;
5 5
6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1); 6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1);
7 $overlay->set (0, 0, $msg); 7 $overlay->set (0, 0, $msg);
8 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub { 8 my $iow; $iow = urxvt::timer->new->after (1)->cb (sub {
9 undef $overlay; 9 undef $overlay;
10 undef $iow; 10 undef $iow;
11 }); 11 });
12} 12}
13 13
14sub on_start { 14sub on_start {
15 my ($self) = @_; 15 my ($self) = @_;
16 16
17 $self->{browser} = $self->x_resource ("urlLauncher") || "sensible-browser";
18
17 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20
21 ()
18} 22}
19 23
20sub on_button_press { 24sub on_button_press {
21 my ($self, $event) = @_; 25 my ($self, $event) = @_;
22 26
50 } 54 }
51 }); 55 });
52 }; 56 };
53 57
54 for ($text) { 58 for ($text) {
55 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 59 /\n/
60 and $add_button->("newlines to spaces" => sub { y/\n/ / });
56 61
57 urxvt::safe 62 /./
58 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval urxvt::untaint $_ }); 63 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
59 64
65 /./
66 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
67
68 /./
69 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
70
60 /^(\S+):(\d+):?$/ 71 /(\S+):(\d+):?/
61 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 72 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
62 73
63 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 74 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
64 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge }); 75 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
65 76
66 /[\\"'\ \t|&;<>()]/ 77 /[\\"'\ \t|&;<>()]/
67 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 78 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
68 79
69 /^(http|ftp|telnet|irc|news):\// 80 /^(https?|ftp|telnet|irc|news):\//
70 and $add_button->("run x-www-browser" => sub { system "x-www-browser \Q$_\E &" }); 81 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
82
83 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
84 if (my ($title, $cb) = $hook->($popup)) {
85 $add_button->($title, $cb);
86 }
87 }
88
89 if (/^\s*((?:0x)?\d+)\s*$/) {
90 $popup->add_title (sprintf "%20s", eval $1);
91 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
92 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);
93 }
71 } 94 }
72 95
73 $popup->show; 96 $popup->show;
74 97
75 return 1; 98 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines