462
|
1 /* GTK selection processing for XEmacs
|
|
2 Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
771
|
3 Copyright (C) 2001 Ben Wing.
|
462
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not synched with FSF. */
|
|
23
|
|
24 /* Authorship:
|
|
25
|
|
26 Written by Kevin Gallo for FSF Emacs.
|
|
27 Rewritten for mswindows by Jonathan Harris, December 1997 for 21.0.
|
|
28 Rewritten for GTK by William Perry, April 2000 for 21.1
|
|
29 */
|
|
30
|
|
31
|
|
32 #include <config.h>
|
|
33 #include "lisp.h"
|
|
34 #include "events.h"
|
|
35 #include "buffer.h"
|
|
36 #include "device.h"
|
|
37 #include "console-gtk.h"
|
|
38 #include "select.h"
|
|
39 #include "opaque.h"
|
|
40 #include "frame.h"
|
|
41
|
|
42 static Lisp_Object Vretrieved_selection;
|
|
43 static gboolean waiting_for_selection;
|
|
44 Lisp_Object Vgtk_sent_selection_hooks;
|
|
45
|
778
|
46 extern int lisp_to_time (Lisp_Object, time_t *);
|
|
47 extern Lisp_Object time_to_lisp (time_t);
|
|
48
|
647
|
49 static GdkAtom
|
|
50 symbol_to_gtk_atom (struct device *d, Lisp_Object sym, int only_if_exists)
|
|
51 {
|
|
52 if (NILP (sym)) return GDK_SELECTION_PRIMARY;
|
|
53 if (EQ (sym, Qt)) return GDK_SELECTION_SECONDARY;
|
|
54 if (EQ (sym, QPRIMARY)) return GDK_SELECTION_PRIMARY;
|
|
55 if (EQ (sym, QSECONDARY)) return GDK_SELECTION_SECONDARY;
|
|
56
|
|
57 {
|
|
58 const Extbyte *nameext;
|
|
59 LISP_STRING_TO_EXTERNAL (Fsymbol_name (sym), nameext, Qctext);
|
|
60 return gdk_atom_intern (nameext, only_if_exists ? TRUE : FALSE);
|
|
61 }
|
|
62 }
|
462
|
63
|
647
|
64 static Lisp_Object
|
|
65 atom_to_symbol (struct device *d, GdkAtom atom)
|
|
66 {
|
|
67 if (atom == GDK_SELECTION_PRIMARY) return (QPRIMARY);
|
|
68 if (atom == GDK_SELECTION_SECONDARY) return (QSECONDARY);
|
|
69
|
|
70 {
|
771
|
71 Intbyte *intstr;
|
647
|
72 Extbyte *str = gdk_atom_name (atom);
|
|
73
|
|
74 if (! str) return Qnil;
|
462
|
75
|
771
|
76 EXTERNAL_TO_C_STRING (str, intstr, Qctext);
|
647
|
77 g_free (str);
|
771
|
78 return intern_int (intstr);
|
647
|
79 }
|
|
80 }
|
|
81
|
|
82 #define PROCESSING_GTK_CODE
|
|
83 #include "select-common.h"
|
|
84 #undef PROCESSING_GTK_CODE
|
|
85
|
|
86
|
462
|
87 /* Set the selection data to GDK_NONE and NULL data, meaning we were
|
|
88 ** unable to do what they wanted.
|
|
89 */
|
|
90 static void
|
|
91 gtk_decline_selection_request (GtkSelectionData *data)
|
|
92 {
|
|
93 gtk_selection_data_set (data, GDK_NONE, 0, NULL, 0);
|
|
94 }
|
|
95
|
|
96 /* Used as an unwind-protect clause so that, if a selection-converter signals
|
|
97 an error, we tell the requestor that we were unable to do what they wanted
|
|
98 before we throw to top-level or go into the debugger or whatever.
|
|
99 */
|
|
100 struct _selection_closure
|
|
101 {
|
|
102 GtkSelectionData *data;
|
|
103 gboolean successful;
|
|
104 };
|
|
105
|
|
106 static Lisp_Object
|
|
107 gtk_selection_request_lisp_error (Lisp_Object closure)
|
|
108 {
|
|
109 struct _selection_closure *cl = (struct _selection_closure *)
|
|
110 get_opaque_ptr (closure);
|
|
111
|
|
112 free_opaque_ptr (closure);
|
|
113 if (cl->successful == TRUE)
|
|
114 return Qnil;
|
|
115 gtk_decline_selection_request (cl->data);
|
|
116 return Qnil;
|
|
117 }
|
|
118
|
|
119 /* This provides the current selection to a requester.
|
|
120 **
|
|
121 ** This is connected to the selection_get() signal of the application
|
|
122 ** shell in device-gtk.c:gtk_init_device().
|
|
123 **
|
|
124 ** This is radically different than the old selection code (21.1.x),
|
|
125 ** but has been modeled after the X code, and appears to work.
|
|
126 **
|
|
127 ** WMP Feb 12 2001
|
|
128 */
|
|
129 void
|
|
130 emacs_gtk_selection_handle (GtkWidget *widget,
|
|
131 GtkSelectionData *selection_data,
|
|
132 guint info,
|
|
133 guint time_stamp,
|
|
134 gpointer data)
|
|
135 {
|
|
136 /* This function can GC */
|
|
137 struct gcpro gcpro1, gcpro2;
|
|
138 Lisp_Object temp_obj;
|
|
139 Lisp_Object selection_symbol;
|
|
140 Lisp_Object target_symbol = Qnil;
|
|
141 Lisp_Object converted_selection = Qnil;
|
|
142 guint32 local_selection_time;
|
|
143 Lisp_Object successful_p = Qnil;
|
|
144 int count;
|
|
145 struct device *d = decode_gtk_device (Qnil);
|
|
146 struct _selection_closure *cl = NULL;
|
|
147
|
|
148 GCPRO2 (converted_selection, target_symbol);
|
|
149
|
|
150 selection_symbol = atom_to_symbol (d, selection_data->selection);
|
|
151 target_symbol = atom_to_symbol (d, selection_data->target);
|
|
152
|
|
153 #if 0 /* #### MULTIPLE doesn't work yet */
|
|
154 if (EQ (target_symbol, QMULTIPLE))
|
|
155 target_symbol = fetch_multiple_target (selection_data);
|
|
156 #endif
|
|
157
|
|
158 temp_obj = Fget_selection_timestamp (selection_symbol);
|
|
159
|
|
160 if (NILP (temp_obj))
|
|
161 {
|
|
162 /* We don't appear to have the selection. */
|
|
163 gtk_decline_selection_request (selection_data);
|
|
164
|
|
165 goto DONE_LABEL;
|
|
166 }
|
|
167
|
|
168 local_selection_time = * (guint32 *) XOPAQUE_DATA (temp_obj);
|
|
169
|
|
170 if (time_stamp != GDK_CURRENT_TIME &&
|
|
171 local_selection_time > time_stamp)
|
|
172 {
|
|
173 /* Someone asked for the selection, and we have one, but not the one
|
|
174 they're looking for. */
|
|
175 gtk_decline_selection_request (selection_data);
|
|
176 goto DONE_LABEL;
|
|
177 }
|
|
178
|
|
179 converted_selection = select_convert_out (selection_symbol,
|
|
180 target_symbol, Qnil);
|
|
181
|
|
182 /* #### Is this the right thing to do? I'm no X expert. -- ajh */
|
|
183 if (NILP (converted_selection))
|
|
184 {
|
|
185 /* We don't appear to have a selection in that data type. */
|
|
186 gtk_decline_selection_request (selection_data);
|
|
187 goto DONE_LABEL;
|
|
188 }
|
|
189
|
|
190 count = specpdl_depth ();
|
|
191
|
|
192 cl = (struct _selection_closure *) xmalloc (sizeof (*cl));
|
|
193 cl->data = selection_data;
|
|
194 cl->successful = FALSE;
|
|
195
|
|
196 record_unwind_protect (gtk_selection_request_lisp_error,
|
|
197 make_opaque_ptr (cl));
|
|
198
|
|
199 {
|
647
|
200 UChar_Binary *data;
|
665
|
201 Bytecount size;
|
462
|
202 int format;
|
|
203 GdkAtom type;
|
|
204 lisp_data_to_selection_data (d, converted_selection,
|
|
205 &data, &type, &size, &format);
|
|
206
|
647
|
207 gtk_selection_data_set (selection_data, type, format, data,
|
|
208 /* #### is this right? */
|
|
209 (unsigned int) size);
|
462
|
210 successful_p = Qt;
|
|
211 /* Tell x_selection_request_lisp_error() it's cool. */
|
|
212 cl->successful = TRUE;
|
|
213 xfree (data);
|
|
214 }
|
|
215
|
771
|
216 unbind_to (count);
|
462
|
217
|
|
218 DONE_LABEL:
|
|
219
|
|
220 if (cl) xfree (cl);
|
|
221
|
|
222 UNGCPRO;
|
|
223
|
|
224 /* Let random lisp code notice that the selection has been asked for. */
|
|
225 {
|
|
226 Lisp_Object val = Vgtk_sent_selection_hooks;
|
|
227 if (!UNBOUNDP (val) && !NILP (val))
|
|
228 {
|
|
229 Lisp_Object rest;
|
|
230 if (CONSP (val) && !EQ (XCAR (val), Qlambda))
|
|
231 for (rest = val; !NILP (rest); rest = Fcdr (rest))
|
|
232 call3 (Fcar (rest), selection_symbol, target_symbol, successful_p);
|
|
233 else
|
|
234 call3 (val, selection_symbol, target_symbol, successful_p);
|
|
235 }
|
|
236 }
|
|
237 }
|
|
238
|
|
239
|
746
|
240 void
|
|
241 emacs_gtk_selection_clear_event_handle (GtkWidget *widget,
|
|
242 GdkEventSelection *event,
|
|
243 gpointer data)
|
|
244 {
|
|
245 GdkAtom selection = event->selection;
|
|
246 guint32 changed_owner_time = event->time;
|
|
247 struct device *d = decode_gtk_device (Qnil);
|
|
248
|
|
249 Lisp_Object selection_symbol, local_selection_time_lisp;
|
|
250 guint32 local_selection_time;
|
|
251
|
|
252 selection_symbol = atom_to_symbol (d, selection);
|
|
253
|
|
254 local_selection_time_lisp = Fget_selection_timestamp (selection_symbol);
|
|
255
|
|
256 /* We don't own the selection, so that's fine. */
|
|
257 if (NILP (local_selection_time_lisp))
|
|
258 return;
|
|
259
|
|
260 local_selection_time = *(guint32 *) XOPAQUE_DATA (local_selection_time_lisp);
|
|
261
|
|
262 /* This SelectionClear is for a selection that we no longer own, so we can
|
|
263 disregard it. (That is, we have reasserted the selection since this
|
|
264 request was generated.)
|
|
265 */
|
|
266 if (changed_owner_time != GDK_CURRENT_TIME &&
|
|
267 local_selection_time > changed_owner_time)
|
|
268 return;
|
|
269
|
|
270 handle_selection_clear (selection_symbol);
|
|
271 }
|
|
272
|
|
273
|
462
|
274
|
|
275 static GtkWidget *reading_selection_reply;
|
|
276 static GdkAtom reading_which_selection;
|
|
277 static int selection_reply_timed_out;
|
|
278
|
|
279 /* Gets the current selection owned by another application */
|
|
280 void
|
|
281 emacs_gtk_selection_received (GtkWidget *widget,
|
|
282 GtkSelectionData *selection_data,
|
|
283 gpointer user_data)
|
|
284 {
|
|
285 waiting_for_selection = FALSE;
|
|
286 Vretrieved_selection = Qnil;
|
|
287
|
|
288 reading_selection_reply = NULL;
|
|
289
|
|
290 signal_fake_event ();
|
|
291
|
|
292 if (selection_data->length < 0)
|
|
293 {
|
|
294 return;
|
|
295 }
|
|
296
|
|
297 Vretrieved_selection =
|
|
298 selection_data_to_lisp_data (NULL,
|
|
299 selection_data->data,
|
|
300 selection_data->length,
|
|
301 selection_data->type,
|
|
302 selection_data->format);
|
|
303 }
|
|
304
|
|
305 static int
|
|
306 selection_reply_done (void *ignore)
|
|
307 {
|
|
308 return !reading_selection_reply;
|
|
309 }
|
|
310
|
|
311 /* Do protocol to read selection-data from the server.
|
|
312 Converts this to lisp data and returns it.
|
|
313 */
|
|
314 static Lisp_Object
|
|
315 gtk_get_foreign_selection (Lisp_Object selection_symbol,
|
|
316 Lisp_Object target_type)
|
|
317 {
|
|
318 /* This function can GC */
|
|
319 struct device *d = decode_gtk_device (Qnil);
|
|
320 GtkWidget *requestor = DEVICE_GTK_APP_SHELL (d);
|
|
321 guint32 requestor_time = DEVICE_GTK_MOUSE_TIMESTAMP (d);
|
|
322 GdkAtom selection_atom = symbol_to_gtk_atom (d, selection_symbol, 0);
|
|
323 int speccount;
|
|
324 GdkAtom type_atom = symbol_to_gtk_atom (d, (CONSP (target_type) ?
|
|
325 XCAR (target_type) : target_type), 0);
|
|
326
|
|
327 gtk_selection_convert (requestor, selection_atom, type_atom,
|
|
328 requestor_time);
|
|
329
|
|
330 signal_fake_event ();
|
|
331
|
|
332 /* Block until the reply has been read. */
|
|
333 reading_selection_reply = requestor;
|
|
334 reading_which_selection = selection_atom;
|
|
335 selection_reply_timed_out = 0;
|
|
336
|
|
337 speccount = specpdl_depth ();
|
|
338
|
|
339 #if 0
|
|
340 /* add a timeout handler */
|
|
341 if (gtk_selection_timeout > 0)
|
|
342 {
|
|
343 Lisp_Object id = Fadd_timeout (make_int (x_selection_timeout),
|
|
344 Qx_selection_reply_timeout_internal,
|
|
345 Qnil, Qnil);
|
|
346 record_unwind_protect (Fdisable_timeout, id);
|
|
347 }
|
|
348 #endif
|
|
349
|
|
350 /* This is ^Gable */
|
|
351 wait_delaying_user_input (selection_reply_done, 0);
|
|
352
|
|
353 if (selection_reply_timed_out)
|
563
|
354 signal_error (Qselection_conversion_error, "timed out waiting for reply from selection owner", Qunbound);
|
462
|
355
|
771
|
356 unbind_to (speccount);
|
462
|
357
|
|
358 /* otherwise, the selection is waiting for us on the requested property. */
|
|
359 return select_convert_in (selection_symbol,
|
|
360 target_type,
|
|
361 Vretrieved_selection);
|
|
362 }
|
|
363
|
|
364
|
|
365 #if 0
|
|
366 static void
|
|
367 gtk_get_window_property (struct device *d, GtkWidget *window, GdkAtom property,
|
|
368 Extbyte **data_ret, int *bytes_ret,
|
|
369 GdkAtom *actual_type_ret, int *actual_format_ret,
|
|
370 unsigned long *actual_size_ret, int delete_p)
|
|
371 {
|
647
|
372 /* deleted */
|
462
|
373 }
|
|
374
|
|
375
|
|
376 static void
|
|
377 receive_incremental_selection (Display *display, Window window, Atom property,
|
|
378 /* this one is for error messages only */
|
|
379 Lisp_Object target_type,
|
|
380 unsigned int min_size_bytes,
|
|
381 Extbyte **data_ret, int *size_bytes_ret,
|
|
382 Atom *type_ret, int *format_ret,
|
|
383 unsigned long *size_ret)
|
|
384 {
|
647
|
385 /* deleted */
|
462
|
386 }
|
|
387
|
|
388
|
|
389 static Lisp_Object
|
|
390 gtk_get_window_property_as_lisp_data (struct device *d,
|
|
391 GtkWidget *window,
|
|
392 GdkAtom property,
|
|
393 /* next two for error messages only */
|
|
394 Lisp_Object target_type,
|
|
395 GdkAtom selection_atom)
|
|
396 {
|
647
|
397 /* deleted */
|
462
|
398 }
|
|
399 #endif
|
|
400
|
|
401
|
|
402
|
|
403 static Lisp_Object
|
|
404 gtk_own_selection (Lisp_Object selection_name, Lisp_Object selection_value,
|
712
|
405 Lisp_Object how_to_add, Lisp_Object selection_type, int owned_p)
|
462
|
406 {
|
|
407 struct device *d = decode_gtk_device (Qnil);
|
|
408 GtkWidget *selecting_window = GTK_WIDGET (DEVICE_GTK_APP_SHELL (d));
|
|
409 Lisp_Object selection_time;
|
|
410 /* Use the time of the last-read mouse or keyboard event.
|
|
411 For selection purposes, we use this as a sleazy way of knowing what the
|
|
412 current time is in server-time. This assumes that the most recently read
|
|
413 mouse or keyboard event has something to do with the assertion of the
|
|
414 selection, which is probably true.
|
|
415 */
|
|
416 guint32 thyme = DEVICE_GTK_MOUSE_TIMESTAMP (d);
|
|
417 GdkAtom selection_atom;
|
|
418
|
|
419 CHECK_SYMBOL (selection_name);
|
|
420 selection_atom = symbol_to_gtk_atom (d, selection_name, 0);
|
|
421
|
|
422 gtk_selection_owner_set (selecting_window,
|
|
423 selection_atom,
|
|
424 thyme);
|
|
425
|
|
426 /* We do NOT use time_to_lisp() here any more, like we used to.
|
|
427 That assumed equivalence of time_t and Time, which is not
|
|
428 necessarily the case (e.g. under OSF on the Alphas, where
|
|
429 Time is a 64-bit quantity and time_t is a 32-bit quantity).
|
|
430
|
|
431 Opaque pointers are the clean way to go here.
|
|
432 */
|
793
|
433 return make_opaque (&thyme, sizeof (thyme));
|
462
|
434 }
|
|
435
|
|
436 static void
|
|
437 gtk_disown_selection (Lisp_Object selection, Lisp_Object timeval)
|
|
438 {
|
|
439 struct device *d = decode_gtk_device (Qnil);
|
|
440 GdkAtom selection_atom;
|
|
441 guint32 timestamp;
|
|
442
|
|
443 CHECK_SYMBOL (selection);
|
|
444 selection_atom = symbol_to_gtk_atom (d, selection, 0);
|
|
445
|
|
446 if (NILP (timeval))
|
|
447 timestamp = DEVICE_GTK_MOUSE_TIMESTAMP (d);
|
|
448 else
|
|
449 {
|
|
450 time_t the_time;
|
|
451 lisp_to_time (timeval, &the_time);
|
|
452 timestamp = (guint32) the_time;
|
|
453 }
|
|
454
|
|
455 gtk_selection_owner_set (NULL, selection_atom, timestamp);
|
|
456 }
|
|
457
|
|
458 static Lisp_Object
|
|
459 gtk_selection_exists_p (Lisp_Object selection,
|
|
460 Lisp_Object selection_type)
|
|
461 {
|
|
462 struct device *d = decode_gtk_device (Qnil);
|
|
463
|
|
464 return (gdk_selection_owner_get (symbol_to_gtk_atom (d, selection, 0)) ? Qt : Qnil);
|
|
465 }
|
|
466
|
|
467
|
|
468
|
|
469 /************************************************************************/
|
|
470 /* initialization */
|
|
471 /************************************************************************/
|
|
472
|
|
473 void
|
|
474 syms_of_select_gtk (void)
|
|
475 {
|
|
476 }
|
|
477
|
|
478 void
|
|
479 console_type_create_select_gtk (void)
|
|
480 {
|
|
481 CONSOLE_HAS_METHOD (gtk, own_selection);
|
|
482 CONSOLE_HAS_METHOD (gtk, disown_selection);
|
|
483 CONSOLE_HAS_METHOD (gtk, selection_exists_p);
|
|
484 CONSOLE_HAS_METHOD (gtk, get_foreign_selection);
|
|
485 }
|
|
486
|
|
487 void
|
|
488 vars_of_select_gtk (void)
|
|
489 {
|
|
490 staticpro (&Vretrieved_selection);
|
|
491 Vretrieved_selection = Qnil;
|
|
492
|
|
493 DEFVAR_LISP ("gtk-sent-selection-hooks", &Vgtk_sent_selection_hooks /*
|
|
494 A function or functions to be called after we have responded to some
|
|
495 other client's request for the value of a selection that we own. The
|
|
496 function(s) will be called with four arguments:
|
|
497 - the name of the selection (typically PRIMARY, SECONDARY, or CLIPBOARD);
|
|
498 - the name of the selection-type which we were requested to convert the
|
|
499 selection into before sending (for example, STRING or LENGTH);
|
|
500 - and whether we successfully transmitted the selection.
|
|
501 We might have failed (and declined the request) for any number of reasons,
|
|
502 including being asked for a selection that we no longer own, or being asked
|
|
503 to convert into a type that we don't know about or that is inappropriate.
|
|
504 This hook doesn't let you change the behavior of emacs's selection replies,
|
|
505 it merely informs you that they have happened.
|
|
506 */ );
|
|
507 Vgtk_sent_selection_hooks = Qunbound;
|
|
508 }
|