Portability | unportable |
---|---|
Stability | unstable |
Maintainer | andrea.rossato@unibz.it |
A module for abstracting a font facility over Core fonts and Xft
- data XMonadFont
- initXMF :: String -> X XMonadFont
- releaseXMF :: XMonadFont -> X ()
- initCoreFont :: String -> X FontStruct
- releaseCoreFont :: FontStruct -> X ()
- initUtf8Font :: String -> X FontSet
- releaseUtf8Font :: FontSet -> X ()
- data Align
- stringPosition :: (Functor m, MonadIO m) => Display -> XMonadFont -> Rectangle -> Align -> String -> m (Position, Position)
- textWidthXMF :: MonadIO m => Display -> XMonadFont -> String -> m Int
- textExtentsXMF :: MonadIO m => XMonadFont -> String -> m (Int32, Int32)
- printStringXMF :: (Functor m, MonadIO m) => Display -> Drawable -> XMonadFont -> GC -> String -> String -> Position -> Position -> String -> m ()
- stringToPixel :: (Functor m, MonadIO m) => Display -> String -> m Pixel
- decodeInput :: String -> String
- encodeOutput :: String -> String
Usage:
See Xmonad.Layout.Tabbed or XMonad.Prompt for usage examples
initXMF :: String -> X XMonadFontSource
When initXMF gets a font name that starts with 'xft:' it switches to the Xft backend Example: 'xft: Sans-10'
releaseXMF :: XMonadFont -> X ()Source
initCoreFont :: String -> X FontStructSource
Given a fontname returns the font structure. If the font name is not valid the default font will be loaded and returned.
releaseCoreFont :: FontStruct -> X ()Source
initUtf8Font :: String -> X FontSetSource
releaseUtf8Font :: FontSet -> X ()Source
String position
stringPosition :: (Functor m, MonadIO m) => Display -> XMonadFont -> Rectangle -> Align -> String -> m (Position, Position)Source
Return the string x and y Position
in a Rectangle
, given a
FontStruct
and the Align
ment
textWidthXMF :: MonadIO m => Display -> XMonadFont -> String -> m IntSource
textExtentsXMF :: MonadIO m => XMonadFont -> String -> m (Int32, Int32)Source
printStringXMF :: (Functor m, MonadIO m) => Display -> Drawable -> XMonadFont -> GC -> String -> String -> Position -> Position -> String -> m ()Source
stringToPixel :: (Functor m, MonadIO m) => Display -> String -> m PixelSource
Get the Pixel value for a named color: if an invalid name is given the black pixel will be returned.
decodeInput :: String -> StringSource
encodeOutput :: String -> StringSource