diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-01-16 00:52:43 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:19 +0800 |
commit | 5cc2615a37ebd621954d386639ae261165bc09ef (patch) | |
tree | cf65b6a0c2321768a652c134964a594d57ef8399 /libgnomecanvas/gnome-canvas.h | |
parent | 855ac5276542db2a3b236113dad6af7bc6af8d3c (diff) | |
download | gsoc2013-evolution-5cc2615a37ebd621954d386639ae261165bc09ef.tar.gz gsoc2013-evolution-5cc2615a37ebd621954d386639ae261165bc09ef.tar.zst gsoc2013-evolution-5cc2615a37ebd621954d386639ae261165bc09ef.zip |
Remove some unused gnome-canvas options.
Simplifies the drawing code a bit.
Public API removed:
GnomeCanvas.center_scroll_region (is always TRUE)
GnomeCanvas.pixels_per_unit (is always 1.0)
gnome_canvas_set_center_scroll_region()
gnome_canvas_get_center_scroll_region()
gnome_canvas_set_pixels_per_unit()
Diffstat (limited to 'libgnomecanvas/gnome-canvas.h')
-rw-r--r-- | libgnomecanvas/gnome-canvas.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libgnomecanvas/gnome-canvas.h b/libgnomecanvas/gnome-canvas.h index 3236e20a5f..5c46464f85 100644 --- a/libgnomecanvas/gnome-canvas.h +++ b/libgnomecanvas/gnome-canvas.h @@ -373,9 +373,6 @@ struct _GnomeCanvas { gdouble scroll_x1, scroll_y1; gdouble scroll_x2, scroll_y2; - /* Scaling factor to be used for display */ - gdouble pixels_per_unit; - /* Idle handler ID */ guint idle_id; @@ -397,11 +394,6 @@ struct _GnomeCanvas { /* Event mask specified when grabbing an item */ guint grabbed_event_mask; - /* Whether the canvas should center the scroll region in the middle of - * the window if the scroll region is smaller than the window. - */ - guint center_scroll_region : 1; - /* Whether items need update at next idle loop iteration */ guint need_update : 1; @@ -453,15 +445,6 @@ void gnome_canvas_set_scroll_region (GnomeCanvas *canvas, void gnome_canvas_get_scroll_region (GnomeCanvas *canvas, gdouble *x1, gdouble *y1, gdouble *x2, gdouble *y2); -/* Whether the canvas centers the scroll region if it is smaller than the window */ -void gnome_canvas_set_center_scroll_region (GnomeCanvas *canvas, gboolean center_scroll_region); - -/* Returns whether the canvas is set to center the scroll region if it is smaller than the window */ -gboolean gnome_canvas_get_center_scroll_region (GnomeCanvas *canvas); - -/* Sets the number of pixels that correspond to one unit in world coordinates */ -void gnome_canvas_set_pixels_per_unit (GnomeCanvas *canvas, gdouble n); - /* Scrolls the canvas to the specified offsets, given in canvas pixel coordinates */ void gnome_canvas_scroll_to (GnomeCanvas *canvas, gint cx, gint cy); |