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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines