1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
{-# LANGUAGE CPP #-}
{-# OPTIONS_HADDOCK hide #-}
-- -*-haskell-*-
-- GIMP Toolkit (GTK) - pango non-GObject types PangoTypes
--
-- Author : Axel Simon
--
-- Created: 9 February 2003
--
-- Copyright (C) 1999-2005 Axel Simon
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2.1 of the License, or (at your option) any later version.
--
-- This library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
--
-- #hide
-- |
-- Maintainer : gtk2hs-users@lists.sourceforge.net
-- Stability : provisional
-- Portability : portable (depends on GHC)
--
-- Define types used in Pango which are not derived from GObject.
--
module Graphics.Rendering.Pango.BasicTypes (
GInt,
Language(Language),
emptyLanguage,
languageFromString,
FontStyle(..),
Weight(..),
Variant(..),
Stretch(..),
Underline(..),
#if PANGO_VERSION_CHECK(1,16,0)
PangoGravity(..),
PangoGravityHint(..),
#endif
PangoString(PangoString),
makeNewPangoString,
withPangoString,
PangoItem(PangoItem),
PangoItemRaw(PangoItemRaw),
makeNewPangoItemRaw,
withPangoItemRaw,
GlyphItem(GlyphItem),
GlyphStringRaw(GlyphStringRaw),
makeNewGlyphStringRaw,
PangoLayout(PangoLayout),
LayoutIter(LayoutIter),
LayoutIterRaw(LayoutIterRaw),
makeNewLayoutIterRaw,
LayoutLine(LayoutLine),
LayoutLineRaw(LayoutLineRaw),
makeNewLayoutLineRaw,
FontDescription(FontDescription),
makeNewFontDescription,
PangoAttrList,
CPangoAttribute,
) where
import Control.Monad (liftM)
import Data.IORef ( IORef )
import qualified Data.Text as T (unpack)
import System.Glib.FFI
import System.Glib.UTFString
{#import Graphics.Rendering.Pango.Types#} (Font, PangoLayoutRaw)
-- {#import Graphics.Rendering.Pango.Enums#}
{# context lib="pango" prefix="pango" #}
-- | An RFC-3066 language designator to choose scripts.
--
{#pointer* Language newtype#} deriving Eq
-- | Define the gint that c2hs is the Haskell type.
type GInt = {#type gint#}
instance Show Language where
show (Language ptr)
| ptr==nullPtr = ""
| otherwise = T.unpack . unsafePerformIO $ peekUTFString (castPtr ptr)
-- | Specifying no particular language.
emptyLanguage :: Language
emptyLanguage = Language nullPtr
-- | Take a RFC-3066 format language tag as a string and convert it to a
-- 'Language' type that can be efficiently passed around and compared with
-- other language tags.
--
-- * This function first canonicalizes the string by converting it to
-- lowercase, mapping \'_\' to \'-\', and stripping all characters
-- other than letters and \'-\'.
--
languageFromString :: GlibString string => string -> IO Language
languageFromString language = liftM Language $
withUTFString language {#call language_from_string#}
-- | The style of a font.
--
-- * 'StyleOblique' is a slanted font like 'StyleItalic',
-- but in a roman style.
--
{#enum Style as FontStyle {underscoreToCase} deriving (Eq)#}
instance Show FontStyle where
showsPrec _ StyleNormal = shows "normal"
showsPrec _ StyleOblique = shows "oblique"
showsPrec _ StyleItalic = shows "italic"
-- | Define attributes for 'Weight'.
--
{#enum Weight {underscoreToCase} deriving (Eq)#}
instance Show Weight where
showsPrec _ WeightUltralight = shows "ultralight"
showsPrec _ WeightLight = shows "light"
showsPrec _ WeightNormal = shows "normal"
showsPrec _ WeightSemibold = shows "semibold"
showsPrec _ WeightBold = shows "bold"
showsPrec _ WeightUltrabold = shows "ultrabold"
showsPrec _ WeightHeavy = shows "heavy"
#if PANGO_VERSION_CHECK(1,24,0)
showsPrec _ WeightThin = shows "thin"
showsPrec _ WeightBook = shows "book"
showsPrec _ WeightMedium = shows "medium"
showsPrec _ WeightUltraheavy = shows "ultraheavy"
#endif
-- | The variant of a font.
--
-- * The 'VariantSmallCaps' is a version of a font where lower case
-- letters are shown as physically smaller upper case letters.
--
{#enum Variant {underscoreToCase} deriving (Eq)#}
instance Show Variant where
showsPrec _ VariantNormal = shows "normal"
showsPrec _ VariantSmallCaps = shows "smallcaps"
-- | Define how wide characters are.
--
{#enum Stretch {underscoreToCase} deriving (Eq)#}
instance Show Stretch where
showsPrec _ StretchUltraCondensed = shows "ultracondensed"
showsPrec _ StretchExtraCondensed = shows "extracondensed"
showsPrec _ StretchCondensed = shows "condensed"
showsPrec _ StretchSemiCondensed = shows "semicondensed"
showsPrec _ StretchNormal = shows "normal"
showsPrec _ StretchSemiExpanded = shows "semiexpanded"
showsPrec _ StretchExpanded = shows "expanded"
showsPrec _ StretchExtraExpanded = shows "extraexpanded"
showsPrec _ StretchUltraExpanded = shows "ultraexpanded"
-- | Define attributes for 'Underline'.
--
-- * The squiggly underline for errors is only available in Gtk 2.4 and higher.
--
{#enum Underline {underscoreToCase} deriving (Eq)#}
instance Show Underline where
showsPrec _ UnderlineNone = shows "none"
showsPrec _ UnderlineSingle = shows "single"
showsPrec _ UnderlineDouble = shows "double"
showsPrec _ UnderlineLow = shows "low"
showsPrec _ UnderlineError = shows "error"
#if PANGO_VERSION_CHECK(1,16,0)
-- | The 'PangoGravity' type represents the orientation of glyphs in a
-- segment of text. The value 'GravitySouth', for instance, indicates that the
-- text stands upright, i.e. that the base of the letter is directed
-- downwards.
--
-- This is useful when rendering vertical text layouts. In those situations,
-- the layout is rotated using a non-identity 'PangoMatrix', and then glyph
-- orientation is controlled using 'PangoGravity'. Not every value in this
-- enumeration makes sense for every usage of 'Gravity'; for example,
-- 'PangoGravityAuto' only can be passed to 'pangoContextSetBaseGravity' and
-- can only be returned by 'pangoContextGetBaseGravity'.
--
-- * See also: 'PangoGravityHint'
--
-- * Gravity is resolved from the context matrix.
--
-- * Since Pango 1.16
--
{#enum PangoGravity {underscoreToCase} with prefix="" deriving (Eq)#}
instance Show PangoGravity where
show PangoGravitySouth = "south"
show PangoGravityEast = "east"
show PangoGravityNorth = "north"
show PangoGravityWest = "west"
show PangoGravityAuto = "auto"
-- | The 'PangoGravityHint' defines how horizontal scripts should behave in a
-- vertical context.
--
-- * 'PangoGravityHintNatural': scripts will take their natural gravity based
-- on the base gravity and the script. This is the default.
--
-- * 'PangoGravityHintStrong': always use the base gravity set, regardless of
-- the script.
--
-- * 'PangoGravityHintLine': for scripts not in their natural direction (eg.
-- Latin in East gravity), choose per-script gravity such that every script
-- respects the line progression. This means, Latin and Arabic will take
-- opposite gravities and both flow top-to-bottom for example.
--
{#enum PangoGravityHint {underscoreToCase} with prefix="" deriving (Eq)#}
instance Show PangoGravityHint where
show PangoGravityHintNatural = "natural"
show PangoGravityHintStrong = "strong"
show PangoGravityHintLine = "line"
#endif
-- A string that is stored with each GlyphString, PangoItem
data PangoString = PangoString UTFCorrection CInt (ForeignPtr CChar)
makeNewPangoString :: GlibString string => string -> IO PangoString
makeNewPangoString str = do
let correct = genUTFOfs str
(strPtr, len) <- newUTFStringLen str
let cLen = fromIntegral len
liftM (PangoString correct cLen) $ newForeignPtr strPtr finalizerFree
withPangoString :: PangoString ->
(UTFCorrection -> CInt -> Ptr CChar -> IO a) -> IO a
withPangoString (PangoString c l ptr) act = withForeignPtr ptr $ \strPtr ->
act c l strPtr
-- paired with PangoString to create a Haskell GlyphString
{#pointer *PangoGlyphString as GlyphStringRaw foreign newtype #}
makeNewGlyphStringRaw :: Ptr GlyphStringRaw -> IO GlyphStringRaw
makeNewGlyphStringRaw llPtr = do
liftM GlyphStringRaw $ newForeignPtr llPtr pango_glyph_string_free
foreign import ccall unsafe "&pango_glyph_string_free"
pango_glyph_string_free :: FinalizerPtr GlyphStringRaw
-- paired with PangoString and UTFCorrection to create a Haskell PangoItem
{#pointer *PangoItem as PangoItemRaw foreign newtype #}
makeNewPangoItemRaw :: Ptr PangoItemRaw -> IO PangoItemRaw
makeNewPangoItemRaw llPtr = do
liftM PangoItemRaw $ newForeignPtr llPtr pango_item_free
withPangoItemRaw :: PangoItemRaw -> (Ptr PangoItemRaw -> IO a) -> IO a
withPangoItemRaw (PangoItemRaw pir) act = withForeignPtr pir act
foreign import ccall unsafe "&pango_item_free"
pango_item_free :: FinalizerPtr PangoItemRaw
#if PANGO_VERSION_CHECK(1,2,0)
{#pointer *PangoGlyphItem as GlyphItemRaw #}
#endif
-- With each GlyphString we pair a UTFCorrection
-- and the marshalled UTF8 string. Together, this data
-- enables us to bind all functions that take or return
-- indices into the CString, rather then unicode position. Note that text
-- handling is particularly horrible with UTF8: Several UTF8 bytes can make
-- up one Unicode character (a Haskell Char), and several Unicode characters
-- can form a cluster (e.g. a letter and an accent). We protect the user from
-- UTF8\/Haskell String conversions, but not from clusters.
-- | A sequence of characters that are rendered with the same settings.
--
-- * A preprocessing stage done by 'itemize' splits the input text into
-- several chunks such that each chunk can be rendered with the same
-- font, direction, slant, etc. Some attributes such as the color,
-- underline or strikethrough do not affect a break into several
-- 'PangoItem's. See also 'GlyphItem'.
--
data PangoItem = PangoItem PangoString PangoItemRaw
-- | A sequence of glyphs for a chunk of a string.
--
-- * A glyph item contains the graphical representation of a 'PangoItem'.
-- Clusters (like @e@ and an accent modifier) as well as legatures
-- (such as @ffi@ turning into a single letter that omits the dot over the
-- @i@) are usually represented as a single glyph.
--
data GlyphItem = GlyphItem PangoItem GlyphStringRaw
-- | A rendered paragraph.
data PangoLayout = PangoLayout (IORef PangoString) PangoLayoutRaw
-- | An iterator to examine a layout.
--
data LayoutIter = LayoutIter (IORef PangoString) LayoutIterRaw
{#pointer *PangoLayoutIter as LayoutIterRaw foreign newtype #}
makeNewLayoutIterRaw :: Ptr LayoutIterRaw -> IO LayoutIterRaw
makeNewLayoutIterRaw liPtr =
liftM LayoutIterRaw $ newForeignPtr liPtr layout_iter_free
foreign import ccall unsafe "&pango_layout_iter_free"
layout_iter_free :: FinalizerPtr LayoutIterRaw
-- | A single line in a 'PangoLayout'.
--
data LayoutLine = LayoutLine (IORef PangoString) LayoutLineRaw
{#pointer *PangoLayoutLine as LayoutLineRaw foreign newtype #}
makeNewLayoutLineRaw :: Ptr LayoutLineRaw -> IO LayoutLineRaw
makeNewLayoutLineRaw llPtr = do
liftM LayoutLineRaw $ newForeignPtr llPtr pango_layout_line_unref
foreign import ccall unsafe "&pango_layout_line_unref"
pango_layout_line_unref :: FinalizerPtr LayoutLineRaw
-- | A possibly partial description of font(s).
--
{#pointer *PangoFontDescription as FontDescription foreign newtype #}
makeNewFontDescription :: Ptr FontDescription -> IO FontDescription
makeNewFontDescription llPtr = do
liftM FontDescription $ newForeignPtr llPtr pango_font_description_free
foreign import ccall unsafe "&pango_font_description_free"
pango_font_description_free :: FinalizerPtr FontDescription
-- Attributes
{#pointer *PangoAttrList #}
{#pointer *PangoAttribute as CPangoAttribute#}
-- dirty hack to make PangoAttribute showable
instance Show FontDescription where
show fd = unsafePerformIO $ do
strPtr <- {#call unsafe font_description_to_string#} fd
str <- peekUTFString strPtr
{#call unsafe g_free#} (castPtr strPtr)
return $ T.unpack str
|