From e6972011f01eab9f8d0a4584f32ee1e2a00f3231 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 13 Jun 2010 18:37:27 -0400 Subject: Embed libart_lgpl and libgnomecanvas. Both of these modules are deprecated and going away in GNOME 3 but we still rely heavily on them for GnomeCalendar and ETable. So, welcome to the island of unwanted libraries... --- libgnomecanvas/gnome-canvas-rich-text.h | 79 +++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create 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 new file mode 100644 index 0000000000..4fa569e921 --- /dev/null +++ b/libgnomecanvas/gnome-canvas-rich-text.h @@ -0,0 +1,79 @@ +/* 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