From fb881018542b3b567177d0a1063d9169b17bab48 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 17 Jul 2004 04:58:02 +0000 Subject: Support text/plain selection target (#55117, Owen Taylor) Sat Jul 17 00:48:27 2004 Matthias Clasen Support text/plain selection target (#55117, Owen Taylor) * gtk/gtkselection.h: * gtk/gtkdnd.h: * gtk/gtkselection.c (gtk_target_list_add_text_targets): * gtk/gtkdnd.c (gtk_drag_dest_add_text_targets): * gtk/gtkdnd.c (gtk_drag_source_add_text_targets): New functions to facilitate handling of text targets. * gtk/gtkentry.c: * gtk/gtktextview.c: Use the new text target handling functions instead of hardwiring the list of supported text targets everywhere. * gtk/gtkselection.c (gtk_selection_data_get_text): (gtk_selection_data_set_text): Support the targets text/plain, text/plain?charset=utf-8 and text/plain?charset= as outlined in #55117: For text/plain send only ASCII, but accept 8-bit text and treat it as ISO-8859-1 as specified by the Xdnd spec. Always send CRLF terminators. Accept either and convert into the native terminator for the platform. --- gtk/gtkdnd.c | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'gtk/gtkdnd.c') diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index 8e8fa7b7fb..786de4c972 100644 --- a/gtk/gtkdnd.c +++ b/gtk/gtkdnd.c @@ -1024,6 +1024,24 @@ gtk_drag_dest_set_target_list (GtkWidget *widget, site->target_list = target_list; } +/** + * gtk_drag_dest_add_text_targets: + * @widget: a #GtkWidget that's a drag destination + * + * Add the text targets supported by #GtkSelection to + * the target list of the drag destination. + * + * Since: 2.6 + **/ +void +gtk_drag_dest_add_text_targets (GtkWidget *widget) +{ + GtkTargetList *target_list; + + target_list = gtk_drag_dest_get_target_list (widget); + gtk_target_list_add_text_targets (target_list); + gtk_drag_dest_set_target_list (widget, target_list); +} /************************************************************* * _gtk_drag_dest_handle_event: @@ -2172,6 +2190,25 @@ gtk_drag_source_set_target_list (GtkWidget *widget, site->target_list = target_list; } +/** + * gtk_drag_source_add_text_targets: + * @widget: a #GtkWidget that's is a drag source + * + * Add the text targets supported by #GtkSelection to + * the target list of the drag source. + * + * Since: 2.6 + **/ +void +gtk_drag_source_add_text_targets (GtkWidget *widget) +{ + GtkTargetList *target_list; + + target_list = gtk_drag_source_get_target_list (widget); + gtk_target_list_add_text_targets (target_list); + gtk_drag_source_set_target_list (widget, target_list); +} + static void gtk_drag_source_unset_icon (GtkDragSourceSite *site) { -- cgit v1.2.1