Go to the first, previous, next, last section, table of contents.

Packer data types

* Packer
abstract handle to refer to and use the Packer geometry manager.

* PackerAttributes
* PackerAttribute
the PackerAttribute algebraic data type encodes the different options the Packer accepts:

type PackerAttributes = [PackerAttribute]

data PackerAttribute 
 = PackerFill PackFill
 | PackerSide CompassDirection
 | PackerPad Axis Unit
 | PackerIPad Axis Unit
 | PackerExpand Bool
 | PackerAnchor CompassDirection
   deriving Eq

for full explanation of what these attributes do, I suggest looking at documentation for Tk, here's a short summary:

* PackFill
algebraic type for controlling the filling behaviour of components:

data PackFill 
 = NoFill | FillX | FillY | FillBoth
   deriving Eq


Go to the first, previous, next, last section, table of contents.