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.11 by root, Tue Jan 17 16:22:41 2006 UTC vs.
Revision 1.14 by root, Thu Jan 19 09:47:15 2006 UTC

3sub msg { 3sub msg {
4 my ($self, $msg) = @_; 4 my ($self, $msg) = @_;
5 5
6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1); 6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1);
7 $overlay->set (0, 0, $msg); 7 $overlay->set (0, 0, $msg);
8 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub { 8 my $iow; $iow = urxvt::timer->new->after (1)->cb (sub {
9 undef $overlay; 9 undef $overlay;
10 undef $iow; 10 undef $iow;
11 }); 11 });
12} 12}
13 13
18 18
19 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20 20
21 () 21 ()
22} 22}
23
24our @hook;
23 25
24sub on_button_press { 26sub on_button_press {
25 my ($self, $event) = @_; 27 my ($self, $event) = @_;
26 28
27 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) { 29 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) {
67 69
68 /[\\"'\ \t|&;<>()]/ 70 /[\\"'\ \t|&;<>()]/
69 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 71 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
70 72
71 /^(http|ftp|telnet|irc|news):\// 73 /^(http|ftp|telnet|irc|news):\//
72 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ }); 74 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
75
76 for my $hook (@hook) {
77 if (my ($title, $cb) = $hook->($popup)) {
78 $add_button->($title, $cb);
79 }
80 }
73 81
74 if (/^\s*((?:0x)?\d+)\s*$/) { 82 if (/^\s*((?:0x)?\d+)\s*$/) {
75 $popup->add_title (sprintf "%20s", eval $1); 83 $popup->add_title (sprintf "%20s", eval $1);
76 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1); 84 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
77 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1); 85 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines