aboutsummaryrefslogtreecommitdiffstats
path: root/libgnomecanvas/gnome-canvas-rich-text.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-06-16 01:34:34 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-06-19 09:29:21 +0800
commit731122a46ec53fb5e470e5852e3a634da30bdfe1 (patch)
treee64774c8c06d1eaae1b943f70550b305dcb9e169 /libgnomecanvas/gnome-canvas-rich-text.h
parent0fdd38639fa1734b5fff24d9dbd34bb9e1492742 (diff)
downloadgsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.tar
gsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.tar.gz
gsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.tar.bz2
gsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.tar.lz
gsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.tar.xz
gsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.tar.zst
gsoc2013-evolution-731122a46ec53fb5e470e5852e3a634da30bdfe1.zip
Delete unused GnomeCanvasRichText.
Diffstat (limited to 'libgnomecanvas/gnome-canvas-rich-text.h')
-rw-r--r--libgnomecanvas/gnome-canvas-rich-text.h79
1 files changed, 0 insertions, 79 deletions
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 <libgnomecanvas/gnome-canvas.h>
-#include <gtk/gtk.h>
-
-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 */