Safe Haskell | None |
---|
This module provides the API for drawing operations abstracted
to arbitrary ChartBackend
s.
- type ChartBackend a = Program ChartBackendInstr a
- type CRender a = ChartBackend a
- fillPath :: Path -> ChartBackend ()
- strokePath :: Path -> ChartBackend ()
- drawText :: Point -> String -> ChartBackend ()
- textSize :: String -> ChartBackend TextSize
- withTransform :: Matrix -> ChartBackend a -> ChartBackend a
- withClipRegion :: Rect -> ChartBackend a -> ChartBackend a
- withFontStyle :: FontStyle -> ChartBackend a -> ChartBackend a
- withFillStyle :: FillStyle -> ChartBackend a -> ChartBackend a
- withLineStyle :: LineStyle -> ChartBackend a -> ChartBackend a
- getPointAlignFn :: ChartBackend (Point -> Point)
- getCoordAlignFn :: ChartBackend (Point -> Point)
- data TextSize = TextSize {}
- data LineCap
- data LineJoin
- data LineStyle = LineStyle {}
- line_width :: Lens' LineStyle Double
- line_color :: Lens' LineStyle (AlphaColour Double)
- line_dashes :: Lens' LineStyle [Double]
- line_cap :: Lens' LineStyle LineCap
- line_join :: Lens' LineStyle LineJoin
- newtype FillStyle = FillStyleSolid {}
- data FontWeight
- data FontSlant
- data FontStyle = FontStyle {}
- defaultFontStyle :: FontStyle
- data HTextAnchor
- = HTA_Left
- | HTA_Centre
- | HTA_Right
- data VTextAnchor
- = VTA_Top
- | VTA_Centre
- | VTA_Bottom
- | VTA_BaseLine
- font_name :: Lens' FontStyle String
- font_size :: Lens' FontStyle Double
- font_slant :: Lens' FontStyle FontSlant
- font_weight :: Lens' FontStyle FontWeight
- font_color :: Lens' FontStyle (AlphaColour Double)
- type AlignmentFn = Point -> Point
- data AlignmentFns
- vectorAlignmentFns :: AlignmentFns
- bitmapAlignmentFns :: AlignmentFns
The backend Monad
type ChartBackend a = Program ChartBackendInstr aSource
A ChartBackend
provides the capability to render a chart somewhere.
The coordinate system of the backend has its initial origin (0,0) in the top left corner of the drawing plane. The x-axis points towards the top right corner and the y-axis points towards the bottom left corner. The unit used by coordinates, the font size, and lengths is the always the same, but depends on the backend. All angles are measured in radians.
The line, fill and font style are set to their default values initially.
Information about the semantics of the instructions can be
found in the documentation of ChartBackendInstr
.
type CRender a = ChartBackend aSource
Deprecated: Use the new name ChartBackend!
Alias so the old name for rendering code still works.
Backend Operations
fillPath :: Path -> ChartBackend ()Source
strokePath :: Path -> ChartBackend ()Source
drawText :: Point -> String -> ChartBackend ()Source
Draw a single-line textual label anchored by the baseline (vertical)
left (horizontal) point. Uses the current FontStyle
for drawing.
textSize :: String -> ChartBackend TextSizeSource
Calculate a TextSize
object with rendering information
about the given string without actually rendering it.
withTransform :: Matrix -> ChartBackend a -> ChartBackend aSource
Apply the given transformation in this local environment when drawing. The given transformation is applied after the current transformation. This means both are combined.
withClipRegion :: Rect -> ChartBackend a -> ChartBackend aSource
Use the given clipping rectangle when drawing in this local environment. The new clipping region is intersected with the given clip region. You cannot escape the clip!
withFontStyle :: FontStyle -> ChartBackend a -> ChartBackend aSource
Use the given font style in this local environment when drawing text.
An implementing backend is expected to guarentee
to support the following font families: serif
, sans-serif
and monospace
;
If the backend is not able to find or load a given font it is required to fall back to a custom fail-safe font and use it instead.
withFillStyle :: FillStyle -> ChartBackend a -> ChartBackend aSource
Use the given fill style in this local environment when filling paths.
withLineStyle :: LineStyle -> ChartBackend a -> ChartBackend aSource
Use the given line style in this local environment when stroking paths.
Backend Helpers
getPointAlignFn :: ChartBackend (Point -> Point)Source
Get the point alignment function
getCoordAlignFn :: ChartBackend (Point -> Point)Source
Get the coordinate alignment function
Text Metrics
Text metrics returned by textSize
.
TextSize | |
|
Line Types
The different supported line ends.
LineCapButt | Just cut the line straight. |
LineCapRound | Make a rounded line end. |
LineCapSquare | Make a square that ends the line. |
The different supported ways to join line ends.
LineJoinMiter | Extends the outline until they meet each other. |
LineJoinRound | Draw a circle fragment to connet line end. |
LineJoinBevel | Like miter, but cuts it off if a certain threshold is exceeded. |
Data type for the style of a line.
LineStyle | |
|
Fill Types
Abstract data type for a fill style.
The contained Cairo action sets the required fill style in the Cairo rendering state.
Font and Text Types
data FontWeight Source
The possible weights of a font.
FontWeightNormal | Normal font style without weight. |
FontWeightBold | Bold font. |
Eq FontWeight | |
Ord FontWeight | |
Show FontWeight | |
Default FontWeight | The default font weight. |
The possible slants of a font.
FontSlantNormal | Normal font style without slant. |
FontSlantItalic | With a slight slant. |
FontSlantOblique | With a greater slant. |
Data type for a font.
FontStyle | |
|
defaultFontStyle :: FontStyleSource
Deprecated: Use the according Data.Default instance!
The default font style.
data HTextAnchor Source
Possible horizontal anchor points for text.
data VTextAnchor Source
Possible vertical anchor points for text.
type AlignmentFn = Point -> PointSource
A function to align points for a certain rendering device.
data AlignmentFns Source
Holds the point and coordinate alignment function.
vectorAlignmentFns :: AlignmentFnsSource
Alignment to render good on vector based graphics.
bitmapAlignmentFns :: AlignmentFnsSource
Alignment to render good on raster based graphics.