diff options
author | Michael Natterer <mitch@imendio.com> | 2006-03-07 13:46:11 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2006-03-07 13:46:11 +0000 |
commit | 6c1d990adc5eea803b4cb28956befb83e89468ee (patch) | |
tree | ca25230f26a27da2bde3f6cf1c3e9910c0e7487d /gtk/gtktextutil.c | |
parent | 1f5c294851a009295c9d331110512e47324d09c0 (diff) | |
download | gdk-pixbuf-6c1d990adc5eea803b4cb28956befb83e89468ee.tar.gz |
Add infrastructure for copy/paste and DND of rich text for GtkTextBuffer.
2006-03-07 Michael Natterer <mitch@imendio.com>
Add infrastructure for copy/paste and DND of rich text for
GtkTextBuffer. Fixes bug #324177.
* gtk/gtktextbufferrichtext.[ch]: new files implementing a
per-buffer registry of rich text formats.
* gtk/gtk.h: #include gtktextbufferrichtext.h
* gtk/gtktextbufferserialize.[ch]: new files implementing an
internal serialization format that can handle all of a text
buffer's tags and pixbufs. It's not useful for anything except
tranfer between instances of GtkTextBuffer (Anders Carlsson).
* gtk/Makefile.am: build the new files.
* gtk/gtkclipboard.[ch]: added convenience APIs for rich text,
just as they exist for plain text and pixbufs.
* gtk/gtkselection.[ch]: added rich text convenience APIs here
too. Return the target list from gtk_target_list_ref(). Register
GtkTargetList as boxed type. Added
gtk_target_table_new_from_list() and gtk_target_table_free(),
which make converting between GtkTargetList and arrays of
GtkTargetEntry considerably easier.
* gtk/gtktextutil.[ch]: added _gtk_text_util_create_rich_drag_icon()
which creates a fancy rich text icon (Matthias Clasen).
* gtk/gtktextbuffer.[ch]: use all the new stuff above and
implement copy and paste of rich text. Added APIs for getting the
target lists used for copy and paste. Added public enum
GtkTextBufferTargetInfo which contains the "info" IDs associated
with the entries of the target lists.
* gtk/gtktextview.c: use the new rich text APIs and
GtkTextBuffer's new target list API to enable DND of rich text
chunks.
* gtk/gtk.symbols: export all the new symbols added.
* tests/testtext.c: added rich text testing stuff.
Diffstat (limited to 'gtk/gtktextutil.c')
-rw-r--r-- | gtk/gtktextutil.c | 134 |
1 files changed, 131 insertions, 3 deletions
diff --git a/gtk/gtktextutil.c b/gtk/gtktextutil.c index 6678e4e3b..11758778d 100644 --- a/gtk/gtktextutil.c +++ b/gtk/gtktextutil.c @@ -26,12 +26,19 @@ #include <config.h> #include "gtktextutil.h" -#include "gtkintl.h" +#include "gtktextview.h" + +#define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API + +#include "gtktextdisplay.h" +#include "gtktextbuffer.h" #include "gtkmenuitem.h" +#include "gtkintl.h" #include "gtkalias.h" #define DRAG_ICON_MAX_WIDTH 250 -#define DRAG_ICON_LAYOUT_BORDER 2 +#define DRAG_ICON_MAX_HEIGHT 250 +#define DRAG_ICON_LAYOUT_BORDER 5 #define DRAG_ICON_MAX_LINES 7 #define ELLIPSIS_CHARACTER "\xe2\x80\xa6" @@ -177,7 +184,7 @@ limit_layout_lines (PangoLayout *layout) * * Creates a drag and drop icon from @text. **/ -GdkPixmap* +GdkPixmap * _gtk_text_util_create_drag_icon (GtkWidget *widget, gchar *text, gsize len) @@ -238,3 +245,124 @@ _gtk_text_util_create_drag_icon (GtkWidget *widget, return drawable; } + +static void +gtk_text_view_set_attributes_from_style (GtkTextView *text_view, + GtkTextAttributes *values, + GtkStyle *style) +{ + values->appearance.bg_color = style->base[GTK_STATE_NORMAL]; + values->appearance.fg_color = style->text[GTK_STATE_NORMAL]; + + if (values->font) + pango_font_description_free (values->font); + + values->font = pango_font_description_copy (style->font_desc); +} + +GdkPixmap * +_gtk_text_util_create_rich_drag_icon (GtkWidget *widget, + GtkTextBuffer *buffer, + GtkTextIter *start, + GtkTextIter *end) +{ + GdkDrawable *drawable = NULL; + gint pixmap_height, pixmap_width; + gint layout_width, layout_height; + GtkTextBuffer *new_buffer; + GtkTextLayout *layout; + GtkTextAttributes *style; + PangoContext *ltr_context, *rtl_context; + GtkTextIter iter; + + g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL); + g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), NULL); + g_return_val_if_fail (start != NULL, NULL); + g_return_val_if_fail (end != NULL, NULL); + + new_buffer = gtk_text_buffer_new (gtk_text_buffer_get_tag_table (buffer)); + gtk_text_buffer_get_start_iter (new_buffer, &iter); + + gtk_text_buffer_insert_range (new_buffer, &iter, start, end); + + gtk_text_buffer_get_start_iter (new_buffer, &iter); + + layout = gtk_text_layout_new (); + + ltr_context = gtk_widget_create_pango_context (widget); + pango_context_set_base_dir (ltr_context, PANGO_DIRECTION_LTR); + rtl_context = gtk_widget_create_pango_context (widget); + pango_context_set_base_dir (rtl_context, PANGO_DIRECTION_RTL); + + gtk_text_layout_set_contexts (layout, ltr_context, rtl_context); + + g_object_unref (ltr_context); + g_object_unref (rtl_context); + + style = gtk_text_attributes_new (); + + layout_width = widget->allocation.width; + + if (GTK_IS_TEXT_VIEW (widget)) + { + gtk_widget_ensure_style (widget); + gtk_text_view_set_attributes_from_style (GTK_TEXT_VIEW (widget), + style, widget->style); + + layout_width = layout_width + - gtk_text_view_get_border_window_size (GTK_TEXT_VIEW (widget), GTK_TEXT_WINDOW_LEFT) + - gtk_text_view_get_border_window_size (GTK_TEXT_VIEW (widget), GTK_TEXT_WINDOW_RIGHT); + } + + style->direction = gtk_widget_get_direction (widget); + style->wrap_mode = PANGO_WRAP_WORD_CHAR; + + gtk_text_layout_set_default_style (layout, style); + gtk_text_attributes_unref (style); + + gtk_text_layout_set_buffer (layout, new_buffer); + gtk_text_layout_set_cursor_visible (layout, FALSE); + gtk_text_layout_set_screen_width (layout, layout_width); + + gtk_text_layout_validate (layout, DRAG_ICON_MAX_HEIGHT); + gtk_text_layout_get_size (layout, &layout_width, &layout_height); + + g_print ("%s: layout size %d %d\n", G_STRFUNC, layout_width, layout_height); + + layout_width = MIN (layout_width, DRAG_ICON_MAX_WIDTH); + layout_height = MIN (layout_height, DRAG_ICON_MAX_HEIGHT); + + pixmap_width = layout_width + DRAG_ICON_LAYOUT_BORDER * 2; + pixmap_height = layout_height + DRAG_ICON_LAYOUT_BORDER * 2; + + g_print ("%s: pixmap size %d %d\n", G_STRFUNC, pixmap_width, pixmap_height); + + drawable = gdk_pixmap_new (widget->window, + pixmap_width + 2, pixmap_height + 2, -1); + + gdk_draw_rectangle (drawable, + widget->style->base_gc [GTK_WIDGET_STATE (widget)], + TRUE, + 0, 0, + pixmap_width + 1, + pixmap_height + 1); + + gtk_text_layout_draw (layout, widget, drawable, + widget->style->text_gc [GTK_WIDGET_STATE (widget)], + - (1 + DRAG_ICON_LAYOUT_BORDER), + - (1 + DRAG_ICON_LAYOUT_BORDER), + 0, 0, + pixmap_width, pixmap_height, NULL); + + gdk_draw_rectangle (drawable, + widget->style->black_gc, + FALSE, + 0, 0, + pixmap_width + 1, + pixmap_height + 1); + + g_object_unref (layout); + g_object_unref (new_buffer); + + return drawable; +} |