2012-01-31 17:39:28 +01:00
|
|
|
/* process with:
|
|
|
|
dot textrendering.gv -Tsvg > textrendering.svg
|
|
|
|
dot textrendering.gv -Tpng > textrendering.png
|
|
|
|
*/
|
2012-01-24 18:23:33 +01:00
|
|
|
digraph textrendering {
|
2012-01-29 22:48:24 +01:00
|
|
|
/* Classes without important virtual members: Round
|
|
|
|
Classes with important virtual members: Rect
|
|
|
|
Pointers [style=dashed] */
|
|
|
|
|
|
|
|
Renderer [color=red]
|
|
|
|
rankdir="TD";
|
2012-01-24 18:23:33 +01:00
|
|
|
text_placements[shape=box]
|
|
|
|
text_placement_info[shape=box]
|
2012-01-31 17:39:28 +01:00
|
|
|
node_ -> text_symbolizer_properties [label="tree_", style=dashed]
|
2012-01-24 18:23:33 +01:00
|
|
|
TextSymbolizer -> text_placements [label="placement_options_", style=dashed]
|
|
|
|
text_placements -> text_symbolizer_properties [label="properties"]
|
|
|
|
text_placements -> text_placement_info [label="get_placement_info()", style=dashed]
|
|
|
|
text_placement_info -> text_symbolizer_properties [label="properties"]
|
|
|
|
text_placement_info -> text_path [label="placements", style=dashed]
|
2012-01-25 01:14:01 +01:00
|
|
|
text_placement_info -> text_placement_info [label="next()"]
|
2012-01-31 17:39:28 +01:00
|
|
|
text_symbolizer_properties -> processed_text [label="process()", style=dashed]
|
2012-01-29 22:48:24 +01:00
|
|
|
processed_text -> string_info [label="get_string_info()", style=dashed]
|
2012-01-25 01:14:01 +01:00
|
|
|
text_path -> Renderer [color=red, label="used by"]
|
2012-01-29 22:48:24 +01:00
|
|
|
processed_text -> Renderer [color=red, label="owned by"]
|
|
|
|
Renderer -> text_symbolizer_helper [color=red, label="creates"]
|
|
|
|
text_symbolizer_helper -> placement_finder [color=red, label="creates"]
|
|
|
|
placement_finder -> text_path [color=red, label="creates"]
|
|
|
|
string_info -> placement_finder [color=red, label="used by"]
|
|
|
|
text_placement_info -> Renderer [color=red, label="used by"]
|
|
|
|
|
2012-01-24 18:23:33 +01:00
|
|
|
|
2012-01-29 22:48:24 +01:00
|
|
|
node_[label="node"]
|
|
|
|
node_ -> text_node [style=dashed]
|
|
|
|
node_ -> list_node [style=dashed]
|
|
|
|
node_ -> format_node [style=dashed]
|
|
|
|
list_node -> text_node [style=dashed]
|
|
|
|
list_node -> format_node [style=dashed]
|
|
|
|
format_node -> text_node [style=dashed]
|
|
|
|
{ rank=same; text_path text_symbolizer_helper }
|
2012-01-25 01:14:01 +01:00
|
|
|
}
|