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

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3 root 1.2 # this extension implements popup-menu functionality for urxvt. it works
4     # together with the urxvt::popup class.
5    
6 root 1.1 sub refresh {
7     my ($self) = @_;
8    
9     my $cmd = "\x1b[H";
10    
11     my $row = 1;
12     for my $item (@{ $self->{data}{item} }) {
13 root 1.11 my $rend = "normal";
14 root 1.1
15     if ($row == $self->{hover}) {
16 root 1.11 $rend = $self->{press} ? "active" : "hover";
17 root 1.1 }
18    
19 root 1.11 $cmd .= "$item->{rend}{$rend}\x1b[K";
20 root 1.5 $cmd .= $self->locale_encode ($item->{render}->($item));
21     $cmd .= "\015\012";
22 root 1.1
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 root 1.9 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 root 1.8 $self->refresh;
40 root 1.1
41     1
42     }
43    
44     sub on_button_press {
45     my ($self, $event) = @_;
46    
47     $self->{press}[$event->{button}] = 1;
48 root 1.8 $self->refresh;
49 root 1.1
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 root 1.3 $self->{press}[$event->{button}] = 0;
62    
63 root 1.9 my ($row, $col) = ($event->{row}, $event->{col});
64 root 1.7 if ($col >= 0 && $col < $self->ncol
65     && $row >= 0 && $row < @{ $self->{data}{item} }) {
66     $self->{data}{item}[$row]{activate}->($event);
67 root 1.1 }
68    
69 root 1.8 $self->refresh;
70    
71 root 1.1 1
72     }
73    
74     sub on_focus_out {
75     my ($self) = @_;
76    
77     delete $self->{hover};
78 root 1.8 $self->refresh;
79 root 1.1
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 root 1.10 $self->cmd_parse ("\x1b[?25l\x1b[?7l");
115     $self->refresh;
116    
117 root 1.1 # might fail, but try anyways
118     $self->grab ($self->{data}{event}{time}, 1)
119 root 1.3 and $self->allow_events_async;
120 root 1.1
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 root 1.3 and $self->allow_events_async;
132 root 1.1 }
133    
134    
135    
136    
137    
138