summaryrefslogtreecommitdiffstats
path: root/ganv/canvas.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-06-08 18:03:36 +0000
committerDavid Robillard <d@drobilla.net>2013-06-08 18:03:36 +0000
commit423bcd39d6c6e8870128df2715a262bc8e59603f (patch)
tree7255b0dca7888a4070135c04565a8ac88d413d7f /ganv/canvas.h
parent7559cf81b07509420f1ab85ed95f42f441888df7 (diff)
downloadganv-423bcd39d6c6e8870128df2715a262bc8e59603f.tar.gz
ganv-423bcd39d6c6e8870128df2715a262bc8e59603f.tar.bz2
ganv-423bcd39d6c6e8870128df2715a262bc8e59603f.zip
Fix sizing for ports with enumeration or integer tag labels.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5123 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ganv/canvas.h')
-rw-r--r--ganv/canvas.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ganv/canvas.h b/ganv/canvas.h
index cda7c1a..6d946f4 100644
--- a/ganv/canvas.h
+++ b/ganv/canvas.h
@@ -72,6 +72,7 @@ ganv_canvas_resize(GanvCanvas* canvas, double width, double height);
/**
* ganv_canvas_get_root:
+ *
* Return value: (transfer none): The root group of @canvas.
*/
GanvItem*
@@ -88,6 +89,7 @@ ganv_canvas_remove_node(GanvCanvas* canvas,
/**
* ganv_canvas_get_edge:
* Get the edge between two nodes, or NULL if none exists.
+ *
* Return value: (transfer none): The root group of @canvas.
*/
GanvEdge*
@@ -122,6 +124,7 @@ void
ganv_canvas_export_dot(GanvCanvas* canvas, const char* filename);
/**
+ * GanvEdgeFunc:
* A node function that takes a user data argument (for callbacks).
*
* Note that in the Gtk world it is considered safe to cast a function to a
@@ -131,6 +134,7 @@ ganv_canvas_export_dot(GanvCanvas* canvas, const char* filename);
typedef void (*GanvEdgeFunc)(GanvEdge* edge, void* data);
/**
+ * GanvNodeFunc:
* A node function that takes a user data argument (for callbacks).
*
* Note that in the Gtk world it is considered safe to cast a function to a