home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _bf05bd81177957ed5557f33c096ef5f4 < prev    next >
Encoding:
Text File  |  2004-06-01  |  721 b   |  33 lines

  1.  
  2. =head1 NAME
  3.  
  4. Tk::Tiler - Scrollable frame with sub-widgets arranged into rows
  5.  
  6. =for pm Tk/Tiler.pm
  7.  
  8. =for category Tk Geometry Management
  9.  
  10. =head1 SYNOPSIS
  11.  
  12.   use Tk::Tiler;
  13.  
  14.   my $tl = $parent->Scrolled('Tiler', -columns => n, -rows => n);
  15.  
  16.   my $a  = $tl->Xxxxx(...);
  17.   my $b  = $tl->Xxxxx(...);
  18.   my $c  = $tl->Xxxxx(...);
  19.  
  20.   $tl->Manage($a,$b,$c);
  21.  
  22. =head1 DESCRIPTION
  23.  
  24. Tiler is derived form Tk::Frame. It is a geometry managing widget which
  25. accepts widgets to manage. It places the widgets in a grid with as many
  26. widgets as possible in a row. All the "slots" in the grid are the same size,
  27. which is determined by the largest managed widget.
  28.  
  29. The grid may be scrolled vertically.
  30.  
  31. =cut
  32.  
  33.