ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection-popup
Revision: 1.17
Committed: Fri Jan 20 10:27:08 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.16: +1 -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->after (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 sub on_button_press {
25 my ($self, $event) = @_;
26
27 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) {
28 my $popup = $self->popup ($event)
29 or return 1;
30
31 $popup->add_title ("Convert Selection");
32
33 my $text = $self->selection;
34
35 my $title = $text;
36 $title =~ s/[\x00-\x1f\x80-\x9f]/·/g;
37 substr $title, 40, -1, "..." if 40 < length $title;
38 $popup->add_title ($title);
39 $popup->add_separator;
40
41 my $add_button = sub {
42 my ($title, $cb) = @_;
43
44 $popup->add_button ($title => sub {
45 for ($text) {
46 my $orig = $_;
47 $cb->();
48
49 if ($orig ne $_) {
50 $self->selection ($_);
51 s/[\x00-\x1f\x80-\x9f]/·/g;
52 $self->msg ($self->special_encode ($_));
53 }
54 }
55 });
56 };
57
58 for ($text) {
59 /./
60 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
61
62 /./
63 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
64
65 /^(\S+):(\d+):?$/
66 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
67
68 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
69 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
70
71 /[\\"'\ \t|&;<>()]/
72 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
73
74 /^(http|ftp|telnet|irc|news):\//
75 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
76
77 warn "hook for $self $self->{term}\n";#d#
78 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
79 if (my ($title, $cb) = $hook->($popup)) {
80 $add_button->($title, $cb);
81 }
82 }
83
84 if (/^\s*((?:0x)?\d+)\s*$/) {
85 $popup->add_title (sprintf "%20s", eval $1);
86 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
87 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);
88 }
89 }
90
91 $popup->show;
92
93 return 1;
94 }
95
96 ()
97 }
98