summaryrefslogtreecommitdiffstats
path: root/src/ganv-private.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-13 23:43:56 +0000
committerDavid Robillard <d@drobilla.net>2013-01-13 23:43:56 +0000
commitd961d48c953429d630ce33e09bf214e673151339 (patch)
treeca834d35eb426306757d2824e91510cedc1f2f1a /src/ganv-private.h
parent092ce0be7355612a633e33c42daaf98cf4680858 (diff)
downloadganv-d961d48c953429d630ce33e09bf214e673151339.tar.gz
ganv-d961d48c953429d630ce33e09bf214e673151339.tar.bz2
ganv-d961d48c953429d630ce33e09bf214e673151339.zip
Support resizing circles to fit label, and setting radius in ems.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@4969 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ganv-private.h')
-rw-r--r--src/ganv-private.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ganv-private.h b/src/ganv-private.h
index ddf6ab5..7bde036 100644
--- a/src/ganv-private.h
+++ b/src/ganv-private.h
@@ -47,13 +47,14 @@ struct _GanvBoxImpl {
/* Circle */
typedef struct {
- double x, y, radius;
+ double x, y, radius, radius_ems;
double width;
} GanvCircleCoords;
struct _GanvCircleImpl {
GanvCircleCoords coords;
GanvCircleCoords old_coords;
+ gboolean fit_label;
};
/* Edge */