diagrams-cairo-0.5: src/Diagrams/Backend/Cairo/Text.hs
{-# LANGUAGE RankNTypes #-}
-----------------------------------------------------------------------------
-- |
-- Module : Diagrams.Backend.Cairo.Text
-- Copyright : (c) 2011 Diagrams-cairo team (see LICENSE)
-- License : BSD-style (see LICENSE)
-- Maintainer : diagrams-discuss@googlegroups.com
--
-- This module provides convenience functions for querying information from
-- Cairo. In particular, this provides utilities for information about fonts,
-- and creating text primitives with bounds based on the font being used.
--
-----------------------------------------------------------------------------
module Diagrams.Backend.Cairo.Text
(
-- * Cairo Utilities
queryCairo, unsafeCairo
, StyleParam, cairoWithStyle
-- * Extents
-- ** Data Structures
, TextExtents(..), FontExtents(..)
-- ** Queries
, getTextExtents, getFontExtents, getExtents
, kerningCorrectionIO
-- * Primitives
-- | These create diagrams instantiated with extents-based envelopes
, textLineBoundedIO, textVisualBoundedIO
-- * Unsafe
-- | These are convenient unsafe variants of the above operations
-- postfixed with \"IO\". They should be pretty well-behaved as the
-- results just depend on the parameters and the font information
-- (which ought to stay the same during a given execution).
, kerningCorrection, textLineBounded, textVisualBounded
) where
import Diagrams.Backend.Cairo.Internal
import Diagrams.Prelude
import Control.Monad.State
import System.IO.Unsafe
import qualified Graphics.Rendering.Cairo as C
-- | Executes a cairo action on a dummy, zero-size image surface, in order to
-- query things like font information.
queryCairo :: C.Render a -> IO a
queryCairo c = C.withImageSurface C.FormatA1 0 0 (`C.renderWith` c)
-- | Unsafely invokes @queryCairo@.
unsafeCairo :: C.Render a -> a
unsafeCairo = unsafePerformIO . queryCairo
-- | Existential type for mutations on objects that \"have style\". This is
-- used as a parameter to @getTextExtents@ and @getFontExtents@ in order to
-- set font-size and font-face.
type StyleParam = forall a. HasStyle a => a -> a
-- | Executes the given cairo action, with styling applied.
-- This does not do all styling - just attributes that are processed by
-- \"cairoMiscStyle\", which does clip, fill color, fill rule, and,
-- importantly for this module, font face, style, and weight.
cairoWithStyle :: C.Render a -> StyleParam -> C.Render a
cairoWithStyle f style = do
C.save
evalStateT (cairoMiscStyle (style mempty)) ()
result <- f
C.restore
return result
-- | A more convenient data structure for the results of a text-extents query.
data TextExtents = TextExtents
{ bearing, textSize, advance :: R2 }
processTextExtents :: C.TextExtents -> TextExtents
processTextExtents (C.TextExtents xb yb w h xa ya)
= TextExtents (r2 (xb,yb)) (r2 (w,h)) (r2 (xa,ya))
-- | Get the extents of a string of text, given a style to render it with.
getTextExtents :: StyleParam -> String -> C.Render TextExtents
getTextExtents style txt
= cairoWithStyle (processTextExtents <$> C.textExtents txt) style
-- | A more convenient data structure for the results of a font-extents query.
data FontExtents = FontExtents
{ ascent, descent, height :: Double
, maxAdvance :: R2
}
processFontExtents :: C.FontExtents -> FontExtents
processFontExtents (C.FontExtents a d h mx my)
= FontExtents a d h (r2 (mx,my))
-- | Gets the intrinsic extents of a font.
getFontExtents :: StyleParam -> C.Render FontExtents
getFontExtents style
= cairoWithStyle (processFontExtents <$> C.fontExtents) style
-- | Gets both the "FontExtents" and "TextExtents" of the string with the a
-- particular style applied. This is more efficient than calling both
-- @getFontExtents@ and @getTextExtents@.
getExtents :: StyleParam -> String -> C.Render (FontExtents, TextExtents)
getExtents style str = cairoWithStyle (do
fe <- processFontExtents <$> C.fontExtents
te <- processTextExtents <$> C.textExtents str
return (fe, te)
) style
-- | Queries the amount of horizontal offset that needs to be applied in order to
-- position the second character properly, in the event that it is @hcat@-ed
-- @baselineText@.
kerningCorrectionIO :: StyleParam -> Char -> Char -> IO Double
kerningCorrectionIO style a b = do
let ax t = fst . unr2 . advance <$> queryCairo (getTextExtents style t)
l <- ax [a, b]
la <- ax [a]
lb <- ax [b]
return $ l - la - lb
-- | Creates text diagrams with their envelopes set such that using
-- @vcat . map (textLineBounded style)@ stacks them in the way that
-- the font designer intended.
textLineBoundedIO :: StyleParam -> String -> IO (Diagram Cairo R2)
textLineBoundedIO style str = do
(fe, te) <- queryCairo $ getExtents style str
let box = fromCorners (p2 (0, negate $ descent fe))
(p2 (fst . unr2 $ advance te, ascent fe))
return . setEnvelope (getEnvelope box) $ style (baselineText str)
-- | Creates a text diagram with its envelope set to enclose the glyphs of the text,
-- including leading (though not trailing) whitespace.
textVisualBoundedIO :: StyleParam -> String -> IO (Diagram Cairo R2)
textVisualBoundedIO style str = do
te <- queryCairo $ getTextExtents style str
let box = fromCorners (origin .+^ bearing te)
(origin .+^ bearing te ^+^ (textSize te))
return . setEnvelope (getEnvelope box) $ style (baselineText str)
kerningCorrection :: StyleParam -> Char -> Char -> Double
kerningCorrection style a = unsafePerformIO . kerningCorrectionIO style a
textLineBounded, textVisualBounded :: StyleParam -> String -> Diagram Cairo R2
textLineBounded style = unsafePerformIO . textLineBoundedIO style
textVisualBounded style = unsafePerformIO . textVisualBoundedIO style