ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/urxvt-popup
Revision: 1.10
Committed: Sun Jan 8 00:48:14 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.9: +3 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl
2
3 # this extension implements popup-menu functionality for urxvt. it works
4 # together with the urxvt::popup class.
5
6 sub refresh {
7 my ($self) = @_;
8
9 my $cmd = "\x1b[H";
10
11 my $row = 1;
12 for my $item (@{ $self->{data}{item} }) {
13 my $rend = "\x1b[30;47m";
14
15 if ($row == $self->{hover}) {
16 $rend = $self->{press} ? "\x1b[m" : "\x1b[30;46m";
17 }
18
19 $cmd .= "$rend\x1b[K";
20 $cmd .= $self->locale_encode ($item->{render}->($item));
21 $cmd .= "\015\012";
22
23 $row++;
24 }
25
26 $self->cmd_parse (substr $cmd, 0, -2);
27 }
28
29 sub on_motion_notify {
30 my ($self, $event) = @_;
31
32 delete $self->{hover};
33
34 my ($row, $col) = ($event->{row}, $event->{col});
35 if ($col >= 0 && $col < $self->ncol
36 && $row >= 0 && $row < @{ $self->{data}{item} }) {
37 $self->{hover} = $event->{row} + 1;
38 }
39 $self->refresh;
40
41 1
42 }
43
44 sub on_button_press {
45 my ($self, $event) = @_;
46
47 $self->{press}[$event->{button}] = 1;
48 $self->refresh;
49
50 1
51 }
52
53 sub on_button_release {
54 my ($self, $event) = @_;
55
56 if ($event->{button} == $self->{data}{event}{button}) {
57 $self->ungrab;
58 $self->destroy;
59 }
60
61 $self->{press}[$event->{button}] = 0;
62
63 my ($row, $col) = ($event->{row}, $event->{col});
64 if ($col >= 0 && $col < $self->ncol
65 && $row >= 0 && $row < @{ $self->{data}{item} }) {
66 $self->{data}{item}[$row]{activate}->($event);
67 }
68
69 $self->refresh;
70
71 1
72 }
73
74 sub on_focus_out {
75 my ($self) = @_;
76
77 delete $self->{hover};
78 $self->refresh;
79
80 ()
81 }
82
83 sub on_init {
84 my ($self) = @_;
85
86 my $data = $self->{data} = $urxvt::popup::self;
87
88 $_->{width} = $self->strwidth ($_->{text})
89 for @{ $data->{item} };
90
91 $self->resource ($_ => $data->{term}->resource ($_))
92 for qw(font boldFont italicFont boldItalicFont color+0 color+1);
93
94 my $width = List::Util::max map $_->{width}, @{ $data->{item} };
95 my $height = @{ $data->{item} };
96
97 my $pos = "";
98
99 if ($data->{event}) {
100 my $x = int List::Util::max 0, $data->{event}{x_root} - $width * $data->{term}->fwidth * 0.5;
101 my $y = int List::Util::max 0, $data->{event}{y_root} - $data->{term}->fheight * 0.5;
102
103 $pos = "+$x+$y";
104 }
105
106 $self->resource (geometry => "${width}x${height}$pos");
107
108 ()
109 }
110
111 sub on_start {
112 my ($self) = @_;
113
114 $self->cmd_parse ("\x1b[?25l\x1b[?7l");
115 $self->refresh;
116
117 # might fail, but try anyways
118 $self->grab ($self->{data}{event}{time}, 1)
119 and $self->allow_events_async;
120
121 on_button_press $self, $self->{data}{event} if $self->{data}{event}{button};
122
123 ()
124 }
125
126 sub on_map_notify {
127 my ($self, $event) = @_;
128
129 # should definitely not fail
130 $self->grab ($self->{data}{event}{time}, 1)
131 and $self->allow_events_async;
132 }
133
134
135
136
137
138