Public Const DOT As Integer = &H1\r
Public Const NEATO As Integer = &H2\r
Public Const TWOPI As Integer = &H4\r
-Public Const ALL_ENGINES As Integer = DOT Or NEATO Or TWOPI\r
+Public Const CIRCO As Integer = &H8\r
+Public Const FDP As Integer = &H16\r
+Public Const ALL_ENGINES As Integer = DOT Or NEATO Or TWOPI or CIRCO or FDP\r
e = Switch(optLayoutEngine.Text = "dot", DOT, _\r
optLayoutEngine.Text = "neato", NEATO, _\r
optLayoutEngine.Text = "twopi", TWOPI, _\r
+ optLayoutEngine.Text = "circo", CIRCO, _\r
+ optLayoutEngine.Text = "fdp", FDP, _\r
True, ALL_ENGINES)\r
\r
s = Switch(optPropScope.Text = "Graph", GRAPH, _\r
Set engineHelp = New Collection\r
engineHelp.Add "Hierarchical drawing of directed graphs", "dot"\r
engineHelp.Add "Force layout of undirected graphs", "neato"\r
- engineHelp.Add "Circular layout", "twopi"\r
+ engineHelp.Add "Radial layout", "twopi"\r
+ engineHelp.Add "Circular layout", "circo"\r
+ engineHelp.Add "Force layout of undirected graphs", "fdp"\r
\r
optPropScope.AddItem "Graph"\r
optPropScope.AddItem "Node"\r
optLayoutEngine.AddItem "dot"\r
optLayoutEngine.AddItem "neato"\r
optLayoutEngine.AddItem "twopi"\r
+ optLayoutEngine.AddItem "circo"\r
+ optLayoutEngine.AddItem "fdp"\r
\r
optOutputType.AddItem "ps"\r
optOutputType.AddItem "ps2"\r