annotate src/event-Xt.c @ 0:376386a54a3c r19-14

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