ยค horizontalP, verticalP, et al

Placers: linear layouts

Types

horizontalP :: Placer
verticalP :: Placer
horizontalP' :: Distance -> Placer
verticalP' :: Distance -> Placer

Description

These layout functions are used in conjuction with placerF to specify the placement of the fudgets. As the name suggests, these functions place the fudgets in a horizontal row or a vertical column.

Example

 placerF horizontalP (listF [(n,buttonF (show n)) | n<-[1..3]])

See Also

Other placers: matrixP, tableP.

Related combinators: placerF.

Dynamic Layout.