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
|
|
238
|
|
239 static GtkWidget *reading_selection_reply;
|
|
240 static GdkAtom reading_which_selection;
|
|
241 static int selection_reply_timed_out;
|
|
242
|
|
243 /* Gets the current selection owned by another application */
|
|
244 void
|
|
245 emacs_gtk_selection_received (GtkWidget *widget,
|
|
246 GtkSelectionData *selection_data,
|
|
247 gpointer user_data)
|
|
248 {
|
|
249 waiting_for_selection = FALSE;
|
|
250 Vretrieved_selection = Qnil;
|
|
251
|
|
252 reading_selection_reply = NULL;
|
|
253
|
|
254 signal_fake_event ();
|
|
255
|
|
256 if (selection_data->length < 0)
|
|
257 {
|
|
258 return;
|
|
259 }
|
|
260
|
|
261 Vretrieved_selection =
|
|
262 selection_data_to_lisp_data (NULL,
|
|
263 selection_data->data,
|
|
264 selection_data->length,
|
|
265 selection_data->type,
|
|
266 selection_data->format);
|
|
267 }
|
|
268
|
|
269 static int
|
|
270 selection_reply_done (void *ignore)
|
|
271 {
|
|
272 return !reading_selection_reply;
|
|
273 }
|
|
274
|
|
275 /* Do protocol to read selection-data from the server.
|
|
276 Converts this to lisp data and returns it.
|
|
277 */
|
|
278 static Lisp_Object
|
|
279 gtk_get_foreign_selection (Lisp_Object selection_symbol,
|
|
280 Lisp_Object target_type)
|
|
281 {
|
|
282 /* This function can GC */
|
|
283 struct device *d = decode_gtk_device (Qnil);
|
|
284 GtkWidget *requestor = DEVICE_GTK_APP_SHELL (d);
|
|
285 guint32 requestor_time = DEVICE_GTK_MOUSE_TIMESTAMP (d);
|
|
286 GdkAtom selection_atom = symbol_to_gtk_atom (d, selection_symbol, 0);
|
|
287 int speccount;
|
|
288 GdkAtom type_atom = symbol_to_gtk_atom (d, (CONSP (target_type) ?
|
|
289 XCAR (target_type) : target_type), 0);
|
|
290
|
|
291 gtk_selection_convert (requestor, selection_atom, type_atom,
|
|
292 requestor_time);
|
|
293
|
|
294 signal_fake_event ();
|
|
295
|
|
296 /* Block until the reply has been read. */
|
|
297 reading_selection_reply = requestor;
|
|
298 reading_which_selection = selection_atom;
|
|
299 selection_reply_timed_out = 0;
|
|
300
|
|
301 speccount = specpdl_depth ();
|
|
302
|
|
303 #if 0
|
|
304 /* add a timeout handler */
|
|
305 if (gtk_selection_timeout > 0)
|
|
306 {
|
|
307 Lisp_Object id = Fadd_timeout (make_int (x_selection_timeout),
|
|
308 Qx_selection_reply_timeout_internal,
|
|
309 Qnil, Qnil);
|
|
310 record_unwind_protect (Fdisable_timeout, id);
|
|
311 }
|
|
312 #endif
|
|
313
|
|
314 /* This is ^Gable */
|
|
315 wait_delaying_user_input (selection_reply_done, 0);
|
|
316
|
|
317 if (selection_reply_timed_out)
|
563
|
318 signal_error (Qselection_conversion_error, "timed out waiting for reply from selection owner", Qunbound);
|
462
|
319
|
|
320 unbind_to (speccount, Qnil);
|
|
321
|
|
322 /* otherwise, the selection is waiting for us on the requested property. */
|
|
323 return select_convert_in (selection_symbol,
|
|
324 target_type,
|
|
325 Vretrieved_selection);
|
|
326 }
|
|
327
|
|
328
|
|
329 #if 0
|
|
330 static void
|
|
331 gtk_get_window_property (struct device *d, GtkWidget *window, GdkAtom property,
|
|
332 Extbyte **data_ret, int *bytes_ret,
|
|
333 GdkAtom *actual_type_ret, int *actual_format_ret,
|
|
334 unsigned long *actual_size_ret, int delete_p)
|
|
335 {
|
647
|
336 /* deleted */
|
462
|
337 }
|
|
338
|
|
339
|
|
340 static void
|
|
341 receive_incremental_selection (Display *display, Window window, Atom property,
|
|
342 /* this one is for error messages only */
|
|
343 Lisp_Object target_type,
|
|
344 unsigned int min_size_bytes,
|
|
345 Extbyte **data_ret, int *size_bytes_ret,
|
|
346 Atom *type_ret, int *format_ret,
|
|
347 unsigned long *size_ret)
|
|
348 {
|
647
|
349 /* deleted */
|
462
|
350 }
|
|
351
|
|
352
|
|
353 static Lisp_Object
|
|
354 gtk_get_window_property_as_lisp_data (struct device *d,
|
|
355 GtkWidget *window,
|
|
356 GdkAtom property,
|
|
357 /* next two for error messages only */
|
|
358 Lisp_Object target_type,
|
|
359 GdkAtom selection_atom)
|
|
360 {
|
647
|
361 /* deleted */
|
462
|
362 }
|
|
363 #endif
|
|
364
|
|
365
|
|
366
|
|
367 static Lisp_Object
|
|
368 gtk_own_selection (Lisp_Object selection_name, Lisp_Object selection_value,
|
712
|
369 Lisp_Object how_to_add, Lisp_Object selection_type, int owned_p)
|
462
|
370 {
|
|
371 struct device *d = decode_gtk_device (Qnil);
|
|
372 GtkWidget *selecting_window = GTK_WIDGET (DEVICE_GTK_APP_SHELL (d));
|
|
373 Lisp_Object selection_time;
|
|
374 /* Use the time of the last-read mouse or keyboard event.
|
|
375 For selection purposes, we use this as a sleazy way of knowing what the
|
|
376 current time is in server-time. This assumes that the most recently read
|
|
377 mouse or keyboard event has something to do with the assertion of the
|
|
378 selection, which is probably true.
|
|
379 */
|
|
380 guint32 thyme = DEVICE_GTK_MOUSE_TIMESTAMP (d);
|
|
381 GdkAtom selection_atom;
|
|
382
|
|
383 CHECK_SYMBOL (selection_name);
|
|
384 selection_atom = symbol_to_gtk_atom (d, selection_name, 0);
|
|
385
|
|
386 gtk_selection_owner_set (selecting_window,
|
|
387 selection_atom,
|
|
388 thyme);
|
|
389
|
|
390 /* We do NOT use time_to_lisp() here any more, like we used to.
|
|
391 That assumed equivalence of time_t and Time, which is not
|
|
392 necessarily the case (e.g. under OSF on the Alphas, where
|
|
393 Time is a 64-bit quantity and time_t is a 32-bit quantity).
|
|
394
|
|
395 Opaque pointers are the clean way to go here.
|
|
396 */
|
|
397 selection_time = make_opaque (&thyme, sizeof (thyme));
|
|
398
|
|
399 return selection_time;
|
|
400 }
|
|
401
|
|
402 static void
|
|
403 gtk_disown_selection (Lisp_Object selection, Lisp_Object timeval)
|
|
404 {
|
|
405 struct device *d = decode_gtk_device (Qnil);
|
|
406 GdkAtom selection_atom;
|
|
407 guint32 timestamp;
|
|
408
|
|
409 CHECK_SYMBOL (selection);
|
|
410 selection_atom = symbol_to_gtk_atom (d, selection, 0);
|
|
411
|
|
412 if (NILP (timeval))
|
|
413 timestamp = DEVICE_GTK_MOUSE_TIMESTAMP (d);
|
|
414 else
|
|
415 {
|
|
416 time_t the_time;
|
|
417 lisp_to_time (timeval, &the_time);
|
|
418 timestamp = (guint32) the_time;
|
|
419 }
|
|
420
|
|
421 gtk_selection_owner_set (NULL, selection_atom, timestamp);
|
|
422 }
|
|
423
|
|
424 static Lisp_Object
|
|
425 gtk_selection_exists_p (Lisp_Object selection,
|
|
426 Lisp_Object selection_type)
|
|
427 {
|
|
428 struct device *d = decode_gtk_device (Qnil);
|
|
429
|
|
430 return (gdk_selection_owner_get (symbol_to_gtk_atom (d, selection, 0)) ? Qt : Qnil);
|
|
431 }
|
|
432
|
|
433
|
|
434
|
|
435 /************************************************************************/
|
|
436 /* initialization */
|
|
437 /************************************************************************/
|
|
438
|
|
439 void
|
|
440 syms_of_select_gtk (void)
|
|
441 {
|
|
442 }
|
|
443
|
|
444 void
|
|
445 console_type_create_select_gtk (void)
|
|
446 {
|
|
447 CONSOLE_HAS_METHOD (gtk, own_selection);
|
|
448 CONSOLE_HAS_METHOD (gtk, disown_selection);
|
|
449 CONSOLE_HAS_METHOD (gtk, selection_exists_p);
|
|
450 CONSOLE_HAS_METHOD (gtk, get_foreign_selection);
|
|
451 }
|
|
452
|
|
453 void
|
|
454 vars_of_select_gtk (void)
|
|
455 {
|
|
456 staticpro (&Vretrieved_selection);
|
|
457 Vretrieved_selection = Qnil;
|
|
458
|
|
459 DEFVAR_LISP ("gtk-sent-selection-hooks", &Vgtk_sent_selection_hooks /*
|
|
460 A function or functions to be called after we have responded to some
|
|
461 other client's request for the value of a selection that we own. The
|
|
462 function(s) will be called with four arguments:
|
|
463 - the name of the selection (typically PRIMARY, SECONDARY, or CLIPBOARD);
|
|
464 - the name of the selection-type which we were requested to convert the
|
|
465 selection into before sending (for example, STRING or LENGTH);
|
|
466 - and whether we successfully transmitted the selection.
|
|
467 We might have failed (and declined the request) for any number of reasons,
|
|
468 including being asked for a selection that we no longer own, or being asked
|
|
469 to convert into a type that we don't know about or that is inappropriate.
|
|
470 This hook doesn't let you change the behavior of emacs's selection replies,
|
|
471 it merely informs you that they have happened.
|
|
472 */ );
|
|
473 Vgtk_sent_selection_hooks = Qunbound;
|
|
474 }
|