Reputation: 101
Are there widgets, libraries to visualize directed graphs of graphs in general with Qt? I want to build them in real time, while inspecting the JVM or is input/output with Graphviz the way to do?
Upvotes: 1
Views: 2365
Reputation: 1563
Looks like this is more suitable, it seems to have Qt frontend implementation. http://code.google.com/p/showgraph/
Upvotes: 1
Reputation: 58667
Create a dot file and process it with graphviz. The syntax is so straightforward it should be trivial to output, if you can trivially traverse the graph.
Upvotes: 2