/usr/lib/perl5/Tk/Tiler.pm is in perl-tk 1:804.031-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | # Copyright (c) 1995-2004 Nick Ing-Simmons. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
# An example of a geometry manager "widget" in perl
package Tk::Tiler;
require Tk;
require Tk::Frame;
use vars qw($VERSION);
#$VERSION = sprintf '4.%03d', q$Revision: #12 $ =~ /\D(\d+)\s*$/;
$VERSION = '4.013';
use base qw(Tk::Frame);
Construct Tk::Widget 'Tiler';
sub Tk::Widget::ScrlTiler { shift->Scrolled('Tiler' => @_) }
sub FocusChildren
{
return (wantarray) ? () : 0;
}
sub Populate
{
my ($obj,$args) = @_;
$obj->SUPER::Populate($args);
$obj->{Slaves} = [];
$obj->{LayoutPending} = 0;
$obj->{Start} = 0;
$obj->{Sw} = 0;
$obj->{Sh} = 0;
$obj->ConfigSpecs('-takefocus' => ['SELF', 'takeFocus','TakeFocus',1],
'-highlightthickness' => ['SELF', 'highlightThickness','HighlightThickness',2],
'-yscrollcommand' => ['CALLBACK',undef,undef,undef],
'-columns' => ['PASSIVE','columns','Columns',5],
'-rows' => ['PASSIVE','rows','Rows',10]
);
return $obj;
}
sub change_size
{
my ($w) = shift;
my $r = $w->cget('-rows');
my $c = $w->cget('-columns');
my $bw = $w->cget(-highlightthickness);
if (defined $r && defined $c)
{
$w->GeometryRequest($c*$w->{Sw}+2*$bw,$r*$w->{Sh}+2*$bw);
}
}
sub Layout
{
my $m = shift;
my $bw = $m->cget(-highlightthickness);
my $why = $m->{LayoutPending};
$m->{LayoutPending} = 0;
my $W = $m->Width;
my $H = $m->Height;
my $w = $m->{Sw} || 1; # max width of slave
my $h = $m->{Sh} || 1; # max height of slave
my $x = $bw;
my $y = $bw;
my $start = 0;
# Set size and position of slaves
my $rows = $m->{Rows} = int(($H-2*$bw)/$h) || 1;
my $cols = $m->{Cols} = int(($W-2*$bw)/$w) || 1;
my $need = $m->{Need} = int( (@{$m->{Slaves}}+$cols-1)/$cols );
$m->{Start} = ($need - $rows) if ($m->{Start} + $rows > $need);
$m->{Start} = 0 if ($m->{Start} < 0);
my $row = 0;
my @posn = ();
my $s;
foreach $s (@{$m->{Slaves}})
{
if ($row < $m->{Start})
{
$s->UnmapWindow;
$x += $w;
if ($x+$w+$bw > $W)
{
$x = $bw;
$row++;
}
}
elsif ($y+$h+$bw > $H)
{
$s->UnmapWindow;
$s->ResizeWindow($w,$h) if ($why & 1);
}
else
{
push(@posn,[$s,$x,$y]);
$x += $w;
if ($x+$w+$bw > $W)
{
$x = $bw;
$y += $h;
$row++;
}
}
$s->ResizeWindow($w,$h) if ($why & 1);
}
$row++ if ($x > $bw);
if (defined $m->{Prev} && $m->{Prev} > $m->{Start})
{
@posn = reverse(@posn);
}
while (@posn)
{
my $posn = shift(@posn);
my ($s,$x,$y) = (@$posn);
$s->MoveWindow($x,$y);
$s->MapWindow;
}
$m->{Prev} = $m->{Start};
$m->Callback(-yscrollcommand => $m->{Start}/$need,$row/$need) if $need;
}
sub QueueLayout
{
my ($m,$why) = @_;
$m->afterIdle(['Layout',$m]) unless ($m->{LayoutPending});
$m->{LayoutPending} |= $why;
}
sub SlaveGeometryRequest
{
my ($m,$s) = @_;
my $sw = $s->ReqWidth;
my $sh = $s->ReqHeight;
my $sz = 0;
if ($sw > $m->{Sw})
{
$m->{Sw} = $sw;
$m->QueueLayout(1);
$sz++;
}
if ($sh > $m->{Sh})
{
$m->{Sh} = $sh;
$m->QueueLayout(1);
$sz++;
}
$m->change_size if ($sz);
}
sub LostSlave
{
my ($m,$s) = @_;
@{$m->{Slaves}} = grep($_ != $s,@{$m->{Slaves}});
$m->QueueLayout(2);
}
sub Manage
{
my $m = shift;
my $s;
foreach $s (@_)
{
$m->ManageGeometry($s);
push(@{$m->{Slaves}},$s);
$m->SlaveGeometryRequest($s);
}
$m->QueueLayout(2 | 1);
}
sub moveto
{
my ($m,$frac) = (@_);
$m->{Start} = int($m->{Need} * $frac);
$m->QueueLayout(4);
}
sub scroll
{
my ($m,$delta,$type) = @_;
$delta *= $m->{Rows}/2 if ($type eq 'pages');
$m->{Start} += $delta;
$m->QueueLayout(4);
}
sub yview { my $w = shift; my $c = shift; $w->$c(@_) }
sub FocusIn
{
my ($w) = @_;
# print 'Focus ',$w->PathName,"\n";
}
sub ClassInit
{
my ($class,$mw) = @_;
$mw->bind($class,'<Configure>',['QueueLayout',8]);
$mw->bind($class,'<FocusIn>', 'NoOp');
$mw->YscrollBind($class);
return $class;
}
1;
|