From 731122a46ec53fb5e470e5852e3a634da30bdfe1 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 15 Jun 2012 13:34:34 -0400 Subject: Delete unused GnomeCanvasRichText. --- libgnomecanvas/gnome-canvas-rich-text.h | 79 --------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 libgnomecanvas/gnome-canvas-rich-text.h (limited to 'libgnomecanvas/gnome-canvas-rich-text.h') diff --git a/libgnomecanvas/gnome-canvas-rich-text.h b/libgnomecanvas/gnome-canvas-rich-text.h deleted file mode 100644 index 73665b9787..0000000000 --- a/libgnomecanvas/gnome-canvas-rich-text.h +++ /dev/null @@ -1,79 +0,0 @@ -/* Editable GnomeCanvas text item based on GtkTextLayout, borrowed heavily - * from GtkTextView. - * - * Copyright (c) 2000 Red Hat, Inc. - * Copyright (c) 2001 Joe Shaw - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef GNOME_CANVAS_RICH_TEXT_H -#define GNOME_CANVAS_RICH_TEXT_H - -#include -#include - -G_BEGIN_DECLS - -#define GNOME_TYPE_CANVAS_RICH_TEXT (gnome_canvas_rich_text_get_type ()) -#define GNOME_CANVAS_RICH_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNOME_TYPE_CANVAS_RICH_TEXT, GnomeCanvasRichText)) -#define GNOME_CANVAS_RICH_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNOME_TYPE_CANVAS_RICH_TEXT, GnomeCanvasRichTextClass)) -#define GNOME_IS_CANVAS_RICH_TEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNOME_TYPE_CANVAS_RICH_TEXT)) -#define GNOME_IS_CANVAS_RICH_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GNOME_TYPE_CANVAS_RICH_TEXT)) -#define GNOME_CANVAS_RICH_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GNOME_TYPE_CANVAS_RICH_TEXT, GnomeCanvasRichTextClass)) - -typedef struct _GnomeCanvasRichText GnomeCanvasRichText; -typedef struct _GnomeCanvasRichTextPrivate GnomeCanvasRichTextPrivate; -typedef struct _GnomeCanvasRichTextClass GnomeCanvasRichTextClass; - -struct _GnomeCanvasRichText { - GnomeCanvasItem item; - - GnomeCanvasRichTextPrivate *_priv; -}; - -struct _GnomeCanvasRichTextClass { - GnomeCanvasItemClass parent_class; - - void (* tag_changed)(GnomeCanvasRichText *text, - GtkTextTag *tag); -}; - -GType gnome_canvas_rich_text_get_type (void) G_GNUC_CONST; - -void gnome_canvas_rich_text_cut_clipboard (GnomeCanvasRichText *text); - -void gnome_canvas_rich_text_copy_clipboard (GnomeCanvasRichText *text); - -void gnome_canvas_rich_text_paste_clipboard (GnomeCanvasRichText *text); - -void gnome_canvas_rich_text_set_buffer (GnomeCanvasRichText *text, - GtkTextBuffer *buffer); - -GtkTextBuffer *gnome_canvas_rich_text_get_buffer (GnomeCanvasRichText *text); -void -gnome_canvas_rich_text_get_iter_location (GnomeCanvasRichText *text, - const GtkTextIter *iter, - GdkRectangle *location); -void -gnome_canvas_rich_text_get_iter_at_location (GnomeCanvasRichText *text, - GtkTextIter *iter, - gint x, - gint y); - -G_END_DECLS - -#endif /* GNOME_CANVAS_RICH_TEXT_H */ -- cgit v1.2.3