boxes-0.1.2: 2D text pretty-printing library

Portabilityportable
Stabilityexperimental
Maintainerbyorgey@cis.upenn.edu

Text.PrettyPrint.Boxes

Contents

Description

A pretty-printing library for laying out text in two dimensions, using a simple box model.

Synopsis

Constructing boxes

data Box Source

The basic data type. A box has a specified size and some sort of contents.

Instances

Show Box 
IsString Box

Convenient ability to use bare string literals as boxes.

nullBox :: BoxSource

The null box, which has no content and no size. It is quite useless.

emptyBox :: Int -> Int -> BoxSource

emptyBox r c is an empty box with r rows and c columns. Useful for effecting more fine-grained positioning of other boxes, by inserting empty boxes of the desired size in between them.

char :: Char -> BoxSource

A 1x1 box containing a single character.

text :: String -> BoxSource

A (1 x len) box containing a string of length len.

para :: Alignment -> Int -> String -> BoxSource

para algn w t is a box of width w, containing text t, aligned according to algn, flowed to fit within the given width.

columns :: Alignment -> Int -> Int -> String -> [Box]Source

columns w h t is a list of boxes, each of width w and height at most h, containing text t flowed into as many columns as necessary.

Layout of boxes

(<>) :: Box -> Box -> BoxSource

Paste two boxes together horizontally, using a default (top) alignment.

(<+>) :: Box -> Box -> BoxSource

Paste two boxes together horizontally with a single intervening column of space, using a default (top) alignment.

hcat :: Alignment -> [Box] -> BoxSource

Glue a list of boxes together horizontally, with the given alignment.

hsep :: Int -> Alignment -> [Box] -> BoxSource

hsep sep a bs lays out bs horizontally with alignment a, with sep amount of space in between each.

(//) :: Box -> Box -> BoxSource

Paste two boxes together vertically, using a default (left) alignment.

(/+/) :: Box -> Box -> BoxSource

Paste two boxes together vertically with a single intervening row of space, using a default (left) alignment.

vcat :: Alignment -> [Box] -> BoxSource

Glue a list of boxes together vertically, with the given alignment.

vsep :: Int -> Alignment -> [Box] -> BoxSource

vsep sep a bs lays out bs vertically with alignment a, with sep amount of space in between each.

punctuateH :: Alignment -> Box -> [Box] -> BoxSource

punctuateH a p bs horizontally lays out the boxes bs with a copy of p interspersed between each.

punctuateV :: Alignment -> Box -> [Box] -> BoxSource

A vertical version of punctuateH.

Alignment

data Alignment Source

Data type for specifying the alignment of boxes.

left :: AlignmentSource

Align boxes to the left.

right :: AlignmentSource

Align boxes to the right.

top :: AlignmentSource

Align boxes along their tops.

bottom :: AlignmentSource

Align boxes along their bottoms.

center1 :: AlignmentSource

Align boxes centered, but biased to the left/top in case of unequal parities.

center2 :: AlignmentSource

Align boxes centered, but biased to the right/bottom in case of unequal parities.

moveLeft :: Int -> Box -> BoxSource

Move a box left by putting it in a larger box with extra columns, aligned left. Note that the name of this function is something of a white lie, as this will only result in the box being moved left by the specified amount if it is already in a larger right-aligned context.

moveRight :: Int -> Box -> BoxSource

Move a box right by putting it in a larger box with extra columns, aligned right. See the disclaimer for moveLeft.

moveUp :: Int -> Box -> BoxSource

Move a box "up" by putting it in a larger box with extra rows, aligned to the top. See the disclaimer for moveLeft.

moveDown :: Int -> Box -> BoxSource

Move a box down by putting it in a larger box with extra rows, aligned to the bottom. See the disclaimer for moveLeft.

alignHoriz :: Alignment -> Int -> Box -> BoxSource

alignHoriz algn n bx creates a box of width n, with the contents and height of bx, horizontally aligned according to algn.

alignVert :: Alignment -> Int -> Box -> BoxSource

alignVert algn n bx creates a box of height n, with the contents and width of bx, vertically aligned according to algn.

align :: Alignment -> Alignment -> Int -> Int -> Box -> BoxSource

align ah av r c bx creates an r x c box with the contents of bx, aligned horizontally according to ah and vertically according to av.

Inspecting boxes

Rendering boxes

render :: Box -> StringSource

Render a Box as a String, suitable for writing to the screen or a file.

printBox :: Box -> IO ()Source

A convenience function for rendering a box to stdout.