BrokenClockwork
BrokenClockwork

Reputation: 101

Visualize (directed) graphs with Qt

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

Answers (2)

berkus
berkus

Reputation: 1563

Looks like this is more suitable, it seems to have Qt frontend implementation. http://code.google.com/p/showgraph/

Upvotes: 1

wilhelmtell
wilhelmtell

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

Related Questions