diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-06-28 21:22:52 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-06-28 21:22:52 (GMT) |
commit | 549dd203344a2f95f4bc596f963a854af004cba2 (patch) | |
tree | 3d840621a9edcb3decc3260ca688b4e75e52f04f /src/graph/dot.h | |
parent | f2696c85e502e36a529a1d8ee3d209498ac2c0e9 (diff) |
Drawn graphic links between the different blocks of code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@81 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/graph/dot.h')
-rw-r--r-- | src/graph/dot.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/graph/dot.h b/src/graph/dot.h index 8538e52..630c1cb 100644 --- a/src/graph/dot.h +++ b/src/graph/dot.h @@ -26,6 +26,7 @@ #include "node.h" +#include "../gtkext/gtklinkrenderer.h" @@ -42,6 +43,9 @@ void delete_graph_layout(graph_layout *); /* Place tous les éléments du graphique à l'écran. */ void place_nodes_of_graph_layout(const graph_layout *, GtkFixed *, GGraphNode **, size_t); +/* Charge la définition de tous les liens graphiques. */ +GtkLinkRenderer **create_links_from_graph_layout(const graph_layout *, size_t *); + #endif /* _GRAPH_DOT_H */ |