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