ยค tableP'

Placers: matrixes and tables

Types

tableP' :: Int -> LayoutDir -> Distance -> Placer

Synopsis

tableP' count direction dist

data LayoutDir = Horizontal | Vertical

Description

tableP' organizes boxes into a table, like matrixP, but with more control.

Arguments

count :: Int
Number of rows or colums.
direction :: LayoutDir
Selects rowwise or colmnwise order.
dist :: Distance
The distance between the fudgets.

Example

 placerF (tableP' 2 Vertical 5) (listF [(n,buttonF (show n)) | n<-[1..3]])

See Also

Other placers: tableP, horizontalP et al, matrixP.

Related combinators: placerF, listLF.

Dynamic Layout.