annotate src/event-Xt.c @ 14:9ee227acff29 r19-15b90

Import from CVS: tag r19-15b90
author cvs
date Mon, 13 Aug 2007 08:48:42 +0200
parents 4b173ad71786
children 0293115a14e9
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 /* The event_stream interface for X11 with Xt, and/or tty frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "lwlib.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "EmacsFrame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "blocktype.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "console-tty.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "process.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #include "sysproc.h" /* for MAXDESC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include "xintrinsicp.h" /* CoreP.h needs this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include <X11/CoreP.h> /* Numerous places access the fields of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 a core widget directly. We could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 use XtVaGetValues(), but ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 static struct event_stream *Xt_event_stream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 /* With the new event model, all events go through XtDispatchEvent()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 and are picked up by an event handler that is added to each frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 widget. (This is how it's supposed to be.) In the old method,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Emacs sucks out events directly from XtNextEvent() and only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 dispatches the events that it doesn't need to deal with. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 old way has lots of corresponding junk that is no longer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 necessary: lwlib extensions, synthetic XAnyEvents, unnecessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 magic events, etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 /* The one and only one application context that Emacs uses. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 XtAppContext Xt_app_con;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 /* Do we accept events sent by other clients? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 int x_allow_sendevents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 int modifier_keys_are_sticky;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 int x_debug_events;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 static int process_events_occurred;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 static int tty_events_occurred;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 /* Mask of bits indicating the descriptors that we wait for input on */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 extern SELECT_TYPE input_wait_mask, process_only_mask, tty_only_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 static CONST String x_fallback_resources[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /* This file is automatically generated from the app-defaults file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 in ../etc/Emacs.ad. These resources are consulted only if no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 app-defaults file is found at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #include "Emacs.ad.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 void emacs_Xt_mapping_action (Widget w, XEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 void debug_process_finalization (struct Lisp_Process *p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Lisp_Object dequeue_Xt_dispatch_event (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 void emacs_Xt_event_handler (Widget wid, XtPointer closure, XEvent *event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Boolean *continue_to_dispatch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 void dispatch_epoch_event (struct frame *f, XEvent *event, Lisp_Object type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 static int last_quit_check_signal_tick_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Lisp_Object Qkey_mapping;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 /* keymap handling */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 /* X bogusly doesn't define the interpretations of any bits besides
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ModControl, ModShift, and ModLock; so the Interclient Communication
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 Conventions Manual says that we have to bend over backwards to figure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 out what the other modifier bits mean. According to ICCCM:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 - Any keycode which is assigned ModControl is a "control" key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 - Any modifier bit which is assigned to a keycode which generates Meta_L
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 or Meta_R is the modifier bit meaning "meta". Likewise for Super, Hyper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 - Any keypress event which contains ModControl in its state should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 interpreted as a "control" character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 - Any keypress event which contains a modifier bit in its state which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 generated by a keycode whose corresponding keysym is Meta_L or Meta_R
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 should be interpreted as a "meta" character. Likewise for Super, Hyper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 - It is illegal for a keysym to be associated with more than one modifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 bit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 This means that the only thing that emacs can reasonably interpret as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 "meta" key is a key whose keysym is Meta_L or Meta_R, and which generates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 one of the modifier bits Mod1-Mod5.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 Unfortunately, many keyboards don't have Meta keys in their default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 configuration. So, if there are no Meta keys, but there are "Alt" keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 emacs will interpret Alt as Meta. If there are both Meta and Alt keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 then the Meta keys mean "Meta", and the Alt keys mean "Alt" (it used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 mean "Symbol," but that just confused the hell out of way too many people).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 This works with the default configurations of the 19 keyboard-types I've
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 checked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 Emacs detects keyboard configurations which violate the above rules, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 prints an error message on the standard-error-output. (Perhaps it should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 use a pop-up-window instead.)
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 x_reset_key_mapping (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 Display *display = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 struct x_device *xd = DEVICE_X_DATA (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 int max_code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 if (xd->x_keysym_map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 XFree ((char *) xd->x_keysym_map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 XDisplayKeycodes (display, &xd->x_keysym_map_min_code,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 &max_code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 xd->x_keysym_map =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 XGetKeyboardMapping (display, xd->x_keysym_map_min_code,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 max_code - xd->x_keysym_map_min_code + 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 &xd->x_keysym_map_keysyms_per_code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 static CONST char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 index_to_name (int indice)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
168 switch (indice)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
169 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
170 case ShiftMapIndex: return "ModShift";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
171 case LockMapIndex: return "ModLock";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
172 case ControlMapIndex: return "ModControl";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
173 case Mod1MapIndex: return "Mod1";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
174 case Mod2MapIndex: return "Mod2";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
175 case Mod3MapIndex: return "Mod3";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
176 case Mod4MapIndex: return "Mod4";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
177 case Mod5MapIndex: return "Mod5";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
178 default: return "???";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
179 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 /* Boy, I really wish C had local functions... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 struct c_doesnt_have_closures /* #### not yet used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 int warned_about_overlapping_modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 int warned_about_predefined_modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 int warned_about_duplicate_modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 int meta_bit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 int hyper_bit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 int super_bit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 int alt_bit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 int mode_bit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 x_reset_modifier_mapping (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 Display *display = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 struct x_device *xd = DEVICE_X_DATA (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 int modifier_index, modifier_key, column, mkpm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 int warned_about_overlapping_modifiers = 0;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
202 int warned_about_predefined_modifiers = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
203 int warned_about_duplicate_modifiers = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
204 int meta_bit = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 int hyper_bit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 int super_bit = 0;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
207 int alt_bit = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
208 int mode_bit = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 xd->lock_interpretation = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 if (xd->x_modifier_keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 XFreeModifiermap (xd->x_modifier_keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 x_reset_key_mapping (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 xd->x_modifier_keymap = XGetModifierMapping (display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* Boy, I really wish C had local functions...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 /* The call to warn_when_safe must be on the same line as the string or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 make-msgfile won't pick it up properly (the newline doesn't confuse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 it, but the backslash does). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 #define modwarn(name,old,other) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates %s, which is generated by %s.", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 name, code, index_to_name (old), other), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 warned_about_overlapping_modifiers = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #define modbarf(name,other) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates %s, which is nonsensical.", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 name, code, other), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 warned_about_predefined_modifiers = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 #define check_modifier(name,mask) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 if ((1<<modifier_index) != mask) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates %s, which is nonsensical.", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 name, code, index_to_name (modifier_index)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 warned_about_predefined_modifiers = 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #define store_modifier(name,old) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 if (old && old != modifier_index) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 warn_when_safe (Qkey_mapping, Qwarning, "XEmacs: %s (0x%x) generates both %s and %s, which is nonsensical.",\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 name, code, index_to_name (old), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 index_to_name (modifier_index)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 warned_about_duplicate_modifiers = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 if (modifier_index == ShiftMapIndex) modbarf (name,"ModShift"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 else if (modifier_index == LockMapIndex) modbarf (name,"ModLock"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 else if (modifier_index == ControlMapIndex) modbarf (name,"ModControl"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 else if (sym == XK_Mode_switch) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 mode_bit = modifier_index; /* Mode_switch is special, see below... */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 else if (modifier_index == meta_bit && old != meta_bit) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 modwarn (name, meta_bit, "Meta"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 else if (modifier_index == super_bit && old != super_bit) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 modwarn (name, super_bit, "Super"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 else if (modifier_index == hyper_bit && old != hyper_bit) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 modwarn (name, hyper_bit, "Hyper"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 else if (modifier_index == alt_bit && old != alt_bit) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 modwarn (name, alt_bit, "Alt"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 old = modifier_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 mkpm = xd->x_modifier_keymap->max_keypermod;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 for (modifier_index = 0; modifier_index < 8; modifier_index++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 for (modifier_key = 0; modifier_key < mkpm; modifier_key++) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 KeySym last_sym = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 for (column = 0; column < 4; column += 2) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 KeyCode code = xd->x_modifier_keymap->modifiermap[modifier_index * mkpm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 + modifier_key];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 KeySym sym = (code ? XKeycodeToKeysym (display, code, column) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 if (sym == last_sym) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 last_sym = sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 switch (sym) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 case XK_Mode_switch:store_modifier ("Mode_switch", mode_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 case XK_Meta_L: store_modifier ("Meta_L", meta_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 case XK_Meta_R: store_modifier ("Meta_R", meta_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 case XK_Super_L: store_modifier ("Super_L", super_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 case XK_Super_R: store_modifier ("Super_R", super_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 case XK_Hyper_L: store_modifier ("Hyper_L", hyper_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 case XK_Hyper_R: store_modifier ("Hyper_R", hyper_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 case XK_Alt_L: store_modifier ("Alt_L", alt_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 case XK_Alt_R: store_modifier ("Alt_R", alt_bit); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 case XK_Control_L: check_modifier ("Control_L", ControlMask); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 case XK_Control_R: check_modifier ("Control_R", ControlMask); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 case XK_Shift_L: check_modifier ("Shift_L", ShiftMask); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 case XK_Shift_R: check_modifier ("Shift_R", ShiftMask); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 case XK_Shift_Lock: check_modifier ("Shift_Lock", LockMask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 xd->lock_interpretation = XK_Shift_Lock; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 case XK_Caps_Lock: check_modifier ("Caps_Lock", LockMask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 xd->lock_interpretation = XK_Caps_Lock; break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 /* It probably doesn't make any sense for a modifier bit to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 assigned to a key that is not one of the above, but OpenWindows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 assigns modifier bits to a couple of random function keys for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 no reason that I can discern, so printing a warning here would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 be annoying.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 #undef store_modifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #undef check_modifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #undef modwarn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #undef modbarf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 /* If there was no Meta key, then try using the Alt key instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 If there is both a Meta key and an Alt key, then the Alt key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 is not disturbed and remains an Alt key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 if (! meta_bit && alt_bit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 meta_bit = alt_bit, alt_bit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 /* mode_bit overrides everything, since it's processed down inside of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 XLookupString() instead of by us. If Meta and Mode_switch both
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 generate the same modifier bit (which is an error), then we don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 interpret that bit as Meta, because we can't make XLookupString()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 not interpret it as Mode_switch; and interpreting it as both would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 be totally wrong.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 if (mode_bit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 CONST char *warn = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 if (mode_bit == meta_bit) warn = "Meta", meta_bit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 else if (mode_bit == hyper_bit) warn = "Hyper", hyper_bit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 else if (mode_bit == super_bit) warn = "Super", super_bit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 else if (mode_bit == alt_bit) warn = "Alt", alt_bit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 if (warn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 warn_when_safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (Qkey_mapping, Qwarning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 "XEmacs: %s is being used for both Mode_switch and %s.",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 index_to_name (mode_bit), warn),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 warned_about_overlapping_modifiers = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 #undef index_to_name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 xd->MetaMask = (meta_bit ? (1 << meta_bit) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 xd->HyperMask = (hyper_bit ? (1 << hyper_bit) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 xd->SuperMask = (super_bit ? (1 << super_bit) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 xd->AltMask = (alt_bit ? (1 << alt_bit) : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 xd->ModeMask = (mode_bit ? (1 << mode_bit) : 0); /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 if (warned_about_overlapping_modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 warn_when_safe (Qkey_mapping, Qwarning, "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 " Two distinct modifier keys (such as Meta and Hyper) cannot generate\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 " the same modifier bit, because Emacs won't be able to tell which\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 " modifier was actually held down when some other key is pressed. It\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 " won't be able to tell Meta-x and Hyper-x apart, for example. Change\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 " one of these keys to use some other modifier bit. If you intend for\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 " these keys to have the same behavior, then change them to have the\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 " same keysym as well as the same modifier bit.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 if (warned_about_predefined_modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 warn_when_safe (Qkey_mapping, Qwarning, "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 " The semantics of the modifier bits ModShift, ModLock, and ModControl\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 " are predefined. It does not make sense to assign ModControl to any\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 " keysym other than Control_L or Control_R, or to assign any modifier\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 " bits to the \"control\" keysyms other than ModControl. You can't\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 " turn a \"control\" key into a \"meta\" key (or vice versa) by simply\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 " assigning the key a different modifier bit. You must also make that\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 " key generate an appropriate keysym (Control_L, Meta_L, etc).");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 /* Don\'t need to say anything more for warned_about_duplicate_modifiers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 if (warned_about_overlapping_modifiers || warned_about_predefined_modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 warn_when_safe (Qkey_mapping, Qwarning, "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 " The meanings of the modifier bits Mod1 through Mod5 are determined\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 " by the keysyms used to control those bits. Mod1 does NOT always\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 " mean Meta, although some non-ICCCM-compliant programs assume that.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 x_init_modifier_mapping (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 DEVICE_X_DATA (d)->x_keysym_map = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 DEVICE_X_DATA (d)->x_modifier_keymap = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 x_reset_modifier_mapping (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 x_key_is_modifier_p (KeyCode keycode, struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 struct x_device *xd = DEVICE_X_DATA (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 KeySym *syms = &xd->x_keysym_map [(keycode - xd->x_keysym_map_min_code) *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 xd->x_keysym_map_keysyms_per_code];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 for (i = 0; i < xd->x_keysym_map_keysyms_per_code; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 if (IsModifierKey (syms [i]) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 syms [i] == XK_Mode_switch) /* why doesn't IsModifierKey count this? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 /* key-handling code is always ugly. It just ends up working out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 that way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 Here are some pointers:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 -- DOWN_MASK indicates which modifiers should be treated as "down"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 when the corresponding upstroke happens. It gets reset for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 a particular modifier when that modifier goes up, and reset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 for all modifiers when a non-modifier key is pressed. Example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 I press Control-A-Shift and then release Control-A-Shift.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 I want the Shift key to be sticky but not the Control key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 -- LAST_DOWNKEY and RELEASE_TIME are used to keep track of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 auto-repeat -- see below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 -- If a modifier key is sticky, I can unstick it by pressing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 the modifier key again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 x_handle_sticky_modifiers (XEvent *ev, struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
419 struct x_device *xd;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
420 KeyCode keycode;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
421 int type;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
422
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
423 if (!modifier_keys_are_sticky) /* Optimize for non-sticky modifiers */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
426 xd = DEVICE_X_DATA (d);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
427 keycode = ev->xkey.keycode;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
428 type = ev->type;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
429
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
430 if (! ((type == KeyPress || type == KeyRelease) &&
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
431 x_key_is_modifier_p (keycode, d)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
432 { /* Not a modifier key */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
433 Bool key_event_p = (type == KeyPress || type == KeyRelease);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
434
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 if (type == KeyPress && !xd->last_downkey)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 xd->last_downkey = keycode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 else if (type == ButtonPress ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (type == KeyPress && xd->last_downkey &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (keycode != xd->last_downkey ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 ev->xkey.time != xd->release_time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 xd->need_to_add_mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 xd->last_downkey = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 if (type == KeyPress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 xd->release_time = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 if (type == KeyPress || type == ButtonPress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 xd->down_mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
450 if (key_event_p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
451 ev->xkey.state |= xd->need_to_add_mask;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
452 else
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
453 ev->xbutton.state |= xd->need_to_add_mask;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 if (type == KeyRelease && keycode == xd->last_downkey)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 /* If I hold press-and-release the Control key and then press
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 and hold down the right arrow, I want it to auto-repeat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 Control-Right. On the other hand, if I do the same but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 manually press the Right arrow a bunch of times, I want
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 to see one Control-Right and then a bunch of Rights.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 This means that we need to distinguish between an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 auto-repeated key and a key pressed and released a bunch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 of times.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 Naturally, the designers of the X spec didn't see fit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 to provide an obvious way to distinguish these cases.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 So we assume that if the release and the next press
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 occur at the same time, the key was actually auto-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 repeated. Under Open-Windows, at least, this works.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
471 xd->release_time = key_event_p ? ev->xkey.time : ev->xbutton.time;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
473 else /* Modifier key pressed */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
475 int i;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 KeySym *syms = &xd->x_keysym_map [(keycode - xd->x_keysym_map_min_code) *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 xd->x_keysym_map_keysyms_per_code];
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
478
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
479 /* If a non-modifier key was pressed in the middle of a bunch
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
480 of modifiers, then it unsticks all the modifiers that were
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
481 previously pressed. We cannot unstick the modifiers until
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
482 now because we want to check for auto-repeat of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
483 non-modifier key. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
484
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
485 if (xd->last_downkey)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
486 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
487 xd->last_downkey = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
488 xd->need_to_add_mask = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
489 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 #define FROB(mask) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 if (type == KeyPress) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 /* If modifier key is already sticky, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 then unstick it. Note that we do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 not test down_mask to deal with the \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 unlikely but possible case that the \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 modifier key auto-repeats. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 if (xd->need_to_add_mask & mask) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 xd->need_to_add_mask &= ~mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 xd->down_mask &= ~mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 xd->down_mask |= mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 if (xd->down_mask & mask) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 xd->down_mask &= ~mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 xd->need_to_add_mask |= mask; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 for (i = 0; i < xd->x_keysym_map_keysyms_per_code; i++)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
519 switch (syms[i])
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
520 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
521 case XK_Control_L: case XK_Control_R: FROB (ControlMask); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
522 case XK_Shift_L: case XK_Shift_R: FROB (ShiftMask); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
523 case XK_Meta_L: case XK_Meta_R: FROB (xd->MetaMask); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
524 case XK_Super_L: case XK_Super_R: FROB (xd->SuperMask); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
525 case XK_Hyper_L: case XK_Hyper_R: FROB (xd->HyperMask); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
526 case XK_Alt_L: case XK_Alt_R: FROB (xd->AltMask); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
527 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 #undef FROB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 clear_sticky_modifiers (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 struct x_device *xd = DEVICE_X_DATA (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 xd->need_to_add_mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 xd->last_downkey = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 xd->release_time = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 xd->down_mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 keysym_obeys_caps_lock_p (KeySym sym, struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 struct x_device *xd = DEVICE_X_DATA (d);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
547 /* Eeeeevil hack. Don't apply Caps_Lock to things that aren't alphabetic
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 characters, where "alphabetic" means something more than simply A-Z.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
549 That is, if Caps_Lock is down, typing ESC doesn't produce Shift-ESC.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 But if shift-lock is down, then it does.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 if (xd->lock_interpretation == XK_Shift_Lock)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 return 1;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
554
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
555 return
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
556 ((sym >= XK_A) && (sym <= XK_Z)) ||
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
557 ((sym >= XK_a) && (sym <= XK_z)) ||
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
558 ((sym >= XK_Agrave) && (sym <= XK_Odiaeresis)) ||
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
559 ((sym >= XK_agrave) && (sym <= XK_odiaeresis)) ||
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
560 ((sym >= XK_Ooblique) && (sym <= XK_Thorn)) ||
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
561 ((sym >= XK_oslash) && (sym <= XK_thorn));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 /* called from EmacsFrame.c (actually from Xt itself) when a
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
565 MappingNotify event is received. In its infinite wisdom, Xt
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
566 decided that Xt event handlers never get MappingNotify events.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
567 O'Reilly Xt Programming Manual 9.1.2 says:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
568
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
569 MappingNotify is automatically handled by Xt, so it isn't passed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
570 to event handlers and you don't need to worry about it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
571
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
572 Of course, we DO worry about it, so we need a special translation. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 emacs_Xt_mapping_action (Widget w, XEvent* event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 struct device *d = get_device_from_display (event->xany.display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 /* nyet. Now this is handled by Xt. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 XRefreshKeyboardMapping (&event->xmapping);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 /* xmodmap generates about a billion MappingKeyboard events, followed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 by a single MappingModifier event, so it might be worthwhile to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 take extra MappingKeyboard events out of the queue before requesting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 the current keymap from the server.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
586 switch (event->xmapping.request)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
587 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
588 case MappingKeyboard: x_reset_key_mapping (d); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
589 case MappingModifier: x_reset_modifier_mapping (d); break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
590 case MappingPointer: /* Do something here? */ break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
591 default: abort();
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
592 }
0
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 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 /* X to Emacs event conversion */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 #if (defined(sun) || defined(__sun)) && defined(__GNUC__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 # define SUNOS_GCC_L0_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 #ifdef SUNOS_GCC_L0_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 x_to_emacs_keysym_sunos_bug (Lisp_Object *return_value_sunos_bug, /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 XEvent *event, int simple_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 #else /* !SUNOS_GCC_L0_BUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 x_to_emacs_keysym (XEvent *event, int simple_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 #endif /* !SUNOS_GCC_L0_BUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 /* simple_p means don't try too hard (ASCII only) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 KeySym keysym = 0;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
616 /* struct device *d = get_device_from_display (event->xany.display); */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 /* Apparently it's necessary to specify a dummy here (rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 passing in 0) to avoid crashes on German IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 char dummy[256];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 #ifdef SUNOS_GCC_L0_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 # define return(lose) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 do {*return_value_sunos_bug = (lose); goto return_it; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 /* ### FIX this by replacing with calls to XmbLookupString.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 XLookupString should never be called. --mrb */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 XLookupString (&event->xkey, dummy, 200, &keysym, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 /* &DEVICE_X_X_COMPOSE_STATUS (d)); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 if (keysym >= XK_exclam && keysym <= XK_asciitilde)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 /* We must assume that the X keysym numbers for the ASCII graphic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 characters are the same as their ASCII codes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 return (make_char (keysym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 switch (keysym)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 /* These would be handled correctly by the default case, but by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 special-casing them here we don't garbage a string or call intern().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 case XK_BackSpace: return (QKbackspace);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 case XK_Tab: return (QKtab);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 case XK_Linefeed: return (QKlinefeed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 case XK_Return: return (QKreturn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 case XK_Escape: return (QKescape);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 case XK_space: return (QKspace);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 case XK_Delete: return (QKdelete);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 case 0: return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 /* This kludge prevents bogus Xlib compose conversions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 Don't ask why. The following case must be removed when we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 switch to using XmbLookupString */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 case XK_Multi_key: XLookupString (&event->xkey, dummy, 200, &keysym, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 /* Fallthrough!! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 if (simple_p) return (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 /* #### without return_value_sunos_bug, %l0 (GCC struct return pointer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 * #### gets roached (top 8 bits cleared) around this call.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 /* !!#### not Mule-ized */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 name = XKeysymToString (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 if (!name || !name[0]) /* this shouldn't happen... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 char buf [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 sprintf (buf, "unknown_keysym_0x%X", (int) keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 return (KEYSYM (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 /* If it's got a one-character name, that's good enough. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 if (!name[1]) return (make_char (name[0]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 /* If it's in the "Keyboard" character set, downcase it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 The case of those keysyms is too totally random for us to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 force anyone to remember them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 The case of the other character sets is significant, however.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 if ((((unsigned int) keysym) & (~0xFF)) == ((unsigned int) 0xFF00))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 char buf [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 char *s1, *s2;
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
680 for (s1 = name, s2 = buf; *s1; s1++, s2++) {
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
681 if (*s1 == '_') {
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
682 *s2 = '-';
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
683 } else {
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
684 *s2 = tolower (* (unsigned char *) s1);
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
685 }
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
686 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 *s2 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 return (KEYSYM (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 return (KEYSYM (name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 #ifdef SUNOS_GCC_L0_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 # undef return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 return_it:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 #ifdef SUNOS_GCC_L0_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 x_to_emacs_keysym (XEvent *event, int simple_p)
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 return_value_sunos_bug;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 x_to_emacs_keysym_sunos_bug (&return_value_sunos_bug, event, simple_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 return (return_value_sunos_bug);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 set_last_server_timestamp (struct device *d, XEvent *x_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
713 Time t;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
714 switch (x_event->type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 case KeyPress:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
717 case KeyRelease: t = x_event->xkey.time; break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 case ButtonPress:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
719 case ButtonRelease: t = x_event->xbutton.time; break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 case EnterNotify:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
721 case LeaveNotify: t = x_event->xcrossing.time; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
722 case MotionNotify: t = x_event->xmotion.time; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
723 case PropertyNotify: t = x_event->xproperty.time; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
724 case SelectionClear: t = x_event->xselectionclear.time; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
725 case SelectionRequest: t = x_event->xselectionrequest.time; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
726 case SelectionNotify: t = x_event->xselection.time; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
727 default: return;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
729 DEVICE_X_LAST_SERVER_TIMESTAMP (d) = t;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 x_event_to_emacs_event (XEvent *x_event, struct Lisp_Event *emacs_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
735 Display *display = x_event->xany.display;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
736 struct device *d = get_device_from_display (display);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 struct x_device *xd = DEVICE_X_DATA (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 set_last_server_timestamp (d, x_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
741 switch (x_event->type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 case KeyRelease:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 x_handle_sticky_modifiers (x_event, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 case KeyPress:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 case ButtonPress:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 case ButtonRelease:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
751 unsigned int modifiers = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
752 int shift_p;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
753 int lock_p;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
754 Bool key_event_p = (x_event->type == KeyPress);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
755 unsigned int *state =
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
756 key_event_p ? &x_event->xkey.state : &x_event->xbutton.state;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
758 /* If this is a synthetic KeyPress or Button event, and the user
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
759 has expressed a disinterest in this security hole, then drop
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
760 it on the floor. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
761 if ((key_event_p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
762 ? x_event->xkey.send_event
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
763 : x_event->xbutton.send_event)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
764 #ifdef EXTERNAL_WIDGET
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
765 /* ben: events get sent to an ExternalShell using XSendEvent.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
766 This is not a perfect solution. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
767 && !FRAME_X_EXTERNAL_WINDOW_P (
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
768 x_any_window_to_frame (d, x_event->xany.window))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
769 #endif
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
770 && !x_allow_sendevents)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
771 return 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
772
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
773 DEVICE_X_MOUSE_TIMESTAMP (d) =
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
774 DEVICE_X_GLOBAL_MOUSE_TIMESTAMP (d) =
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
775 key_event_p ? x_event->xkey.time : x_event->xbutton.time;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
776
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
777 x_handle_sticky_modifiers (x_event, d);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
778
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
779 if (*state & ControlMask) modifiers |= MOD_CONTROL;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
780 if (*state & xd->MetaMask) modifiers |= MOD_META;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
781 if (*state & xd->SuperMask) modifiers |= MOD_SUPER;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
782 if (*state & xd->HyperMask) modifiers |= MOD_HYPER;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
783 if (*state & xd->AltMask) modifiers |= MOD_ALT;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
785 /* Ignore the Caps_Lock key if:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
786 - any other modifiers are down, so that Caps_Lock doesn't
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
787 turn C-x into C-X, which would suck.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
788 - the event was a mouse event. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
789 if (modifiers || ! key_event_p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
790 *state &= (~LockMask);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
791
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
792 shift_p = *state & ShiftMask;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
793 lock_p = *state & LockMask;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
794
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
795 if (shift_p || lock_p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
796 modifiers |= MOD_SHIFT;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
798 if (key_event_p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
799 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
800 Lisp_Object keysym;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
801 XKeyEvent *ev = &x_event->xkey;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
802 KeyCode keycode = ev->keycode;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
803
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
805 if (x_key_is_modifier_p (keycode, d)) /* it's a modifier key */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
806 return 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
807
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
808 /* This used to compute the frame from the given X window and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
809 store it here, but we really don't care about the frame. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
810 emacs_event->channel = DEVICE_CONSOLE (d);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
811 keysym = x_to_emacs_keysym (x_event, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
813 /* If the emacs keysym is nil, then that means that the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
814 X keysym was NoSymbol, which probably means that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
815 we're in the midst of reading a Multi_key sequence,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
816 or a "dead" key prefix. Ignore it. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
817 if (NILP (keysym))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
818 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
820 /* More Caps_Lock garbage: Caps_Lock should *only* add the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
821 shift modifier to two-case keys (that is, A-Z and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
822 related characters). So at this point (after looking up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
823 the keysym) if the keysym isn't a dual-case alphabetic,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
824 and if the caps lock key was down but the shift key
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
825 wasn't, then turn off the shift modifier. Gag barf */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
826 /* #### type lossage: assuming equivalence of emacs and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
827 X keysyms */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
828 /* !!#### maybe fix for Mule */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
829 if (lock_p && !shift_p &&
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
830 ! (CHAR_OR_CHAR_INTP (keysym)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
831 && keysym_obeys_caps_lock_p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
832 ((KeySym) XCHAR_OR_CHAR_INT (keysym), d)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
833 modifiers &= (~MOD_SHIFT);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
835 /* If this key contains two distinct keysyms, that is,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
836 "shift" generates a different keysym than the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
837 non-shifted key, then don't apply the shift modifier
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
838 bit: it's implicit. Otherwise, if there would be no
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
839 other way to tell the difference between the shifted
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
840 and unshifted version of this key, apply the shift bit.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
841 Non-graphics, like Backspace and F1 get the shift bit
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
842 in the modifiers slot. Neither the characters "a",
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
843 "A", "2", nor "@" normally have the shift bit set.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
844 However, "F1" normally does. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
845 if (modifiers & MOD_SHIFT)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
846 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
847 int Mode_switch_p = *state & xd->ModeMask;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
848 KeySym bot = XLookupKeysym (ev, Mode_switch_p ? 2 : 0);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
849 KeySym top = XLookupKeysym (ev, Mode_switch_p ? 3 : 1);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
850 if (top && bot && top != bot)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
851 modifiers &= ~MOD_SHIFT;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
852 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
853 emacs_event->event_type = key_press_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
854 emacs_event->timestamp = ev->time;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
855 emacs_event->event.key.modifiers = modifiers;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
856 emacs_event->event.key.keysym = keysym;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
857 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
858 else /* Mouse press/release event */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
859 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
860 XButtonEvent *ev = &x_event->xbutton;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
861 struct frame *frame = x_window_to_frame (d, ev->window);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
862 if (! frame)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
863 return 0; /* not for us */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
864 XSETFRAME (emacs_event->channel, frame);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
865
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
866 emacs_event->event_type = (x_event->type == ButtonPress) ?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
867 button_press_event : button_release_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
868
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
869 emacs_event->event.button.modifiers = modifiers;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
870 emacs_event->timestamp = ev->time;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
871 emacs_event->event.button.button = ev->button;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
872 emacs_event->event.button.x = ev->x;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
873 emacs_event->event.button.y = ev->y;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
874 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
876 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 case MotionNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
880 XMotionEvent *ev = &x_event->xmotion;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
881 struct frame *frame = x_window_to_frame (d, ev->window);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
882 unsigned int modifiers = 0;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
883 XMotionEvent event2;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
885 if (! frame)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
886 return 0; /* not for us */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
888 /* We use MotionHintMask, so we will get only one motion event
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
889 until the next time we call XQueryPointer or the user
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
890 clicks the mouse. So call XQueryPointer now (meaning that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
891 the event will be in sync with the server just before
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
892 Fnext_event() returns). If the mouse is still in motion,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
893 then the server will immediately generate exactly one more
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
894 motion event, which will be on the queue waiting for us
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
895 next time around. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
896 event2 = *ev;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
897 if (XQueryPointer (event2.display, event2.window,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
898 &event2.root, &event2.subwindow,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
899 &event2.x_root, &event2.y_root,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
900 &event2.x, &event2.y,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
901 &event2.state))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
902 ev = &event2; /* only one structure copy */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
904 DEVICE_X_MOUSE_TIMESTAMP (d) = ev->time;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
905
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
906 XSETFRAME (emacs_event->channel, frame);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
907 emacs_event->event_type = pointer_motion_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
908 emacs_event->timestamp = ev->time;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
909 emacs_event->event.motion.x = ev->x;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
910 emacs_event->event.motion.y = ev->y;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
911 if (ev->state & ShiftMask) modifiers |= MOD_SHIFT;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
912 if (ev->state & ControlMask) modifiers |= MOD_CONTROL;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
913 if (ev->state & xd->MetaMask) modifiers |= MOD_META;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
914 if (ev->state & xd->SuperMask) modifiers |= MOD_SUPER;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
915 if (ev->state & xd->HyperMask) modifiers |= MOD_HYPER;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
916 if (ev->state & xd->AltMask) modifiers |= MOD_ALT;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
917 /* Currently ignores Shift_Lock but probably shouldn't
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
918 (but it definitely should ignore Caps_Lock). */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
919 emacs_event->event.motion.modifiers = modifiers;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
921 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 case ClientMessage:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
924 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
925 /* Patch bogus TAKE_FOCUS messages from MWM; CurrentTime is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
926 passed as the timestamp of the TAKE_FOCUS, which the ICCCM
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
927 explicitly prohibits. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
928 XClientMessageEvent *ev = &x_event->xclient;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
929 if (ev->message_type == DEVICE_XATOM_WM_PROTOCOLS (d)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
930 && ev->data.l[0] == DEVICE_XATOM_WM_TAKE_FOCUS (d)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
931 && ev->data.l[1] == 0)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
932 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
933 ev->data.l[1] = DEVICE_X_LAST_SERVER_TIMESTAMP (d);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
934 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
935 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
936 /* fall through */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 default: /* it's a magic event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
940 struct frame *frame;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
941 Window w;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
942
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
943 switch (x_event->type)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
944 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
945 /* Note: the number of cases could be reduced to two or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
946 three by using xany.window, but it's perhaps clearer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
947 and potentially more robust this way */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
948 case SelectionRequest: w = x_event->xselectionrequest.owner; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
949 case SelectionClear: w = x_event->xselectionclear.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
950 case SelectionNotify: w = x_event->xselection.requestor; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
951 case PropertyNotify: w = x_event->xproperty.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
952 case ClientMessage: w = x_event->xclient.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
953 case ConfigureNotify: w = x_event->xconfigure.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
954 case Expose:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
955 case GraphicsExpose: w = x_event->xexpose.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
956 case MapNotify:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
957 case UnmapNotify: w = x_event->xmap.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
958 case EnterNotify:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
959 case LeaveNotify: w = x_event->xcrossing.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
960 case FocusIn:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
961 case FocusOut: w = x_event->xfocus.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
962 case VisibilityNotify: w = x_event->xvisibility.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
963 default: w = x_event->xany.window; break;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
964 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
965 frame = x_any_window_to_frame (d, w);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
966
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
967 if (!frame)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
968 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
970 emacs_event->event_type = magic_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
971 XSETFRAME (emacs_event->channel, frame);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
972 emacs_event->event.magic.underlying_x_event = *x_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
973 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 /* magic-event handling */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 handle_focus_event_1 (struct frame *f, int in_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 /* On focus change, clear all memory of sticky modifiers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 to avoid non-intuitive behavior. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 clear_sticky_modifiers (XDEVICE (FRAME_DEVICE (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 /* We don't want to handle the focus change now, because we might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 be in an accept-process-output, sleep-for, or sit-for. So
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 we enqueue it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 Actually, we half handle it: we handle it as far as changing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 box cursor for redisplay, but we don't call any hooks or do any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 select-frame stuff until after the sit-for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 Lisp_Object frm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 Lisp_Object conser;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 XSETFRAME (frm, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 conser = Fcons (frm, Fcons (FRAME_DEVICE (f), in_p ? Qt : Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 GCPRO1 (conser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 emacs_handle_focus_change_preliminary (conser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 enqueue_magic_eval_event (emacs_handle_focus_change_final,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 conser);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 /* This is called from the external-widget code */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 void emacs_Xt_handle_focus_event (XEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 emacs_Xt_handle_focus_event (XEvent *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 * It's curious that we're using x_any_window_to_frame() instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 * of x_window_to_frame(). I don't know what the impact of this is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 struct frame *f =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 x_any_window_to_frame (get_device_from_display (event->xany.display),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 event->xfocus.window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 if (!f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 /* focus events are sometimes generated just before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 a frame is destroyed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 return;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1032 handle_focus_event_1 (f, event->type == FocusIn);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 handle_map_event (struct frame *f, XEvent *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 Lisp_Object frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 XSETFRAME (frame, f);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1041 if (event->type == MapNotify)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 XWindowAttributes xwa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 /* Bleagh!!!!!! Apparently some window managers (e.g. MWM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 send synthetic MapNotify events when a window is first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 created, EVENT IF IT'S CREATED ICONIFIED OR INVISIBLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 Or something like that. We initially tried a different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 solution below, but that ran into a different window-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 manager bug.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 It seems that the only reliable way is to treat a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 MapNotify event as a "hint" that the window might or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 might not be visible, and check explicitly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 XGetWindowAttributes (event->xany.display, event->xmap.window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 &xwa);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 if (xwa.map_state != IsViewable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 /* Calling Fframe_iconified_p is the only way we have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 correctly update FRAME_ICONIFIED_P */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 Fframe_iconified_p (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 FRAME_X_TOTALLY_VISIBLE_P (f) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 /* Bleagh again!!!! We initially tried the following hack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 around the MWM problem, but it turns out that TWM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 has a race condition when you un-iconify, where it maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 the window and then tells the server that the window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 is un-iconified. Usually, XEmacs wakes up between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 those two occurrences, and thus thinks that un-iconified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 windows are still iconified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 Ah, the joys of X. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 /* By Emacs definition, a frame that is iconified is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 visible. Marking a frame as visible will automatically cause
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 frame-iconified-p to return nil, regardless of whether the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 frame is actually iconified. Therefore, we have to ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 MapNotify events on iconified frames. (It's not obvious
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 to me why these are being sent, but it happens at startup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 with frames that are initially iconified; perhaps they are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 synthetic MapNotify events coming from the window manager.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 Note that `frame-iconified-p' queries the server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 to determine whether the frame is currently iconified,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 rather than consulting some internal (and likely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 inaccurate) state flag. Therefore, ignoring the MapNotify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 is correct. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 if (!f->visible && NILP (Fframe_iconified_p (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 if (!f->visible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 f->visible = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 /* This improves the double flicker when uniconifying a frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 some. A lot of it is not showing a buffer which has changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 while the frame was iconified. To fix it further requires
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 the good 'ol double redisplay structure. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 va_run_hook_with_args (Qmap_frame_hook, 1, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 dispatch_epoch_event (f, event, Qx_map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 FRAME_X_TOTALLY_VISIBLE_P (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 if (f->visible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 f->visible = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 va_run_hook_with_args (Qunmap_frame_hook, 1, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 dispatch_epoch_event (f, event, Qx_unmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 /* Calling Fframe_iconified_p is the only way we have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 correctly update FRAME_ICONIFIED_P */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 Fframe_iconified_p (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 handle_client_message (struct frame *f, XEvent *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 struct device *d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 Lisp_Object frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 if (event->xclient.message_type == DEVICE_XATOM_WM_PROTOCOLS (d) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 event->xclient.data.l[0] == DEVICE_XATOM_WM_DELETE_WINDOW (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 /* WM_DELETE_WINDOW is a misc-user event, but other ClientMessages,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 such as WM_TAKE_FOCUS, are eval events. That's because delete-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 was probably executed with a mouse click, while the others could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 have been sent as a result of mouse motion or some other implicit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 action. (Call this a "heuristic"...) The reason for caring about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 this is so that clicking on the close-box will make emacs prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 using a dialog box instead of the minibuffer if there are unsaved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 enqueue_misc_user_event (frame, Qeval,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 list3 (Qdelete_frame, frame, Qt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 else if (event->xclient.message_type == DEVICE_XATOM_WM_PROTOCOLS (d) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 event->xclient.data.l[0] == DEVICE_XATOM_WM_TAKE_FOCUS (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 handle_focus_event_1 (f, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 /* If there is a dialog box up, focus on it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 #### Actually, we're raising it too, which is wrong. We should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 #### just focus on it, but lwlib doesn't currently give us an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 #### easy way to do that. This should be fixed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 unsigned long take_focus_timestamp = event->xclient.data.l[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 Widget widget = lw_raise_all_pop_up_widgets ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 if (widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 /* kludge: raise_all returns bottommost widget, but we really
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 want the topmost. So just raise it for now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 XMapRaised (XtDisplay (widget), XtWindow (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 /* Grab the focus with the timestamp of the TAKE_FOCUS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 XSetInputFocus (XtDisplay (widget), XtWindow (widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 RevertToParent, take_focus_timestamp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 dispatch_epoch_event (f, event, Qx_client_message);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 emacs_Xt_handle_magic_event (struct Lisp_Event *emacs_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 XEvent *event = (XEvent *) &emacs_event->event.magic.underlying_x_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 struct frame *f = XFRAME (EVENT_CHANNEL (emacs_event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 if (!FRAME_LIVE_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 switch (event->type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 case SelectionRequest:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 x_handle_selection_request (&event->xselectionrequest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 case SelectionClear:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 x_handle_selection_clear (&event->xselectionclear);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 case SelectionNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 x_handle_selection_notify (&event->xselection);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 case PropertyNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 x_handle_property_notify (&event->xproperty);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 dispatch_epoch_event (f, event, Qx_property_change);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 case Expose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 x_redraw_exposed_area (f, event->xexpose.x, event->xexpose.y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 event->xexpose.width, event->xexpose.height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 case GraphicsExpose: /* This occurs when an XCopyArea's source area was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 obscured or not available. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 x_redraw_exposed_area (f, event->xexpose.x, event->xexpose.y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 event->xexpose.width, event->xexpose.height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 case MapNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 case UnmapNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 handle_map_event (f, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 case EnterNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 if (event->xcrossing.detail != NotifyInferior)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 /* FRAME_X_MOUSE_P (f) = 1; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 va_run_hook_with_args (Qmouse_enter_frame_hook, 1, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 case LeaveNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 if (event->xcrossing.detail != NotifyInferior)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 /* FRAME_X_MOUSE_P (f) = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 va_run_hook_with_args (Qmouse_leave_frame_hook, 1, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 case FocusIn:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 case FocusOut:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 /* External widget lossage: Ben said:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 YUCK. The only way to make focus changes work properly is to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 completely ignore all FocusIn/FocusOut events and depend only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 on notifications from the ExternalClient widget. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 if (FRAME_X_EXTERNAL_WINDOW_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 #endif
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1256 handle_focus_event_1 (f, event->type == FocusIn);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 case ClientMessage:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 handle_client_message (f, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 case VisibilityNotify: /* window visiblity has changed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 if (event->xvisibility.state == VisibilityUnobscured)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 FRAME_X_TOTALLY_VISIBLE_P (f) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 FRAME_X_TOTALLY_VISIBLE_P (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 case ConfigureNotify:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1271 #ifdef HAVE_XIM
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1272 XIC_SetGeometry (f);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1273 #endif
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1274 /* ### If the following code fails to work, simply always call
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1275 x_smash_bastardly_shell_position always. In this case we no
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1276 longer rely on the data in the events, merely on their
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1277 occurrence. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1278 /* ### Well, actually we shouldn't have to ever call
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1279 x_smash_bastardly_shell_position. We should just call
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1280 XtTranslateCoordinates and only access the core.{x,y} fields
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1281 using XtGetValue -- mrb */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1282 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1283 XConfigureEvent *ev = &event->xconfigure;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1284 if (ev->window == XtWindow (FRAME_X_SHELL_WIDGET (f)) &&
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1285 ! (ev->x == 0 && ev->y == 0 && !ev->send_event))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1286 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1287 FRAME_X_SHELL_WIDGET (f)->core.x = ev->x;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1288 FRAME_X_SHELL_WIDGET (f)->core.y = ev->y;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1289 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1290 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 /* timeout events */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 static int timeout_id_tick;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 /* Xt interval id's might not fit into an int (they're pointers, as it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 happens), so we need to provide a conversion list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 struct Xt_timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 XtIntervalId interval_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 struct Xt_timeout *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 } *pending_timeouts, *completed_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 struct Xt_timeout_blocktype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 Blocktype_declare (struct Xt_timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 } *the_Xt_timeout_blocktype;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 /* called by XtAppNextEvent() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 Xt_timeout_callback (XtPointer closure, XtIntervalId *id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 struct Xt_timeout *timeout = (struct Xt_timeout *) closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 struct Xt_timeout *t2 = pending_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 /* Remove this one from the list of pending timeouts */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 if (t2 == timeout)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 pending_timeouts = pending_timeouts->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 while (t2->next && t2->next != timeout) t2 = t2->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 assert (t2->next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 t2->next = t2->next->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 /* Add this one to the list of completed timeouts */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 timeout->next = completed_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 completed_timeouts = timeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 emacs_Xt_add_timeout (EMACS_TIME thyme)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 struct Xt_timeout *timeout = Blocktype_alloc (the_Xt_timeout_blocktype);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 EMACS_TIME current_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 int milliseconds;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 timeout->id = timeout_id_tick++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 timeout->next = pending_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 pending_timeouts = timeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 EMACS_GET_TIME (current_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 EMACS_SUB_TIME (thyme, thyme, current_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 milliseconds = EMACS_SECS (thyme) * 1000 +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 EMACS_USECS (thyme) / 1000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 if (milliseconds < 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 milliseconds = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 timeout->interval_id = XtAppAddTimeOut (Xt_app_con, milliseconds,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 Xt_timeout_callback,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 (XtPointer) timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 return timeout->id;
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 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 emacs_Xt_remove_timeout (int id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 struct Xt_timeout *timeout, *t2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 /* Find the timeout on the list of pending ones, if it's still there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 if (!pending_timeouts) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 if (id == pending_timeouts->id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 timeout = pending_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 pending_timeouts = pending_timeouts->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 t2 = pending_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 while (t2->next && t2->next->id != id) t2 = t2->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 if (! t2->next) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 timeout = t2->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 t2->next = t2->next->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 /* At this point, we've found the thing on the list of pending timeouts,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 and removed it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 XtRemoveTimeOut (timeout->interval_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 Blocktype_free (the_Xt_timeout_blocktype, timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 Xt_timeout_to_emacs_event (struct Lisp_Event *emacs_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 struct Xt_timeout *timeout = completed_timeouts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 assert (timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 completed_timeouts = completed_timeouts->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 emacs_event->event_type = timeout_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 /* timeout events have nil as channel */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 emacs_event->timestamp = 0; /* #### wrong!! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 emacs_event->event.timeout.interval_id = timeout->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 Blocktype_free (the_Xt_timeout_blocktype, timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 /* process and tty events */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 struct what_is_ready_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 int fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 Lisp_Object what;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 XtInputId id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 static Lisp_Object *filedesc_with_input;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 static struct what_is_ready_closure **filedesc_to_what_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 init_what_input_once (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 filedesc_with_input = (Lisp_Object *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 xmalloc (MAXDESC * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 filedesc_to_what_closure = (struct what_is_ready_closure **)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 xmalloc (MAXDESC * sizeof (struct what_is_ready_closure *));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 for (i = 0; i < MAXDESC; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 filedesc_to_what_closure[i] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 filedesc_with_input[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 process_events_occurred = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 tty_events_occurred = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 mark_what_as_being_ready (struct what_is_ready_closure *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 if (NILP (filedesc_with_input[closure->fd]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 SELECT_TYPE temp_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 FD_ZERO (&temp_mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 FD_SET (closure->fd, &temp_mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 /* Check to make sure there's *really* input available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 Sometimes things seem to get confused and this gets called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 for the tty fd when there's really only input available
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 on some process's fd. (It will subsequently get called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 for that process's fd, so returning without setting any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 flags will take care of it.) To see the problem, uncomment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 the stderr_out below, turn NORMAL_QUIT_CHECK_TIMEOUT_MSECS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 down to 25, do sh -c 'xemacs -nw -q -f shell 2>/tmp/log'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 and press return repeatedly. (Seen under AIX & Linux.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 -dkindred@cs.cmu.edu */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 if (!poll_fds_for_input (temp_mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 stderr_out ("mark_what_as_being_ready: no input available (fd=%d)\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 closure->fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 filedesc_with_input[closure->fd] = closure->what;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 if (PROCESSP (closure->what))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 /* Don't increment this if the current process is already marked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 * as having input. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 process_events_occurred++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 tty_events_occurred++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 Xt_what_callback (void *closure, int *source, XtInputId *id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 /* If closure is 0, then we got a fake event from a signal handler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 The only purpose of this is to make XtAppProcessEvent() stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 blocking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 if (closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 mark_what_as_being_ready ((struct what_is_ready_closure *) closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 fake_event_occurred++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 drain_signal_event_pipe ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 select_filedesc (int fd, Lisp_Object what)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 struct what_is_ready_closure *closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 /* If somebody is trying to select something that's already selected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 for, then something went wrong. The generic routines ought to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 detect this and error before here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 assert (!filedesc_to_what_closure[fd]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 closure = (struct what_is_ready_closure *) xmalloc (sizeof (*closure));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 closure->fd = fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 closure->what = what;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 closure->id =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 XtAppAddInput (Xt_app_con, fd,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 (XtPointer) (XtInputReadMask /* | XtInputExceptMask */),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 Xt_what_callback, closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 filedesc_to_what_closure[fd] = closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 unselect_filedesc (int fd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 struct what_is_ready_closure *closure = filedesc_to_what_closure[fd];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 assert (closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 if (!NILP (filedesc_with_input[fd]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 /* We are unselecting this process before we have drained the rest of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 the input from it, probably from status_notify() in the command loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 This can happen like so:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 - We are waiting in XtAppNextEvent()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 - Process generates output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 - Process is marked as being ready
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 - Process dies, SIGCHLD gets generated before we return (!?)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 It could happen I guess.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 - sigchld_handler() marks process as dead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 - Somehow we end up getting a new KeyPress event on the queue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 at the same time (I'm really so sure how that happens but I'm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 not sure it can't either so let's assume it can...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 - Key events have priority so we return that instead of the proc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 - Before dispatching the lisp key event we call status_notify()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 - Which deselects the process that SIGCHLD marked as dead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 Thus we never remove it from _with_input and turn it into a lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 event, so we need to do it here. But this does not mean that we're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 throwing away the last block of output - status_notify() has already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 taken care of running the proc filter or whatever.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 filedesc_with_input[fd] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 if (PROCESSP (closure->what))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 assert (process_events_occurred > 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 process_events_occurred--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 assert (tty_events_occurred > 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 tty_events_occurred--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 XtRemoveInput (closure->id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 xfree (closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 filedesc_to_what_closure[fd] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 emacs_Xt_select_process (struct Lisp_Process *p)
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 infd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 Lisp_Object process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 infd = event_stream_unixoid_select_process (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 XSETPROCESS (process, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 select_filedesc (infd, process);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 emacs_Xt_unselect_process (struct Lisp_Process *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 int infd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 infd = event_stream_unixoid_unselect_process (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 unselect_filedesc (infd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 /* This is called from GC when a process object is about to be freed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 If we've still got pointers to it in this file, we're gonna lose hard.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 debug_process_finalization (struct Lisp_Process *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 #if 0 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 int infd, outfd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 get_process_file_descriptors (p, &infd, &outfd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 /* if it still has fds, then it hasn't been killed yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 assert (infd < 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 assert (outfd < 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 /* Better not still be in the "with input" table; we know it's got no fds. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 for (i = 0; i < MAXDESC; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 Lisp_Object process = filedesc_fds_with_input [i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 assert (!PROCESSP (process) || XPROCESS (process) != p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 Xt_process_to_emacs_event (struct Lisp_Event *emacs_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 Lisp_Object process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 assert (process_events_occurred > 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 for (i = 0; i < MAXDESC; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 process = filedesc_with_input[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 if (PROCESSP (process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 assert (i < MAXDESC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 filedesc_with_input[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 process_events_occurred--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 /* process events have nil as channel */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 emacs_event->event_type = process_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 emacs_event->timestamp = 0; /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 emacs_event->event.process.process = process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 emacs_Xt_select_console (struct console *con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 Lisp_Object console = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 int infd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 if (CONSOLE_X_P (con))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 return; /* X consoles are automatically selected for when we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 initialize them in Xt */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 infd = event_stream_unixoid_select_console (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 XSETCONSOLE (console, con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 select_filedesc (infd, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 emacs_Xt_unselect_console (struct console *con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 Lisp_Object console = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 int infd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 if (CONSOLE_X_P (con))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 return; /* X consoles are automatically selected for when we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 initialize them in Xt */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 infd = event_stream_unixoid_unselect_console (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 XSETCONSOLE (console, con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 unselect_filedesc (infd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 /* read an event from a tty, if one is available. Returns non-zero
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 if an event was available. Note that when this function is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 called, there should always be a tty marked as ready for input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 However, the input condition might actually be EOF, so there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 may not really be any input available. (In this case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 read_event_from_tty_or_stream_desc() will arrange for the TTY device
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 to be deleted.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 Xt_tty_to_emacs_event (struct Lisp_Event *emacs_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 assert (tty_events_occurred > 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 for (i = 0; i < MAXDESC; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 Lisp_Object console = filedesc_with_input[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 if (CONSOLEP (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 assert (tty_events_occurred > 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 tty_events_occurred--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 filedesc_with_input[i] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 if (read_event_from_tty_or_stream_desc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 (emacs_event, XCONSOLE (console), i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 /* debugging functions to decipher an event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 #include "xintrinsicp.h" /* only describe_event() needs this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 #include <X11/Xproto.h> /* only describe_event() needs this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 describe_event_window (Window window, Display *display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 Widget w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 stderr_out (" window: 0x%x", (int) window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 w = XtWindowToWidget (display, window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 if (w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 stderr_out (" %s", w->core.widget_class->core_class.class_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 f = x_any_window_to_frame (get_device_from_display (display), window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 if (f) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 char buf[500];
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
1703 sprintf (buf, " \"%s\"", XSTRING_DATA (f->name));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 write_string_to_stdio_stream (stderr, 0, (Bufbyte *) buf, 0, strlen (buf),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 FORMAT_DISPLAY);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 static CONST char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 XEvent_mode_to_string (int mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 switch (mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1715 case NotifyNormal: return "Normal";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1716 case NotifyGrab: return "Grab";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1717 case NotifyUngrab: return "Ungrab";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 case NotifyWhileGrabbed: return "WhileGrabbed";
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1719 default: return "???";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 static CONST char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 XEvent_detail_to_string (int detail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 switch (detail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1728 case NotifyAncestor: return "Ancestor";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1729 case NotifyInferior: return "Inferior";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1730 case NotifyNonlinear: return "Nonlinear";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1731 case NotifyNonlinearVirtual: return "NonlinearVirtual";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1732 case NotifyPointer: return "Pointer";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1733 case NotifyPointerRoot: return "PointerRoot";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1734 case NotifyDetailNone: return "DetailNone";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1735 default: return "???";
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 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 static CONST char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 XEvent_visibility_to_string (int state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 switch (state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1744 case VisibilityFullyObscured: return "FullyObscured";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 case VisibilityPartiallyObscured: return "PartiallyObscured";
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1746 case VisibilityUnobscured: return "Unobscured";
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1747 default: return "???";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 describe_event (XEvent *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 struct device *d = get_device_from_display (event->xany.display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 sprintf (buf, "%s%s", x_event_name (event->type),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 event->xany.send_event ? " (send)" : "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 stderr_out ("%-30s", buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 switch (event->type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 case FocusIn:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 case FocusOut:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 XFocusChangeEvent *ev = &event->xfocus;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 describe_event_window (ev->window, ev->display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 stderr_out (" mode: %s\n", XEvent_mode_to_string (ev->mode));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 stderr_out (" detail: %s\n", XEvent_detail_to_string(ev->detail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 case KeyPress:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 Lisp_Object keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 XKeyEvent *ev = &event->xkey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 unsigned int state = ev->state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 describe_event_window (ev->window, ev->display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 stderr_out (" subwindow: %ld\n", ev->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 stderr_out (" state: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 if (state & ShiftMask) stderr_out ("Shift ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 if (state & LockMask) stderr_out ("Lock ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 if (state & ControlMask) stderr_out ("Control ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 if (state & Mod1Mask) stderr_out ("Mod1 ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 if (state & Mod2Mask) stderr_out ("Mod2 ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 if (state & Mod3Mask) stderr_out ("Mod3 ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 if (state & Mod4Mask) stderr_out ("Mod4 ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 if (state & Mod5Mask) stderr_out ("Mod5 ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 #if 0 /* Apparently these don't exist? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 if (state & MetaMask) stderr_out ("Meta ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 if (state & SuperMask) stderr_out ("Super ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 if (state & HyperMask) stderr_out ("Hyper ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 if (state & AltMask) stderr_out ("Alt ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 if (state & ModeMask) stderr_out ("Mode_switch ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 if (! state)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 stderr_out ("vanilla\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 if (x_key_is_modifier_p (ev->keycode, d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 stderr_out (" Modifier key");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 stderr_out (" keycode: 0x%x\n", ev->keycode);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 keysym = x_to_emacs_keysym (event, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 if (CHAR_OR_CHAR_INTP (keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1807 Emchar c = XCHAR_OR_CHAR_INT (keysym);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1808 if (c > 32 && c < 127)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1809 stderr_out (" keysym: %c\n", c);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 else
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1811 stderr_out (" keysym: %d\n", c);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 stderr_out (" keysym: %s\n", string_data (XSYMBOL (keysym)->name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 case Expose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 if (x_debug_events > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 XExposeEvent *ev = &event->xexpose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 describe_event_window (ev->window, ev->display);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1823 stderr_out (" region: x=%d y=%d width=%d height=%d\n",
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1824 ev->x, ev->y, ev->width, ev->height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 stderr_out (" count: %d\n", ev->count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 case GraphicsExpose:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 if (x_debug_events > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 XGraphicsExposeEvent *ev = &event->xgraphicsexpose;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 describe_event_window (ev->drawable, ev->display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 stderr_out (" major: %s\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (ev ->major_code == X_CopyArea ? "CopyArea" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 (ev->major_code == X_CopyPlane ? "CopyPlane" : "?")));
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1839 stderr_out (" region: x=%d y=%d width=%d height=%d\n",
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1840 ev->x, ev->y, ev->width, ev->height);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 stderr_out (" count: %d\n", ev->count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 case EnterNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 case LeaveNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 if (x_debug_events > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 XCrossingEvent *ev = &event->xcrossing;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 describe_event_window (ev->window, ev->display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 stderr_out(" subwindow: 0x%x\n", ev->subwindow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 stderr_out(" pos: %d %d\n", ev->x, ev->y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 stderr_out(" root pos: %d %d\n", ev->x_root, ev->y_root);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 stderr_out(" mode: %s\n", XEvent_mode_to_string(ev->mode));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 stderr_out(" detail: %s\n", XEvent_detail_to_string(ev->detail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 stderr_out(" focus: %d\n", ev->focus);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 stderr_out(" state: 0x%x\n", ev->state);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 stderr_out("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 case ConfigureNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 if (x_debug_events > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 XConfigureEvent *ev = &event->xconfigure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 describe_event_window (ev->window, ev->display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 stderr_out(" above: 0x%lx\n", ev->above);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 stderr_out(" size: %d %d %d %d\n", ev->x, ev->y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 ev->width, ev->height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 stderr_out(" redirect: %d\n", ev->override_redirect);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 stderr_out("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 case VisibilityNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 if (x_debug_events > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 XVisibilityEvent *ev = &event->xvisibility;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 describe_event_window (ev->window, ev->display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 stderr_out(" state: %s\n", XEvent_visibility_to_string(ev->state));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 case ClientMessage:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 XClientMessageEvent *ev = &event->xclient;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 char *name = XGetAtomName (ev->display, ev->message_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 stderr_out ("%s", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 if (!strcmp (name, "WM_PROTOCOLS")) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 char *protname = XGetAtomName (ev->display, ev->data.l[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 stderr_out ("(%s)", protname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 XFree (protname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 XFree (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 break;
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 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 stderr_out ("\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 break;
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 fflush (stdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 #endif /* include describe_event definition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 /* get the next event from Xt */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 static Lisp_Object dispatch_event_queue, dispatch_event_queue_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 enqueue_Xt_dispatch_event (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 enqueue_event (event, &dispatch_event_queue, &dispatch_event_queue_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 dequeue_Xt_dispatch_event (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 return dequeue_event (&dispatch_event_queue, &dispatch_event_queue_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 /* This business exists because menu events "happen" when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 menubar_selection_callback() is called from somewhere deep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 within XtAppProcessEvent in emacs_Xt_next_event(). The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 callback needs to terminate the modal loop in that function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 or else it will continue waiting until another event is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 received.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 Same business applies to scrollbar events. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 signal_special_Xt_user_event (Lisp_Object channel, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 XEVENT (event)->event_type = misc_user_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 XEVENT (event)->channel = channel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 XEVENT (event)->event.eval.function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 XEVENT (event)->event.eval.object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 enqueue_Xt_dispatch_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 emacs_Xt_next_event (struct Lisp_Event *emacs_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 we_didnt_get_an_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 while (NILP (dispatch_event_queue) &&
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1969 !completed_timeouts &&
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1970 !fake_event_occurred &&
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1971 !process_events_occurred &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 !tty_events_occurred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 /* Stupid logic in XtAppProcessEvent() dictates that, if process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 events and X events are both available, the process event gets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 taken first. This will cause an infinite loop if we're being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 called from Fdiscard_input().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 if (XtAppPending (Xt_app_con) & XtIMXEvent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 XtAppProcessEvent (Xt_app_con, XtIMXEvent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 /* We're about to block. Xt has a bug in it (big surprise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 there) in that it blocks using select() and doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 flush the Xlib output buffers (XNextEvent() does this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 automatically before blocking). So it's necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 for us to do this ourselves. If we don't do it, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 display output may not be seen until the next time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 an X event is received. (This happens esp. with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 subprocess output that gets sent to a visible buffer.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 #### The above comment may not have any validity. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 d = XDEVICE (XCAR (devcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 /* emacs may be exiting */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 XFlush (DEVICE_X_DISPLAY (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 XtAppProcessEvent (Xt_app_con, XtIMAll);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 if (!NILP (dispatch_event_queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 Lisp_Object event, event2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 XSETEVENT (event2, emacs_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 event = dequeue_Xt_dispatch_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 Fcopy_event (event, event2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 Fdeallocate_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 else if (tty_events_occurred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 if (!Xt_tty_to_emacs_event (emacs_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 goto we_didnt_get_an_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 else if (completed_timeouts)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 Xt_timeout_to_emacs_event (emacs_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 else if (fake_event_occurred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 /* A dummy event, so that a cycle of the command loop will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 occur. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 fake_event_occurred = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 /* eval events have nil as channel */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 emacs_event->event_type = eval_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 emacs_event->event.eval.function = Qidentity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 emacs_event->event.eval.object = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 else /* if (process_events_occurred) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 Xt_process_to_emacs_event (emacs_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 /* No need to call XFilterEvent; Xt does it for us */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 emacs_Xt_event_handler (Widget wid /* unused */,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 XtPointer closure /* unused */,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 XEvent *event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 Boolean *continue_to_dispatch /* unused */)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 Lisp_Object emacs_event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 if (x_debug_events > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 describe_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 #endif /* DEBUG_XEMACS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 if (x_event_to_emacs_event (event, XEVENT (emacs_event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 enqueue_Xt_dispatch_event (emacs_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 Fdeallocate_event (emacs_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 /* input pending / C-g checking */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 static Bool
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 quit_char_predicate (Display *display, XEvent *event, XPointer data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 struct device *d = get_device_from_display (display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 struct x_device *xd = DEVICE_X_DATA (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 char c, quit_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 Bool *critical = (Bool *) data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 Lisp_Object keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 if (critical) *critical = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 if (event->type != KeyPress) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 if (! x_any_window_to_frame (d, event->xany.window)) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 if (event->xkey.state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 & (xd->MetaMask | xd->HyperMask | xd->SuperMask | xd->AltMask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 /* This duplicates some code that exists elsewhere, but it's relatively
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 fast and doesn't cons.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 keysym = x_to_emacs_keysym (event, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 if (NILP (keysym)) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 if (CHAR_OR_CHAR_INTP (keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 c = XCHAR_OR_CHAR_INT (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 /* Highly doubtful that these are the quit character, but... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 else if (EQ (keysym, QKbackspace)) c = '\b';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 else if (EQ (keysym, QKtab)) c = '\t';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 else if (EQ (keysym, QKlinefeed)) c = '\n';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 else if (EQ (keysym, QKreturn)) c = '\r';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 else if (EQ (keysym, QKescape)) c = 27;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 else if (EQ (keysym, QKspace)) c = ' ';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 else if (EQ (keysym, QKdelete)) c = 127;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 else return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 if (event->xkey.state & xd->MetaMask) c |= 0x80;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 if ((event->xkey.state & ControlMask) && !(c >= 'A' && c <= 'Z'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 c &= 0x1F; /* unshifted control characters */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 quit_char = CONSOLE_QUIT_CHAR (XCONSOLE (DEVICE_CONSOLE (d)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 if (c == quit_char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 return True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 /* If we've got Control-Shift-G instead of Control-G, that means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 we have a critical_quit. Caps_Lock is its own modifier, so it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 won't cause ^G to act differently than before. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 if (event->xkey.state & ControlMask) c &= 0x1F;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 if (c == quit_char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 if (critical) *critical = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 return True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 return False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 /* This scans the X input queue for a KeyPress event that matches the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 quit character, and sets Vquit_flag. This is called from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 QUIT macro to determine whether we should quit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 In a SIGIO world, this won't be called unless a SIGIO has happened
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 since the last time we checked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 In a non-SIGIO world, this is called from emacs_Xt_event_pending_p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 (which is called from input_pending_p).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 x_check_for_quit_char (Display *display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 XEvent event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 int queued;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 Bool critical_quit = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 XEventsQueued (display, QueuedAfterReading);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 queued = XCheckIfEvent (display, &event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 quit_char_predicate,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 (XtPointer)&critical_quit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 if (queued)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 Vquit_flag = (critical_quit ? Qcritical : Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 /* don't put the event back onto the queue. Those functions that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 wanted to read a ^G directly have arranged to do this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 check_for_tty_quit_char (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 SELECT_TYPE temp_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 int infd = DEVICE_INFD (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 struct console *con = XCONSOLE (DEVICE_CONSOLE (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 Emchar quit_char = CONSOLE_QUIT_CHAR (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 FD_ZERO (&temp_mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 FD_SET (infd, &temp_mask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 Emchar the_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 if (!poll_fds_for_input (temp_mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 if (!read_event_from_tty_or_stream_desc (XEVENT (event), con, infd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 /* EOF, or something ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 /* #### bogus. quit-char should be allowed to be any sort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 of event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 the_char = event_to_character (XEVENT (event), 1, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 if (the_char >= 0 && the_char == quit_char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 Vquit_flag = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 /* do not queue the C-g. See above. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 /* queue the read event to be read for real later. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 enqueue_Xt_dispatch_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 emacs_Xt_quit_p (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 CONSOLE_LOOP (concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 struct console *con = XCONSOLE (XCAR (concons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 if (!con->input_enabled)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 CONSOLE_DEVICE_LOOP (devcons, con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 d = XDEVICE (XCAR (devcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 /* emacs may be exiting */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 x_check_for_quit_char (DEVICE_X_DISPLAY (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 else if (DEVICE_TTY_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 check_for_tty_quit_char (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 drain_X_queue (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 while (XtAppPending (Xt_app_con) & XtIMXEvent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 XtAppProcessEvent (Xt_app_con, XtIMXEvent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 emacs_Xt_event_pending_p (int user_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 int tick_count_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 /* If `user_p' is false, then this function returns whether there are any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 X, timeout, or fd events pending (that is, whether emacs_Xt_next_event()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 would return immediately without blocking).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 if `user_p' is true, then this function returns whether there are any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 *user generated* events available (that is, whether there are keyboard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 or mouse-click events ready to be read). This also implies that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 emacs_Xt_next_event() would not block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 In a non-SIGIO world, this also checks whether the user has typed ^G,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 since this is a convenient place to do so. We don't need to do this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 in a SIGIO world, since input causes an interrupt.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 /* I don't think there's any point to this and it will nullify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 the speed gains achieved by the sigio_happened checking below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 Its only advantage is that it may possibly make C-g response
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 a bit faster. The C-g will be noticed within 0.25 second, anyway,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 even without this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 #ifndef SIGIO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 /* First check for C-g if necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 emacs_Xt_quit_p ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 /* This function used to simply check whether there were any X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 events (or is user_p was 1, it iterated over all the pending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 X events using XCheckIfEvent(), looking for keystrokes and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 button events). That worked in the old cheesoid event loop,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 which didn't go through XtAppDispatchEvent(), but it doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 work any more -- X events may not result in anything. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 example, a button press in a blank part of the menubar appears
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 as an X event but will not result in any Emacs events (a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 button press that activates the menubar results in an Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 event through the stop_next_event mechanism).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 The only accurate way of determining whether these X events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 translate into Emacs events is to go ahead and dispatch them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 until there's something on the dispatch queue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 /* See if there are any user events already on the queue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 EVENT_CHAIN_LOOP (event, dispatch_event_queue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 if (!user_p || command_event_p (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 /* See if there's any TTY input available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 if (poll_fds_for_input (tty_only_mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 if (!user_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 /* If not user_p and there are any timer or file-desc events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 pending, we know there will be an event so we're through. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 XtInputMask pending_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 /* Note that formerly we just checked the value of XtAppPending()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 to determine if there was file-desc input. This doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 work any more with the signal_event_pipe; XtAppPending()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 will says "yes" in this case but there isn't really any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 input. Another way of fixing this problem is for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 signal_event_pipe to generate actual input in the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 of an identity eval event or something. (#### maybe this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 actually happens?) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 if (poll_fds_for_input (process_only_mask))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 pending_value = XtAppPending (Xt_app_con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 if (pending_value & XtIMTimer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 /* XtAppPending() can be super-slow, esp. over a network connection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 Quantify results have indicated that in some cases the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 call to detect_input_pending() completely dominates the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 running time of redisplay(). Fortunately, in a SIGIO world
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 we can more quickly determine whether there are any X events:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 if an event has happened since the last time we checked, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 a SIGIO will have happened. On a machine with broken SIGIO,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 we'll still be in an OK state -- the sigio_happened flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 will get set at least once a second, so we'll be no more than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 one second behind reality. (In general it's OK if we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 erroneously report no input pending when input is actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 pending() -- preemption is just a bit less efficient, that's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 all. It's bad bad bad if you err the other way -- you've
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 promised that `next-event' won't block but it actually will,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 and some action might get delayed until the next time you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 hit a key.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 /* quit_check_signal_tick_count is volatile so try to avoid race conditions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 by using a temporary variable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 tick_count_val = quit_check_signal_tick_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 if (last_quit_check_signal_tick_count != tick_count_val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 last_quit_check_signal_tick_count = tick_count_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 /* We need to drain the entire queue now -- if we only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 drain part of it, we may later on end up with events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 actually pending but detect_input_pending() returning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 false because there wasn't another SIGIO. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 drain_X_queue ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 EVENT_CHAIN_LOOP (event, dispatch_event_queue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 if (!user_p || command_event_p (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 /* replacement for standard string-to-pixel converter */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 /* This was constructed by ripping off the standard string-to-pixel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 converter from Converters.c in the Xt source code and modifying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 appropriately. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 /* This is exported by the Xt library (at least by mine). If this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 isn't the case somewhere, rename this appropriately and remove
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 the '#if 0'. Note, however, that I got "unknown structure"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 errors when I tried this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 XtConvertArgRec Const colorConvertArgs[] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 {XtWidgetBaseOffset, (XtPointer)XtOffsetOf(WidgetRec, core.screen),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 sizeof(Screen *)},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 {XtWidgetBaseOffset, (XtPointer)XtOffsetOf(WidgetRec, core.colormap),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 sizeof(Colormap)}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 #define done(type, value) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 if (toVal->addr != NULL) { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 if (toVal->size < sizeof(type)) { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 toVal->size = sizeof(type); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 return False; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 *(type*)(toVal->addr) = (value); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 } else { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 static type static_val; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 static_val = (value); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 toVal->addr = (XPointer)&static_val; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 toVal->size = sizeof(type); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 return True /* Caller supplies `;' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 static
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 Boolean EmacsXtCvtStringToPixel (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 Display *dpy,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 XrmValuePtr args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 Cardinal *num_args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 XrmValuePtr fromVal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 XrmValuePtr toVal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 XtPointer *closure_ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 String str = (String)fromVal->addr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 XColor screenColor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 XColor exactColor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 Screen *screen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 Colormap colormap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 Status status;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 String params[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 Cardinal num_params = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 XtAppContext the_app_con = XtDisplayToApplicationContext (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 if (*num_args != 2) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 XtAppWarningMsg(the_app_con, "wrongParameters", "cvtStringToPixel",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 "XtToolkitError",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 "String to pixel conversion needs screen and colormap arguments",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 (String *)NULL, (Cardinal *)NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 return False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 screen = *((Screen **) args[0].addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 colormap = *((Colormap *) args[1].addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 /* The original uses the private function CompareISOLatin1().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 Use XmuCompareISOLatin1() if you want, but I don't think it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 makes any difference here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 if (strcmp(str, XtDefaultBackground) == 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 *closure_ret = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 /* This refers to the display's "*reverseVideo" resource.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 These display resources aren't documented anywhere that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 I can find, so I'm going to ignore this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 /* if (pd->rv) done(Pixel, BlackPixelOfScreen(screen)) else */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 done(Pixel, WhitePixelOfScreen(screen));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 if (strcmp(str, XtDefaultForeground) == 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 *closure_ret = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 /* if (pd->rv) done(Pixel, WhitePixelOfScreen(screen)) else */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 done(Pixel, BlackPixelOfScreen(screen));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 /* Originally called XAllocNamedColor() here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 status = XParseColor (DisplayOfScreen(screen), colormap, (char*)str,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 &screenColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 if (status) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 status = allocate_nearest_color (DisplayOfScreen(screen), colormap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 &screenColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 if (status == 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 params[0] = str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 /* Server returns a specific error code but Xlib discards it. Ugh */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 if (XLookupColor(DisplayOfScreen(screen), colormap, (char*)str,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 &exactColor, &screenColor)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 XtAppWarningMsg(the_app_con, "noColormap", "cvtStringToPixel",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 "XtToolkitError",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 "Cannot allocate colormap entry for \"%s\"",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 params, &num_params);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 } else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 XtAppWarningMsg(the_app_con, "badValue", "cvtStringToPixel",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 "XtToolkitError",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 "Color name \"%s\" is not defined", params, &num_params);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 *closure_ret = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 return False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 } else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 *closure_ret = (char*)True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 done(Pixel, screenColor.pixel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 /* ARGSUSED */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 static void EmacsFreePixel (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 XtAppContext app,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 XrmValuePtr toVal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 XtPointer closure,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 XrmValuePtr args,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 Cardinal *num_args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 if (*num_args != 2) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 XtAppWarningMsg(app, "wrongParameters","freePixel","XtToolkitError",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 "Freeing a pixel requires screen and colormap arguments",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 (String *)NULL, (Cardinal *)NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 if (closure) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 Screen *screen = *((Screen **) args[0].addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 Colormap colormap = *((Colormap *) args[1].addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 XFreeColors(DisplayOfScreen(screen), colormap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 (unsigned long*)toVal->addr, 1, (unsigned long)0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 syms_of_event_Xt (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 defsymbol (&Qkey_mapping, "key-mapping");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 vars_of_event_Xt (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 dispatch_event_queue = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 staticpro (&dispatch_event_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 dispatch_event_queue_tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 /* this function only makes safe calls */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 init_what_input_once ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 Xt_event_stream =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 (struct event_stream *) xmalloc (sizeof (struct event_stream));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 Xt_event_stream->event_pending_p = emacs_Xt_event_pending_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 Xt_event_stream->next_event_cb = emacs_Xt_next_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 Xt_event_stream->handle_magic_event_cb= emacs_Xt_handle_magic_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 Xt_event_stream->add_timeout_cb = emacs_Xt_add_timeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 Xt_event_stream->remove_timeout_cb = emacs_Xt_remove_timeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 Xt_event_stream->select_console_cb = emacs_Xt_select_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 Xt_event_stream->unselect_console_cb = emacs_Xt_unselect_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 Xt_event_stream->select_process_cb = emacs_Xt_select_process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 Xt_event_stream->unselect_process_cb = emacs_Xt_unselect_process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 Xt_event_stream->quit_p_cb = emacs_Xt_quit_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 DEFVAR_BOOL ("modifier-keys-are-sticky", &modifier_keys_are_sticky /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 *Non-nil makes modifier keys sticky.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 This means that you can release the modifier key before pressing down
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 the key that you wish to be modified. Although this is non-standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 behavior, it is recommended because it reduces the strain on your hand,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 thus reducing the incidence of the dreaded Emacs-pinky syndrome.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 modifier_keys_are_sticky = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 DEFVAR_BOOL ("x-allow-sendevents", &x_allow_sendevents /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 *Non-nil means to allow synthetic events. Nil means they are ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 Beware: allowing emacs to process SendEvents opens a big security hole.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 x_allow_sendevents = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 DEFVAR_INT ("x-debug-events", &x_debug_events /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 If non-zero, display debug information about X events that XEmacs sees.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 Information is displayed on stderr. Currently defined values are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 1 == non-verbose output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 2 == verbose output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 x_debug_events = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 the_Xt_timeout_blocktype = Blocktype_new (struct Xt_timeout_blocktype);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 last_quit_check_signal_tick_count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 init_event_Xt_late (void) /* called when already initialized */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 timeout_id_tick = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 pending_timeouts = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 completed_timeouts = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 event_stream = Xt_event_stream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 XtToolkitInitialize ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 Xt_app_con = XtCreateApplicationContext ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 XtAppSetFallbackResources (Xt_app_con, (String *) x_fallback_resources);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 /* In xselect.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 x_selection_timeout = (XtAppGetSelectionTimeout (Xt_app_con) / 1000);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 XSetErrorHandler (x_error_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 XSetIOErrorHandler (x_IO_error_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 XtAppAddInput (Xt_app_con, signal_event_pipe[0],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 (XtPointer) (XtInputReadMask /* | XtInputExceptMask */),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 Xt_what_callback, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 XtAppSetTypeConverter (Xt_app_con, XtRString, XtRPixel,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 EmacsXtCvtStringToPixel,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 (XtConvertArgList) colorConvertArgs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 2, XtCacheByDisplay, EmacsFreePixel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 }