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.25 by root, Wed Jun 6 15:06:41 2012 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines