Module: RDocF95::DOT

Defined in:
lib/rdoc-f95/dot.rb

Defined Under Namespace

Classes: Digraph, Edge, Element, Node, Port, SimpleElement, Subgraph

Constant Summary collapse

TAB =
'  '
TAB2 =
TAB * 2
NODE_OPTS =

options for node declaration

[
  'bgcolor',
  'color',
  'fontcolor',
  'fontname',
  'fontsize',
  'height',
  'width',
  'label',
  'layer',
  'rank',
  'shape',
  'shapefile',
  'style',
  'URL',
]
EDGE_OPTS =

options for edge declaration

[
  'color',
  'decorate',
  'dir',
  'fontcolor',
  'fontname',
  'fontsize',
  'id',
  'label',
  'layer',
  'lhead',
  'ltail',
  'minlen',
  'style',
  'weight'
]
GRAPH_OPTS =

options for graph declaration

[
  'bgcolor',
  'center',
  'clusterrank',
  'color',
  'compound',
  'concentrate',
  'fillcolor',
  'fontcolor',
  'fontname',
  'fontsize',
  'label',
  'layerseq',
  'margin',
  'mclimit',
  'nodesep',
  'nslimit',
  'ordering',
  'orientation',
  'page',
  'rank',
  'rankdir',
  'ranksep',
  'ratio',
  'size',
  'style',
  'URL'
]