ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection-popup
Revision: 1.12
Committed: Wed Jan 18 10:11:03 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.11: +8 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl
2
3 sub 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->start (urxvt::NOW + 1)->cb (sub {
9 undef $overlay;
10 undef $iow;
11 });
12 }
13
14 sub on_start {
15 my ($self) = @_;
16
17 $self->{browser} = $self->x_resource ("urlLauncher") || "x-www-browser";
18
19 $self->grab_button (3, urxvt::ControlMask);
20
21 ()
22 }
23
24 our @hook;
25
26 sub on_button_press {
27 my ($self, $event) = @_;
28
29 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) {
30 my $popup = $self->popup ($event)
31 or return 1;
32
33 $popup->add_title ("Convert Selection");
34
35 my $text = $self->selection;
36
37 my $title = $text;
38 $title =~ s/[\x00-\x1f\x80-\x9f]/·/g;
39 substr $title, 40, -1, "..." if 40 < length $title;
40 $popup->add_title ($title);
41 $popup->add_separator;
42
43 my $add_button = sub {
44 my ($title, $cb) = @_;
45
46 $popup->add_button ($title => sub {
47 for ($text) {
48 my $orig = $_;
49 $cb->();
50
51 if ($orig ne $_) {
52 $self->selection ($_);
53 s/[\x00-\x1f\x80-\x9f]/·/g;
54 $self->msg ($self->special_encode ($_));
55 }
56 }
57 });
58 };
59
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
64 /^(\S+):(\d+):?$/
65 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
66
67 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
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
73 /^(http|ftp|telnet|irc|news):\//
74 and $add_button->("run $self->{browser}" => sub { urxvt::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 }
87 }
88
89 $popup->show;
90
91 return 1;
92 }
93
94 ()
95 }
96