ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection-popup
Revision: 1.22
Committed: Tue Jan 4 21:34:18 2011 UTC (13 years, 4 months ago) by root
Branch: MAIN
Changes since 1.21: +3 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3 root 1.4 sub msg {
4 root 1.6 my ($self, $msg) = @_;
5 root 1.4
6 root 1.6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1);
7     $overlay->set (0, 0, $msg);
8 root 1.13 my $iow; $iow = urxvt::timer->new->after (1)->cb (sub {
9 root 1.4 undef $overlay;
10     undef $iow;
11     });
12     }
13    
14 root 1.1 sub on_start {
15     my ($self) = @_;
16    
17 ayin 1.21 $self->{browser} = $self->x_resource ("urlLauncher") || "sensible-browser";
18 root 1.8
19 root 1.1 $self->grab_button (3, urxvt::ControlMask);
20 root 1.9
21     ()
22 root 1.1 }
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 root 1.4 my $orig = $_;
47 root 1.1 $cb->();
48 root 1.4
49     if ($orig ne $_) {
50     $self->selection ($_);
51 root 1.5 s/[\x00-\x1f\x80-\x9f]/·/g;
52 root 1.6 $self->msg ($self->special_encode ($_));
53 root 1.4 }
54 root 1.1 }
55     });
56     };
57    
58     for ($text) {
59 root 1.22 /\n/
60     and $add_button->("newlines to spaces" => sub { y/\n/ / });
61    
62 root 1.16 /./
63     and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
64    
65     /./
66     and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
67 root 1.3
68 root 1.19 /./
69     and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
70    
71 root 1.1 /^(\S+):(\d+):?$/
72     and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
73 root 1.2
74 root 1.1 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
75     and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
76 root 1.2
77 root 1.4 /[\\"'\ \t|&;<>()]/
78     and $add_button->("shell quote" => sub { $_ = "\Q$_" });
79    
80 ayin 1.20 /^(https?|ftp|telnet|irc|news):\//
81 root 1.14 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
82 root 1.10
83 root 1.15 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
84 root 1.12 if (my ($title, $cb) = $hook->($popup)) {
85     $add_button->($title, $cb);
86     }
87     }
88    
89 root 1.10 if (/^\s*((?:0x)?\d+)\s*$/) {
90     $popup->add_title (sprintf "%20s", eval $1);
91     $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
92     $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);
93     }
94 root 1.1 }
95    
96     $popup->show;
97    
98     return 1;
99     }
100    
101     ()
102     }
103