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