diff options
author | David Robillard <d@drobilla.net> | 2014-01-11 20:53:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-01-11 20:53:30 +0000 |
commit | afdb578607526ca82cf03ec04cb4f410f11692c1 (patch) | |
tree | b5cbce762b65e89a0cde5a815bd870b0fb87e298 /ganv | |
parent | 438d2c4aadd439b995af75a4b6589e32adf3fbb4 (diff) | |
download | ganv-afdb578607526ca82cf03ec04cb4f410f11692c1.tar.gz ganv-afdb578607526ca82cf03ec04cb4f410f11692c1.tar.bz2 ganv-afdb578607526ca82cf03ec04cb4f410f11692c1.zip |
Make some functions private.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@5301 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ganv')
-rw-r--r-- | ganv/canvas-base.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ganv/canvas-base.h b/ganv/canvas-base.h index 63633b0..8299132 100644 --- a/ganv/canvas-base.h +++ b/ganv/canvas-base.h @@ -30,9 +30,6 @@ G_BEGIN_DECLS -/* "Small" value used by canvas stuff */ -#define GANV_CANVAS_BASE_EPSILON 1e-10 - typedef struct _GanvCanvasBase GanvCanvasBase; typedef struct _GanvCanvasBaseClass GanvCanvasBaseClass; @@ -182,22 +179,11 @@ void ganv_canvas_base_scroll_to(GanvCanvasBase* canvas, int cx, int cy); */ void ganv_canvas_base_get_scroll_offsets(GanvCanvasBase* canvas, int* cx, int* cy); -/* Requests that the canvas be repainted immediately instead of in the idle - * loop. - */ -void ganv_canvas_base_update_now(GanvCanvasBase* canvas); - /* Returns the item that is at the specified position in world coordinates, or * NULL if no item is there. */ GanvItem* ganv_canvas_base_get_item_at(GanvCanvasBase* canvas, double x, double y); -/* For use only by item type implementations. Request that the canvas - * eventually redraw the specified region, specified in canvas pixel - * coordinates. The region contains (x1, y1) but not (x2, y2). - */ -void ganv_canvas_base_request_redraw(GanvCanvasBase* canvas, int x1, int y1, int x2, int y2); - /* Gets the affine transform that converts world coordinates into canvas pixel * coordinates. */ |