Safe Haskell | None |
---|---|
Language | Haskell2010 |
Test.StateMachine.DotDrawing
Synopsis
- data GraphOptions = GraphOptions {}
- data GraphvizOutput
- data Rose a = Rose a (Map Pid a)
- printDotGraph :: GraphOptions -> Rose [String] -> IO ()
Documentation
data GraphOptions Source #
Constructors
GraphOptions | |
Fields |
data GraphvizOutput #
The possible Graphviz output formats (that is, those that actually produce a file).
Constructors
Bmp | Windows Bitmap Format. |
Canon | Pretty-printed Dot output with no layout performed. |
DotOutput | Reproduces the input along with layout information. |
XDot (Maybe Version) | As with |
Eps | Encapsulated PostScript. |
Fig | FIG graphics language. |
Gd | Internal GD library format. |
Gd2 | Compressed version of |
Gif | Graphics Interchange Format. |
Ico | Icon image file format. |
Imap | Server-side imagemap. |
Cmapx | Client-side imagemap. |
ImapNP | As for |
CmapxNP | As for |
Jpeg | The JPEG image format. |
Portable Document Format. | |
Plain | Simple text format. |
PlainExt | As for |
Png | Portable Network Graphics format. |
Ps | PostScript. |
Ps2 | PostScript for PDF. |
Svg | Scalable Vector Graphics format. |
SvgZ | Compressed SVG format. |
Tiff | Tagged Image File Format. |
Vml | Vector Markup Language; |
VmlZ | Compressed VML format; |
Vrml | Virtual Reality Modeling Language
format; requires nodes to have a
third dimension set via the |
WBmp | Wireless BitMap format; monochrome format usually used for mobile computing devices. |
WebP | Google's WebP format; requires Graphviz >= 2.29.0. |
Instances
printDotGraph :: GraphOptions -> Rose [String] -> IO () Source #