summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/graphviz.h
blob: 483e86f1e3e666f3c2f976688af5a2b07ae8b5e4 (plain)
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
#ifndef PGF_GRAPHVIZ_H_
#define PGF_GRAPHVIZ_H_

typedef struct {
	int noLeaves;
	int noFun;
	int noCat;
	int noDep;
    GuString nodeFont;
    GuString leafFont;
	GuString nodeColor;
	GuString leafColor;
    GuString nodeEdgeStyle;
    GuString leafEdgeStyle;
} PgfGraphvizOptions;

extern PgfGraphvizOptions pgf_default_graphviz_options[1];

PGF_API_DECL void
pgf_graphviz_abstract_tree(PgfPGF* pgf, PgfExpr expr, PgfGraphvizOptions* opts, GuOut* out, GuExn* err);

PGF_API_DECL void
pgf_graphviz_parse_tree(PgfConcr* concr, PgfExpr expr, PgfGraphvizOptions* opts, GuOut* out, GuExn* err);

PGF_API_DECL void
pgf_graphviz_word_alignment(PgfConcr** concrs, size_t n_concrs, PgfExpr expr, PgfGraphvizOptions* opts, GuOut* out, GuExn* err);

#endif