tableP' :: Int -> LayoutDir -> Int -> Placer
tableP' count direction dist
tableP'
organizes boxes into a table, like matrixP, but with more control.
data LayoutDir = Horizontal | Vertical
count :: Int
direction :: LayoutDir
dist :: Int
placerF (tableP' 2 Vertical 5) (listF [(n,buttonF (show n)) | n<-[1..3]])
Related combinators: placerF, listLF.
Dynamic Layout.