annotate src/macselect.c @ 71293:e09c0037f795

(makefile-fill-paragraph): Don't remove spaces after the comment start.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 09 Jun 2006 17:43:54 +0000
parents 5605e49b641f
children ae7908422c59
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1 /* Selection processing for Emacs on Mac OS.
70383
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
2 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
3
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
4 This file is part of GNU Emacs.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
5
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
9 any later version.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
10
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
14 GNU General Public License for more details.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
15
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
64084
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62271
diff changeset
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62271
diff changeset
19 Boston, MA 02110-1301, USA. */
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
20
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
21 #include <config.h>
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
22
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
23 #include "lisp.h"
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
24 #include "macterm.h"
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
25 #include "blockinput.h"
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
26 #include "keymap.h"
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
27
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
28 #if !TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
29 #include <Endian.h>
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
30 typedef int ScrapRef;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
31 typedef ResType ScrapFlavorType;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
32 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
33
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
34 static OSErr get_scrap_from_symbol P_ ((Lisp_Object, int, ScrapRef *));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
35 static ScrapFlavorType get_flavor_type_from_symbol P_ ((Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
36 static int valid_scrap_target_type_p P_ ((Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
37 static OSErr clear_scrap P_ ((ScrapRef *));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
38 static OSErr put_scrap_string P_ ((ScrapRef, Lisp_Object, Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
39 static OSErr put_scrap_private_timestamp P_ ((ScrapRef, unsigned long));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
40 static ScrapFlavorType scrap_has_target_type P_ ((ScrapRef, Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
41 static Lisp_Object get_scrap_string P_ ((ScrapRef, Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
42 static OSErr get_scrap_private_timestamp P_ ((ScrapRef, unsigned long *));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
43 static Lisp_Object get_scrap_target_type_list P_ ((ScrapRef));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
44 static void x_own_selection P_ ((Lisp_Object, Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
45 static Lisp_Object x_get_local_selection P_ ((Lisp_Object, Lisp_Object, int));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
46 static Lisp_Object x_get_foreign_selection P_ ((Lisp_Object,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
47 Lisp_Object,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
48 Lisp_Object));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
49 EXFUN (Fx_selection_owner_p, 1);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
50 #ifdef MAC_OSX
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
51 static OSStatus mac_handle_service_event P_ ((EventHandlerCallRef,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
52 EventRef, void *));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
53 void init_service_handler P_ ((void));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
54 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
55
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
56 Lisp_Object QPRIMARY, QSECONDARY, QTIMESTAMP, QTARGETS;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
57
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
58 static Lisp_Object Vx_lost_selection_functions;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
59 /* Coding system for communicating with other programs via scrap. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
60 static Lisp_Object Vselection_coding_system;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
61
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
62 /* Coding system for the next communicating with other programs. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
63 static Lisp_Object Vnext_selection_coding_system;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
64
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
65 static Lisp_Object Qforeign_selection;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
66
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
67 /* The timestamp of the last input event Emacs received from the
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
68 window server. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
69 /* Defined in keyboard.c. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
70 extern unsigned long last_event_timestamp;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
71
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
72 /* This is an association list whose elements are of the form
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
73 ( SELECTION-NAME SELECTION-VALUE SELECTION-TIMESTAMP FRAME)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
74 SELECTION-NAME is a lisp symbol.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
75 SELECTION-VALUE is the value that emacs owns for that selection.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
76 It may be any kind of Lisp object.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
77 SELECTION-TIMESTAMP is the time at which emacs began owning this selection,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
78 as a cons of two 16-bit numbers (making a 32 bit time.)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
79 FRAME is the frame for which we made the selection.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
80 If there is an entry in this alist, and the data for the flavor
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
81 type SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP in the corresponding scrap
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
82 (if exists) coincides with SELECTION-TIMESTAMP, then it can be
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
83 assumed that Emacs owns that selection.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
84 The only (eq) parts of this list that are visible from Lisp are the
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
85 selection-values. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
86 static Lisp_Object Vselection_alist;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
87
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
88 #define SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP 'Etsp'
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
89
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
90 /* This is an alist whose CARs are selection-types and whose CDRs are
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
91 the names of Lisp functions to call to convert the given Emacs
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
92 selection value to a string representing the given selection type.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
93 This is for Lisp-level extension of the emacs selection
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
94 handling. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
95 static Lisp_Object Vselection_converter_alist;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
96
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
97 /* A selection name (represented as a Lisp symbol) can be associated
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
98 with a named scrap via `mac-scrap-name' property. Likewise for a
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
99 selection type with a scrap flavor type via `mac-ostype'. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
100 static Lisp_Object Qmac_scrap_name, Qmac_ostype;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
101
62102
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
102 #ifdef MAC_OSX
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
103 /* Selection name for communication via Services menu. */
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
104 static Lisp_Object Vmac_service_selection;
62102
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
105 #endif
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
106
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
107 /* Get a reference to the scrap corresponding to the symbol SYM. The
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
108 reference is set to *SCRAP, and it becomes NULL if there's no
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
109 corresponding scrap. Clear the scrap if CLEAR_P is non-zero. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
110
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
111 static OSErr
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
112 get_scrap_from_symbol (sym, clear_p, scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
113 Lisp_Object sym;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
114 int clear_p;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
115 ScrapRef *scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
116 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
117 OSErr err = noErr;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
118 Lisp_Object str = Fget (sym, Qmac_scrap_name);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
119
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
120 if (!STRINGP (str))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
121 *scrap = NULL;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
122 else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
123 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
124 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
125 #ifdef MAC_OSX
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
126 CFStringRef scrap_name = cfstring_create_with_string (str);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
127 OptionBits options = (clear_p ? kScrapClearNamedScrap
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
128 : kScrapGetNamedScrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
129
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
130 err = GetScrapByName (scrap_name, options, scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
131 CFRelease (scrap_name);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
132 #else /* !MAC_OSX */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
133 if (clear_p)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
134 err = ClearCurrentScrap ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
135 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
136 err = GetCurrentScrap (scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
137 #endif /* !MAC_OSX */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
138 #else /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
139 if (clear_p)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
140 err = ZeroScrap ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
141 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
142 *scrap = 1;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
143 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
144 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
145
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
146 return err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
147 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
148
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
149 /* Get a scrap flavor type from the symbol SYM. Return 0 if no
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
150 corresponding flavor type. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
151
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
152 static ScrapFlavorType
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
153 get_flavor_type_from_symbol (sym)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
154 Lisp_Object sym;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
155 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
156 Lisp_Object str = Fget (sym, Qmac_ostype);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
157
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
158 if (STRINGP (str) && SBYTES (str) == 4)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
159 return EndianU32_BtoN (*((UInt32 *) SDATA (str)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
160
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
161 return 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
162 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
163
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
164 /* Check if the symbol SYM has a corresponding scrap flavor type. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
165
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
166 static int
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
167 valid_scrap_target_type_p (sym)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
168 Lisp_Object sym;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
169 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
170 return get_flavor_type_from_symbol (sym) != 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
171 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
172
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
173 /* Clear the scrap whose reference is *SCRAP. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
174
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
175 static INLINE OSErr
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
176 clear_scrap (scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
177 ScrapRef *scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
178 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
179 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
180 #ifdef MAC_OSX
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
181 return ClearScrap (scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
182 #else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
183 return ClearCurrentScrap ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
184 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
185 #else /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
186 return ZeroScrap ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
187 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
188 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
189
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
190 /* Put Lisp String STR to the scrap SCRAP. The target type is
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
191 specified by TYPE. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
192
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
193 static OSErr
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
194 put_scrap_string (scrap, type, str)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
195 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
196 Lisp_Object type, str;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
197 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
198 ScrapFlavorType flavor_type = get_flavor_type_from_symbol (type);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
199
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
200 if (flavor_type == 0)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
201 return noTypeErr;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
202
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
203 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
204 return PutScrapFlavor (scrap, flavor_type, kScrapFlavorMaskNone,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
205 SBYTES (str), SDATA (str));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
206 #else /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
207 return PutScrap (SBYTES (str), flavor_type, SDATA (str));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
208 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
209 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
210
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
211 /* Put TIMESTAMP to the scrap SCRAP. The timestamp is used for
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
212 checking if the scrap is owned by the process. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
213
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
214 static INLINE OSErr
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
215 put_scrap_private_timestamp (scrap, timestamp)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
216 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
217 unsigned long timestamp;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
218 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
219 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
220 return PutScrapFlavor (scrap, SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
221 kScrapFlavorMaskSenderOnly,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
222 sizeof (timestamp), &timestamp);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
223 #else /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
224 return PutScrap (sizeof (timestamp), SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
225 &timestamp);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
226 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
227 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
228
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
229 /* Check if data for the target type TYPE is available in SCRAP. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
230
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
231 static ScrapFlavorType
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
232 scrap_has_target_type (scrap, type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
233 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
234 Lisp_Object type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
235 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
236 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
237 ScrapFlavorType flavor_type = get_flavor_type_from_symbol (type);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
238
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
239 if (flavor_type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
240 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
241 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
242 ScrapFlavorFlags flags;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
243
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
244 err = GetScrapFlavorFlags (scrap, flavor_type, &flags);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
245 if (err != noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
246 flavor_type = 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
247 #else /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
248 SInt32 size, offset;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
249
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
250 size = GetScrap (NULL, flavor_type, &offset);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
251 if (size < 0)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
252 flavor_type = 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
253 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
254 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
255
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
256 return flavor_type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
257 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
258
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
259 /* Get data for the target type TYPE from SCRAP and create a Lisp
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
260 string. Return nil if failed to get data. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
261
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
262 static Lisp_Object
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
263 get_scrap_string (scrap, type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
264 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
265 Lisp_Object type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
266 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
267 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
268 Lisp_Object result = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
269 ScrapFlavorType flavor_type = get_flavor_type_from_symbol (type);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
270 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
271 Size size;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
272
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
273 if (flavor_type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
274 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
275 err = GetScrapFlavorSize (scrap, flavor_type, &size);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
276 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
277 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
278 do
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
279 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
280 result = make_uninit_string (size);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
281 err = GetScrapFlavorData (scrap, flavor_type,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
282 &size, SDATA (result));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
283 if (err != noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
284 result = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
285 else if (size < SBYTES (result))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
286 result = make_unibyte_string (SDATA (result), size);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
287 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
288 while (STRINGP (result) && size > SBYTES (result));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
289 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
290 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
291 #else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
292 Handle handle;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
293 SInt32 size, offset;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
294
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
295 if (flavor_type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
296 size = GetScrap (NULL, flavor_type, &offset);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
297 if (size >= 0)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
298 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
299 handle = NewHandle (size);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
300 HLock (handle);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
301 size = GetScrap (handle, flavor_type, &offset);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
302 if (size >= 0)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
303 result = make_unibyte_string (*handle, size);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
304 DisposeHandle (handle);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
305 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
306 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
307
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
308 return result;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
309 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
310
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
311 /* Get timestamp from the scrap SCRAP and set to *TIMPSTAMP. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
312
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
313 static OSErr
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
314 get_scrap_private_timestamp (scrap, timestamp)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
315 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
316 unsigned long *timestamp;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
317 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
318 OSErr err = noErr;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
319 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
320 ScrapFlavorFlags flags;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
321
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
322 err = GetScrapFlavorFlags (scrap, SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP, &flags);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
323 if (err == noErr)
69963
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
324 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
325 if (!(flags & kScrapFlavorMaskSenderOnly))
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
326 err = noTypeErr;
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
327 else
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
328 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
329 Size size = sizeof (*timestamp);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
330
69963
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
331 err = GetScrapFlavorData (scrap, SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP,
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
332 &size, timestamp);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
333 if (err == noErr && size != sizeof (*timestamp))
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
334 err = noTypeErr;
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
335 }
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
336 }
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
337 #else /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
338 Handle handle;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
339 SInt32 size, offset;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
340
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
341 size = GetScrap (NULL, SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP, &offset);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
342 if (size == sizeof (*timestamp))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
343 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
344 handle = NewHandle (size);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
345 HLock (handle);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
346 size = GetScrap (handle, SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP, &offset);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
347 if (size == sizeof (*timestamp))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
348 *timestamp = *((unsigned long *) *handle);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
349 DisposeHandle (handle);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
350 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
351 if (size != sizeof (*timestamp))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
352 err = noTypeErr;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
353 #endif /* !TARGET_API_MAC_CARBON */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
354
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
355 return err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
356 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
357
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
358 /* Get the list of target types in SCRAP. The return value is a list
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
359 of target type symbols possibly followed by scrap flavor type
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
360 strings. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
361
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
362 static Lisp_Object
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
363 get_scrap_target_type_list (scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
364 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
365 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
366 Lisp_Object result = Qnil, rest, target_type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
367 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
368 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
369 UInt32 count, i, type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
370 ScrapFlavorInfo *flavor_info = NULL;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
371 Lisp_Object strings = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
372
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
373 err = GetScrapFlavorCount (scrap, &count);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
374 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
375 flavor_info = xmalloc (sizeof (ScrapFlavorInfo) * count);
70070
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
376 err = GetScrapFlavorInfoList (scrap, &count, flavor_info);
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
377 if (err != noErr)
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
378 {
70070
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
379 xfree (flavor_info);
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
380 flavor_info = NULL;
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
381 }
64312
c528a5858404 (get_scrap_target_type_list): Avoid NULL pointer dereference.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64084
diff changeset
382 if (flavor_info == NULL)
c528a5858404 (get_scrap_target_type_list): Avoid NULL pointer dereference.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64084
diff changeset
383 count = 0;
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
384 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
385 for (rest = Vselection_converter_alist; CONSP (rest); rest = XCDR (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
386 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
387 ScrapFlavorType flavor_type = 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
388
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
389 if (CONSP (XCAR (rest)) && SYMBOLP (target_type = XCAR (XCAR (rest)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
390 && (flavor_type = scrap_has_target_type (scrap, target_type)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
391 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
392 result = Fcons (target_type, result);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
393 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
394 for (i = 0; i < count; i++)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
395 if (flavor_info[i].flavorType == flavor_type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
396 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
397 flavor_info[i].flavorType = 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
398 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
399 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
400 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
401 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
402 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
403 #if TARGET_API_MAC_CARBON
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
404 if (flavor_info)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
405 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
406 for (i = 0; i < count; i++)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
407 if (flavor_info[i].flavorType)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
408 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
409 type = EndianU32_NtoB (flavor_info[i].flavorType);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
410 strings = Fcons (make_unibyte_string ((char *) &type, 4), strings);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
411 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
412 result = nconc2 (result, strings);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
413 xfree (flavor_info);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
414 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
415 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
416
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
417 return result;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
418 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
419
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
420 /* Do protocol to assert ourself as a selection owner.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
421 Update the Vselection_alist so that we can reply to later requests for
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
422 our selection. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
423
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
424 static void
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
425 x_own_selection (selection_name, selection_value)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
426 Lisp_Object selection_name, selection_value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
427 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
428 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
429 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
430 struct gcpro gcpro1, gcpro2;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
431 Lisp_Object rest, handler_fn, value, type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
432 int count;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
433
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
434 CHECK_SYMBOL (selection_name);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
435
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
436 GCPRO2 (selection_name, selection_value);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
437
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
438 BLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
439
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
440 err = get_scrap_from_symbol (selection_name, 1, &scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
441 if (err == noErr && scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
442 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
443 /* Don't allow a quit within the converter.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
444 When the user types C-g, he would be surprised
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
445 if by luck it came during a converter. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
446 count = SPECPDL_INDEX ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
447 specbind (Qinhibit_quit, Qt);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
448
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
449 for (rest = Vselection_converter_alist; CONSP (rest); rest = XCDR (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
450 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
451 if (!(CONSP (XCAR (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
452 && SYMBOLP (type = XCAR (XCAR (rest)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
453 && valid_scrap_target_type_p (type)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
454 && SYMBOLP (handler_fn = XCDR (XCAR (rest)))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
455 continue;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
456
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
457 if (!NILP (handler_fn))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
458 value = call3 (handler_fn, selection_name,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
459 type, selection_value);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
460
62102
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
461 if (STRINGP (value))
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
462 err = put_scrap_string (scrap, type, value);
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
463 else if (CONSP (value)
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
464 && EQ (XCAR (value), type)
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
465 && STRINGP (XCDR (value)))
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
466 err = put_scrap_string (scrap, type, XCDR (value));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
467 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
468
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
469 unbind_to (count, Qnil);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
470
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
471 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
472 err = put_scrap_private_timestamp (scrap, last_event_timestamp);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
473 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
474
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
475 UNBLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
476
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
477 UNGCPRO;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
478
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
479 if (scrap && err != noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
480 error ("Can't set selection");
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
481
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
482 /* Now update the local cache */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
483 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
484 Lisp_Object selection_time;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
485 Lisp_Object selection_data;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
486 Lisp_Object prev_value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
487
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
488 selection_time = long_to_cons (last_event_timestamp);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
489 selection_data = Fcons (selection_name,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
490 Fcons (selection_value,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
491 Fcons (selection_time,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
492 Fcons (selected_frame, Qnil))));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
493 prev_value = assq_no_quit (selection_name, Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
494
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
495 Vselection_alist = Fcons (selection_data, Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
496
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
497 /* If we already owned the selection, remove the old selection data.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
498 Perhaps we should destructively modify it instead.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
499 Don't use Fdelq as that may QUIT. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
500 if (!NILP (prev_value))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
501 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
502 Lisp_Object rest; /* we know it's not the CAR, so it's easy. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
503 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
504 if (EQ (prev_value, Fcar (XCDR (rest))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
505 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
506 XSETCDR (rest, Fcdr (XCDR (rest)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
507 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
508 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
509 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
510 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
511 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
512
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
513 /* Given a selection-name and desired type, look up our local copy of
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
514 the selection value and convert it to the type.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
515 The value is nil or a string.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
516 This function is used both for remote requests (LOCAL_REQUEST is zero)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
517 and for local x-get-selection-internal (LOCAL_REQUEST is nonzero).
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
518
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
519 This calls random Lisp code, and may signal or gc. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
520
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
521 static Lisp_Object
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
522 x_get_local_selection (selection_symbol, target_type, local_request)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
523 Lisp_Object selection_symbol, target_type;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
524 int local_request;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
525 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
526 Lisp_Object local_value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
527 Lisp_Object handler_fn, value, type, check;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
528 int count;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
529
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
530 if (NILP (Fx_selection_owner_p (selection_symbol)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
531 return Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
532
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
533 local_value = assq_no_quit (selection_symbol, Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
534
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
535 /* TIMESTAMP is a special case 'cause that's easiest. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
536 if (EQ (target_type, QTIMESTAMP))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
537 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
538 handler_fn = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
539 value = XCAR (XCDR (XCDR (local_value)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
540 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
541 #if 0
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
542 else if (EQ (target_type, QDELETE))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
543 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
544 handler_fn = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
545 Fx_disown_selection_internal
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
546 (selection_symbol,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
547 XCAR (XCDR (XCDR (local_value))));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
548 value = QNULL;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
549 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
550 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
551 else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
552 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
553 /* Don't allow a quit within the converter.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
554 When the user types C-g, he would be surprised
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
555 if by luck it came during a converter. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
556 count = SPECPDL_INDEX ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
557 specbind (Qinhibit_quit, Qt);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
558
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
559 CHECK_SYMBOL (target_type);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
560 handler_fn = Fcdr (Fassq (target_type, Vselection_converter_alist));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
561 /* gcpro is not needed here since nothing but HANDLER_FN
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
562 is live, and that ought to be a symbol. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
563
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
564 if (!NILP (handler_fn))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
565 value = call3 (handler_fn,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
566 selection_symbol, (local_request ? Qnil : target_type),
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
567 XCAR (XCDR (local_value)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
568 else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
569 value = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
570 unbind_to (count, Qnil);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
571 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
572
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
573 /* Make sure this value is of a type that we could transmit
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
574 to another X client. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
575
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
576 check = value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
577 if (CONSP (value)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
578 && SYMBOLP (XCAR (value)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
579 type = XCAR (value),
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
580 check = XCDR (value);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
581
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
582 if (STRINGP (check)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
583 || VECTORP (check)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
584 || SYMBOLP (check)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
585 || INTEGERP (check)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
586 || NILP (value))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
587 return value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
588 /* Check for a value that cons_to_long could handle. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
589 else if (CONSP (check)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
590 && INTEGERP (XCAR (check))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
591 && (INTEGERP (XCDR (check))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
592 ||
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
593 (CONSP (XCDR (check))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
594 && INTEGERP (XCAR (XCDR (check)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
595 && NILP (XCDR (XCDR (check))))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
596 return value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
597 else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
598 return
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
599 Fsignal (Qerror,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
600 Fcons (build_string ("invalid data returned by selection-conversion function"),
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
601 Fcons (handler_fn, Fcons (value, Qnil))));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
602 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
603
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
604
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
605 /* Clear all selections that were made from frame F.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
606 We do this when about to delete a frame. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
607
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
608 void
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
609 x_clear_frame_selections (f)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
610 FRAME_PTR f;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
611 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
612 Lisp_Object frame;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
613 Lisp_Object rest;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
614
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
615 XSETFRAME (frame, f);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
616
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
617 /* Otherwise, we're really honest and truly being told to drop it.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
618 Don't use Fdelq as that may QUIT;. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
619
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
620 /* Delete elements from the beginning of Vselection_alist. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
621 while (!NILP (Vselection_alist)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
622 && EQ (frame, Fcar (Fcdr (Fcdr (Fcdr (Fcar (Vselection_alist)))))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
623 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
624 /* Let random Lisp code notice that the selection has been stolen. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
625 Lisp_Object hooks, selection_symbol;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
626
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
627 hooks = Vx_lost_selection_functions;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
628 selection_symbol = Fcar (Fcar (Vselection_alist));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
629
62102
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
630 if (!EQ (hooks, Qunbound)
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
631 && !NILP (Fx_selection_owner_p (selection_symbol)))
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
632 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
633 for (; CONSP (hooks); hooks = Fcdr (hooks))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
634 call1 (Fcar (hooks), selection_symbol);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
635 #if 0 /* This can crash when deleting a frame
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
636 from x_connection_closed. Anyway, it seems unnecessary;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
637 something else should cause a redisplay. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
638 redisplay_preserve_echo_area (21);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
639 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
640 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
641
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
642 Vselection_alist = Fcdr (Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
643 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
644
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
645 /* Delete elements after the beginning of Vselection_alist. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
646 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
647 if (EQ (frame, Fcar (Fcdr (Fcdr (Fcdr (Fcar (XCDR (rest))))))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
648 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
649 /* Let random Lisp code notice that the selection has been stolen. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
650 Lisp_Object hooks, selection_symbol;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
651
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
652 hooks = Vx_lost_selection_functions;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
653 selection_symbol = Fcar (Fcar (XCDR (rest)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
654
62102
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
655 if (!EQ (hooks, Qunbound)
b710f3bc2da3 (x_own_selection): Accept Lisp string as result of
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 61819
diff changeset
656 && !NILP (Fx_selection_owner_p (selection_symbol)))
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
657 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
658 for (; CONSP (hooks); hooks = Fcdr (hooks))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
659 call1 (Fcar (hooks), selection_symbol);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
660 #if 0 /* See above */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
661 redisplay_preserve_echo_area (22);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
662 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
663 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
664 XSETCDR (rest, Fcdr (XCDR (rest)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
665 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
666 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
667 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
668
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
669 /* Do protocol to read selection-data from the server.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
670 Converts this to Lisp data and returns it. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
671
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
672 static Lisp_Object
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
673 x_get_foreign_selection (selection_symbol, target_type, time_stamp)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
674 Lisp_Object selection_symbol, target_type, time_stamp;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
675 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
676 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
677 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
678 Lisp_Object result = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
679
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
680 BLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
681
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
682 err = get_scrap_from_symbol (selection_symbol, 0, &scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
683 if (err == noErr && scrap)
69963
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
684 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
685 if (EQ (target_type, QTARGETS))
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
686 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
687 result = get_scrap_target_type_list (scrap);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
688 result = Fvconcat (1, &result);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
689 }
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
690 else
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
691 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
692 result = get_scrap_string (scrap, target_type);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
693 if (STRINGP (result))
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
694 Fput_text_property (make_number (0), make_number (SBYTES (result)),
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
695 Qforeign_selection, target_type, result);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
696 }
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
697 }
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
698
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
699 UNBLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
700
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
701 return result;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
702 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
703
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
704
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
705 DEFUN ("x-own-selection-internal", Fx_own_selection_internal,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
706 Sx_own_selection_internal, 2, 2, 0,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
707 doc: /* Assert a selection of the given TYPE with the given VALUE.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
708 TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
709 VALUE is typically a string, or a cons of two markers, but may be
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
710 anything that the functions on `selection-converter-alist' know about. */)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
711 (selection_name, selection_value)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
712 Lisp_Object selection_name, selection_value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
713 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
714 check_mac ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
715 CHECK_SYMBOL (selection_name);
64607
fefea1491def (Fx_own_selection_internal): Follow error conventions.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64312
diff changeset
716 if (NILP (selection_value)) error ("SELECTION-VALUE may not be nil");
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
717 x_own_selection (selection_name, selection_value);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
718 return selection_value;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
719 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
720
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
721
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
722 /* Request the selection value from the owner. If we are the owner,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
723 simply return our selection value. If we are not the owner, this
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
724 will block until all of the data has arrived. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
725
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
726 DEFUN ("x-get-selection-internal", Fx_get_selection_internal,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
727 Sx_get_selection_internal, 2, 3, 0,
64607
fefea1491def (Fx_own_selection_internal): Follow error conventions.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64312
diff changeset
728 doc: /* Return text selected from some Mac application.
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
729 SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
730 TYPE is the type of data desired, typically `STRING'.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
731 TIME_STAMP is ignored on Mac. */)
64607
fefea1491def (Fx_own_selection_internal): Follow error conventions.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64312
diff changeset
732 (selection_symbol, target_type, time_stamp)
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
733 Lisp_Object selection_symbol, target_type, time_stamp;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
734 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
735 Lisp_Object val = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
736 struct gcpro gcpro1, gcpro2;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
737 GCPRO2 (target_type, val); /* we store newly consed data into these */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
738 check_mac ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
739 CHECK_SYMBOL (selection_symbol);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
740 CHECK_SYMBOL (target_type);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
741
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
742 val = x_get_local_selection (selection_symbol, target_type, 1);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
743
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
744 if (NILP (val))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
745 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
746 val = x_get_foreign_selection (selection_symbol, target_type, time_stamp);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
747 goto DONE;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
748 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
749
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
750 if (CONSP (val)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
751 && SYMBOLP (XCAR (val)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
752 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
753 val = XCDR (val);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
754 if (CONSP (val) && NILP (XCDR (val)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
755 val = XCAR (val);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
756 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
757 DONE:
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
758 UNGCPRO;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
759 return val;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
760 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
761
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
762 DEFUN ("x-disown-selection-internal", Fx_disown_selection_internal,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
763 Sx_disown_selection_internal, 1, 2, 0,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
764 doc: /* If we own the selection SELECTION, disown it.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
765 Disowning it means there is no such selection. */)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
766 (selection, time)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
767 Lisp_Object selection;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
768 Lisp_Object time;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
769 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
770 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
771 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
772 Lisp_Object local_selection_data;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
773
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
774 check_mac ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
775 CHECK_SYMBOL (selection);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
776
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
777 if (NILP (Fx_selection_owner_p (selection)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
778 return Qnil; /* Don't disown the selection when we're not the owner. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
779
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
780 local_selection_data = assq_no_quit (selection, Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
781
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
782 /* Don't use Fdelq as that may QUIT;. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
783
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
784 if (EQ (local_selection_data, Fcar (Vselection_alist)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
785 Vselection_alist = Fcdr (Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
786 else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
787 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
788 Lisp_Object rest;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
789 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
790 if (EQ (local_selection_data, Fcar (XCDR (rest))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
791 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
792 XSETCDR (rest, Fcdr (XCDR (rest)));
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
793 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
794 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
795 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
796
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
797 /* Let random lisp code notice that the selection has been stolen. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
798
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
799 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
800 Lisp_Object rest;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
801 rest = Vx_lost_selection_functions;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
802 if (!EQ (rest, Qunbound))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
803 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
804 for (; CONSP (rest); rest = Fcdr (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
805 call1 (Fcar (rest), selection);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
806 prepare_menu_bars ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
807 redisplay_preserve_echo_area (20);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
808 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
809 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
810
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
811 BLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
812
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
813 err = get_scrap_from_symbol (selection, 0, &scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
814 if (err == noErr && scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
815 clear_scrap (&scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
816
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
817 UNBLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
818
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
819 return Qt;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
820 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
821
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
822
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
823 DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
824 0, 1, 0,
64607
fefea1491def (Fx_own_selection_internal): Follow error conventions.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64312
diff changeset
825 doc: /* Whether the current Emacs process owns the given SELECTION.
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
826 The arg should be the name of the selection in question, typically one of
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
827 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
828 For convenience, the symbol nil is the same as `PRIMARY',
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
829 and t is the same as `SECONDARY'. */)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
830 (selection)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
831 Lisp_Object selection;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
832 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
833 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
834 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
835 Lisp_Object result = Qnil, local_selection_data;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
836
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
837 check_mac ();
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
838 CHECK_SYMBOL (selection);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
839 if (EQ (selection, Qnil)) selection = QPRIMARY;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
840 if (EQ (selection, Qt)) selection = QSECONDARY;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
841
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
842 local_selection_data = assq_no_quit (selection, Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
843
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
844 if (NILP (local_selection_data))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
845 return Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
846
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
847 BLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
848
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
849 err = get_scrap_from_symbol (selection, 0, &scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
850 if (err == noErr && scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
851 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
852 unsigned long timestamp;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
853
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
854 err = get_scrap_private_timestamp (scrap, &timestamp);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
855 if (err == noErr
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
856 && (timestamp
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
857 == cons_to_long (XCAR (XCDR (XCDR (local_selection_data))))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
858 result = Qt;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
859 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
860 else
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
861 result = Qt;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
862
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
863 UNBLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
864
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
865 return result;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
866 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
867
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
868 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
869 0, 1, 0,
64607
fefea1491def (Fx_own_selection_internal): Follow error conventions.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64312
diff changeset
870 doc: /* Whether there is an owner for the given SELECTION.
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
871 The arg should be the name of the selection in question, typically one of
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
872 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
873 For convenience, the symbol nil is the same as `PRIMARY',
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
874 and t is the same as `SECONDARY'. */)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
875 (selection)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
876 Lisp_Object selection;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
877 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
878 OSErr err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
879 ScrapRef scrap;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
880 Lisp_Object result = Qnil, rest;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
881
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
882 /* It should be safe to call this before we have an Mac frame. */
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
883 if (! FRAME_MAC_P (SELECTED_FRAME ()))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
884 return Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
885
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
886 CHECK_SYMBOL (selection);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
887 if (!NILP (Fx_selection_owner_p (selection)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
888 return Qt;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
889 if (EQ (selection, Qnil)) selection = QPRIMARY;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
890 if (EQ (selection, Qt)) selection = QSECONDARY;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
891
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
892 BLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
893
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
894 err = get_scrap_from_symbol (selection, 0, &scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
895 if (err == noErr && scrap)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
896 for (rest = Vselection_converter_alist; CONSP (rest); rest = XCDR (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
897 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
898 if (CONSP (XCAR (rest)) && SYMBOLP (XCAR (XCAR (rest)))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
899 && scrap_has_target_type (scrap, XCAR (XCAR (rest))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
900 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
901 result = Qt;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
902 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
903 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
904 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
905
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
906 UNBLOCK_INPUT;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
907
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
908 return result;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
909 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
910
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
911
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
912 /***********************************************************************
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
913 Apple event support
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
914 ***********************************************************************/
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
915 int mac_ready_for_apple_events = 0;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
916 static Lisp_Object Vmac_apple_event_map;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
917 static Lisp_Object Qmac_apple_event_class, Qmac_apple_event_id;
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
918 static Lisp_Object Qemacs_suspension_id;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
919 extern Lisp_Object Qundefined;
70383
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
920 extern void mac_store_apple_event P_ ((Lisp_Object, Lisp_Object,
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
921 const AEDesc *));
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
922
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
923 struct apple_event_binding
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
924 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
925 UInt32 code; /* Apple event class or ID. */
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
926 Lisp_Object key, binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
927 };
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
928
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
929 struct suspended_ae_info
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
930 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
931 UInt32 expiration_tick, suspension_id;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
932 AppleEvent apple_event, reply;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
933 struct suspended_ae_info *next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
934 };
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
935
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
936 /* List of deferred apple events at the startup time. */
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
937 static struct suspended_ae_info *deferred_apple_events = NULL;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
938
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
939 /* List of suspended apple events, in order of expiration_tick. */
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
940 static struct suspended_ae_info *suspended_apple_events = NULL;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
941
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
942 static void
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
943 find_event_binding_fun (key, binding, args, data)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
944 Lisp_Object key, binding, args;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
945 void *data;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
946 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
947 struct apple_event_binding *event_binding =
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
948 (struct apple_event_binding *)data;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
949 Lisp_Object code_string;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
950
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
951 if (!SYMBOLP (key))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
952 return;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
953 code_string = Fget (key, args);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
954 if (STRINGP (code_string) && SBYTES (code_string) == 4
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
955 && (EndianU32_BtoN (*((UInt32 *) SDATA (code_string)))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
956 == event_binding->code))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
957 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
958 event_binding->key = key;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
959 event_binding->binding = binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
960 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
961 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
962
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
963 static void
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
964 find_event_binding (keymap, event_binding, class_p)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
965 Lisp_Object keymap;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
966 struct apple_event_binding *event_binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
967 int class_p;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
968 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
969 if (event_binding->code == 0)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
970 event_binding->binding =
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
971 access_keymap (keymap, event_binding->key, 0, 1, 0);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
972 else
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
973 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
974 event_binding->binding = Qnil;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
975 map_keymap (keymap, find_event_binding_fun,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
976 class_p ? Qmac_apple_event_class : Qmac_apple_event_id,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
977 event_binding, 0);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
978 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
979 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
980
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
981 void
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
982 mac_find_apple_event_spec (class, id, class_key, id_key, binding)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
983 AEEventClass class;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
984 AEEventID id;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
985 Lisp_Object *class_key, *id_key, *binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
986 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
987 struct apple_event_binding event_binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
988 Lisp_Object keymap;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
989
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
990 *binding = Qnil;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
991
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
992 keymap = get_keymap (Vmac_apple_event_map, 0, 0);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
993 if (NILP (keymap))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
994 return;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
995
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
996 event_binding.code = class;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
997 event_binding.key = *class_key;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
998 event_binding.binding = Qnil;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
999 find_event_binding (keymap, &event_binding, 1);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1000 *class_key = event_binding.key;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1001 keymap = get_keymap (event_binding.binding, 0, 0);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1002 if (NILP (keymap))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1003 return;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1004
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1005 event_binding.code = id;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1006 event_binding.key = *id_key;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1007 event_binding.binding = Qnil;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1008 find_event_binding (keymap, &event_binding, 0);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1009 *id_key = event_binding.key;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1010 *binding = event_binding.binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1011 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1012
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1013 static OSErr
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1014 defer_apple_events (apple_event, reply)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1015 const AppleEvent *apple_event, *reply;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1016 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1017 OSErr err;
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1018 struct suspended_ae_info *new;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1019
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1020 new = xmalloc (sizeof (struct suspended_ae_info));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1021 bzero (new, sizeof (struct suspended_ae_info));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1022 new->apple_event.descriptorType = typeNull;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1023 new->reply.descriptorType = typeNull;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1024
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1025 err = AESuspendTheCurrentEvent (apple_event);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1026
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1027 /* Mac OS 10.3 Xcode manual says AESuspendTheCurrentEvent makes
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1028 copies of the Apple event and the reply, but Mac OS 10.4 Xcode
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1029 manual says it doesn't. Anyway we create copies of them and save
69963
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1030 them in `deferred_apple_events'. */
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1031 if (err == noErr)
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1032 err = AEDuplicateDesc (apple_event, &new->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1033 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1034 err = AEDuplicateDesc (reply, &new->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1035 if (err == noErr)
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1036 {
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1037 new->next = deferred_apple_events;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1038 deferred_apple_events = new;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1039 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1040 else
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1041 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1042 AEDisposeDesc (&new->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1043 AEDisposeDesc (&new->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1044 xfree (new);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1045 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1046
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1047 return err;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1048 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1049
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1050 static OSErr
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1051 mac_handle_apple_event_1 (class, id, apple_event, reply)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1052 Lisp_Object class, id;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1053 const AppleEvent *apple_event;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1054 AppleEvent *reply;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1055 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1056 OSErr err;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1057 static UInt32 suspension_id = 0;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1058 struct suspended_ae_info *new;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1059
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1060 new = xmalloc (sizeof (struct suspended_ae_info));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1061 bzero (new, sizeof (struct suspended_ae_info));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1062 new->apple_event.descriptorType = typeNull;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1063 new->reply.descriptorType = typeNull;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1064
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1065 err = AESuspendTheCurrentEvent (apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1066 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1067 err = AEDuplicateDesc (apple_event, &new->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1068 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1069 err = AEDuplicateDesc (reply, &new->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1070 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1071 err = AEPutAttributePtr (&new->apple_event, KEY_EMACS_SUSPENSION_ID_ATTR,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1072 typeUInt32, &suspension_id, sizeof (UInt32));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1073 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1074 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1075 OSErr err1;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1076 SInt32 reply_requested;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1077
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1078 err1 = AEGetAttributePtr (&new->apple_event, keyReplyRequestedAttr,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1079 typeSInt32, NULL, &reply_requested,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1080 sizeof (SInt32), NULL);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1081 if (err1 != noErr)
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1082 {
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1083 /* Emulate keyReplyRequestedAttr in older versions. */
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1084 reply_requested = reply->descriptorType != typeNull;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1085 err = AEPutAttributePtr (&new->apple_event, keyReplyRequestedAttr,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1086 typeSInt32, &reply_requested,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1087 sizeof (SInt32));
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1088 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1089 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1090 if (err == noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1091 {
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1092 SInt32 timeout = 0;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1093 struct suspended_ae_info **p;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1094
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1095 new->suspension_id = suspension_id;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1096 suspension_id++;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1097 err = AEGetAttributePtr (apple_event, keyTimeoutAttr, typeSInt32,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1098 NULL, &timeout, sizeof (SInt32), NULL);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1099 new->expiration_tick = TickCount () + timeout;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1100
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1101 for (p = &suspended_apple_events; *p; p = &(*p)->next)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1102 if ((*p)->expiration_tick >= new->expiration_tick)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1103 break;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1104 new->next = *p;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1105 *p = new;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1106
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1107 mac_store_apple_event (class, id, &new->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1108 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1109 else
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1110 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1111 AEDisposeDesc (&new->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1112 AEDisposeDesc (&new->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1113 xfree (new);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1114 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1115
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1116 return err;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1117 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1118
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1119 static pascal OSErr
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1120 mac_handle_apple_event (apple_event, reply, refcon)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1121 const AppleEvent *apple_event;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1122 AppleEvent *reply;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1123 SInt32 refcon;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1124 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1125 OSErr err;
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1126 UInt32 suspension_id;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1127 AEEventClass event_class;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1128 AEEventID event_id;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1129 Lisp_Object class_key, id_key, binding;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1130
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1131 if (!mac_ready_for_apple_events)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1132 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1133 err = defer_apple_events (apple_event, reply);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1134 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1135 return errAEEventNotHandled;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1136 return noErr;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1137 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1138
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1139 err = AEGetAttributePtr (apple_event, KEY_EMACS_SUSPENSION_ID_ATTR,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1140 typeUInt32, NULL,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1141 &suspension_id, sizeof (UInt32), NULL);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1142 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1143 /* Previously suspended event. Pass it to the next handler. */
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1144 return errAEEventNotHandled;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1145
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1146 err = AEGetAttributePtr (apple_event, keyEventClassAttr, typeType, NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1147 &event_class, sizeof (AEEventClass), NULL);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1148 if (err == noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1149 err = AEGetAttributePtr (apple_event, keyEventIDAttr, typeType, NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1150 &event_id, sizeof (AEEventID), NULL);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1151 if (err == noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1152 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1153 mac_find_apple_event_spec (event_class, event_id,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1154 &class_key, &id_key, &binding);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1155 if (!NILP (binding) && !EQ (binding, Qundefined))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1156 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1157 if (INTEGERP (binding))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1158 return XINT (binding);
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1159 err = mac_handle_apple_event_1 (class_key, id_key,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1160 apple_event, reply);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1161 }
70988
5605e49b641f (mac_handle_apple_event): Return
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70873
diff changeset
1162 else
5605e49b641f (mac_handle_apple_event): Return
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70873
diff changeset
1163 err = errAEEventNotHandled;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1164 }
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1165 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1166 return noErr;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1167 else
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1168 return errAEEventNotHandled;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1169 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1170
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1171 static int
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1172 cleanup_suspended_apple_events (head, all_p)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1173 struct suspended_ae_info **head;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1174 int all_p;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1175 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1176 UInt32 current_tick = TickCount (), nresumed = 0;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1177 struct suspended_ae_info *p, *next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1178
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1179 for (p = *head; p; p = next)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1180 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1181 if (!all_p && p->expiration_tick > current_tick)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1182 break;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1183 AESetTheCurrentEvent (&p->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1184 AEResumeTheCurrentEvent (&p->apple_event, &p->reply,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1185 (AEEventHandlerUPP) kAENoDispatch, 0);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1186 AEDisposeDesc (&p->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1187 AEDisposeDesc (&p->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1188 nresumed++;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1189 next = p->next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1190 xfree (p);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1191 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1192 *head = p;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1193
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1194 return nresumed;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1195 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1196
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1197 static void
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1198 cleanup_all_suspended_apple_events ()
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1199 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1200 cleanup_suspended_apple_events (&deferred_apple_events, 1);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1201 cleanup_suspended_apple_events (&suspended_apple_events, 1);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1202 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1203
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1204 void
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1205 init_apple_event_handler ()
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1206 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1207 OSErr err;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1208 long result;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1209
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1210 /* Make sure we have Apple events before starting. */
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1211 err = Gestalt (gestaltAppleEventsAttr, &result);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1212 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1213 abort ();
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1214
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1215 if (!(result & (1 << gestaltAppleEventsPresent)))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1216 abort ();
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1217
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1218 err = AEInstallEventHandler (typeWildCard, typeWildCard,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1219 #if TARGET_API_MAC_CARBON
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1220 NewAEEventHandlerUPP (mac_handle_apple_event),
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1221 #else
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1222 NewAEEventHandlerProc (mac_handle_apple_event),
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1223 #endif
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1224 0L, false);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1225 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1226 abort ();
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1227
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1228 atexit (cleanup_all_suspended_apple_events);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1229 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1230
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1231 static UInt32
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1232 get_suspension_id (apple_event)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1233 Lisp_Object apple_event;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1234 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1235 Lisp_Object tem;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1236
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1237 CHECK_CONS (apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1238 CHECK_STRING_CAR (apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1239 if (SBYTES (XCAR (apple_event)) != 4
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1240 || strcmp (SDATA (XCAR (apple_event)), "aevt") != 0)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1241 error ("Not an apple event");
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1242
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1243 tem = assq_no_quit (Qemacs_suspension_id, XCDR (apple_event));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1244 if (NILP (tem))
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1245 error ("Suspension ID not available");
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1246
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1247 tem = XCDR (tem);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1248 if (!(CONSP (tem)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1249 && STRINGP (XCAR (tem)) && SBYTES (XCAR (tem)) == 4
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1250 && strcmp (SDATA (XCAR (tem)), "magn") == 0
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1251 && STRINGP (XCDR (tem)) && SBYTES (XCDR (tem)) == 4))
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1252 error ("Bad suspension ID format");
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1253
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1254 return *((UInt32 *) SDATA (XCDR (tem)));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1255 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1256
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1257
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1258 DEFUN ("mac-process-deferred-apple-events", Fmac_process_deferred_apple_events, Smac_process_deferred_apple_events, 0, 0, 0,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1259 doc: /* Process Apple events that are deferred at the startup time. */)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1260 ()
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1261 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1262 if (mac_ready_for_apple_events)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1263 return Qnil;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1264
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1265 BLOCK_INPUT;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1266 mac_ready_for_apple_events = 1;
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1267 if (deferred_apple_events)
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1268 {
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1269 struct suspended_ae_info *prev, *tail, *next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1270
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1271 /* `nreverse' deferred_apple_events. */
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1272 prev = NULL;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1273 for (tail = deferred_apple_events; tail; tail = next)
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1274 {
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1275 next = tail->next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1276 tail->next = prev;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1277 prev = tail;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1278 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1279
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1280 /* Now `prev' points to the first cell. */
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1281 for (tail = prev; tail; tail = next)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1282 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1283 next = tail->next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1284 AEResumeTheCurrentEvent (&tail->apple_event, &tail->reply,
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1285 ((AEEventHandlerUPP)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1286 kAEUseStandardDispatch), 0);
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1287 AEDisposeDesc (&tail->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1288 AEDisposeDesc (&tail->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1289 xfree (tail);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1290 }
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1291
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1292 deferred_apple_events = NULL;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1293 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1294 UNBLOCK_INPUT;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1295
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1296 return Qt;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1297 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1298
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1299 DEFUN ("mac-cleanup-expired-apple-events", Fmac_cleanup_expired_apple_events, Smac_cleanup_expired_apple_events, 0, 0, 0,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1300 doc: /* Clean up expired Apple events.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1301 Return the number of expired events. */)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1302 ()
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1303 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1304 int nexpired;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1305
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1306 BLOCK_INPUT;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1307 nexpired = cleanup_suspended_apple_events (&suspended_apple_events, 0);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1308 UNBLOCK_INPUT;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1309
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1310 return make_number (nexpired);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1311 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1312
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1313 DEFUN ("mac-ae-set-reply-parameter", Fmac_ae_set_reply_parameter, Smac_ae_set_reply_parameter, 3, 3, 0,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1314 doc: /* Set parameter KEYWORD to DESCRIPTOR on reply of APPLE-EVENT.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1315 KEYWORD is a 4-byte string. DESCRIPTOR is a Lisp representation of an
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1316 Apple event descriptor. It has the form of (TYPE . DATA), where TYPE
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1317 is a 4-byte string. Valid format of DATA is as follows:
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1318
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1319 * If TYPE is "null", then DATA is nil.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1320 * If TYPE is "list", then DATA is a list (DESCRIPTOR1 ... DESCRIPTORn).
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1321 * If TYPE is "reco", then DATA is a list ((KEYWORD1 . DESCRIPTOR1)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1322 ... (KEYWORDn . DESCRIPTORn)).
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1323 * If TYPE is "aevt", then DATA is ignored and the descriptor is
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1324 treated as null.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1325 * Otherwise, DATA is a string.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1326
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1327 If a (sub-)descriptor is in an invalid format, it is silently treated
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1328 as null.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1329
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1330 Return t if the parameter is successfully set. Otherwise return nil. */)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1331 (apple_event, keyword, descriptor)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1332 Lisp_Object apple_event, keyword, descriptor;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1333 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1334 Lisp_Object result = Qnil;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1335 UInt32 suspension_id;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1336 struct suspended_ae_info *p;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1337
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1338 suspension_id = get_suspension_id (apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1339
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1340 CHECK_STRING (keyword);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1341 if (SBYTES (keyword) != 4)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1342 error ("Apple event keyword must be a 4-byte string: %s",
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1343 SDATA (keyword));
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1344
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1345 BLOCK_INPUT;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1346 for (p = suspended_apple_events; p; p = p->next)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1347 if (p->suspension_id == suspension_id)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1348 break;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1349 if (p && p->reply.descriptorType != typeNull)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1350 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1351 OSErr err;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1352
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1353 err = mac_ae_put_lisp (&p->reply,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1354 EndianU32_BtoN (*((UInt32 *) SDATA (keyword))),
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1355 descriptor);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1356 if (err == noErr)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1357 result = Qt;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1358 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1359 UNBLOCK_INPUT;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1360
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1361 return result;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1362 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1363
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1364 DEFUN ("mac-resume-apple-event", Fmac_resume_apple_event, Smac_resume_apple_event, 1, 2, 0,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1365 doc: /* Resume handling of APPLE-EVENT.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1366 Every Apple event handled by the Lisp interpreter is suspended first.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1367 This function resumes such a suspended event either to complete Apple
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1368 event handling to give a reply, or to redispatch it to other handlers.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1369
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1370 If optional ERROR-CODE is an integer, it specifies the error number
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1371 that is set in the reply. If ERROR-CODE is t, the resumed event is
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1372 handled with the standard dispatching mechanism, but it is not handled
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1373 by Emacs again, thus it is redispatched to other handlers.
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1374
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1375 Return t if APPLE-EVENT is successfully resumed. Otherwise return
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1376 nil, which means the event is already resumed or expired. */)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1377 (apple_event, error_code)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1378 Lisp_Object apple_event, error_code;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1379 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1380 Lisp_Object result = Qnil;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1381 UInt32 suspension_id;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1382 struct suspended_ae_info **p, *ae;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1383
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1384 suspension_id = get_suspension_id (apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1385
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1386 BLOCK_INPUT;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1387 for (p = &suspended_apple_events; *p; p = &(*p)->next)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1388 if ((*p)->suspension_id == suspension_id)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1389 break;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1390 if (*p)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1391 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1392 ae = *p;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1393 *p = (*p)->next;
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1394 if (INTEGERP (error_code)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1395 && ae->apple_event.descriptorType != typeNull)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1396 {
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1397 SInt32 errn = XINT (error_code);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1398
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1399 AEPutParamPtr (&ae->reply, keyErrorNumber, typeSInt32,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1400 &errn, sizeof (SInt32));
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1401 }
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1402 AESetTheCurrentEvent (&ae->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1403 AEResumeTheCurrentEvent (&ae->apple_event, &ae->reply,
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1404 ((AEEventHandlerUPP)
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1405 (EQ (error_code, Qt) ?
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1406 kAEUseStandardDispatch : kAENoDispatch)),
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1407 0);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1408 AEDisposeDesc (&ae->reply);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1409 AEDisposeDesc (&ae->apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1410 xfree (ae);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1411 result = Qt;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1412 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1413 UNBLOCK_INPUT;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1414
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1415 return result;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1416 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1417
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1418
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1419 /***********************************************************************
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1420 Drag and drop support
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1421 ***********************************************************************/
70383
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1422 #if TARGET_API_MAC_CARBON
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1423 static Lisp_Object Vmac_dnd_known_types;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1424 static pascal OSErr mac_do_track_drag P_ ((DragTrackingMessage, WindowRef,
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1425 void *, DragRef));
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1426 static pascal OSErr mac_do_receive_drag P_ ((WindowRef, void *, DragRef));
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1427 static DragTrackingHandlerUPP mac_do_track_dragUPP = NULL;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1428 static DragReceiveHandlerUPP mac_do_receive_dragUPP = NULL;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1429
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1430 extern void mac_store_drag_event P_ ((WindowRef, Point, SInt16,
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1431 const AEDesc *));
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1432
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1433 static pascal OSErr
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1434 mac_do_track_drag (message, window, refcon, drag)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1435 DragTrackingMessage message;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1436 WindowRef window;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1437 void *refcon;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1438 DragRef drag;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1439 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1440 OSErr err = noErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1441 static int can_accept;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1442 UInt16 num_items, index;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1443
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1444 if (GetFrontWindowOfClass (kMovableModalWindowClass, false))
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1445 return dragNotAcceptedErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1446
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1447 switch (message)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1448 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1449 case kDragTrackingEnterHandler:
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1450 err = CountDragItems (drag, &num_items);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1451 if (err != noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1452 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1453 can_accept = 0;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1454 for (index = 1; index <= num_items; index++)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1455 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1456 ItemReference item;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1457 FlavorFlags flags;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1458 Lisp_Object rest;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1459
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1460 err = GetDragItemReferenceNumber (drag, index, &item);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1461 if (err != noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1462 continue;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1463 for (rest = Vmac_dnd_known_types; CONSP (rest); rest = XCDR (rest))
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1464 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1465 Lisp_Object str;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1466 FlavorType type;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1467
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1468 str = XCAR (rest);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1469 if (!(STRINGP (str) && SBYTES (str) == 4))
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1470 continue;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1471 type = EndianU32_BtoN (*((UInt32 *) SDATA (str)));
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1472
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1473 err = GetFlavorFlags (drag, item, type, &flags);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1474 if (err == noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1475 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1476 can_accept = 1;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1477 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1478 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1479 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1480 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1481 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1482
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1483 case kDragTrackingEnterWindow:
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1484 if (can_accept)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1485 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1486 RgnHandle hilite_rgn = NewRgn ();
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1487
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1488 if (hilite_rgn)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1489 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1490 Rect r;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1491
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1492 GetWindowPortBounds (window, &r);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1493 OffsetRect (&r, -r.left, -r.top);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1494 RectRgn (hilite_rgn, &r);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1495 ShowDragHilite (drag, hilite_rgn, true);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1496 DisposeRgn (hilite_rgn);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1497 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1498 SetThemeCursor (kThemeCopyArrowCursor);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1499 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1500 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1501
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1502 case kDragTrackingInWindow:
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1503 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1504
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1505 case kDragTrackingLeaveWindow:
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1506 if (can_accept)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1507 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1508 HideDragHilite (drag);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1509 SetThemeCursor (kThemeArrowCursor);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1510 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1511 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1512
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1513 case kDragTrackingLeaveHandler:
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1514 break;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1515 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1516
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1517 if (err != noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1518 return dragNotAcceptedErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1519 return noErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1520 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1521
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1522 static pascal OSErr
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1523 mac_do_receive_drag (window, refcon, drag)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1524 WindowRef window;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1525 void *refcon;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1526 DragRef drag;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1527 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1528 OSErr err;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1529 int num_types, i;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1530 Lisp_Object rest, str;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1531 FlavorType *types;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1532 AppleEvent apple_event;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1533 Point mouse_pos;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1534 SInt16 modifiers;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1535
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1536 if (GetFrontWindowOfClass (kMovableModalWindowClass, false))
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1537 return dragNotAcceptedErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1538
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1539 num_types = 0;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1540 for (rest = Vmac_dnd_known_types; CONSP (rest); rest = XCDR (rest))
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1541 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1542 str = XCAR (rest);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1543 if (STRINGP (str) && SBYTES (str) == 4)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1544 num_types++;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1545 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1546
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1547 types = xmalloc (sizeof (FlavorType) * num_types);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1548 i = 0;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1549 for (rest = Vmac_dnd_known_types; CONSP (rest); rest = XCDR (rest))
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1550 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1551 str = XCAR (rest);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1552 if (STRINGP (str) && SBYTES (str) == 4)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1553 types[i++] = EndianU32_BtoN (*((UInt32 *) SDATA (str)));
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1554 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1555
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1556 err = create_apple_event_from_drag_ref (drag, num_types, types,
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1557 &apple_event);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1558 xfree (types);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1559
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1560 if (err == noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1561 err = GetDragMouse (drag, &mouse_pos, NULL);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1562 if (err == noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1563 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1564 GlobalToLocal (&mouse_pos);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1565 err = GetDragModifiers (drag, NULL, NULL, &modifiers);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1566 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1567
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1568 if (err == noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1569 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1570 mac_store_drag_event (window, mouse_pos, modifiers, &apple_event);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1571 AEDisposeDesc (&apple_event);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1572 /* Post a harmless event so as to wake up from ReceiveNextEvent. */
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1573 mac_post_mouse_moved_event ();
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1574 return noErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1575 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1576 else
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1577 return dragNotAcceptedErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1578 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1579 #endif /* TARGET_API_MAC_CARBON */
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1580
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1581 OSErr
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1582 install_drag_handler (window)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1583 WindowRef window;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1584 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1585 OSErr err = noErr;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1586
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1587 #if TARGET_API_MAC_CARBON
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1588 if (mac_do_track_dragUPP == NULL)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1589 mac_do_track_dragUPP = NewDragTrackingHandlerUPP (mac_do_track_drag);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1590 if (mac_do_receive_dragUPP == NULL)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1591 mac_do_receive_dragUPP = NewDragReceiveHandlerUPP (mac_do_receive_drag);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1592
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1593 err = InstallTrackingHandler (mac_do_track_dragUPP, window, NULL);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1594 if (err == noErr)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1595 err = InstallReceiveHandler (mac_do_receive_dragUPP, window, NULL);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1596 #endif
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1597
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1598 return err;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1599 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1600
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1601 void
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1602 remove_drag_handler (window)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1603 WindowRef window;
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1604 {
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1605 #if TARGET_API_MAC_CARBON
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1606 if (mac_do_track_dragUPP)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1607 RemoveTrackingHandler (mac_do_track_dragUPP, window);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1608 if (mac_do_receive_dragUPP)
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1609 RemoveReceiveHandler (mac_do_receive_dragUPP, window);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1610 #endif
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1611 }
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1612
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1613
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1614 /***********************************************************************
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1615 Services menu support
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1616 ***********************************************************************/
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1617 #ifdef MAC_OSX
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1618 void
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1619 init_service_handler ()
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1620 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1621 EventTypeSpec specs[] = {{kEventClassService, kEventServiceGetTypes},
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1622 {kEventClassService, kEventServiceCopy},
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1623 {kEventClassService, kEventServicePaste},
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1624 {kEventClassService, kEventServicePerform}};
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1625 InstallApplicationEventHandler (NewEventHandlerUPP (mac_handle_service_event),
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1626 GetEventTypeCount (specs), specs, NULL, NULL);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1627 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1628
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1629 extern OSStatus mac_store_service_event P_ ((EventRef));
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1630
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1631 static OSStatus
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1632 copy_scrap_flavor_data (from_scrap, to_scrap, flavor_type)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1633 ScrapRef from_scrap, to_scrap;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1634 ScrapFlavorType flavor_type;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1635 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1636 OSStatus err;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1637 Size size, size_allocated;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1638 char *buf = NULL;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1639
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1640 err = GetScrapFlavorSize (from_scrap, flavor_type, &size);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1641 if (err == noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1642 buf = xmalloc (size);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1643 while (buf)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1644 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1645 size_allocated = size;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1646 err = GetScrapFlavorData (from_scrap, flavor_type, &size, buf);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1647 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1648 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1649 xfree (buf);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1650 buf = NULL;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1651 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1652 else if (size_allocated < size)
70070
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
1653 buf = xrealloc (buf, size);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1654 else
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1655 break;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1656 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1657 if (err == noErr)
69963
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1658 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1659 if (buf == NULL)
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1660 err = memFullErr;
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1661 else
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1662 {
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1663 err = PutScrapFlavor (to_scrap, flavor_type, kScrapFlavorMaskNone,
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1664 size, buf);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1665 xfree (buf);
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1666 }
b25e279aa874 (get_flavor_type_from_symbol): Remove unused variable `val'.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67489
diff changeset
1667 }
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1668
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1669 return err;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1670 }
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1671
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1672 static OSStatus
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1673 mac_handle_service_event (call_ref, event, data)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1674 EventHandlerCallRef call_ref;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1675 EventRef event;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1676 void *data;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1677 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1678 OSStatus err = noErr;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1679 ScrapRef cur_scrap, specific_scrap;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1680 UInt32 event_kind = GetEventKind (event);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1681 CFMutableArrayRef copy_types, paste_types;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1682 CFStringRef type;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1683 Lisp_Object rest;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1684 ScrapFlavorType flavor_type;
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1685
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1686 /* Check if Vmac_service_selection is a valid selection that has a
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1687 corresponding scrap. */
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1688 if (!SYMBOLP (Vmac_service_selection))
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1689 err = eventNotHandledErr;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1690 else
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1691 err = get_scrap_from_symbol (Vmac_service_selection, 0, &cur_scrap);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1692 if (!(err == noErr && cur_scrap))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1693 return eventNotHandledErr;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1694
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1695 switch (event_kind)
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1696 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1697 case kEventServiceGetTypes:
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1698 /* Set paste types. */
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1699 err = GetEventParameter (event, kEventParamServicePasteTypes,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1700 typeCFMutableArrayRef, NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1701 sizeof (CFMutableArrayRef), NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1702 &paste_types);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1703 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1704 break;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1705
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1706 for (rest = Vselection_converter_alist; CONSP (rest);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1707 rest = XCDR (rest))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1708 if (CONSP (XCAR (rest)) && SYMBOLP (XCAR (XCAR (rest)))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1709 && (flavor_type =
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1710 get_flavor_type_from_symbol (XCAR (XCAR (rest)))))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1711 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1712 type = CreateTypeStringWithOSType (flavor_type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1713 if (type)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1714 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1715 CFArrayAppendValue (paste_types, type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1716 CFRelease (type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1717 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1718 }
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1719
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1720 /* Set copy types. */
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1721 err = GetEventParameter (event, kEventParamServiceCopyTypes,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1722 typeCFMutableArrayRef, NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1723 sizeof (CFMutableArrayRef), NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1724 &copy_types);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1725 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1726 break;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1727
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1728 if (NILP (Fx_selection_owner_p (Vmac_service_selection)))
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1729 break;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1730 else
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1731 goto copy_all_flavors;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1732
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1733 case kEventServiceCopy:
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1734 err = GetEventParameter (event, kEventParamScrapRef,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1735 typeScrapRef, NULL,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1736 sizeof (ScrapRef), NULL, &specific_scrap);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1737 if (err != noErr
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1738 || NILP (Fx_selection_owner_p (Vmac_service_selection)))
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1739 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1740 err = eventNotHandledErr;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1741 break;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1742 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1743
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1744 copy_all_flavors:
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1745 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1746 UInt32 count, i;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1747 ScrapFlavorInfo *flavor_info = NULL;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1748 ScrapFlavorFlags flags;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1749
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1750 err = GetScrapFlavorCount (cur_scrap, &count);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1751 if (err == noErr)
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1752 flavor_info = xmalloc (sizeof (ScrapFlavorInfo) * count);
70070
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
1753 err = GetScrapFlavorInfoList (cur_scrap, &count, flavor_info);
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
1754 if (err != noErr)
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1755 {
70070
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
1756 xfree (flavor_info);
9559d7f62131 (get_scrap_target_type_list, defer_apple_events)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 69963
diff changeset
1757 flavor_info = NULL;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1758 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1759 if (flavor_info == NULL)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1760 break;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1761
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1762 for (i = 0; i < count; i++)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1763 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1764 flavor_type = flavor_info[i].flavorType;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1765 err = GetScrapFlavorFlags (cur_scrap, flavor_type, &flags);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1766 if (err == noErr && !(flags & kScrapFlavorMaskSenderOnly))
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1767 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1768 if (event_kind == kEventServiceCopy)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1769 err = copy_scrap_flavor_data (cur_scrap, specific_scrap,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1770 flavor_type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1771 else /* event_kind == kEventServiceGetTypes */
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1772 {
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1773 type = CreateTypeStringWithOSType (flavor_type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1774 if (type)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1775 {
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1776 CFArrayAppendValue (copy_types, type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1777 CFRelease (type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1778 }
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1779 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1780 }
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1781 }
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1782 xfree (flavor_info);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1783 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1784 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1785
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1786 case kEventServicePaste:
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1787 case kEventServicePerform:
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1788 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1789 int data_exists_p = 0;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1790
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1791 err = GetEventParameter (event, kEventParamScrapRef, typeScrapRef,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1792 NULL, sizeof (ScrapRef), NULL,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1793 &specific_scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1794 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1795 err = clear_scrap (&cur_scrap);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1796 if (err == noErr)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1797 for (rest = Vselection_converter_alist; CONSP (rest);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1798 rest = XCDR (rest))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1799 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1800 if (! (CONSP (XCAR (rest)) && SYMBOLP (XCAR (XCAR (rest)))))
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1801 continue;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1802 flavor_type = get_flavor_type_from_symbol (XCAR (XCAR (rest)));
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1803 if (flavor_type == 0)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1804 continue;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1805 err = copy_scrap_flavor_data (specific_scrap, cur_scrap,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1806 flavor_type);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1807 if (err == noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1808 data_exists_p = 1;
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1809 }
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1810 if (!data_exists_p)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1811 err = eventNotHandledErr;
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1812 else
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1813 err = mac_store_service_event (event);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1814 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1815 break;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1816 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1817
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1818 if (err != noErr)
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1819 err = eventNotHandledErr;
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1820 return err;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1821 }
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1822 #endif
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1823
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1824
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1825 void
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1826 syms_of_macselect ()
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1827 {
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1828 defsubr (&Sx_get_selection_internal);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1829 defsubr (&Sx_own_selection_internal);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1830 defsubr (&Sx_disown_selection_internal);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1831 defsubr (&Sx_selection_owner_p);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1832 defsubr (&Sx_selection_exists_p);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1833 defsubr (&Smac_process_deferred_apple_events);
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1834 defsubr (&Smac_cleanup_expired_apple_events);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1835 defsubr (&Smac_resume_apple_event);
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1836 defsubr (&Smac_ae_set_reply_parameter);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1837
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1838 Vselection_alist = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1839 staticpro (&Vselection_alist);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1840
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1841 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1842 doc: /* An alist associating selection-types with functions.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1843 These functions are called to convert the selection, with three args:
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1844 the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1845 a desired type to which the selection should be converted;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1846 and the local selection value (whatever was given to `x-own-selection').
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1847
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1848 The function should return the value to send to the Scrap Manager
64607
fefea1491def (Fx_own_selection_internal): Follow error conventions.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64312
diff changeset
1849 \(must be a string). A return value of nil
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1850 means that the conversion could not be done.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1851 A return value which is the symbol `NULL'
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1852 means that a side-effect was executed,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1853 and there is no meaningful selection value. */);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1854 Vselection_converter_alist = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1855
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1856 DEFVAR_LISP ("x-lost-selection-functions", &Vx_lost_selection_functions,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1857 doc: /* A list of functions to be called when Emacs loses a selection.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1858 \(This happens when a Lisp program explicitly clears the selection.)
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1859 The functions are called with one argument, the selection type
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1860 \(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'). */);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1861 Vx_lost_selection_functions = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1862
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1863 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1864 doc: /* Coding system for communicating with other programs.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1865 When sending or receiving text via cut_buffer, selection, and clipboard,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1866 the text is encoded or decoded by this coding system.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1867 The default value is determined by the system script code. */);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1868 Vselection_coding_system = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1869
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1870 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system,
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1871 doc: /* Coding system for the next communication with other programs.
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1872 Usually, `selection-coding-system' is used for communicating with
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1873 other programs. But, if this variable is set, it is used for the
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1874 next communication only. After the communication, this variable is
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1875 set to nil. */);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1876 Vnext_selection_coding_system = Qnil;
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1877
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1878 DEFVAR_LISP ("mac-apple-event-map", &Vmac_apple_event_map,
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1879 doc: /* Keymap for Apple events handled by Emacs. */);
67489
e9ee2ee1d26e (syms_of_macselect) <mac-apple-event-map>:
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 67457
diff changeset
1880 Vmac_apple_event_map = Qnil;
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1881
70383
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1882 #if TARGET_API_MAC_CARBON
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1883 DEFVAR_LISP ("mac-dnd-known-types", &Vmac_dnd_known_types,
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1884 doc: /* The types accepted by default for dropped data.
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1885 The types are chosen in the order they appear in the list. */);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1886 Vmac_dnd_known_types = list4 (build_string ("hfs "), build_string ("utxt"),
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1887 build_string ("TEXT"), build_string ("TIFF"));
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1888 #ifdef MAC_OSX
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1889 Vmac_dnd_known_types = Fcons (build_string ("furl"), Vmac_dnd_known_types);
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1890 #endif
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1891 #endif
84a220b0dd72 Update copyright year.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70070
diff changeset
1892
62271
6cae229f309b (syms_of_macselect) [MAC_OSX]: Apply a change that was previously
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 62102
diff changeset
1893 #ifdef MAC_OSX
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1894 DEFVAR_LISP ("mac-service-selection", &Vmac_service_selection,
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1895 doc: /* Selection name for communication via Services menu. */);
70562
e2bd086e6902 (Vmac_service_selection) [MAC_OSX]: Rename from
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70495
diff changeset
1896 Vmac_service_selection = intern ("PRIMARY");
62271
6cae229f309b (syms_of_macselect) [MAC_OSX]: Apply a change that was previously
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 62102
diff changeset
1897 #endif
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1898
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1899 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1900 QSECONDARY = intern ("SECONDARY"); staticpro (&QSECONDARY);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1901 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1902 QTARGETS = intern ("TARGETS"); staticpro (&QTARGETS);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1903
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1904 Qforeign_selection = intern ("foreign-selection");
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1905 staticpro (&Qforeign_selection);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1906
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1907 Qmac_scrap_name = intern ("mac-scrap-name");
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1908 staticpro (&Qmac_scrap_name);
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1909
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1910 Qmac_ostype = intern ("mac-ostype");
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1911 staticpro (&Qmac_ostype);
67457
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1912
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1913 Qmac_apple_event_class = intern ("mac-apple-event-class");
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1914 staticpro (&Qmac_apple_event_class);
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1915
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1916 Qmac_apple_event_id = intern ("mac-apple-event-id");
819dc1a5c256 Include keymap.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 64607
diff changeset
1917 staticpro (&Qmac_apple_event_id);
70873
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1918
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1919 Qemacs_suspension_id = intern ("emacs-suspension-id");
523dd2f40cc1 (Qemacs_suspension_id): New variable.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 70562
diff changeset
1920 staticpro (&Qemacs_suspension_id);
61777
c323711ae68f New file for selection processing on Mac OS.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
diff changeset
1921 }
61819
df86749111d6 Add arch tagline
Miles Bader <miles@gnu.org>
parents: 61777
diff changeset
1922
df86749111d6 Add arch tagline
Miles Bader <miles@gnu.org>
parents: 61777
diff changeset
1923 /* arch-tag: f3c91ad8-99e0-4bd6-9eef-251b2f848732
df86749111d6 Add arch tagline
Miles Bader <miles@gnu.org>
parents: 61777
diff changeset
1924 (do not change this comment) */