Mercurial > hg > xemacs-beta
diff src/select-gtk.c @ 746:b13b1b7b11f1
[xemacs-hg @ 2002-02-08 13:04:18 by wmperry]
GTK selection fixes from Eric Gillespie, Jr. <epg@pretzelnet.org>
author | wmperry |
---|---|
date | Fri, 08 Feb 2002 13:04:21 +0000 |
parents | 2d3184c89f71 |
children | 943eaba38521 |
line wrap: on
line diff
--- a/src/select-gtk.c Wed Feb 06 16:27:06 2002 +0000 +++ b/src/select-gtk.c Fri Feb 08 13:04:21 2002 +0000 @@ -235,6 +235,40 @@ } +void +emacs_gtk_selection_clear_event_handle (GtkWidget *widget, + GdkEventSelection *event, + gpointer data) +{ + GdkAtom selection = event->selection; + guint32 changed_owner_time = event->time; + struct device *d = decode_gtk_device (Qnil); + + Lisp_Object selection_symbol, local_selection_time_lisp; + guint32 local_selection_time; + + selection_symbol = atom_to_symbol (d, selection); + + local_selection_time_lisp = Fget_selection_timestamp (selection_symbol); + + /* We don't own the selection, so that's fine. */ + if (NILP (local_selection_time_lisp)) + return; + + local_selection_time = *(guint32 *) XOPAQUE_DATA (local_selection_time_lisp); + + /* This SelectionClear is for a selection that we no longer own, so we can + disregard it. (That is, we have reasserted the selection since this + request was generated.) + */ + if (changed_owner_time != GDK_CURRENT_TIME && + local_selection_time > changed_owner_time) + return; + + handle_selection_clear (selection_symbol); +} + + static GtkWidget *reading_selection_reply; static GdkAtom reading_which_selection;