1 /* NeXT/Open/GNUstep / MacOSX Cocoa selection processing for emacs.
2 Copyright (C) 1993-1994, 2005-2006, 2008-2013 Free Software
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 Originally by Carl Edman
22 Updated by Christian Limpach (chris@nice.ch)
23 OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
24 MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
25 GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
28 /* This should be the first include, as it may set up #defines affecting
29 interpretation of even the system includes. */
34 #include "termhooks.h"
37 Lisp_Object QCLIPBOARD, QSECONDARY, QTEXT, QFILE_NAME;
39 static Lisp_Object Vselection_alist;
41 static Lisp_Object Qforeign_selection;
43 /* NSGeneralPboard is pretty much analogous to X11 CLIPBOARD */
44 NSString *NXPrimaryPboard;
45 NSString *NXSecondaryPboard;
49 /* ==========================================================================
51 Internal utility functions
53 ========================================================================== */
57 symbol_to_nsstring (Lisp_Object sym)
60 if (EQ (sym, QCLIPBOARD)) return NSGeneralPboard;
61 if (EQ (sym, QPRIMARY)) return NXPrimaryPboard;
62 if (EQ (sym, QSECONDARY)) return NXSecondaryPboard;
63 if (EQ (sym, QTEXT)) return NSStringPboardType;
64 return [NSString stringWithUTF8String: SSDATA (SYMBOL_NAME (sym))];
68 ns_symbol_to_pb (Lisp_Object symbol)
70 return [NSPasteboard pasteboardWithName: symbol_to_nsstring (symbol)];
74 ns_string_to_symbol (NSString *t)
76 if ([t isEqualToString: NSGeneralPboard])
78 if ([t isEqualToString: NXPrimaryPboard])
80 if ([t isEqualToString: NXSecondaryPboard])
82 if ([t isEqualToString: NSStringPboardType])
84 if ([t isEqualToString: NSFilenamesPboardType])
86 if ([t isEqualToString: NSTabularTextPboardType])
88 return intern ([t UTF8String]);
93 clean_local_selection_data (Lisp_Object obj)
96 && INTEGERP (XCAR (obj))
98 && INTEGERP (XCAR (XCDR (obj)))
99 && NILP (XCDR (XCDR (obj))))
100 obj = Fcons (XCAR (obj), XCDR (obj));
103 && INTEGERP (XCAR (obj))
104 && INTEGERP (XCDR (obj)))
106 if (XINT (XCAR (obj)) == 0)
108 if (XINT (XCAR (obj)) == -1)
109 return make_number (- XINT (XCDR (obj)));
115 ptrdiff_t size = ASIZE (obj);
119 return clean_local_selection_data (AREF (obj, 0));
120 copy = Fmake_vector (make_number (size), Qnil);
121 for (i = 0; i < size; i++)
122 ASET (copy, i, clean_local_selection_data (AREF (obj, i)));
131 ns_declare_pasteboard (id pb)
133 [pb declareTypes: ns_send_types owner: NSApp];
138 ns_undeclare_pasteboard (id pb)
140 [pb declareTypes: [NSArray array] owner: nil];
145 ns_string_to_pasteboard_internal (id pb, Lisp_Object str, NSString *gtype)
149 [pb declareTypes: [NSArray array] owner: nil];
154 NSString *type, *nsStr;
159 utfStr = SSDATA (str);
160 nsStr = [[NSString alloc] initWithBytesNoCopy: utfStr
162 encoding: NSUTF8StringEncoding
166 [pb declareTypes: ns_send_types owner: nil];
167 tenum = [ns_send_types objectEnumerator];
168 while ( (type = [tenum nextObject]) )
169 [pb setString: nsStr forType: type];
173 [pb setString: nsStr forType: gtype];
181 ns_get_local_selection (Lisp_Object selection_name,
182 Lisp_Object target_type)
184 Lisp_Object local_value;
185 Lisp_Object handler_fn, value, type, check;
188 local_value = assq_no_quit (selection_name, Vselection_alist);
190 if (NILP (local_value)) return Qnil;
192 count = specpdl_ptr - specpdl;
193 specbind (Qinhibit_quit, Qt);
194 CHECK_SYMBOL (target_type);
195 handler_fn = Fcdr (Fassq (target_type, Vselection_converter_alist));
196 if (!NILP (handler_fn))
197 value = call3 (handler_fn, selection_name, target_type,
198 XCAR (XCDR (local_value)));
201 unbind_to (count, Qnil);
204 if (CONSP (value) && SYMBOLP (XCAR (value)))
207 check = XCDR (value);
210 if (STRINGP (check) || VECTORP (check) || SYMBOLP (check)
211 || INTEGERP (check) || NILP (value))
215 && INTEGERP (XCAR (check))
216 && (INTEGERP (XCDR (check))||
217 (CONSP (XCDR (check))
218 && INTEGERP (XCAR (XCDR (check)))
219 && NILP (XCDR (XCDR (check))))))
222 // FIXME: Why `quit' rather than `error'?
223 Fsignal (Qquit, Fcons (build_string (
224 "invalid data returned by selection-conversion function"),
225 Fcons (handler_fn, Fcons (value, Qnil))));
226 // FIXME: Beware, `quit' can return!!
232 ns_get_foreign_selection (Lisp_Object symbol, Lisp_Object target)
235 pb = ns_symbol_to_pb (symbol);
236 return pb != nil ? ns_string_from_pasteboard (pb) : Qnil;
242 /* ==========================================================================
244 Functions used externally
246 ========================================================================== */
250 ns_string_from_pasteboard (id pb)
252 NSString *type, *str;
256 type = [pb availableTypeFromArray: ns_return_types];
260 Fcons (build_string ("empty or unsupported pasteboard type"),
266 if (! (str = [pb stringForType: type]))
268 NSData *data = [pb dataForType: type];
270 str = [[NSString alloc] initWithData: data
271 encoding: NSUTF8StringEncoding];
279 Fcons (build_string ("pasteboard doesn't contain valid data"),
288 /* EOL conversion: PENDING- is this too simple? */
289 NSMutableString *mstr = [[str mutableCopy] autorelease];
290 [mstr replaceOccurrencesOfString: @"\r\n" withString: @"\n"
291 options: NSLiteralSearch range: NSMakeRange (0, [mstr length])];
292 [mstr replaceOccurrencesOfString: @"\r" withString: @"\n"
293 options: NSLiteralSearch range: NSMakeRange (0, [mstr length])];
295 utfStr = [mstr UTF8String];
296 length = [mstr lengthOfBytesUsingEncoding: NSUTF8StringEncoding];
298 #if ! defined (NS_IMPL_COCOA)
301 utfStr = [mstr cString];
302 length = strlen (utfStr);
308 message1 ("ns_string_from_pasteboard: UTF8String failed\n");
309 #if defined (NS_IMPL_COCOA)
310 utfStr = "Conversion failed";
312 utfStr = [str lossyCString];
314 length = strlen (utfStr);
318 return make_string (utfStr, length);
323 ns_string_to_pasteboard (id pb, Lisp_Object str)
325 ns_string_to_pasteboard_internal (pb, str, nil);
330 /* ==========================================================================
334 ========================================================================== */
337 DEFUN ("x-own-selection-internal", Fx_own_selection_internal,
338 Sx_own_selection_internal, 2, 3, 0,
339 doc: /* Assert an X selection of type SELECTION and value VALUE.
340 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
341 \(Those are literal upper-case symbol names, since that's what X expects.)
342 VALUE is typically a string, or a cons of two markers, but may be
343 anything that the functions on `selection-converter-alist' know about.
345 FRAME should be a frame that should own the selection. If omitted or
346 nil, it defaults to the selected frame.
348 On Nextstep, FRAME is unused. */)
349 (Lisp_Object selection, Lisp_Object value, Lisp_Object frame)
352 Lisp_Object old_value, new_value;
354 Lisp_Object successful_p = Qnil, rest;
355 Lisp_Object target_symbol, data;
359 CHECK_SYMBOL (selection);
361 error ("selection value may not be nil.");
362 pb = ns_symbol_to_pb (selection);
363 if (pb == nil) return Qnil;
365 ns_declare_pasteboard (pb);
366 old_value = assq_no_quit (selection, Vselection_alist);
367 new_value = Fcons (selection, Fcons (value, Qnil));
369 if (NILP (old_value))
370 Vselection_alist = Fcons (new_value, Vselection_alist);
372 Fsetcdr (old_value, Fcdr (new_value));
374 /* We only support copy of text. */
375 type = NSStringPboardType;
376 target_symbol = ns_string_to_symbol (type);
377 data = ns_get_local_selection (selection, target_symbol);
381 ns_string_to_pasteboard_internal (pb, data, type);
385 if (!EQ (Vns_sent_selection_hooks, Qunbound))
387 for (rest = Vns_sent_selection_hooks; CONSP (rest); rest = Fcdr (rest))
388 call3 (Fcar (rest), selection, target_symbol, successful_p);
395 DEFUN ("x-disown-selection-internal", Fx_disown_selection_internal,
396 Sx_disown_selection_internal, 1, 3, 0,
397 doc: /* If we own the selection SELECTION, disown it.
398 Disowning it means there is no such selection.
400 Sets the last-change time for the selection to TIME-OBJECT (by default
401 the time of the last event).
403 TERMINAL should be a terminal object or a frame specifying the X
404 server to query. If omitted or nil, that stands for the selected
405 frame's display, or the first available X display.
407 On Nextstep, the TIME-OBJECT and TERMINAL arguments are unused.
408 On MS-DOS, all this does is return non-nil if we own the selection. */)
409 (Lisp_Object selection, Lisp_Object time_object, Lisp_Object terminal)
413 CHECK_SYMBOL (selection);
414 if (NILP (assq_no_quit (selection, Vselection_alist))) return Qnil;
416 pb = ns_symbol_to_pb (selection);
417 if (pb != nil) ns_undeclare_pasteboard (pb);
422 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
423 0, 2, 0, doc: /* Whether there is an owner for the given X selection.
424 SELECTION should be the name of the selection in question, typically
425 one of the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'. (X expects
426 these literal upper-case names.) The symbol nil is the same as
427 `PRIMARY', and t is the same as `SECONDARY'.
429 TERMINAL should be a terminal object or a frame specifying the X
430 server to query. If omitted or nil, that stands for the selected
431 frame's display, or the first available X display.
433 On Nextstep, TERMINAL is unused. */)
434 (Lisp_Object selection, Lisp_Object terminal)
440 CHECK_SYMBOL (selection);
441 if (EQ (selection, Qnil)) selection = QPRIMARY;
442 if (EQ (selection, Qt)) selection = QSECONDARY;
443 pb = ns_symbol_to_pb (selection);
444 if (pb == nil) return Qnil;
447 return ([types count] == 0) ? Qnil : Qt;
451 DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p,
453 doc: /* Whether the current Emacs process owns the given X Selection.
454 The arg should be the name of the selection in question, typically one of
455 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
456 \(Those are literal upper-case symbol names, since that's what X expects.)
457 For convenience, the symbol nil is the same as `PRIMARY',
458 and t is the same as `SECONDARY'.
460 TERMINAL should be a terminal object or a frame specifying the X
461 server to query. If omitted or nil, that stands for the selected
462 frame's display, or the first available X display.
464 On Nextstep, TERMINAL is unused. */)
465 (Lisp_Object selection, Lisp_Object terminal)
468 CHECK_SYMBOL (selection);
469 if (EQ (selection, Qnil)) selection = QPRIMARY;
470 if (EQ (selection, Qt)) selection = QSECONDARY;
471 return (NILP (Fassq (selection, Vselection_alist))) ? Qnil : Qt;
475 DEFUN ("x-get-selection-internal", Fx_get_selection_internal,
476 Sx_get_selection_internal, 2, 4, 0,
477 doc: /* Return text selected from some X window.
478 SELECTION-SYMBOL is typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
479 \(Those are literal upper-case symbol names, since that's what X expects.)
480 TARGET-TYPE is the type of data desired, typically `STRING'.
482 TIME-STAMP is the time to use in the XConvertSelection call for foreign
483 selections. If omitted, defaults to the time for the last event.
485 TERMINAL should be a terminal object or a frame specifying the X
486 server to query. If omitted or nil, that stands for the selected
487 frame's display, or the first available X display.
489 On Nextstep, TIME-STAMP and TERMINAL are unused. */)
490 (Lisp_Object selection_name, Lisp_Object target_type,
491 Lisp_Object time_stamp, Lisp_Object terminal)
496 CHECK_SYMBOL (selection_name);
497 CHECK_SYMBOL (target_type);
498 val = ns_get_local_selection (selection_name, target_type);
500 val = ns_get_foreign_selection (selection_name, target_type);
501 if (CONSP (val) && SYMBOLP (Fcar (val)))
504 if (CONSP (val) && NILP (Fcdr (val)))
507 val = clean_local_selection_data (val);
512 DEFUN ("ns-get-selection-internal", Fns_get_selection_internal,
513 Sns_get_selection_internal, 1, 1, 0,
514 doc: /* Returns the value of SELECTION as a string.
515 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'. */)
516 (Lisp_Object selection)
520 pb = ns_symbol_to_pb (selection);
521 return pb != nil ? ns_string_from_pasteboard (pb) : Qnil;
525 DEFUN ("ns-store-selection-internal", Fns_store_selection_internal,
526 Sns_store_selection_internal, 2, 2, 0,
527 doc: /* Sets the string value of SELECTION.
528 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'. */)
529 (Lisp_Object selection, Lisp_Object string)
533 pb = ns_symbol_to_pb (selection);
534 if (pb != nil) ns_string_to_pasteboard (pb, string);
540 nxatoms_of_nsselect (void)
542 NXPrimaryPboard = @"Selection";
543 NXSecondaryPboard = @"Secondary";
547 syms_of_nsselect (void)
549 QCLIPBOARD = intern_c_string ("CLIPBOARD"); staticpro (&QCLIPBOARD);
550 QSECONDARY = intern_c_string ("SECONDARY"); staticpro (&QSECONDARY);
551 QTEXT = intern_c_string ("TEXT"); staticpro (&QTEXT);
552 QFILE_NAME = intern_c_string ("FILE_NAME"); staticpro (&QFILE_NAME);
554 defsubr (&Sx_disown_selection_internal);
555 defsubr (&Sx_get_selection_internal);
556 defsubr (&Sx_own_selection_internal);
557 defsubr (&Sx_selection_exists_p);
558 defsubr (&Sx_selection_owner_p);
559 defsubr (&Sns_get_selection_internal);
560 defsubr (&Sns_store_selection_internal);
562 Vselection_alist = Qnil;
563 staticpro (&Vselection_alist);
565 DEFVAR_LISP ("ns-sent-selection-hooks", Vns_sent_selection_hooks,
566 "A list of functions to be called when Emacs answers a selection request.\n\
567 The functions are called with four arguments:\n\
568 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\
569 - the selection-type which Emacs was asked to convert the\n\
570 selection into before sending (for example, `STRING' or `LENGTH');\n\
571 - a flag indicating success or failure for responding to the request.\n\
572 We might have failed (and declined the request) for any number of reasons,\n\
573 including being asked for a selection that we no longer own, or being asked\n\
574 to convert into a type that we don't know about or that is inappropriate.\n\
575 This hook doesn't let you change the behavior of Emacs's selection replies,\n\
576 it merely informs you that they have happened.");
577 Vns_sent_selection_hooks = Qnil;
579 DEFVAR_LISP ("selection-converter-alist", Vselection_converter_alist,
580 "An alist associating X Windows selection-types with functions.\n\
581 These functions are called to convert the selection, with three args:\n\
582 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\
583 a desired type to which the selection should be converted;\n\
584 and the local selection value (whatever was given to `x-own-selection').\n\
586 The function should return the value to send to the X server\n\
587 \(typically a string). A return value of nil\n\
588 means that the conversion could not be done.\n\
589 A return value which is the symbol `NULL'\n\
590 means that a side-effect was executed,\n\
591 and there is no meaningful selection value.");
592 Vselection_converter_alist = Qnil;
594 DEFVAR_LISP ("ns-lost-selection-hooks", Vns_lost_selection_hooks,
595 "A list of functions to be called when Emacs loses an X selection.\n\
596 \(This happens when some other X client makes its own selection\n\
597 or when a Lisp program explicitly clears the selection.)\n\
598 The functions are called with one argument, the selection type\n\
599 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD').");
600 Vns_lost_selection_hooks = Qnil;
602 Qforeign_selection = intern_c_string ("foreign-selection");
603 staticpro (&Qforeign_selection);