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.5 by root, Mon Jan 9 06:29:47 2006 UTC vs.
Revision 1.9 by root, Thu Jan 12 02:20:56 2006 UTC

1#! perl 1#! perl
2 2
3sub msg { 3sub msg {
4 my ($self, $msg1, $msg2) = @_; 4 my ($self, $msg) = @_;
5 5
6 my $overlay = $self->overlay (0, 0, 6 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); 7 $overlay->set (0, 0, $msg);
9 $overlay->set (0, 1, $msg2);
10 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub { 8 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub {
11 undef $overlay; 9 undef $overlay;
12 undef $iow; 10 undef $iow;
13 }); 11 });
14} 12}
15 13
16sub on_start { 14sub on_start {
17 my ($self) = @_; 15 my ($self) = @_;
18 16
17 $self->{browser} = urxvt::untaint $self->x_resource ("urlLauncher") || "x-www-browser";
18
19 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20
21 ()
20} 22}
21 23
22sub on_button_press { 24sub on_button_press {
23 my ($self, $event) = @_; 25 my ($self, $event) = @_;
24 26
45 $cb->(); 47 $cb->();
46 48
47 if ($orig ne $_) { 49 if ($orig ne $_) {
48 $self->selection ($_); 50 $self->selection ($_);
49 s/[\x00-\x1f\x80-\x9f]/·/g; 51 s/[\x00-\x1f\x80-\x9f]/·/g;
50 $self->msg ("Selection replaced by", $_); 52 $self->msg ($self->special_encode ($_));
51 } 53 }
52 } 54 }
53 }); 55 });
54 }; 56 };
55 57
56 for ($text) { 58 for ($text) {
57 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 59 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
58 60
59 urxvt::safe 61 urxvt::safe
60 and $add_button->("eval perl expression" => sub { $_ = eval urxvt::untaint $_ }); 62 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval urxvt::untaint $_ });
61 63
62 /^(\S+):(\d+):?$/ 64 /^(\S+):(\d+):?$/
63 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/ });
64 66
65 /%[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]/
67 69
68 /[\\"'\ \t|&;<>()]/ 70 /[\\"'\ \t|&;<>()]/
69 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 71 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
70 72
71 /^(http|ftp|telnet|irc|news):\// 73 /^(http|ftp|telnet|irc|news):\//
72 and $add_button->("run x-www-browser" => sub { system "x-www-browser \Q$_\E &" }); 74 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ });
73 } 75 }
74 76
75 $popup->show; 77 $popup->show;
76 78
77 return 1; 79 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines