ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection-popup
Revision: 1.7
Committed: Mon Jan 9 19:25:57 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.6: +1 -1 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.4 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub {
9     undef $overlay;
10     undef $iow;
11     });
12     }
13    
14 root 1.1 sub on_start {
15     my ($self) = @_;
16    
17     $self->grab_button (3, urxvt::ControlMask);
18     }
19    
20     sub on_button_press {
21     my ($self, $event) = @_;
22    
23     if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) {
24     my $popup = $self->popup ($event)
25     or return 1;
26    
27     $popup->add_title ("Convert Selection");
28    
29     my $text = $self->selection;
30    
31     my $title = $text;
32     $title =~ s/[\x00-\x1f\x80-\x9f]/·/g;
33     substr $title, 40, -1, "..." if 40 < length $title;
34     $popup->add_title ($title);
35     $popup->add_separator;
36    
37     my $add_button = sub {
38     my ($title, $cb) = @_;
39    
40     $popup->add_button ($title => sub {
41     for ($text) {
42 root 1.4 my $orig = $_;
43 root 1.1 $cb->();
44 root 1.4
45     if ($orig ne $_) {
46     $self->selection ($_);
47 root 1.5 s/[\x00-\x1f\x80-\x9f]/·/g;
48 root 1.6 $self->msg ($self->special_encode ($_));
49 root 1.4 }
50 root 1.1 }
51     });
52     };
53    
54     for ($text) {
55 root 1.2 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
56    
57 root 1.3 urxvt::safe
58 root 1.7 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval urxvt::untaint $_ });
59 root 1.3
60 root 1.1 /^(\S+):(\d+):?$/
61     and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
62 root 1.2
63 root 1.1 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
64     and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
65 root 1.2
66 root 1.4 /[\\"'\ \t|&;<>()]/
67     and $add_button->("shell quote" => sub { $_ = "\Q$_" });
68    
69 root 1.1 /^(http|ftp|telnet|irc|news):\//
70     and $add_button->("run x-www-browser" => sub { system "x-www-browser \Q$_\E &" });
71     }
72    
73     $popup->show;
74    
75     return 1;
76     }
77    
78     ()
79     }
80