ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/tabbed
(Generate patch)

Comparing rxvt-unicode/src/perl/tabbed (file contents):
Revision 1.22 by root, Fri Feb 8 13:18:02 2008 UTC vs.
Revision 1.24 by root, Sun Jun 15 14:07:58 2008 UTC

55 55
56 $term->resource ($_->[0] => $_->[1]) 56 $term->resource ($_->[0] => $_->[1])
57 for @{ $self->{resource} || [] }; 57 for @{ $self->{resource} || [] };
58 58
59 $term->resource (perl_ext_2 => $term->resource ("perl_ext_2") . ",-tabbed"); 59 $term->resource (perl_ext_2 => $term->resource ("perl_ext_2") . ",-tabbed");
60
61 }; 60 };
62 61
63 push @urxvt::TERM_EXT, urxvt::ext::tabbed::tab::; 62 push @urxvt::TERM_EXT, urxvt::ext::tabbed::tab::;
64 63
65 my $term = new urxvt::term 64 my $term = new urxvt::term
97 my ($self) = @_; 96 my ($self) = @_;
98 my $tab = $self->{cur}; 97 my $tab = $self->{cur};
99 98
100 my $wm_normal_hints = $self->XInternAtom ("WM_NORMAL_HINTS"); 99 my $wm_normal_hints = $self->XInternAtom ("WM_NORMAL_HINTS");
101 100
102 my %our_props = map +($_ => undef), $self->XListProperties ($self->parent); 101 my $current = delete $self->{current_properties};
103 102
104 delete $our_props{$self->XInternAtom ($_)} 103 # pass 1: copy over properties different or nonexisting
105 for qw(WM_STATE WM_ICON_SIZE
106 _NET_WM_VISIBLE_NAME _NET_WM_VISIBLE_ICON_NAME _NET_WM_ICON_GEOMETRY _NET_FRAME_EXTENTS);
107
108 for my $atom ($tab->XListProperties ($tab->parent)) { 104 for my $atom ($tab->XListProperties ($tab->parent)) {
109 my ($type, $format, $items) = $self->XGetWindowProperty ($tab->parent, $atom); 105 my ($type, $format, $items) = $self->XGetWindowProperty ($tab->parent, $atom);
110 106
111 delete $our_props{$atom}; 107 # fix up size hints
112
113 if ($atom == $wm_normal_hints) { 108 if ($atom == $wm_normal_hints) {
114 my (@hints) = unpack "l!*", $items; 109 my (@hints) = unpack "l!*", $items;
115 110
116 $hints[$_] += $self->{tabheight} for (4, 6, 16); 111 $hints[$_] += $self->{tabheight} for (4, 6, 16);
117 112
118 $items = pack "l!*", @hints; 113 $items = pack "l!*", @hints;
119 } 114 }
120 115
121 my ($dtype, $dformat, $ditems) = $self->XGetWindowProperty ($self->parent, $atom); 116 my $cur = delete $current->{$atom};
122 117
123 if ($dtype != $type or $dformat != $format or $ditems ne $items) { 118 # update if changed, we assume empty items and zero type and format will not happen
124 $self->XChangeWindowProperty ($self->parent, $atom, $type, $format, $items); 119 $self->XChangeProperty ($self->parent, $atom, $type, $format, $items)
125 } 120 if $cur->[0] != $type or $cur->[1] != $format or $cur->[2] ne $items;
126 }
127 121
122 $self->{current_properties}{$atom} = [$type, $format, $items];
123 }
124
125 # pass 2, delete all extraneous properties
128 $self->XDeleteProperty ($self->parent, $_) for keys %our_props; 126 $self->XDeleteProperty ($self->parent, $_) for keys %$current;
129} 127}
130 128
131sub make_current { 129sub make_current {
132 my ($self, $tab) = @_; 130 my ($self, $tab) = @_;
133 131
207} 205}
208 206
209sub on_init { 207sub on_init {
210 my ($self) = @_; 208 my ($self) = @_;
211 209
212 for (qw(name perl_ext_1 perl_ext_2)) { 210 for (qw(name chdir perl_ext_1 perl_ext_2)) {
213 my $val = $self->resource ($_); 211 my $val = $self->resource ($_);
214 212
215 push @{ $self->{resource} }, [$_ => $val] 213 push @{ $self->{resource} }, [$_ => $val]
216 if defined $val; 214 if defined $val;
217 } 215 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines