diff options
Diffstat (limited to 'libgnomecanvas/gnome-canvas-text.c')
-rw-r--r-- | libgnomecanvas/gnome-canvas-text.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/libgnomecanvas/gnome-canvas-text.c b/libgnomecanvas/gnome-canvas-text.c index c59733b077..f85df6666a 100644 --- a/libgnomecanvas/gnome-canvas-text.c +++ b/libgnomecanvas/gnome-canvas-text.c @@ -90,7 +90,6 @@ enum { PROP_FILL_COLOR, PROP_FILL_COLOR_GDK, PROP_FILL_COLOR_RGBA, - PROP_FILL_STIPPLE, /* Rendered size accessors */ PROP_TEXT_WIDTH, @@ -434,12 +433,6 @@ gnome_canvas_text_class_init (GnomeCanvasTextClass *class) (G_PARAM_READABLE | G_PARAM_WRITABLE))); g_object_class_install_property (gobject_class, - PROP_FILL_STIPPLE, - g_param_spec_object ("fill_stipple", NULL, NULL, - GDK_TYPE_DRAWABLE, - (G_PARAM_READABLE | G_PARAM_WRITABLE))); - g_object_class_install_property - (gobject_class, PROP_TEXT_WIDTH, g_param_spec_double ("text_width", "Text width", @@ -567,10 +560,6 @@ gnome_canvas_text_destroy (GnomeCanvasItem *object) pango_attr_list_unref (text->attr_list); text->attr_list = NULL; - if (text->stipple) - g_object_unref (text->stipple); - text->stipple = NULL; - if (text->priv && text->priv->bitmap.buffer) { g_free (text->priv->bitmap.buffer); } @@ -636,26 +625,6 @@ set_text_gc_foreground (GnomeCanvasText *text) gdk_gc_set_foreground (text->gc, &c); } -/* Sets the stipple pattern for the text */ -static void -set_stipple (GnomeCanvasText *text, GdkBitmap *stipple, gint reconfigure) -{ - if (text->stipple && !reconfigure) - g_object_unref (text->stipple); - - text->stipple = stipple; - if (stipple && !reconfigure) - g_object_ref (stipple); - - if (text->gc) { - if (stipple) { - gdk_gc_set_stipple (text->gc, stipple); - gdk_gc_set_fill (text->gc, GDK_STIPPLED); - } else - gdk_gc_set_fill (text->gc, GDK_SOLID); - } -} - static PangoFontMask get_property_font_set_mask (guint prop_id) { @@ -970,10 +939,6 @@ gnome_canvas_text_set_property (GObject *object, text->priv->render_dirty = 1; break; - case PROP_FILL_STIPPLE: - set_stipple (text, (GdkBitmap *)g_value_get_object (value), FALSE); - break; - default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec); break; @@ -1184,10 +1149,6 @@ gnome_canvas_text_get_property (GObject *object, g_value_set_uint (value, text->rgba); break; - case PROP_FILL_STIPPLE: - g_value_set_object (value, text->stipple); - break; - case PROP_TEXT_WIDTH: g_value_set_double (value, text->max_width / text->item.canvas->pixels_per_unit); break; @@ -1317,7 +1278,6 @@ gnome_canvas_text_update (GnomeCanvasItem *item, (* parent_class->update) (item, affine, clip_path, flags); set_text_gc_foreground (text); - set_stipple (text, text->stipple, TRUE); get_bounds (text, &x1, &y1, &x2, &y2); gnome_canvas_update_bbox (item, @@ -1381,9 +1341,6 @@ gnome_canvas_text_draw (GnomeCanvasItem *item, GdkDrawable *drawable, gdk_gc_set_clip_rectangle (text->gc, &rect); } - if (text->stipple) - gnome_canvas_set_stipple_origin (item->canvas, text->gc); - gdk_draw_layout (drawable, text->gc, text->cx - x, text->cy - y, text->layout); if (text->clip) |