annotate src/events.c @ 195:a2f645c6b9f8 r20-3b24

Import from CVS: tag r20-3b24
author cvs
date Mon, 13 Aug 2007 09:59:05 +0200
parents 489f57a838ef
children acd284d43ca1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Events: printing them, converting them to and from characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "console-tty.h" /* for stuff in character_to_event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "console-x.h" /* for x_event_name prototype */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "extents.h" /* Just for the EXTENTP abort check... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "glyphs.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "keymap.h" /* for key_desc_list_to_event() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
41 #ifdef WINDOWSNT
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
42 /* Hmm, under unix we want X modifiers, under NT we want X modifiers if
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
43 we are running X and Windows modifiers otherwise.
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
44 gak. This is a kludge until we support multiple native GUIs!
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
45 */
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
46 #undef MOD_ALT
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
47 #undef MOD_CONTROL
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
48 #undef MOD_SHIFT
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
49 #endif
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
50
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 153
diff changeset
51 #include "events-mod.h"
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 70
diff changeset
52
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 /* Where old events go when they are explicitly deallocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 The event chain here is cut loose before GC, so these will be freed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 eventually.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 static Lisp_Object Vevent_resource;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object Qeventp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Lisp_Object Qevent_live_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Lisp_Object Qkey_press_event_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Lisp_Object Qbutton_event_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Lisp_Object Qmouse_event_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp_Object Qprocess_event_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 157
diff changeset
66 Lisp_Object Qkey_press, Qbutton_press, Qbutton_release, Qmisc_user;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Lisp_Object Qascii_character;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 /* #### Ad-hoc hack. Should be part of define_lrecord_implementation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 clear_event_resource (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Vevent_resource = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 static Lisp_Object mark_event (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 static void print_event (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 static int event_equal (Lisp_Object, Lisp_Object, int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 static unsigned long event_hash (Lisp_Object obj, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 DEFINE_BASIC_LRECORD_IMPLEMENTATION ("event", event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 mark_event, print_event, 0, event_equal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 event_hash, struct Lisp_Event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 /* Make sure we lose quickly if we try to use this event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 deinitialize_event (Lisp_Object ev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 struct Lisp_Event *event = XEVENT (ev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 for (i = 0; i < ((sizeof (struct Lisp_Event)) / sizeof (int)); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ((int *) event) [i] = 0xdeadbeef;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 event->event_type = dead_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 event->channel = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 set_lheader_implementation (&(event->lheader), lrecord_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 XSET_EVENT_NEXT (ev, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* Set everything to zero or nil so that it's predictable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 zero_event (struct Lisp_Event *e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 memset (e, 0, sizeof (*e));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 set_lheader_implementation (&(e->lheader), lrecord_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 e->event_type = empty_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 e->next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 e->channel = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 mark_event (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 struct Lisp_Event *event = XEVENT (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 switch (event->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 ((markobj) (event->event.key.keysym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 case process_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 ((markobj) (event->event.process.process));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 case timeout_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ((markobj) (event->event.timeout.function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ((markobj) (event->event.timeout.object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 case eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 ((markobj) (event->event.eval.function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 ((markobj) (event->event.eval.object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 case magic_eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 ((markobj) (event->event.magic_eval.object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 case empty_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 case dead_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ((markobj) (event->channel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 return event->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 print_event_1 (CONST char *str, Lisp_Object obj, Lisp_Object printcharfun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 char buf[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 write_c_string (str, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 format_event_object (buf, XEVENT (obj), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 print_event (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 error ("printing unreadable object #<event>");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
164 switch (XEVENT (obj)->event_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 print_event_1 ("#<keypress-event ", obj, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 print_event_1 ("#<buttondown-event ", obj, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 print_event_1 ("#<buttonup-event ", obj, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 case magic_eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 print_event_1 ("#<magic-event ", obj, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 sprintf (buf, "#<motion-event %d, %d",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 XEVENT (obj)->event.motion.x, XEVENT (obj)->event.motion.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 case process_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 write_c_string ("#<process-event ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 print_internal (XEVENT (obj)->event.process.process, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 case timeout_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 write_c_string ("#<timeout-event ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 print_internal (XEVENT (obj)->event.timeout.object, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 case empty_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 write_c_string ("#<empty-event", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 case eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 write_c_string ("#<", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 if (XEVENT (obj)->event_type == misc_user_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 write_c_string ("misc-user", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 write_c_string ("eval", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 write_c_string ("-event (", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 print_internal (XEVENT (obj)->event.eval.function, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 write_c_string (" ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 print_internal (XEVENT (obj)->event.eval.object, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 write_c_string (")", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 case dead_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 write_c_string ("#<DEALLOCATED-EVENT", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 write_c_string ("#<UNKNOWN-EVENT-TYPE", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 write_c_string (">", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
220
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 event_equal (Lisp_Object o1, Lisp_Object o2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 struct Lisp_Event *e1 = XEVENT (o1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 struct Lisp_Event *e2 = XEVENT (o2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 if (e1->event_type != e2->event_type) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 if (!EQ (e1->channel, e2->channel)) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 /* if (e1->timestamp != e2->timestamp) return 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 switch (e1->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 case process_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
233 return EQ (e1->event.process.process, e2->event.process.process);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
234
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 case timeout_event:
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
236 return (internal_equal (e1->event.timeout.function,
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
237 e2->event.timeout.function, 0) &&
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
238 internal_equal (e1->event.timeout.object,
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
239 e2->event.timeout.object, 0));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
240
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 case key_press_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
242 return (EQ (e1->event.key.keysym, e2->event.key.keysym) &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
243 (e1->event.key.modifiers == e2->event.key.modifiers));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 case button_release_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
247 return (e1->event.button.button == e2->event.button.button &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
248 e1->event.button.modifiers == e2->event.button.modifiers);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 case pointer_motion_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
251 return (e1->event.motion.x == e2->event.motion.x &&
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
252 e1->event.motion.y == e2->event.motion.y);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 case eval_event:
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
256 return (internal_equal (e1->event.eval.function,
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
257 e2->event.eval.function, 0) &&
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
258 internal_equal (e1->event.eval.object,
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
259 e2->event.eval.object, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 case magic_eval_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
262 return (e1->event.magic_eval.internal_function ==
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
263 e2->event.magic_eval.internal_function &&
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
264 internal_equal (e1->event.magic_eval.object,
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
265 e2->event.magic_eval.object, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
269 struct console *con = XCONSOLE (CDFW_CONSOLE (e1->channel));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #ifdef HAVE_X_WINDOWS
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
272 if (CONSOLE_X_P (con))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
273 return (e1->event.magic.underlying_x_event.xany.serial ==
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
274 e2->event.magic.underlying_x_event.xany.serial);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 #endif
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
276 #ifdef HAVE_TTY
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
277 if (CONSOLE_TTY_P (con))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 return (e1->event.magic.underlying_tty_event ==
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 e2->event.magic.underlying_tty_event);
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
280 #endif
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
281 return 1; /* not reached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 case empty_event: /* Empty and deallocated events are equal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 case dead_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 return 0; /* not reached; warning suppression */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 event_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 struct Lisp_Event *e = XEVENT (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 unsigned long hash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 hash = HASH2 (e->event_type, LISP_HASH (e->channel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 switch (e->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 case process_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 return HASH2 (hash, LISP_HASH (e->event.process.process));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
305
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 case timeout_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 return HASH3 (hash, internal_hash (e->event.timeout.function, depth + 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 internal_hash (e->event.timeout.object, depth + 1));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
309
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 return HASH3 (hash, LISP_HASH (e->event.key.keysym),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 e->event.key.modifiers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 return HASH3 (hash, e->event.button.button, e->event.button.modifiers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 return HASH3 (hash, e->event.motion.x, e->event.motion.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 case eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 return HASH3 (hash, internal_hash (e->event.eval.function, depth + 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 internal_hash (e->event.eval.object, depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 case magic_eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 return HASH3 (hash,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (unsigned long) e->event.magic_eval.internal_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 internal_hash (e->event.magic_eval.object, depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
333 struct console *con = XCONSOLE (CDFW_CONSOLE (EVENT_CHANNEL (e)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 #ifdef HAVE_X_WINDOWS
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
335 if (CONSOLE_X_P (con))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
336 return HASH2 (hash, e->event.magic.underlying_x_event.xany.serial);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 #endif
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
338 #ifdef HAVE_TTY
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
339 if (CONSOLE_TTY_P (con))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
340 return HASH2 (hash, e->event.magic.underlying_tty_event);
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
341 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 case empty_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 case dead_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 return hash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
352 return 0; /* unreached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
356 DEFUN ("make-event", Fmake_event, 0, 2, 0, /*
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
357 Create a new event of type TYPE, with properties stored in PLIST.
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
358 TYPE is a symbol, either `empty', `key-press', `button-press',
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
359 `button-release', or `motion'. If TYPE is left out, it defaults to
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
360 `empty'.
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
361 PLIST is a list of properties, as returned by `event-properties'. Not
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
362 all properties are allowed for all kinds of events, and some are
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
363 required.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 WARNING, the event object returned may be a reused one; see the function
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
366 `deallocate-event'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
367 */
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
368 (type, plist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 {
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
370 Lisp_Object event, prop, val;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
371 struct Lisp_Event *e;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
372
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
373 if (NILP (type))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
374 type = Qempty;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 if (!NILP (Vevent_resource))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 event = Vevent_resource;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 Vevent_resource = XEVENT_NEXT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 event = allocate_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 }
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
385 e = XEVENT (event);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
386 zero_event (e);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
387
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
388 if (EQ (type, Qkey_press))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
389 e->event_type = key_press_event;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
390 else if (EQ (type, Qbutton_press))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
391 e->event_type = button_press_event;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
392 else if (EQ (type, Qbutton_release))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
393 e->event_type = button_release_event;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
394 else if (EQ (type, Qmotion))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
395 e->event_type = pointer_motion_event;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
396 else if (EQ (type, Qempty))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
397 e->event_type = empty_event;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
398 else
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
399 /* not allowed: Qmisc_user, Qprocess, Qtimeout, Qmagic, Qmagic_eval */
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
400 signal_simple_error ("Invalid event type", type);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
401
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
402 /* Process the plist. */
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
403 while (!NILP (plist))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
404 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
405 prop = Fcar (plist);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
406 plist = Fcdr (plist);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
407 val = Fcar (plist);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
408 plist = Fcdr (plist);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
409 if (EQ (prop, Qchannel))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
410 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
411 if (!DEVICEP (val) && !CONSOLEP (val) && !FRAMEP (val)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
412 && !NILP (val))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
413 signal_simple_error ("Invalid event channel", val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
414 EVENT_CHANNEL (e) = val;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
415 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
416 else if (EQ (prop, Qkey))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
417 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
418 if (e->event_type != key_press_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
419 wrong_type_argument (Qkey_press_event_p, event);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
420 if (!SYMBOLP (val) && !CHARP (val))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
421 signal_simple_error ("Invalid event key", val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
422 e->event.key.keysym = val;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
423 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
424 else if (EQ (prop, Qbutton))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
425 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
426 CHECK_NATNUM (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
427 check_int_range (XINT(val), 1, 3);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
428 if (e->event_type != button_press_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
429 && e->event_type != button_release_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
430 signal_simple_error ("Invalid event type for `button' property",
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
431 type);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
432 e->event.button.button = XINT (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
433 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
434 else if (EQ (prop, Qmodifiers))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
435 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
436 Lisp_Object tail, sym;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
437 int modifiers = 0;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
438
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
439 if (e->event_type != key_press_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
440 && e->event_type != button_press_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
441 && e->event_type != button_release_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
442 && e->event_type != pointer_motion_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
443 signal_simple_error ("Invalid event type for modifiers", type);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
444
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
445 for (tail = val; !NILP (tail); tail = Fcdr (tail))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
446 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
447 sym = Fcar (tail);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
448 if (EQ (sym, Qcontrol)) modifiers |= MOD_CONTROL;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
449 else if (EQ (sym, Qmeta)) modifiers |= MOD_META;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
450 else if (EQ (sym, Qsuper)) modifiers |= MOD_SUPER;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
451 else if (EQ (sym, Qhyper)) modifiers |= MOD_HYPER;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
452 else if (EQ (sym, Qalt)) modifiers |= MOD_ALT;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
453 else if (EQ (sym, Qsymbol)) modifiers |= MOD_ALT;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
454 else if (EQ (sym, Qshift)) modifiers |= MOD_SHIFT;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
455 else
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
456 signal_simple_error ("Invalid key modifier", Fcar (tail));
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
457 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
458 if (e->event_type == key_press_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
459 e->event.key.modifiers = modifiers;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
460 else if (e->event_type == button_press_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
461 || e->event_type == button_release_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
462 e->event.button.modifiers = modifiers;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
463 else /* pointer_motion_event */
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
464 e->event.motion.modifiers = modifiers;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
465 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
466 else if (EQ (prop, Qx))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
467 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
468 CHECK_NATNUM (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
469 if (e->event_type == pointer_motion_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
470 e->event.motion.x = XINT (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
471 else if (e->event_type == button_press_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
472 || e->event_type == button_release_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
473 e->event.button.x = XINT (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
474 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
475 else if (EQ (prop, Qy))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
476 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
477 CHECK_NATNUM (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
478 if (e->event_type == pointer_motion_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
479 e->event.motion.y = XINT (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
480 else if (e->event_type == button_press_event
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
481 || e->event_type == button_release_event)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
482 e->event.button.y = XINT (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
483 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
484 else if (EQ (prop, Qtimestamp))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
485 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
486 CHECK_NATNUM (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
487 e->timestamp = XINT (val);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
488 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
489 else
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
490 signal_simple_error ("Invalid property", prop);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
491 } /* while */
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
492
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
493 /* Now, let's validate what we got. */
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
494 switch (e->event_type)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
495 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
496 case key_press_event:
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
497 if (!(SYMBOLP (e->event.key.keysym) || CHARP (e->event.key.keysym)))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
498 error ("Undefined key for keypress event");
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
499 break;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
500 case button_press_event:
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
501 case button_release_event:
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
502 if (!e->event.button.button)
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
503 error ("Undefined button for button-press or button-release event");
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
504 if (NILP (EVENT_CHANNEL (e)))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
505 error ("Undefined channel for button-press or button-release event");
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
506 break;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
507 default:
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
508 break;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
509 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
513 DEFUN ("deallocate-event", Fdeallocate_event, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 Allow the given event structure to be reused.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 You MUST NOT use this event object after calling this function with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 You will lose. It is not necessary to call this function, as event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 objects are garbage-collected like all other objects; however, it may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 be more efficient to explicitly deallocate events when you are sure
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
519 that it is safe to do so.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
520 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
521 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 CHECK_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 if (XEVENT_TYPE (event) == dead_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 error ("this event is already deallocated!");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 assert (XEVENT_TYPE (event) <= last_event_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 #if 0
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
531 {
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
532 int i, len;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 extern Lisp_Object Vlast_command_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 extern Lisp_Object Vlast_input_event, Vunread_command_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 extern Lisp_Object Vthis_command_keys, Vrecent_keys_ring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
537 if (EQ (event, Vlast_command_event) ||
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
538 EQ (event, Vlast_input_event) ||
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
539 EQ (event, Vunread_command_event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 abort ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
541
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
542 len = XVECTOR_LENGTH (Vthis_command_keys);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
543 for (i = 0; i < len; i++)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
544 if (EQ (event, XVECTOR_DATA (Vthis_command_keys) [i]))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 abort ();
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 149
diff changeset
546 if (!NILP (Vrecent_keys_ring))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 149
diff changeset
547 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
548 int recent_ring_len = XVECTOR_LENGTH (Vrecent_keys_ring);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
549 for (i = 0; i < recent_ring_len; i++)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
550 if (EQ (event, XVECTOR_DATA (Vrecent_keys_ring) [i]))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 149
diff changeset
551 abort ();
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 149
diff changeset
552 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 assert (!EQ (event, Vevent_resource));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 deinitialize_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 #ifndef ALLOC_NO_POOLS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 XSET_EVENT_NEXT (event, Vevent_resource);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 Vevent_resource = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
565 DEFUN ("copy-event", Fcopy_event, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 Make a copy of the given event object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 If a second argument is given, the first event is copied into the second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 and the second is returned. If the second argument is not supplied (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 is nil) then a new event will be made as with `allocate-event.' See also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 the function `deallocate-event'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
571 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
572 (event1, event2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 CHECK_LIVE_EVENT (event1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 if (NILP (event2))
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
576 event2 = Fmake_event (Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 else CHECK_LIVE_EVENT (event2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 if (EQ (event1, event2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 return signal_simple_continuable_error_2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 ("copy-event called with `eq' events", event1, event2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 assert (XEVENT_TYPE (event1) <= last_event_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 assert (XEVENT_TYPE (event2) <= last_event_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 Lisp_Object save_next = XEVENT_NEXT (event2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 *XEVENT (event2) = *XEVENT (event1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 XSET_EVENT_NEXT (event2, save_next);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
590 return event2;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 /* Given a chain of events (or possibly nil), deallocate them all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 deallocate_event_chain (Lisp_Object event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 while (!NILP (event_chain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 Lisp_Object next = XEVENT_NEXT (event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 Fdeallocate_event (event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 event_chain = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 /* Return the last event in a chain.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 NOTE: You cannot pass nil as a value here! The routine will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 abort if you do. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 event_chain_tail (Lisp_Object event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 Lisp_Object next = XEVENT_NEXT (event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 if (NILP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 return event_chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 event_chain = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 /* Enqueue a single event onto the end of a chain of events.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 HEAD points to the first event in the chain, TAIL to the last event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 If the chain is empty, both values should be nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 enqueue_event (Lisp_Object event, Lisp_Object *head, Lisp_Object *tail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 assert (NILP (XEVENT_NEXT (event)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 assert (!EQ (*tail, event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 if (!NILP (*tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 XSET_EVENT_NEXT (*tail, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 *head = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 *tail = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 assert (!EQ (event, XEVENT_NEXT (event)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 /* Remove an event off the head of a chain of events and return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 HEAD points to the first event in the chain, TAIL to the last event. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
646
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 dequeue_event (Lisp_Object *head, Lisp_Object *tail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 event = *head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 *head = XEVENT_NEXT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 XSET_EVENT_NEXT (event, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 if (NILP (*head))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 *tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 /* Enqueue a chain of events (or possibly nil) onto the end of another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 chain of events. HEAD points to the first event in the chain being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 queued onto, TAIL to the last event. If the chain is empty, both values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 should be nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 enqueue_event_chain (Lisp_Object event_chain, Lisp_Object *head,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 Lisp_Object *tail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 if (NILP (event_chain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 if (NILP (*head))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 *head = event_chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 *tail = event_chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 XSET_EVENT_NEXT (*tail, event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 *tail = event_chain_tail (event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 /* Return the number of events (possibly 0) on an event chain. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 event_chain_count (Lisp_Object event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 int n = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 EVENT_CHAIN_LOOP (event, event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 n++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 return n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 /* Find the event before EVENT in an event chain. This aborts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 if the event is not in the chain. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 event_chain_find_previous (Lisp_Object event_chain, Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 Lisp_Object previous = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 while (!NILP (event_chain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 if (EQ (event_chain, event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 return previous;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 previous = event_chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 event_chain = XEVENT_NEXT (event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 event_chain_nth (Lisp_Object event_chain, int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 EVENT_CHAIN_LOOP (event, event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 if (!n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 n--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 copy_event_chain (Lisp_Object event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 Lisp_Object new_chain = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 Lisp_Object new_chain_tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 EVENT_CHAIN_LOOP (event, event_chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 Lisp_Object copy = Fcopy_event (event, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 enqueue_event (copy, &new_chain, &new_chain_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 return new_chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 Lisp_Object QKbackspace, QKtab, QKlinefeed, QKreturn, QKescape,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 QKspace, QKdelete;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 command_event_p (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 switch (XEVENT_TYPE (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 case misc_user_event:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
761 return 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 default:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
763 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 character_to_event (Emchar c, struct Lisp_Event *event, struct console *con,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 int use_console_meta_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 Lisp_Object k = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 unsigned int m = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 if (event->event_type == dead_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 error ("character-to-event called with a deallocated event!");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
777 #ifndef MULE
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 c &= 255;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
779 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 if (c > 127 && c <= 255)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 int meta_flag = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 if (use_console_meta_flag && CONSOLE_TTY_P (con))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 meta_flag = TTY_FLAGS (con).meta_key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 switch (meta_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 case 0: /* ignore top bit; it's parity */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 c -= 128;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 case 1: /* top bit is meta */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 c -= 128;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 m = MOD_META;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 default: /* this is a real character */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 if (c < ' ') c += '@', m |= MOD_CONTROL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 if (m & MOD_CONTROL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 switch (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 case 'I': k = QKtab; m &= ~MOD_CONTROL; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 case 'J': k = QKlinefeed; m &= ~MOD_CONTROL; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 case 'M': k = QKreturn; m &= ~MOD_CONTROL; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 case '[': k = QKescape; m &= ~MOD_CONTROL; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 # if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 /* This is probably too controversial... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 case 'H': k = QKbackspace; m &= ~MOD_CONTROL; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 if (c >= 'A' && c <= 'Z') c -= 'A'-'a';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 else if (c == 127)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 k = QKdelete;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 else if (c == ' ')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 k = QKspace;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
818
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
819 event->event_type = key_press_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
820 event->timestamp = 0; /* #### */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
821 event->channel = make_console (con);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
822 event->event.key.keysym = (!NILP (k) ? k : make_char (c));
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
823 event->event.key.modifiers = m;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 /* This variable controls what character name -> character code mapping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 we are using. Window-system-specific code sets this to some symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 and we use that symbol as the plist key to convert keysyms into 8-bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 codes. In this way one can have several character sets predefined and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 switch them by changing this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 Lisp_Object Vcharacter_set_property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 Emchar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 event_to_character (struct Lisp_Event *event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 int allow_extra_modifiers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 int allow_meta,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 int allow_non_ascii)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 Emchar c = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 Lisp_Object code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 if (event->event_type != key_press_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 if (event->event_type == dead_event) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 if (!allow_extra_modifiers &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 event->event.key.modifiers & (MOD_SUPER|MOD_HYPER|MOD_ALT))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 if (CHAR_OR_CHAR_INTP (event->event.key.keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 c = XCHAR_OR_CHAR_INT (event->event.key.keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 else if (!SYMBOLP (event->event.key.keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 else if (allow_non_ascii && !NILP (Vcharacter_set_property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 /* Allow window-system-specific extensibility of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 keysym->code mapping */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 && CHAR_OR_CHAR_INTP (code = Fget (event->event.key.keysym,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 Vcharacter_set_property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 c = XCHAR_OR_CHAR_INT (code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 else if (CHAR_OR_CHAR_INTP (code = Fget (event->event.key.keysym,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 Qascii_character, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 c = XCHAR_OR_CHAR_INT (code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 if (event->event.key.modifiers & MOD_CONTROL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 if (c >= 'a' && c <= 'z')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 c -= ('a' - 'A');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 /* reject Control-Shift- keys */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 if (c >= 'A' && c <= 'Z' && !allow_extra_modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 return -1;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
877
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 if (c >= '@' && c <= '_')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 c -= '@';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 else if (c == ' ') /* C-space and C-@ are the same. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 c = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 /* reject keys that can't take Control- modifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 if (! allow_extra_modifiers) return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 if (event->event.key.modifiers & MOD_META)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 if (! allow_meta) return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 if (c & 0200) return -1; /* don't allow M-oslash (overlap) */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
891 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
892 if (c >= 256) return -1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
893 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 c |= 0200;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 return c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
899 DEFUN ("event-to-character", Fevent_to_character, 1, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 Return the closest ASCII approximation to the given event object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 If the event isn't a keypress, this returns nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 If the ALLOW-EXTRA-MODIFIERS argument is non-nil, then this is lenient in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 its translation; it will ignore modifier keys other than control and meta,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 and will ignore the shift modifier on those characters which have no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 shifted ASCII equivalent (Control-Shift-A for example, will be mapped to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 the same ASCII code as Control-A).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 If the ALLOW-META argument is non-nil, then the Meta modifier will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 represented by turning on the high bit of the byte returned; otherwise, nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 will be returned for events containing the Meta modifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 If the ALLOW-NON-ASCII argument is non-nil, then characters which are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 present in the prevailing character set (see the `character-set-property'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 variable) will be returned as their code in that character set, instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 the return value being restricted to ASCII.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 Note that specifying both ALLOW-META and ALLOW-NON-ASCII is ambiguous, as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 both use the high bit; `M-x' and `oslash' will be indistinguishable.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
916 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 20
diff changeset
917 (event, allow_extra_modifiers, allow_meta, allow_non_ascii))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 Emchar c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 c = event_to_character (XEVENT (event),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 !NILP (allow_extra_modifiers),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 !NILP (allow_meta),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 !NILP (allow_non_ascii));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
925 return c < 0 ? Qnil : make_char (c);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
928 DEFUN ("character-to-event", Fcharacter_to_event, 1, 4, 0, /*
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
929 Converts a keystroke specifier into an event structure, replete with
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 bucky bits. The keystroke is the first argument, and the event to fill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 in is the second. This function contains knowledge about what the codes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 ``mean'' -- for example, the number 9 is converted to the character ``Tab'',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 not the distinct character ``Control-I''.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 Note that CH (the keystroke specifier) can be an integer, a character,
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
936 a symbol such as 'clear, or a list such as '(control backspace).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
938 If the optional second argument is an event, it is modified;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
939 otherwise, a new event object is created.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
941 Optional third arg CONSOLE is the console to store in the event, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
942 defaults to the selected console.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 If CH is an integer or character, the high bit may be interpreted as the
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
945 meta key. (This is done for backward compatibility in lots of places.)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
946 If USE-CONSOLE-META-FLAG is nil, this will always be the case. If
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
947 USE-CONSOLE-META-FLAG is non-nil, the `meta' flag for CONSOLE affects
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
948 whether the high bit is interpreted as a meta key. (See `set-input-mode'.)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
949 If you don't want this silly meta interpretation done, you should pass
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
950 in a list containing the character.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 Beware that character-to-event and event-to-character are not strictly
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
953 inverse functions, since events contain much more information than the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
954 ASCII character set can encode.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
955 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
956 (ch, event, console, use_console_meta_flag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 struct console *con = decode_console (console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 if (NILP (event))
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
960 event = Fmake_event (Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 if (CONSP (ch) || SYMBOLP (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 key_desc_list_to_event (ch, event, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 CHECK_CHAR_COERCE_INT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 character_to_event (XCHAR (ch), XEVENT (event), con,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 !NILP (use_console_meta_flag));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 nth_of_key_sequence_as_event (Lisp_Object seq, int n, Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 assert (STRINGP (seq) || VECTORP (seq));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 assert (n < XINT (Flength (seq)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 if (STRINGP (seq))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 Emchar ch = string_char (XSTRING (seq), n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 Fcharacter_to_event (make_char (ch), event, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
987 Lisp_Object keystroke = XVECTOR_DATA (seq)[n];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 if (EVENTP (keystroke))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 Fcopy_event (keystroke, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 Fcharacter_to_event (keystroke, event, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 key_sequence_to_event_chain (Lisp_Object seq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 int len = XINT (Flength (seq));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 Lisp_Object head = Qnil, tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 for (i = 0; i < len; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 {
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
1004 Lisp_Object event = Fmake_event (Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 nth_of_key_sequence_as_event (seq, i, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 enqueue_event (event, &head, &tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 return head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 format_event_object (char *buf, struct Lisp_Event *event, int brief)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 int mouse_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 int mod = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 Lisp_Object key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 switch (event->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 mod = event->event.key.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 key = event->event.key.keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 /* Hack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 if (! brief && CHARP (key) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 mod & (MOD_CONTROL | MOD_META | MOD_SUPER | MOD_HYPER))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 int k = XCHAR (key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 if (k >= 'a' && k <= 'z')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 key = make_char (k - ('a' - 'A'));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 else if (k >= 'A' && k <= 'Z')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 mod |= MOD_SHIFT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 mouse_p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 /* Fall through */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 mouse_p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 mod = event->event.button.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 key = make_char (event->event.button.button + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1049 CONST char *name = NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 #ifdef HAVE_X_WINDOWS
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1052 {
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1053 Lisp_Object console = CDFW_CONSOLE (EVENT_CHANNEL (event));
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1054 if (CONSOLE_X_P (XCONSOLE (console)))
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1055 name = x_event_name (event->event.magic.underlying_x_event.type);
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1056 }
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1057 #endif /* HAVE_X_WINDOWS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 if (name) strcpy (buf, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 else strcpy (buf, "???");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 case magic_eval_event: strcpy (buf, "magic-eval"); return;
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1063 case pointer_motion_event: strcpy (buf, "motion"); return;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1064 case misc_user_event: strcpy (buf, "misc-user"); return;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1065 case eval_event: strcpy (buf, "eval"); return;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1066 case process_event: strcpy (buf, "process"); return;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1067 case timeout_event: strcpy (buf, "timeout"); return;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1068 case empty_event: strcpy (buf, "empty"); return;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1069 case dead_event: strcpy (buf, "DEAD-EVENT"); return;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 #define modprint1(x) { strcpy (buf, (x)); buf += sizeof (x)-1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 #define modprint(x,y) { if (brief) modprint1 (y) else modprint1 (x) }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 if (mod & MOD_CONTROL) modprint ("control-", "C-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 if (mod & MOD_META) modprint ("meta-", "M-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 if (mod & MOD_SUPER) modprint ("super-", "S-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 if (mod & MOD_HYPER) modprint ("hyper-", "H-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 if (mod & MOD_ALT) modprint ("alt-", "A-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 if (mod & MOD_SHIFT) modprint ("shift-", "Sh-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 if (mouse_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 modprint1 ("button");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 --mouse_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 #undef modprint
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 #undef modprint1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 if (CHARP (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 buf += set_charptr_emchar ((Bufbyte *) buf, XCHAR (key));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 *buf = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 else if (SYMBOLP (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 CONST char *str = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 if (brief)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 if (EQ (key, QKlinefeed)) str = "LFD";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 else if (EQ (key, QKtab)) str = "TAB";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 else if (EQ (key, QKreturn)) str = "RET";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 else if (EQ (key, QKescape)) str = "ESC";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 else if (EQ (key, QKdelete)) str = "DEL";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 else if (EQ (key, QKspace)) str = "SPC";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 else if (EQ (key, QKbackspace)) str = "BS";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 if (str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 int i = strlen (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 memcpy (buf, str, i+1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 str += i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1115 struct Lisp_String *name = XSYMBOL (key)->name;
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1116 memcpy (buf, string_data (name), string_length (name) + 1);
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1117 str += string_length (name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 if (mouse_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 strncpy (buf, "up", 4);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1126 DEFUN ("eventp", Feventp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 True if OBJECT is an event object.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1128 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1129 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1131 return EVENTP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1134 DEFUN ("event-live-p", Fevent_live_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 True if OBJECT is an event object that has not been deallocated.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1136 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1137 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1139 return EVENTP (object) && XEVENT (object)->event_type != dead_event ?
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1140 Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 #if 0 /* debugging functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1145 xxDEFUN ("event-next", Fevent_next, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 Return the event object's `next' event, or nil if it has none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 The `next-event' field is changed by calling `set-next-event'.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1148 */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1149 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 struct Lisp_Event *e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 return XEVENT_NEXT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1157 xxDEFUN ("set-event-next", Fset_event_next, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 Set the `next event' of EVENT to NEXT-EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 NEXT-EVENT must be an event object or nil.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1160 */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1161 (event, next_event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 Lisp_Object ev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 if (NILP (next_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 XSET_EVENT_NEXT (event, Qnil);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1169 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 CHECK_LIVE_EVENT (next_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 EVENT_CHAIN_LOOP (ev, XEVENT_NEXT (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 if (EQ (ev, event))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1178 signal_error (Qerror,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 list3 (build_string ("Cyclic event-next"),
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1180 event,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 next_event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 XSET_EVENT_NEXT (event, next_event);
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1184 return next_event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1189 DEFUN ("event-type", Fevent_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 Return the type of EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 This will be a symbol; one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 key-press A key was pressed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 button-press A mouse button was pressed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 button-release A mouse button was released.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 misc-user Some other user action happened; typically, this is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 a menu selection or scrollbar action.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 motion The mouse moved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 process Input is available from a subprocess.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 timeout A timeout has expired.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 eval This causes a specified action to occur when dispatched.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 magic Some window-system-specific event has occurred.
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1203 empty The event has been allocated but not assigned.
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1204
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1205 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1206 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 switch (XEVENT (event)->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1211 case key_press_event: return Qkey_press;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1212 case button_press_event: return Qbutton_press;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1213 case button_release_event: return Qbutton_release;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1214 case misc_user_event: return Qmisc_user;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1215 case pointer_motion_event: return Qmotion;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1216 case process_event: return Qprocess;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1217 case timeout_event: return Qtimeout;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1218 case eval_event: return Qeval;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 case magic_eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 return Qmagic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1223 case empty_event:
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1224 return Qempty;
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1225
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1232 DEFUN ("event-timestamp", Fevent_timestamp, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1233 Return the timestamp of the event object EVENT.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1234 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1235 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 /* This junk is so that timestamps don't get to be negative, but contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 as many bits as this particular emacs will allow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 return make_int (((1L << (VALBITS - 1)) - 1) &
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 XEVENT (event)->timestamp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1245 #define CHECK_EVENT_TYPE(e,t1,sym) do { \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1246 CHECK_LIVE_EVENT (e); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 if (XEVENT(e)->event_type != (t1)) \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1248 e = wrong_type_argument ((sym),(e)); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1249 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1251 #define CHECK_EVENT_TYPE2(e,t1,t2,sym) do { \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1252 CHECK_LIVE_EVENT (e); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1253 if (XEVENT(e)->event_type != (t1) && \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1254 XEVENT(e)->event_type != (t2)) \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1255 e = wrong_type_argument ((sym),(e)); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1256 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1258 DEFUN ("event-key", Fevent_key, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1259 Return the Keysym of the key-press event EVENT.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1260 This will be a character if the event is associated with one, else a symbol.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1261 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1262 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 CHECK_EVENT_TYPE (event, key_press_event, Qkey_press_event_p);
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1265 return XEVENT (event)->event.key.keysym;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1268 DEFUN ("event-button", Fevent_button, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1269 Return the button-number of the given button-press or button-release event.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1270 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1271 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 CHECK_EVENT_TYPE2 (event, button_press_event, button_release_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 Qbutton_event_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 #ifdef HAVE_WINDOW_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 return make_int (XEVENT (event)->event.button.button);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 #else /* !HAVE_WINDOW_SYSTEM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 return Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 #endif /* !HAVE_WINDOW_SYSTEM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1282 DEFUN ("event-modifier-bits", Fevent_modifier_bits, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 Return a number representing the modifier keys which were down
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1284 when the given mouse or keyboard event was produced.
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1285 See also the function event-modifiers.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1286 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1287 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 again:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 CHECK_LIVE_EVENT (event);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1291 switch (XEVENT (event)->event_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1293 case key_press_event:
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1294 return make_int (XEVENT (event)->event.key.modifiers);
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1295 case button_press_event:
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1296 case button_release_event:
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1297 return make_int (XEVENT (event)->event.button.modifiers);
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1298 case pointer_motion_event:
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1299 return make_int (XEVENT (event)->event.motion.modifiers);
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
1300 default:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 event = wrong_type_argument (intern ("key-or-mouse-event-p"), event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 goto again;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1306 DEFUN ("event-modifiers", Fevent_modifiers, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 Return a list of symbols, the names of the modifier keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 which were down when the given mouse or keyboard event was produced.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 See also the function event-modifier-bits.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1310 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1311 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 int mod = XINT (Fevent_modifier_bits (event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 if (mod & MOD_SHIFT) result = Fcons (Qshift, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 if (mod & MOD_ALT) result = Fcons (Qalt, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 if (mod & MOD_HYPER) result = Fcons (Qhyper, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 if (mod & MOD_SUPER) result = Fcons (Qsuper, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 if (mod & MOD_META) result = Fcons (Qmeta, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 if (mod & MOD_CONTROL) result = Fcons (Qcontrol, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 event_x_y_pixel_internal (Lisp_Object event, int *x, int *y, int relative)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 if (XEVENT (event)->event_type == pointer_motion_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 *x = XEVENT (event)->event.motion.x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 *y = XEVENT (event)->event.motion.y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 else if (XEVENT (event)->event_type == button_press_event ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 XEVENT (event)->event_type == button_release_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 *x = XEVENT (event)->event.button.x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 *y = XEVENT (event)->event.button.y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 f = XFRAME (EVENT_CHANNEL (XEVENT (event)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 if (relative)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 w = find_window_by_pixel_pos (*x, *y, f->root_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 if (!w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 return 1; /* #### What should really happen here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 *x -= w->pixel_left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 *y -= w->pixel_top;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 *y -= FRAME_REAL_TOP_TOOLBAR_HEIGHT (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 *x -= FRAME_REAL_LEFT_TOOLBAR_WIDTH (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1365 DEFUN ("event-window-x-pixel", Fevent_window_x_pixel, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1366 Return the X position in pixels of mouse event EVENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 The value returned is relative to the window the event occurred in.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1368 This will signal an error if the event is not a mouse event.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1369 See also `mouse-event-p' and `event-x-pixel'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1370 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1371 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 if (!event_x_y_pixel_internal (event, &x, &y, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 return wrong_type_argument (Qmouse_event_p, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 return make_int (x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1383 DEFUN ("event-window-y-pixel", Fevent_window_y_pixel, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1384 Return the Y position in pixels of mouse event EVENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 The value returned is relative to the window the event occurred in.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1386 This will signal an error if the event is not a mouse event.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1387 See also `mouse-event-p' and `event-y-pixel'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1388 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1389 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 if (!event_x_y_pixel_internal (event, &x, &y, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 return wrong_type_argument (Qmouse_event_p, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 return make_int (y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1401 DEFUN ("event-x-pixel", Fevent_x_pixel, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1402 Return the X position in pixels of mouse event EVENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 The value returned is relative to the frame the event occurred in.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1404 This will signal an error if the event is not a mouse event.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1405 See also `mouse-event-p' and `event-window-x-pixel'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1406 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1407 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 if (!event_x_y_pixel_internal (event, &x, &y, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 return wrong_type_argument (Qmouse_event_p, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 return make_int (x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1419 DEFUN ("event-y-pixel", Fevent_y_pixel, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1420 Return the Y position in pixels of mouse event EVENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 The value returned is relative to the frame the event occurred in.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1422 This will signal an error if the event is not a mouse event.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1423 See also `mouse-event-p' `event-window-y-pixel'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1424 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1425 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 if (!event_x_y_pixel_internal (event, &x, &y, 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 return wrong_type_argument (Qmouse_event_p, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 return make_int (y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 /* Given an event, return a value:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 OVER_TOOLBAR: over one of the 4 frame toolbars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 OVER_MODELINE: over a modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 OVER_BORDER: over an internal border
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 OVER_NOTHING: over the text area, but not over text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 OVER_OUTSIDE: outside of the frame border
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 OVER_TEXT: over text in the text area
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 and return:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 The X char position in CHAR_X, if not a null pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 The Y char position in CHAR_Y, if not a null pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (These last two values are relative to the window the event is over.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 The window it's over in W, if not a null pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 The buffer position it's over in BUFP, if not a null pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 The closest buffer position in CLOSEST, if not a null pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 OBJ_X, OBJ_Y, OBJ1, and OBJ2 are as in pixel_to_glyph_translation().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1457
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 event_pixel_translation (Lisp_Object event, int *char_x, int *char_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 int *obj_x, int *obj_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 struct window **w, Bufpos *bufp, Bufpos *closest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 Charcount *modeline_closest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 Lisp_Object *obj1, Lisp_Object *obj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 int pix_x = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 int pix_y = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 int result;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1468 Lisp_Object frame = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 int ret_x, ret_y, ret_obj_x, ret_obj_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 struct window *ret_w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 Bufpos ret_bufp, ret_closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 Charcount ret_modeline_closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 Lisp_Object ret_obj1, ret_obj2;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1475
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 CHECK_LIVE_EVENT (event);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1477 frame = XEVENT (event)->channel;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1478 switch (XEVENT (event)->event_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1480 case pointer_motion_event :
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 pix_x = XEVENT (event)->event.motion.x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 pix_y = XEVENT (event)->event.motion.y;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1483 break;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1484 case button_press_event :
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1485 case button_release_event :
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 pix_x = XEVENT (event)->event.button.x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 pix_y = XEVENT (event)->event.button.y;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1488 break;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1489 default:
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1490 dead_wrong_type_argument (Qmouse_event_p, event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 result = pixel_to_glyph_translation (XFRAME (frame), pix_x, pix_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 &ret_x, &ret_y, &ret_obj_x, &ret_obj_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 &ret_w, &ret_bufp, &ret_closest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 &ret_modeline_closest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 &ret_obj1, &ret_obj2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 if (result == OVER_NOTHING || result == OVER_OUTSIDE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 ret_bufp = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 else if (ret_w && NILP (ret_w->buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 /* Why does this happen? (Does it still happen?)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 I guess the window has gotten reused as a non-leaf... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 ret_w = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 /* #### pixel_to_glyph_translation() sometimes returns garbage...
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1507 The word has type Lisp_Type_Record (presumably meaning `extent') but the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 pointer points to random memory, often filled with 0, sometimes not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 /* #### Chuck, do we still need this crap? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 if (!NILP (ret_obj1) && !(GLYPHP (ret_obj1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 || TOOLBAR_BUTTONP (ret_obj1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 abort ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1517 if (!NILP (ret_obj2) && !(EXTENTP (ret_obj2) || CONSP (ret_obj2)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 if (char_x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 *char_x = ret_x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 if (char_y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 *char_y = ret_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 if (obj_x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 *obj_x = ret_obj_x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 if (obj_y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 *obj_y = ret_obj_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 if (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 *w = ret_w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 if (bufp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 *bufp = ret_bufp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 if (closest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 *closest = ret_closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 if (modeline_closest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 *modeline_closest = ret_modeline_closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 if (obj1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 *obj1 = ret_obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 if (obj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 *obj2 = ret_obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1544 DEFUN ("event-over-text-area-p", Fevent_over_text_area_p, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1545 Return t if the mouse event EVENT occurred over the text area of a window.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 The modeline is not considered to be part of the text area.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1547 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1548 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1552 return result == OVER_TEXT || result == OVER_NOTHING ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1555 DEFUN ("event-over-modeline-p", Fevent_over_modeline_p, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1556 Return t if the mouse event EVENT occurred over the modeline of a window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1557 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1558 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1562 return result == OVER_MODELINE ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1565 DEFUN ("event-over-border-p", Fevent_over_border_p, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1566 Return t if the mouse event EVENT occurred over an internal border.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1567 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1568 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1572 return result == OVER_BORDER ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1575 DEFUN ("event-over-toolbar-p", Fevent_over_toolbar_p, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1576 Return t if the mouse event EVENT occurred over a toolbar.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1577 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1578 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1582 return result == OVER_TOOLBAR ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 struct console *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 event_console_or_selected (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 Lisp_Object channel = EVENT_CHANNEL (XEVENT (event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 Lisp_Object console = CDFW_CONSOLE (channel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 if (NILP (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 console = Vselected_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 return XCONSOLE (console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1597 DEFUN ("event-channel", Fevent_channel, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1598 Return the channel that the event EVENT occurred on.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 This will be a frame, device, console, or nil for some types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 of events (e.g. eval events).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1601 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1602 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 return EVENT_CHANNEL (XEVENT (event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1608 DEFUN ("event-window", Fevent_window, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1609 Return the window over which mouse event EVENT occurred.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 This may be nil if the event occurred in the border or over a toolbar.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1611 The modeline is considered to be within the window it describes.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1612 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1613 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 event_pixel_translation (event, 0, 0, 0, 0, &w, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 if (!w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1623 Lisp_Object window;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1624
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1630 DEFUN ("event-point", Fevent_point, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1631 Return the character position of the mouse event EVENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 If the event did not occur over a window, or did not occur over text,
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1633 then this returns nil. Otherwise, it returns a position in the buffer
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 visible in the event's window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1635 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1636 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 Bufpos bufp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 event_pixel_translation (event, 0, 0, 0, 0, &w, &bufp, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1643 return w && bufp ? make_int (bufp) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1646 DEFUN ("event-closest-point", Fevent_closest_point, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1647 Return the character position closest to the mouse event EVENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 If the event did not occur over a window or over text, return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 closest point to the location of the event. If the Y pixel position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 overlaps a window and the X pixel position is to the left of that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 window, the closest point is the beginning of the line containing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 Y position. If the Y pixel position overlaps a window and the X pixel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 position is to the right of that window, the closest point is the end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 of the line containing the Y position. If the Y pixel position is
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1655 above a window, return 0. If it is below the last character in a window,
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1656 return the value of (window-end).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1657 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1658 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 Bufpos bufp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 event_pixel_translation (event, 0, 0, 0, 0, 0, 0, &bufp, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1664 return bufp ? make_int (bufp) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1667 DEFUN ("event-x", Fevent_x, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1668 Return the X position of the mouse event EVENT in characters.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 This is relative to the window the event occurred over.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1670 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1671 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 int char_x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 event_pixel_translation (event, &char_x, 0, 0, 0, 0, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 return make_int (char_x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1680 DEFUN ("event-y", Fevent_y, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1681 Return the Y position of the mouse event EVENT in characters.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 This is relative to the window the event occurred over.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1683 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1684 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 int char_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 event_pixel_translation (event, 0, &char_y, 0, 0, 0, 0, 0, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 return make_int (char_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1693 DEFUN ("event-modeline-position", Fevent_modeline_position, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 Return the character position in the modeline that EVENT occurred over.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 EVENT should be a mouse event. If EVENT did not occur over a modeline,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 nil is returned. You can determine the actual character that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 event occurred over by looking in `generated-modeline-string' at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 returned character position. Note that `generated-modeline-string'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 is buffer-local, and you must use EVENT's buffer when retrieving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 `generated-modeline-string' in order to get accurate results.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1701 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1702 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 Charcount mbufp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, &mbufp, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1708 return mbufp < 0 ? Qnil : make_int (mbufp);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1711 DEFUN ("event-glyph", Fevent_glyph, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1712 Return the glyph that the mouse event EVENT occurred over, or nil.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1713 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1714 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 Lisp_Object glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 event_pixel_translation (event, 0, 0, 0, 0, &w, 0, 0, 0, &glyph, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1721 return w && GLYPHP (glyph) ? glyph : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1724 DEFUN ("event-glyph-extent", Fevent_glyph_extent, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1725 Return the extent of the glyph that the mouse event EVENT occurred over.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 If the event did not occur over a glyph, nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1727 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1728 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 event_pixel_translation (event, 0, 0, 0, 0, &w, 0, 0, 0, 0, &extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1735 return w && EXTENTP (extent) ? extent : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1738 DEFUN ("event-glyph-x-pixel", Fevent_glyph_x_pixel, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 Return the X pixel position of EVENT relative to the glyph it occurred over.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 EVENT should be a mouse event. If the event did not occur over a glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1742 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1743 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 int obj_x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 event_pixel_translation (event, 0, 0, &obj_x, 0, &w, 0, 0, 0, 0, &extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1751 return w && EXTENTP (extent) ? make_int (obj_x) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1754 DEFUN ("event-glyph-y-pixel", Fevent_glyph_y_pixel, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 Return the Y pixel position of EVENT relative to the glyph it occurred over.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 EVENT should be a mouse event. If the event did not occur over a glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1758 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1759 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 int obj_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 event_pixel_translation (event, 0, 0, 0, &obj_y, &w, 0, 0, 0, 0, &extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1767 return w && EXTENTP (extent) ? make_int (obj_y) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1770 DEFUN ("event-toolbar-button", Fevent_toolbar_button, 1, 1, 0, /*
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1771 Return the toolbar button that the mouse event EVENT occurred over.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1772 If the event did not occur over a toolbar button, nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1773 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1774 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 Lisp_Object button;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1779 int result = event_pixel_translation (event, 0, 0, 0, 0, 0, 0, 0, 0, &button, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1781 return result == OVER_TOOLBAR && TOOLBAR_BUTTONP (button) ? button : Qnil;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1782 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1787 DEFUN ("event-process", Fevent_process, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 Return the process of the given process-output event.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1789 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1790 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 CHECK_EVENT_TYPE (event, process_event, Qprocess_event_p);
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1793 return XEVENT (event)->event.process.process;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1796 DEFUN ("event-function", Fevent_function, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 Return the callback function of EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 EVENT should be a timeout, misc-user, or eval event.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1799 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1800 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 switch (XEVENT (event)->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 case timeout_event:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1806 return XEVENT (event)->event.timeout.function;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 case eval_event:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1809 return XEVENT (event)->event.eval.function;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 return wrong_type_argument (intern ("timeout-or-eval-event-p"), event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1815 DEFUN ("event-object", Fevent_object, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 Return the callback function argument of EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 EVENT should be a timeout, misc-user, or eval event.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1818 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1819 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 again:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 switch (XEVENT (event)->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 case timeout_event:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1826 return XEVENT (event)->event.timeout.object;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 case eval_event:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1829 return XEVENT (event)->event.eval.object;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 event = wrong_type_argument (intern ("timeout-or-eval-event-p"), event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 goto again;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1836 DEFUN ("event-properties", Fevent_properties, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 Return a list of all of the properties of EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 This is in the form of a property list (alternating keyword/value pairs).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1839 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1840 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 Lisp_Object props = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 struct Lisp_Event *e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 e = XEVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 GCPRO1 (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 props = Fcons (Qtimestamp, Fcons (Fevent_timestamp (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 switch (e->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 case process_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 props = Fcons (Qprocess, Fcons (e->event.process.process, props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 break;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 163
diff changeset
1857
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 case timeout_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 props = Fcons (Qobject, Fcons (Fevent_object (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 props = Fcons (Qfunction, Fcons (Fevent_function (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 props = Fcons (Qid, Fcons (make_int (e->event.timeout.id_number),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 props = Fcons (Qmodifiers, Fcons (Fevent_modifiers (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 props = Fcons (Qkey, Fcons (Fevent_key (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 props = Fcons (Qy, Fcons (Fevent_y_pixel (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 props = Fcons (Qx, Fcons (Fevent_x_pixel (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 props = Fcons (Qmodifiers, Fcons (Fevent_modifiers (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 props = Fcons (Qbutton, Fcons (Fevent_button (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 props = Fcons (Qmodifiers, Fcons (Fevent_modifiers (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 props = Fcons (Qy, Fcons (Fevent_y_pixel (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 props = Fcons (Qx, Fcons (Fevent_x_pixel (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 case eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 props = Fcons (Qobject, Fcons (Fevent_object (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 props = Fcons (Qfunction, Fcons (Fevent_function (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 case magic_eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 case magic_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1892 break;
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1893
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1894 case empty_event:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 124
diff changeset
1895 RETURN_UNGCPRO (Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 break; /* not reached; warning suppression */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 props = Fcons (Qchannel, Fcons (Fevent_channel (event), props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 return props;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 syms_of_events (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1917 DEFSUBR (Fcharacter_to_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1918 DEFSUBR (Fevent_to_character);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1920 DEFSUBR (Fmake_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1921 DEFSUBR (Fdeallocate_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1922 DEFSUBR (Fcopy_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1923 DEFSUBR (Feventp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1924 DEFSUBR (Fevent_live_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1925 DEFSUBR (Fevent_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1926 DEFSUBR (Fevent_properties);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1928 DEFSUBR (Fevent_timestamp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1929 DEFSUBR (Fevent_key);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1930 DEFSUBR (Fevent_button);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1931 DEFSUBR (Fevent_modifier_bits);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1932 DEFSUBR (Fevent_modifiers);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1933 DEFSUBR (Fevent_x_pixel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1934 DEFSUBR (Fevent_y_pixel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1935 DEFSUBR (Fevent_window_x_pixel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1936 DEFSUBR (Fevent_window_y_pixel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1937 DEFSUBR (Fevent_over_text_area_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1938 DEFSUBR (Fevent_over_modeline_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1939 DEFSUBR (Fevent_over_border_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1940 DEFSUBR (Fevent_over_toolbar_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1941 DEFSUBR (Fevent_channel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1942 DEFSUBR (Fevent_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1943 DEFSUBR (Fevent_point);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1944 DEFSUBR (Fevent_closest_point);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1945 DEFSUBR (Fevent_x);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1946 DEFSUBR (Fevent_y);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1947 DEFSUBR (Fevent_modeline_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1948 DEFSUBR (Fevent_glyph);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1949 DEFSUBR (Fevent_glyph_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1950 DEFSUBR (Fevent_glyph_x_pixel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1951 DEFSUBR (Fevent_glyph_y_pixel);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1952 DEFSUBR (Fevent_toolbar_button);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1953 DEFSUBR (Fevent_process);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1954 DEFSUBR (Fevent_function);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 2
diff changeset
1955 DEFSUBR (Fevent_object);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 defsymbol (&Qeventp, "eventp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 defsymbol (&Qevent_live_p, "event-live-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 defsymbol (&Qkey_press_event_p, "key-press-event-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 defsymbol (&Qbutton_event_p, "button-event-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 defsymbol (&Qmouse_event_p, "mouse-event-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 defsymbol (&Qprocess_event_p, "process-event-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 defsymbol (&Qkey_press, "key-press");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 defsymbol (&Qbutton_press, "button-press");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 defsymbol (&Qbutton_release, "button-release");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 defsymbol (&Qmisc_user, "misc-user");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 defsymbol (&Qascii_character, "ascii-character");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 vars_of_events (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 DEFVAR_LISP ("character-set-property", &Vcharacter_set_property /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 A symbol used to look up the 8-bit character of a keysym.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 To convert a keysym symbol to an 8-bit code, as when that key is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 bound to self-insert-command, we will look up the property that this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 variable names on the property list of the keysym-symbol. The window-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 system-specific code will set up appropriate properties and set this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 Vcharacter_set_property = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 Vevent_resource = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 QKbackspace = KEYSYM ("backspace");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 QKtab = KEYSYM ("tab");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 QKlinefeed = KEYSYM ("linefeed");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 QKreturn = KEYSYM ("return");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 QKescape = KEYSYM ("escape");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 QKspace = KEYSYM ("space");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 QKdelete = KEYSYM ("delete");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 staticpro (&QKbackspace);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 staticpro (&QKtab);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 staticpro (&QKlinefeed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 staticpro (&QKreturn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 staticpro (&QKescape);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 staticpro (&QKspace);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 staticpro (&QKdelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 }