summaryrefslogtreecommitdiffstats
path: root/ganv
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-27 00:57:02 +0000
committerDavid Robillard <d@drobilla.net>2013-12-27 00:57:02 +0000
commitd7311c274e6d82354ca76f5df7940d12da4fbec3 (patch)
tree62d6307c07639b5e203a6dd837cc16177df24659 /ganv
parent76298e353df88996de4b423f3090811723b73d37 (diff)
downloadganv-d7311c274e6d82354ca76f5df7940d12da4fbec3.tar.gz
ganv-d7311c274e6d82354ca76f5df7940d12da4fbec3.tar.bz2
ganv-d7311c274e6d82354ca76f5df7940d12da4fbec3.zip
Remove dead code.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5215 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ganv')
-rw-r--r--ganv/canvas-base.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/ganv/canvas-base.h b/ganv/canvas-base.h
index c247dfa..1c24cd8 100644
--- a/ganv/canvas-base.h
+++ b/ganv/canvas-base.h
@@ -205,22 +205,10 @@ int ganv_item_grab(GanvItem* item, unsigned int event_mask,
*/
void ganv_item_ungrab(GanvItem* item, guint32 etime);
-/* These functions convert from a coordinate system to another. "w" is world
- * coordinates and "i" is item coordinates.
+/* Convert from item coordinate to world coordinates.
*/
-void ganv_item_w2i(GanvItem* item, double* x, double* y);
void ganv_item_i2w(GanvItem* item, double* x, double* y);
-/* Gets the affine transform that converts from item-relative coordinates to
- * world coordinates.
- */
-void ganv_item_i2w_affine(GanvItem* item, cairo_matrix_t* matrix);
-
-/* Gets the affine transform that converts from item-relative coordinates to
- * canvas pixel coordinates.
- */
-void ganv_item_i2c_affine(GanvItem* item, cairo_matrix_t* matrix);
-
/* Used to send all of the keystroke events to a specific item as well as
* GDK_FOCUS_CHANGE events.
*/