annotate src/event-stream.c @ 185:3d6bfa290dbd r20-3b19

Import from CVS: tag r20-3b19
author cvs
date Mon, 13 Aug 2007 09:55:28 +0200
parents bfd6434d15b3
children b405438285a2
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 portable interface to event streams.
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 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 * DANGER!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 * If you ever change ANYTHING in this file, you MUST run the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * testcases at the end to make sure that you haven't changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 * the semantics of recent-keys, last-input-char, or keyboard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 * macros. You'd be surprised how easy it is to break this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
38 /* TODO:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
39 This stuff is way too hard to maintain - needs rework.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
40
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
41 (global-set-key "\C-p" global-map) causes a crash - need recursion check.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
42
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
43 C-x @ h <scrollbar-drag> x causes a crash.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
44
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
45 The command builder should deal only with key and button events.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
46 Other command events should be able to come in the MIDDLE of a key
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
47 sequence, without disturbing the key sequence composition, or the
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
48 command builder structure representing it.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
49
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
50 Someone should rethink univeral-argument and figure out how an
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
51 arbitrary command can influence the next command (universal-argument
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
52 or univeral-coding-system-argument) or the next key (hyperify).
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
53
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
54 Both C-h and Help in the middle of a key sequence should trigger
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
55 prefix-help-command. help-char is stupid. Maybe we need
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
56 keymap-of-last-resort?
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
57
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
58 After prefix-help is run, one should be able to CONTINUE TYPING,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
59 instead of RETYPING, the key sequence.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
60 */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
61
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
65 #ifdef HAVE_X_WINDOWS
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
66 #include "console-x.h" /* for menu accelerators ... */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
67 #include "gui-x.h"
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
68 #include "../lwlib/lwlib.h"
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
69 #else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
70 #define lw_menu_active 0
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
71 #endif
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
72
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #include "insdel.h" /* for buffer_reset_changes */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #include "keymap.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #include "lstream.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #include "macros.h" /* for defining_keyboard_macro */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #include "process.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #include "sysdep.h" /* init_poll_for_quit() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #include "syssignal.h" /* SIGCHLD, etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #include "systime.h" /* to set Vlast_input_time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
91 #include "events-mod.h"
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
92
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
93 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
94 #include "mule-coding.h"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
95 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
96
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #include <errno.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* The number of keystrokes between auto-saves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 static int auto_save_interval;
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 Qundefined_keystroke_sequence;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Lisp_Object Qcommand_execute;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Lisp_Object Qcommand_event_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 /* Hooks to run before and after each command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Lisp_Object Vpre_command_hook, Vpost_command_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 Lisp_Object Qpre_command_hook, Qpost_command_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* Hook run when XEmacs is about to be idle. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Lisp_Object Qpre_idle_hook, Vpre_idle_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
72
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
115 /* Control gratuitous keyboard focus throwing. */
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
116 int focus_follows_mouse;
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
117
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #ifdef ILL_CONCEIVED_HOOK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* Hook run after a command if there's no more input soon. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 /* Delay time in microseconds before running post-command-idle-hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 int post_command_idle_delay;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #endif /* ILL_CONCEIVED_HOOK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #ifdef DEFERRED_ACTION_CRAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /* List of deferred actions to be performed at a later time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 The precise format isn't relevant here; we just check whether it is nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 Lisp_Object Vdeferred_action_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* Function to call to handle deferred actions, when there are any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 Lisp_Object Vdeferred_action_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 Lisp_Object Qdeferred_action_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #endif /* DEFERRED_ACTION_CRAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 /* Non-nil disable property on a command means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 do not execute it; call disabled-command-hook's value instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 Lisp_Object Qdisabled, Vdisabled_command_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 static void pre_command_hook (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 static void post_command_hook (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /* Last keyboard or mouse input event read as a command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 Lisp_Object Vlast_command_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 /* The nearest ASCII equivalent of the above. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 Lisp_Object Vlast_command_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 /* Last keyboard or mouse event read for any purpose. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Lisp_Object Vlast_input_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 /* The nearest ASCII equivalent of the above. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Lisp_Object Vlast_input_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 Lisp_Object Vcurrent_mouse_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 /* If not Qnil, event objects to be read as the next command input */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 Lisp_Object Vunread_command_events;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 Lisp_Object Vunread_command_event; /* obsoleteness support */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 static Lisp_Object Qunread_command_events, Qunread_command_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 /* Previous command, represented by a Lisp object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 Does not include prefix commands and arg setting commands */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 Lisp_Object Vlast_command;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 /* If a command sets this, the value goes into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 previous-command for the next command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 Lisp_Object Vthis_command;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 /* The value of point when the last command was executed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 Bufpos last_point_position;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 /* The frame that was current when the last command was started. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 Lisp_Object Vlast_selected_frame;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
176
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* The buffer that was current when the last command was started. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 Lisp_Object last_point_position_buffer;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
179
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
180 /* A (16bit . 16bit) representation of the time of the last-command-event. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 Lisp_Object Vlast_input_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 /* Character to recognize as the help char. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 Lisp_Object Vhelp_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 /* Form to execute when help char is typed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 Lisp_Object Vhelp_form;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
189 /* Command to run when the help character follows a prefix key. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
190 Lisp_Object Vprefix_help_command;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
191
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 /* Flag to tell QUIT that some interesting occurrence (e.g. a keypress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 may have happened. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 volatile int something_happened;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 /* Hash table to translate keysyms through */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 Lisp_Object Vkeyboard_translate_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 /* If control-meta-super-shift-X is undefined, try control-meta-super-x */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 Lisp_Object Vretry_undefined_key_binding_unshifted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 Lisp_Object Qretry_undefined_key_binding_unshifted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
203 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
204 /* If composed input is undefined, use self-insert-char */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
205 Lisp_Object Vcomposed_character_default_binding;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
206 #endif /* HAVE_XIM */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
207
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 /* Console that corresponds to our controlling terminal */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 Lisp_Object Vcontrolling_terminal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 /* An event (actually an event chain linked through event_next) or Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 Lisp_Object Vthis_command_keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 Lisp_Object Vthis_command_keys_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 /* #### kludge! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Lisp_Object Qauto_show_make_point_visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* File in which we write all commands we read; an lstream */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 static Lisp_Object Vdribble_file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
222 /* Recent keys ring location; a vector of events or nil-s */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
223 Lisp_Object Vrecent_keys_ring;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
224 int recent_keys_ring_size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
225 int recent_keys_ring_index;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
226
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
227 /* prefix key(s) that must match in order to activate menu.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
228 This is ugly. fix me.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
229 */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
230 Lisp_Object Vmenu_accelerator_prefix;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
231
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
232 /* list of modifier keys to match accelerator for top level menus */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
233 Lisp_Object Vmenu_accelerator_modifiers;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
234
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
235 /* whether menu accelerators are enabled */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
236 Lisp_Object Vmenu_accelerator_enabled;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
237
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
238 /* keymap for auxillary menu accelerator functions */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
239 Lisp_Object Vmenu_accelerator_map;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
240
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
241 Lisp_Object Qmenu_force;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
242 Lisp_Object Qmenu_fallback;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
243 Lisp_Object Qmenu_quit;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
244 Lisp_Object Qmenu_up;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
245 Lisp_Object Qmenu_down;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
246 Lisp_Object Qmenu_left;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
247 Lisp_Object Qmenu_right;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
248 Lisp_Object Qmenu_select;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
249 Lisp_Object Qmenu_escape;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
250
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
251 /* this is in keymap.c */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
252 extern Lisp_Object Fmake_keymap (Lisp_Object name);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
253
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 int debug_emacs_events;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
256
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
257 static void
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
258 external_debugging_print_event (char *event_description, Lisp_Object event)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
259 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
260 write_c_string ("(", Qexternal_debugging_output);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
261 write_c_string (event_description, Qexternal_debugging_output);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
262 write_c_string (") ", Qexternal_debugging_output);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
263 print_internal (event, Qexternal_debugging_output, 1);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
264 write_c_string ("\n", Qexternal_debugging_output);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
265 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
266 #define DEBUG_PRINT_EMACS_EVENT(event_description, event) do { \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
267 if (debug_emacs_events) \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
268 external_debugging_print_event (event_description, event); \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
269 } while (0)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
270 #else
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
271 #define DEBUG_PRINT_EMACS_EVENT(string, event)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 /* The callback routines for the window system or terminal driver */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 struct event_stream *event_stream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
278 /* This structure is what we use to encapsulate the state of a command sequence
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 being composed; key events are executed by adding themselves to the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 builder; if the command builder is then complete (does not still represent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 a prefix key sequence) it executes the corresponding command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 struct command_builder
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 Lisp_Object console; /* back pointer to the console this command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 builder is for */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 /* Qnil, or a Lisp_Event representing the first event read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 * after the last command completed. Threaded. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 /* #### NYI */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 Lisp_Object prefix_events;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
292 /* Qnil, or a Lisp_Event representing event in the current
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 * keymap-lookup sequence. Subsequent events are threaded via
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 * the event's next slot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 Lisp_Object current_events;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 /* Last elt of above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Lisp_Object most_current_event;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
298 /* Last elt before function map code took over. What this means is:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
299 All prefixes up to (but not including) this event have non-nil
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
300 bindings, but the prefix including this event has a nil binding.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
301 Any events in the chain after this one were read solely because
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
302 we're part of a possible function key. If we end up with
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
303 something that's not part of a possible function key, we have to
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
304 unread all of those events. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 Lisp_Object last_non_munged_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 /* One set of values for function-key-map, one for key-translation-map */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 struct munging_key_translation
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
308 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
309 /* First event that can begin a possible function key sequence
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
310 (to be translated according to function-key-map). Normally
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
311 this is the first event in the chain. However, once we've
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
312 translated a sequence through function-key-map, this will point
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
313 to the first event after the translated sequence: we don't ever
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
314 want to translate any events twice through function-key-map, or
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
315 things could get really screwed up (e.g. if the user created a
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
316 translation loop). If this is nil, then the next-read event is
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
317 the first that can begin a function key sequence. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
318 Lisp_Object first_mungeable_event;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
319 } munge_me[2];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 Bufbyte *echo_buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 Bytecount echo_buf_length; /* size of echo_buf */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 Bytecount echo_buf_index; /* index into echo_buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 * -1 before doing echoing for new cmd */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 /* Self-insert-command is magic in that it doesn't always push an undo-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 boundary: up to 20 consecutive self-inserts can happen before an undo-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 boundary is pushed. This variable is that counter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 int self_insert_countdown;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 static void echo_key_event (struct command_builder *, Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 static void maybe_kbd_translate (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 /* This structure is basically a typeahead queue: things like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 wait-reading-process-output will delay the execution of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 keyboard and mouse events by pushing them here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 Chained through event_next()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 command_event_queue_tail is a pointer to the last-added element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 static Lisp_Object command_event_queue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 static Lisp_Object command_event_queue_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 /* Nonzero means echo unfinished commands after this many seconds of pause. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 static int echo_keystrokes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 /* The number of keystrokes since the last auto-save. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 static int keystrokes_since_auto_save;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 /* Used by the C-g signal handler so that it will never "hard quit"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 when waiting for an event. Otherwise holding down C-g could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 cause a suspension back to the shell, which is generally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 undesirable. (#### This doesn't fully work.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 int emacs_is_blocking;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
358 /* Handlers which run during sit-for, sleep-for and accept-process-output
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
359 are not allowed to recursively call these routines. We record here
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
360 if we are in that situation. */
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
361
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
362 static Lisp_Object recursive_sit_for;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
363
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
364
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 /* Command-builder object */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 #define XCOMMAND_BUILDER(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 XRECORD (x, command_builder, struct command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 #define XSETCOMMAND_BUILDER(x, p) XSETRECORD (x, p, command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 #define COMMAND_BUILDERP(x) RECORDP (x, command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 #define GC_COMMAND_BUILDERP(x) GC_RECORDP (x, command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 #define CHECK_COMMAND_BUILDER(x) CHECK_RECORD (x, command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 static Lisp_Object mark_command_builder (Lisp_Object obj,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 void (*markobj) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 static void finalize_command_builder (void *header, int for_disksave);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 DEFINE_LRECORD_IMPLEMENTATION ("command-builder", command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 mark_command_builder, internal_object_printer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 finalize_command_builder, 0, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 struct command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 mark_command_builder (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 struct command_builder *builder = XCOMMAND_BUILDER (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (markobj) (builder->prefix_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (markobj) (builder->current_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (markobj) (builder->most_current_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (markobj) (builder->last_non_munged_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (markobj) (builder->munge_me[0].first_mungeable_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (markobj) (builder->munge_me[1].first_mungeable_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 return builder->console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 finalize_command_builder (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 if (!for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
403 xfree (((struct command_builder *) header)->echo_buf);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
404 ((struct command_builder *) header)->echo_buf = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 reset_command_builder_event_chain (struct command_builder *builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 builder->prefix_events = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 builder->current_events = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 builder->most_current_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 builder->last_non_munged_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 builder->munge_me[0].first_mungeable_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 builder->munge_me[1].first_mungeable_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 allocate_command_builder (Lisp_Object console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 Lisp_Object builder_obj = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 struct command_builder *builder =
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
424 alloc_lcrecord_type (struct command_builder, lrecord_command_builder);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 builder->console = console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 reset_command_builder_event_chain (builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 builder->echo_buf_length = 300; /* #### Kludge */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
429 builder->echo_buf = xnew_array (Bufbyte, builder->echo_buf_length);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 builder->echo_buf[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 builder->echo_buf_index = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 builder->echo_buf_index = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 builder->self_insert_countdown = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 XSETCOMMAND_BUILDER (builder_obj, builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 return builder_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 command_builder_append_event (struct command_builder *builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 assert (EVENTP (event));
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 (EVENTP (builder->most_current_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 XSET_EVENT_NEXT (builder->most_current_event, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 builder->current_events = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 builder->most_current_event = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 if (NILP (builder->munge_me[0].first_mungeable_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 builder->munge_me[0].first_mungeable_event = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 if (NILP (builder->munge_me[1].first_mungeable_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 builder->munge_me[1].first_mungeable_event = event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 /* Low-level interfaces onto event methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 enum event_stream_operation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 EVENT_STREAM_PROCESS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 EVENT_STREAM_TIMEOUT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 EVENT_STREAM_CONSOLE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 EVENT_STREAM_READ
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 check_event_stream_ok (enum event_stream_operation op)
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 (!event_stream && noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 switch (op)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 case EVENT_STREAM_PROCESS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 error ("Can't start subprocesses in -batch mode");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 case EVENT_STREAM_TIMEOUT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 error ("Can't add timeouts in -batch mode");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 case EVENT_STREAM_CONSOLE:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 error ("Can't add consoles in -batch mode");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 case EVENT_STREAM_READ:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 error ("Can't read events in -batch mode");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 else if (!event_stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 error ("event-stream callbacks not initialized (internal error?)");
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 event_stream_event_pending_p (int user)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 if (!event_stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 return event_stream->event_pending_p (user);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 maybe_read_quit_event (struct Lisp_Event *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 /* A C-g that came from `sigint_happened' will always come from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 controlling terminal. If that doesn't exist, however, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 user manually sent us a SIGINT, and we pretend the C-g came from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 the selected console. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 struct console *con;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 if (CONSOLEP (Vcontrolling_terminal) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 con = XCONSOLE (Vcontrolling_terminal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 con = XCONSOLE (Fselected_console ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 if (sigint_happened)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 int ch = CONSOLE_QUIT_CHAR (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 sigint_happened = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 Vquit_flag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 character_to_event (ch, event, con, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 event->channel = make_console (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 event_stream_next_event (struct Lisp_Event *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 Lisp_Object event_obj = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 check_event_stream_ok (EVENT_STREAM_READ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 XSETEVENT (event_obj, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 zero_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 /* If C-g was pressed, treat it as a character to be read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 Note that if C-g was pressed while we were blocking,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 the SIGINT signal handler will be called. It will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 set Vquit_flag and write a byte on our "fake pipe",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 which will unblock us. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 if (maybe_read_quit_event (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
546 DEBUG_PRINT_EMACS_EVENT ("SIGINT", event_obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 /* If a longjmp() happens in the callback, we're screwed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 Let's hope it doesn't. I think the code here is fairly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 clean and doesn't do this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 emacs_is_blocking = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 /* Do this if the poll-for-quit timer seems to be taking too
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 much CPU time when idle ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 reset_poll_for_quit ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 event_stream->next_event_cb (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 init_poll_for_quit ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 emacs_is_blocking = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 #ifdef DEBUG_XEMACS
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
566 /* timeout events have more info set later, so
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
567 print the event out in next_event_internal(). */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
568 if (event->event_type != timeout_event)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
569 DEBUG_PRINT_EMACS_EVENT ("real", event_obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 maybe_kbd_translate (event_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 event_stream_handle_magic_event (struct Lisp_Event *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 check_event_stream_ok (EVENT_STREAM_READ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 event_stream->handle_magic_event_cb (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 event_stream_add_timeout (EMACS_TIME timeout)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 check_event_stream_ok (EVENT_STREAM_TIMEOUT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 return event_stream->add_timeout_cb (timeout);
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 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 event_stream_remove_timeout (int id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 check_event_stream_ok (EVENT_STREAM_TIMEOUT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 event_stream->remove_timeout_cb (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 event_stream_select_console (struct console *con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 check_event_stream_ok (EVENT_STREAM_CONSOLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 if (!con->input_enabled)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 event_stream->select_console_cb (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 con->input_enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 event_stream_unselect_console (struct console *con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 check_event_stream_ok (EVENT_STREAM_CONSOLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 if (con->input_enabled)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 event_stream->unselect_console_cb (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 con->input_enabled = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 event_stream_select_process (struct Lisp_Process *proc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 check_event_stream_ok (EVENT_STREAM_PROCESS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 if (!get_process_selected_p (proc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 event_stream->select_process_cb (proc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 set_process_selected_p (proc, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 event_stream_unselect_process (struct Lisp_Process *proc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 check_event_stream_ok (EVENT_STREAM_PROCESS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 if (get_process_selected_p (proc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 event_stream->unselect_process_cb (proc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 set_process_selected_p (proc, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 event_stream_quit_p (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 if (event_stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 event_stream->quit_p_cb ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 /* Character prompting */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 echo_key_event (struct command_builder *command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 char buf[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 Bytecount buf_index = command_builder->echo_buf_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 Bufbyte *e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 Bytecount len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 if (buf_index < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 buf_index = 0; /* We're echoing now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 clear_echo_area (selected_frame (), Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 format_event_object (buf, XEVENT (event), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 len = strlen (buf);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
670
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 if (len + buf_index + 4 > command_builder->echo_buf_length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 e = command_builder->echo_buf + buf_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 memcpy (e, buf, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 e += len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 e[0] = ' ';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 e[1] = '-';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 e[2] = ' ';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 e[3] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 command_builder->echo_buf_index = buf_index + len + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 regenerate_echo_keys_from_this_command_keys (struct command_builder *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 builder->echo_buf_index = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 echo_key_event (builder, 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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 maybe_echo_keys (struct command_builder *command_builder, int no_snooze)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 /* Message turns off echoing unless more keystrokes turn it on again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 if (echo_area_active (f) && !EQ (Qcommand, echo_area_status (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
706 if (minibuf_level == 0
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
707 && echo_keystrokes > 0
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
708 && !lw_menu_active)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 if (!no_snooze)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 /* #### C-g here will cause QUIT. Setting dont_check_for_quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 doesn't work. See check_quit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 if (NILP (Fsit_for (make_int (echo_keystrokes), Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 /* input came in, so don't echo. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 echo_area_message (f, command_builder->echo_buf, Qnil, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 /* not echo_buf_index. That doesn't include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 the terminating " - ". */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 strlen ((char *) command_builder->echo_buf),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 Qcommand);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 reset_key_echo (struct command_builder *command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 int remove_echo_area_echo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 command_builder->echo_buf_index = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 if (remove_echo_area_echo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 clear_echo_area (f, Qcommand, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 /* random junk */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 maybe_kbd_translate (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 Emchar c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 int did_translate = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 if (XEVENT_TYPE (event) != key_press_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 if (!HASHTABLEP (Vkeyboard_translate_table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 if (EQ (Fhashtable_fullness (Vkeyboard_translate_table), Qzero))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 c = event_to_character (XEVENT (event), 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 if (c != -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 Lisp_Object traduit = Fgethash (make_char (c), Vkeyboard_translate_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 if (!NILP (traduit) && SYMBOLP (traduit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 XEVENT (event)->event.key.keysym = traduit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 XEVENT (event)->event.key.modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 did_translate = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 else if (CHARP (traduit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 struct Lisp_Event ev2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 /* This used to call Fcharacter_to_event() directly into EVENT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 but that can eradicate timestamps and other such stuff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 This way is safer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 zero_event (&ev2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 character_to_event (XCHAR (traduit), &ev2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 XCONSOLE (EVENT_CHANNEL (XEVENT (event))), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 XEVENT (event)->event.key.keysym = ev2.event.key.keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 XEVENT (event)->event.key.modifiers = ev2.event.key.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 did_translate = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 if (!did_translate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 Lisp_Object traduit = Fgethash (XEVENT (event)->event.key.keysym,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 Vkeyboard_translate_table, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 if (!NILP (traduit) && SYMBOLP (traduit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 XEVENT (event)->event.key.keysym = traduit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 did_translate = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 #ifdef DEBUG_XEMACS
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
797 if (did_translate)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
798 DEBUG_PRINT_EMACS_EVENT ("->keyboard-translate-table", event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 /* NB: The following auto-save stuff is in keyboard.c in FSFmacs, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 keystrokes_since_auto_save is equivalent to the difference between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 num_nonmacro_input_chars and last_auto_save. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 /* When an auto-save happens, record the "time", and don't do again soon. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 record_auto_save (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 keystrokes_since_auto_save = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
813
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 /* Make an auto save happen as soon as possible at command level. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 force_auto_save_soon (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 keystrokes_since_auto_save = 1 + max (auto_save_interval, 20);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 record_asynch_buffer_change ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 maybe_do_auto_save (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
829 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 keystrokes_since_auto_save++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 if (auto_save_interval > 0 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 keystrokes_since_auto_save > max (auto_save_interval, 20) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 !detect_input_pending ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 Fdo_auto_save (Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 record_auto_save ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 print_help (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 Fprinc (object, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 execute_help_form (struct command_builder *command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 Lisp_Object help = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 Bytecount buf_index = command_builder->echo_buf_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 Lisp_Object echo = ((buf_index <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 ? Qnil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 : make_string (command_builder->echo_buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 buf_index));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 GCPRO2 (echo, help);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 record_unwind_protect (save_window_excursion_unwind,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 Fcurrent_window_configuration (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 reset_key_echo (command_builder, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 help = Feval (Vhelp_form);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 if (STRINGP (help))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 internal_with_output_to_temp_buffer ("*Help*",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 print_help, help, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 Fnext_command_event (event, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 /* Remove the help from the frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 /* Hmmmm. Tricky. The unbind restores an old window configuration,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 apparently bypassing any setting of windows_structure_changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 So we need to set it so that things get redrawn properly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 /* #### This is massive overkill. Look at doing it better once the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 new redisplay is fully in place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (XFRAME (XCAR (frmcons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 redisplay ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 if (event_matches_key_specifier_p (XEVENT (event), make_char (' ')))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
889 /* Discard next key if it is a space */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 reset_key_echo (command_builder, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 Fnext_command_event (event, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 command_builder->echo_buf_index = buf_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 if (buf_index > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 memcpy (command_builder->echo_buf,
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
897 XSTRING_DATA (echo), buf_index + 1); /* terminating 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 /* input pending */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 detect_input_pending (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 /* Always call the event_pending_p hook even if there's an unread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 character, because that might do some needed ^G detection (on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 systems without SIGIO, for example).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 if (event_stream_event_pending_p (1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 if (!NILP (command_event_queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 EVENT_CHAIN_LOOP (event, command_event_queue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 if (XEVENT_TYPE (event) != eval_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 && XEVENT_TYPE (event) != magic_eval_event)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
925 return 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
931 DEFUN ("input-pending-p", Finput_pending_p, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 T if command input is currently available with no waiting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 Actually, the value is nil only if we can be sure that no input is available.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
934 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
935 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
937 return detect_input_pending () ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 /* timeouts */
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 /**** Low-level timeout functions. ****
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 These functions maintain a sorted list of one-shot timeouts (where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 the timeouts are in absolute time). They are intended for use by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 functions that need to convert a list of absolute timeouts into a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 series of intervals to wait for. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 /* We ensure that 0 is never a valid ID, so that a value of 0 can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 used to indicate an absence of a timer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 static int low_level_timeout_id_tick;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 struct low_level_timeout_blocktype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 Blocktype_declare (struct low_level_timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 } *the_low_level_timeout_blocktype;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 /* Add a one-shot timeout at time TIME to TIMEOUT_LIST. Return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 a unique ID identifying the timeout. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 add_low_level_timeout (struct low_level_timeout **timeout_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 EMACS_TIME thyme)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 struct low_level_timeout *tm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 struct low_level_timeout *t, **tt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 /* Allocate a new time struct. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 tm = Blocktype_alloc (the_low_level_timeout_blocktype);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 tm->next = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 if (low_level_timeout_id_tick == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 low_level_timeout_id_tick++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 tm->id = low_level_timeout_id_tick++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 tm->time = thyme;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 /* Add it to the queue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 tt = timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 t = *tt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 while (t && EMACS_TIME_EQUAL_OR_GREATER (tm->time, t->time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 tt = &t->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 t = *tt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 tm->next = t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 *tt = tm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 return tm->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 /* Remove the low-level timeout identified by ID from TIMEOUT_LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 If the timeout is not there, do nothing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 remove_low_level_timeout (struct low_level_timeout **timeout_list, int id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 struct low_level_timeout *t, *prev;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1002
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 /* find it */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1004
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 for (t = *timeout_list, prev = NULL; t && t->id != id; t = t->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 prev = t;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1007
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 if (!t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 return; /* couldn't find it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 if (!prev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 *timeout_list = t->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 else prev->next = t->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 Blocktype_free (the_low_level_timeout_blocktype, t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 /* If there are timeouts on TIMEOUT_LIST, store the relative time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 interval to the first timeout on the list into INTERVAL and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 return 1. Otherwise, return 0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 get_low_level_timeout_interval (struct low_level_timeout *timeout_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 EMACS_TIME *interval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 if (!timeout_list) /* no timer events; block indefinitely */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 EMACS_TIME current_time;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1031
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 /* The time to block is the difference between the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (earliest) timer on the queue and the current time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 If that is negative, then the timer will fire immediately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 but we still have to call select(), with a zero-valued
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 timeout: user events must have precedence over timer events. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 EMACS_GET_TIME (current_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 if (EMACS_TIME_GREATER (timeout_list->time, current_time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 EMACS_SUB_TIME (*interval, timeout_list->time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 current_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 EMACS_SET_SECS_USECS (*interval, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 /* Pop the first (i.e. soonest) timeout off of TIMEOUT_LIST and return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 its ID. Also, if TIME_OUT is not 0, store the absolute time of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 timeout into TIME_OUT. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 pop_low_level_timeout (struct low_level_timeout **timeout_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 EMACS_TIME *time_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 struct low_level_timeout *tm = *timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 assert (tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 id = tm->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 if (time_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 *time_out = tm->time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 *timeout_list = tm->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 Blocktype_free (the_low_level_timeout_blocktype, tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 return id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 /**** High-level timeout functions. ****/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 static int timeout_id_tick;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 /* Since timeout structures contain Lisp_Objects, they need to be GC'd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 properly. The opaque data type provides a convenient way of doing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 this without having to create a new Lisp object, since we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 provide our own mark function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 struct timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 int id; /* Id we use to identify the timeout over its lifetime */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 int interval_id; /* Id for this particular interval; this may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 be different each time the timeout is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 signalled.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 Lisp_Object function, object; /* Function and object associated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 with timeout. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 EMACS_TIME next_signal_time; /* Absolute time when the timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 is next going to be signalled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 unsigned int resignal_msecs; /* How far after the next timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 should the one after that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 occur? */
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 Lisp_Object pending_timeout_list, pending_async_timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 static Lisp_Object Vtimeout_free_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 mark_timeout (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 struct timeout *tm = (struct timeout *) XOPAQUE_DATA (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (markobj) (tm->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 return tm->object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 /* Generate a timeout and return its ID. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 event_stream_generate_wakeup (unsigned int milliseconds,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 unsigned int vanilliseconds,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 Lisp_Object function, Lisp_Object object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 int async_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 Lisp_Object op = allocate_managed_opaque (Vtimeout_free_list, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 struct timeout *timeout = (struct timeout *) XOPAQUE_DATA (op);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 EMACS_TIME current_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 EMACS_TIME interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 timeout->id = timeout_id_tick++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 timeout->resignal_msecs = vanilliseconds;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 timeout->function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 timeout->object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 EMACS_GET_TIME (current_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 EMACS_SET_SECS_USECS (interval, milliseconds / 1000,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 1000 * (milliseconds % 1000));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 EMACS_ADD_TIME (timeout->next_signal_time, current_time, interval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 if (async_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 timeout->interval_id =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 event_stream_add_async_timeout (timeout->next_signal_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 pending_async_timeout_list = noseeum_cons (op,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 pending_async_timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 timeout->interval_id =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 event_stream_add_timeout (timeout->next_signal_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 pending_timeout_list = noseeum_cons (op, pending_timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 return timeout->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 /* Given the INTERVAL-ID of a timeout just signalled, resignal the timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 as necessary and return the timeout's ID and function and object slots.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 This should be called as a result of receiving notice that a timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 has fired. INTERVAL-ID is *not* the timeout's ID, but is the ID that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 identifies this particular firing of the timeout. INTERVAL-ID's and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 timeout ID's are in separate number spaces and bear no relation to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 each other. The INTERVAL-ID is all that the event callback routines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 work with: they work only with one-shot intervals, not with timeouts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 that may fire repeatedly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 NOTE: The returned FUNCTION and OBJECT are *not* GC-protected at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 event_stream_resignal_wakeup (int interval_id, int async_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 Lisp_Object *function, Lisp_Object *object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 Lisp_Object op = Qnil, rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 struct timeout *timeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 Lisp_Object *timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 GCPRO1 (op); /* just in case ... because it's removed from the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 for awhile. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1170 timeout_list = async_p ? &pending_async_timeout_list : &pending_timeout_list;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 /* Find the timeout on the list of pending ones. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 LIST_LOOP (rest, *timeout_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 timeout = (struct timeout *) XOPAQUE_DATA (XCAR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 if (timeout->interval_id == interval_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 assert (!NILP (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 op = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 timeout = (struct timeout *) XOPAQUE_DATA (op);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 /* We make sure to snarf the data out of the timeout object before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 we free it with free_managed_opaque(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 id = timeout->id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 *function = timeout->function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 *object = timeout->object;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1188
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 /* Remove this one from the list of pending timeouts */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 *timeout_list = delq_no_quit_and_free_cons (op, *timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 /* If this timeout wants to be resignalled, do it now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 if (timeout->resignal_msecs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 EMACS_TIME current_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 EMACS_TIME interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 /* Determine the time that the next resignalling should occur.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 We do that by adding the interval time to the last signalled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 time until we get a time that's current.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (This way, it doesn't matter if the timeout was signalled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 exactly when we asked for it, or at some time later.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 EMACS_GET_TIME (current_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 EMACS_SET_SECS_USECS (interval, timeout->resignal_msecs / 1000,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 1000 * (timeout->resignal_msecs % 1000));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 EMACS_ADD_TIME (timeout->next_signal_time, timeout->next_signal_time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 interval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 } while (EMACS_TIME_GREATER (current_time, timeout->next_signal_time));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 if (async_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 timeout->interval_id =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 event_stream_add_async_timeout (timeout->next_signal_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 timeout->interval_id =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 event_stream_add_timeout (timeout->next_signal_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 /* Add back onto the list. Note that the effect of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 is to move frequently-hit timeouts to the front of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 list, which is a good thing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 *timeout_list = noseeum_cons (op, *timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 free_managed_opaque (Vtimeout_free_list, op);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1227
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 return id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 event_stream_disable_wakeup (int id, int async_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 struct timeout *timeout = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 Lisp_Object rest = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 Lisp_Object *timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 if (async_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 timeout_list = &pending_async_timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 timeout_list = &pending_timeout_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 /* 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
1245 LIST_LOOP (rest, *timeout_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 timeout = (struct timeout *) XOPAQUE_DATA (XCAR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 if (timeout->id == id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 /* If we found it, remove it from the list and disable the pending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 one-shot. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 if (!NILP (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 Lisp_Object op = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 *timeout_list =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 delq_no_quit_and_free_cons (op, *timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 if (async_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 event_stream_remove_async_timeout (timeout->interval_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 event_stream_remove_timeout (timeout->interval_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 free_managed_opaque (Vtimeout_free_list, op);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 153
diff changeset
1267 static int
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1268 event_stream_wakeup_pending_p (int id, int async_p)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1269 {
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1270 struct timeout *timeout;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1271 Lisp_Object rest = Qnil;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1272 Lisp_Object timeout_list;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1273 int found = 0;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1274
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1275
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1276 if (async_p)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1277 timeout_list = pending_async_timeout_list;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1278 else
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1279 timeout_list = pending_timeout_list;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1280
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1281 /* Find the element on the list of pending ones, if it's still there. */
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1282 LIST_LOOP (rest, timeout_list)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1283 {
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1284 timeout = (struct timeout *) XOPAQUE_DATA (XCAR (rest));
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1285 if (timeout->id == id)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1286 {
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1287 found = 1;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1288 break;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1289 }
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1290 }
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1291
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1292 return found;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1293 }
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
1294
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 /**** Asynch. timeout functions (see also signal.c) ****/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 extern int poll_for_quit_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 #ifndef SIGCHLD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 extern int poll_for_sigchld_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 event_stream_deal_with_async_timeout (int interval_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 Lisp_Object humpty, dumpty;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 #if (!defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)) || !defined (SIGCHLD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 int id =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 event_stream_resignal_wakeup (interval_id, 1, &humpty, &dumpty);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 if (id == poll_for_quit_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 quit_check_signal_happened = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 quit_check_signal_tick_count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 #if !defined (SIGCHLD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 if (id == poll_for_sigchld_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 kick_status_notify ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 /* call1 GC-protects its arguments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 call1_trapping_errors ("Error in asynchronous timeout callback",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 humpty, dumpty);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 /**** Lisp-level timeout functions. ****/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 lisp_number_to_milliseconds (Lisp_Object secs, int allow_0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 unsigned long msecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 double fsecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 CHECK_INT_OR_FLOAT (secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 fsecs = XFLOATINT (secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 long fsecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 CHECK_INT_OR_FLOAT (secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 fsecs = XINT (secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 msecs = 1000 * fsecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 if (fsecs < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 signal_simple_error ("timeout is negative", secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 if (!allow_0 && fsecs == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 signal_simple_error ("timeout is non-positive", secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 if (fsecs >= (((unsigned int) 0xFFFFFFFF) / 1000))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 ("timeout would exceed 32 bits when represented in milliseconds", secs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 return msecs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1365 DEFUN ("add-timeout", Fadd_timeout, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 Add a timeout, to be signaled after the timeout period has elapsed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 SECS is a number of seconds, expressed as an integer or a float.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 FUNCTION will be called after that many seconds have elapsed, with one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 argument, the given OBJECT. If the optional RESIGNAL argument is provided,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 then after this timeout expires, `add-timeout' will automatically be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 again with RESIGNAL as the first argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 This function returns an object which is the id number of this particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 timeout. You can pass that object to `disable-timeout' to turn off the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 timeout before it has been signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 NOTE: Id numbers as returned by this function are in a distinct namespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 from those returned by `add-async-timeout'. This means that the same id
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 number could refer to a pending synchronous timeout and a different pending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 asynchronous timeout, and that you cannot pass an id from `add-timeout'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 to `disable-async-timeout', or vice-versa.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 The number of seconds may be expressed as a floating-point number, in which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 case some fractional part of a second will be used. Caveat: the usable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 timeout granularity will vary from system to system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 Adding a timeout causes a timeout event to be returned by `next-event', and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 the function will be invoked by `dispatch-event,' so if emacs is in a tight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 loop, the function will not be invoked until the next call to sit-for or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 until the return to top-level (the same is true of process filters).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 If you need to have a timeout executed even when XEmacs is in the midst of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 running Lisp code, use `add-async-timeout'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 WARNING: if you are thinking of calling add-timeout from inside of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 callback function as a way of resignalling a timeout, think again. There
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 is a race condition. That's why the RESIGNAL argument exists.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1398 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1399 (secs, function, object, resignal))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 unsigned long msecs = lisp_number_to_milliseconds (secs, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 unsigned long msecs2 = (NILP (resignal) ? 0 :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 lisp_number_to_milliseconds (resignal, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 Lisp_Object lid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 lid = make_int (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 if (id != XINT (lid)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 return lid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1412 DEFUN ("disable-timeout", Fdisable_timeout, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 Disable a timeout from signalling any more.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 ID should be a timeout id number as returned by `add-timeout'. If ID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 corresponds to a one-shot timeout that has already signalled, nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 will happen.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 It will not work to call this function on an id number returned by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 `add-async-timeout'. Use `disable-async-timeout' for that.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1420 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1421 (id))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 CHECK_INT (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 event_stream_disable_wakeup (XINT (id), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1428 DEFUN ("add-async-timeout", Fadd_async_timeout, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 Add an asynchronous timeout, to be signaled after an interval has elapsed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 SECS is a number of seconds, expressed as an integer or a float.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 FUNCTION will be called after that many seconds have elapsed, with one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 argument, the given OBJECT. If the optional RESIGNAL argument is provided,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 then after this timeout expires, `add-async-timeout' will automatically be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 called again with RESIGNAL as the first argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 This function returns an object which is the id number of this particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 timeout. You can pass that object to `disable-async-timeout' to turn off
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 the timeout before it has been signalled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 NOTE: Id numbers as returned by this function are in a distinct namespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 from those returned by `add-timeout'. This means that the same id number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 could refer to a pending synchronous timeout and a different pending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 asynchronous timeout, and that you cannot pass an id from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 `add-async-timeout' to `disable-timeout', or vice-versa.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 The number of seconds may be expressed as a floating-point number, in which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 case some fractional part of a second will be used. Caveat: the usable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 timeout granularity will vary from system to system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 Adding an asynchronous timeout causes the function to be invoked as soon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 as the timeout occurs, even if XEmacs is in the midst of executing some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 other code. (This is unlike the synchronous timeouts added with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 `add-timeout', where the timeout will only be signalled when XEmacs is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 waiting for events, i.e. the next return to top-level or invocation of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 `sit-for' or related functions.) This means that the function that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 called *must* not signal an error or change any global state (e.g. switch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 buffers or windows) except when locking code is in place to make sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 that race conditions don't occur in the interaction between the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 asynchronous timeout function and other code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 Under most circumstances, you should use `add-timeout' instead, as it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 much safer. Asynchronous timeouts should only be used when such behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 is really necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 Asynchronous timeouts are blocked and will not occur when `inhibit-quit'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 is non-nil. As soon as `inhibit-quit' becomes nil again, any pending
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 asynchronous timeouts will get called immediately. (Multiple occurrences
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 of the same asynchronous timeout are not queued, however.) While the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 callback function of an asynchronous timeout is invoked, `inhibit-quit'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 is automatically bound to non-nil, and thus other asynchronous timeouts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 will be blocked unless the callback function explicitly sets `inhibit-quit'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 to nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 WARNING: if you are thinking of calling `add-async-timeout' from inside of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 callback function as a way of resignalling a timeout, think again. There
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 is a race condition. That's why the RESIGNAL argument exists.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1477 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
1478 (secs, function, object, resignal))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 unsigned long msecs = lisp_number_to_milliseconds (secs, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 unsigned long msecs2 = (NILP (resignal) ? 0 :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 lisp_number_to_milliseconds (resignal, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 Lisp_Object lid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 lid = make_int (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 if (id != XINT (lid)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 return lid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1491 DEFUN ("disable-async-timeout", Fdisable_async_timeout, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 Disable an asynchronous timeout from signalling any more.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 ID should be a timeout id number as returned by `add-async-timeout'. If ID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 corresponds to a one-shot timeout that has already signalled, nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 will happen.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 It will not work to call this function on an id number returned by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 `add-timeout'. Use `disable-timeout' for that.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1499 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1500 (id))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 CHECK_INT (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 event_stream_disable_wakeup (XINT (id), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 /* enqueuing and dequeuing events */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 /* Add an event to the back of the command-event queue: it will be the next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 event read after all pending events. This only works on keyboard,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 mouse-click, misc-user, and eval events.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 enqueue_command_event (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 enqueue_event (event, &command_event_queue, &command_event_queue_tail);
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 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 dequeue_command_event (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 return dequeue_event (&command_event_queue, &command_event_queue_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 /* put the event on the typeahead queue, unless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 the event is the quit char, in which case the `QUIT'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 which will occur on the next trip through this loop is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 all the processing we should do - leaving it on the queue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 would cause the quit to be processed twice.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 enqueue_command_event_1 (Lisp_Object event_to_copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 /* do not call check_quit() here. Vquit_flag was set in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 next_event_internal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 if (NILP (Vquit_flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 enqueue_command_event (Fcopy_event (event_to_copy, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 enqueue_magic_eval_event (void (*fun) (Lisp_Object), Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1546 Lisp_Object event = Fmake_event ();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 XEVENT (event)->event_type = magic_eval_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 /* channel for magic_eval events is nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 XEVENT (event)->event.magic_eval.internal_function = fun;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 XEVENT (event)->event.magic_eval.object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 enqueue_command_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1555 DEFUN ("enqueue-eval-event", Fenqueue_eval_event, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 Add an eval event to the back of the eval event queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 When this event is dispatched, FUNCTION (which should be a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 of one argument) will be called with OBJECT as its argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 See `next-event' for a description of event types and how events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 are received.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1561 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1562 (function, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1564 Lisp_Object event = Fmake_event ();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 XEVENT (event)->event_type = eval_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 /* channel for eval events is nil */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 XEVENT (event)->event.eval.function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 XEVENT (event)->event.eval.object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 enqueue_command_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 enqueue_misc_user_event (Lisp_Object channel, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1579 Lisp_Object event = Fmake_event ();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 XEVENT (event)->event_type = misc_user_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 XEVENT (event)->channel = channel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 XEVENT (event)->event.eval.function = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 XEVENT (event)->event.eval.object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 enqueue_command_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 /* focus-event handling */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 Ben's capsule lecture on focus:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 In FSFmacs `select-frame' never changes the window-manager frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 focus. All it does is change the "selected frame". This is similar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 to what happens when we call `select-device' or `select-console'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 Whenever an event comes in (including a keyboard event), its frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 selected; therefore, evaluating `select-frame' in *scratch* won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 cause any effects because the next received event (in the same frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 will cause a switch back to the frame displaying *scratch*.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 Whenever a focus-change event is received from the window manager, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 generates a `switch-frame' event, which causes the Lisp function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 `handle-switch-frame' to get run. This basically just runs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 `select-frame' (see below, however).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 In FSFmacs, if you want to have an operation run when a frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 selected, you supply an event binding for `switch-frame' (and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 maybe call `handle-switch-frame', or something ...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 In XEmacs, we *do* change the window-manager frame focus as a result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 of `select-frame', but not until the next time an event is received,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 so that a function that momentarily changes the selected frame won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 cause WM focus flashing. (#### There's something not quite right here;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 this is causing the wrong-cursor-focus problems that you occasionally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 see. But the general idea is correct.) This approach is winning for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 people who use the explicit-focus model, but is trickier to implement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 We also don't make the `switch-frame' event visible but instead have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 `select-frame-hook', which is a better approach.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 There is the problem of surrogate minibuffers, where when we enter the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 minibuffer, you essentially want to temporarily switch the WM focus to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 the frame with the minibuffer, and switch it back when you exit the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 FSFmacs solves this with the crockish `redirect-frame-focus', which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 says "for keyboard events received from FRAME, act like they're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 coming from FOCUS-FRAME". I think what this means is that, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 a keyboard event comes in and the event manager is about to select the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 event's frame, if that frame has its focus redirected, the redirected-to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 frame is selected instead. That way, if you're in a minibufferless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 frame and enter the minibuffer, then all Lisp functions that run see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 the selected frame as the minibuffer's frame rather than the minibufferless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 frame you came from, so that (e.g.) your typing actually appears in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 the minibuffer's frame and things behave sanely.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 There's also some weird logic that switches the redirected frame focus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 from one frame to another if Lisp code explicitly calls `select-frame'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 \(but not if `handle-switch-frame' is called), and saves and restores
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 the frame focus in window configurations, etc. etc. All of this logic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 is heavily #if 0'd, with lots of comments saying "No, this approach
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 doesn't seem to work, so I'm trying this ... is it reasonable?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 Well, I'm not sure ..." that are a red flag indicating crockishness.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 Because of our way of doing things, we can avoid all this crock.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 Keyboard events never cause a select-frame (who cares what frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 they're associated with? They come from a console, only). We change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 the actual WM focus to a surrogate minibuffer frame, so we don't have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 to do any internal redirection. In order to get the focus back,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 I took the approach in minibuf.el of just checking to see if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 frame we moved to is still the selected frame, and move back to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 old one if so. Conceivably we might have to do the weird "tracking"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 that FSFmacs does when `select-frame' is called, but I don't think
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 so. If the selected frame moved from the minibuffer frame, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 we just leave it there, figuring that someone knows what they're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 doing. Because we don't have any redirection recorded anywhere,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 it's safe to do this, and we don't end up with unwanted redirection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 run_select_frame_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 run_hook (Qselect_frame_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 run_deselect_frame_hook (void)
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 0 /* unclean! FSF calls this at all sorts of random places,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 including a bunch of places in their mouse.el. If this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 is implemented, it has to be done cleanly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 run_hook (Qmouse_leave_buffer_hook); /* #### Correct? It's also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 called in `call-interactively'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 Does this mean it will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 called twice? Oh well, FSF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 bug -- FSF calls it in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 `handle-switch-frame',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 which is approximately the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 same as the caller of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 run_hook (Qdeselect_frame_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 /* When select-frame is called, we want to tell the window system that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 the focus should be changed to point to the new frame. However,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 sometimes Lisp functions will temporarily change the selected frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 (e.g. to call a function that operates on the selected frame),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 and it's annoying if this focus-change happens exactly when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 select-frame is called, because then you get some flickering of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 window-manager border and perhaps other undesirable results. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 really only want to change the focus when we're about to retrieve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 an event from the user. To do this, we keep track of the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 where the window-manager focus lies on, and just before waiting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 for user events, check the currently selected frame and change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 the focus as necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 investigate_frame_change (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 /* if the selected frame was changed, change the window-system
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 focus to the new frame. We don't do it when select-frame was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 called, to avoid flickering and other unwanted side effects when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 the frame is just changed temporarily. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 struct device *d = XDEVICE (XCAR (devcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 Lisp_Object sel_frame = DEVICE_SELECTED_FRAME (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 /* You'd think that maybe we should use FRAME_WITH_FOCUS_REAL,
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 86
diff changeset
1720 but that can cause us to end up in an infinite loop focusing
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 between two frames. It seems that since the call to `select-frame'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 in emacs_handle_focus_change_final() is based on the _FOR_HOOKS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 value, we need to do so too. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 if (!NILP (sel_frame) &&
72
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
1725 !focus_follows_mouse &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 !EQ (DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d), sel_frame) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 !NILP (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 !EQ (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d), sel_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 /* prevent us from issuing the same request more than once */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = sel_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 MAYBE_DEVMETH (d, focus_on_frame, (XFRAME (sel_frame)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 cleanup_after_missed_defocusing (Lisp_Object frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 if (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 Fselect_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 emacs_handle_focus_change_preliminary (Lisp_Object frame_inp_and_dev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 Lisp_Object frame = Fcar (frame_inp_and_dev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 if (!DEVICE_LIVE_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 d = XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 /* Any received focus-change notifications render invalid any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 pending focus-change requests. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 if (in_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 Lisp_Object focus_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 if (!FRAME_LIVE_P (XFRAME (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 focus_frame = DEVICE_FRAME_WITH_FOCUS_REAL (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 /* Mark the minibuffer as changed to make sure it gets updated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 properly if the echo area is active. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 MARK_WINDOWS_CHANGED (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 if (FRAMEP (focus_frame) && !EQ (frame, focus_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 /* Oops, we missed a focus-out event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 redisplay_redraw_cursor (XFRAME (focus_frame), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 DEVICE_FRAME_WITH_FOCUS_REAL (d) = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 if (!EQ (frame, focus_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 redisplay_redraw_cursor (XFRAME (frame), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 /* We ignore the frame reported in the event. If it's different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 from where we think the focus was, oh well -- we messed up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 Nonetheless, we pretend we were right, for sensible behavior. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 frame = DEVICE_FRAME_WITH_FOCUS_REAL (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 if (!NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 if (FRAME_LIVE_P (XFRAME (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 redisplay_redraw_cursor (XFRAME (frame), 1);
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 /* Called from the window-system-specific code when we receive a
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1803 notification that the focus lies on a particular frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 Argument is a cons: (frame . (device . in-p)) where in-p is non-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 for focus-in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 emacs_handle_focus_change_final (Lisp_Object frame_inp_and_dev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 Lisp_Object frame = Fcar (frame_inp_and_dev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 if (!DEVICE_LIVE_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 d = XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 if (in_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 Lisp_Object focus_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 if (!FRAME_LIVE_P (XFRAME (frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 focus_frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 if (FRAMEP (focus_frame) && !EQ (frame, focus_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 /* Oops, we missed a focus-out event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 Fselect_frame (focus_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 /* Do an unwind-protect in case an error occurs in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 the deselect-frame-hook */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 record_unwind_protect (cleanup_after_missed_defocusing, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 run_deselect_frame_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 /* the cleanup method changed the focus frame to nil, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 we need to reflect this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 focus_frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 Fselect_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 if (!EQ (frame, focus_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 run_select_frame_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 /* We ignore the frame reported in the event. If it's different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 from where we think the focus was, oh well -- we messed up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 Nonetheless, we pretend we were right, for sensible behavior. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 if (!NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 run_deselect_frame_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 /* retrieving the next event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 static int in_single_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 /* #### These functions don't currently do anything. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 single_console_state (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 in_single_console = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 any_console_state (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 in_single_console = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 in_single_console_state (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 return in_single_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1890 /* the number of keyboard characters read. callint.c wants this. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 Charcount num_input_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 static void
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
1894 next_event_internal (Lisp_Object target_event, int allow_queued)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 /* QUIT; This is incorrect - the caller must do this because some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 callers (ie, Fnext_event()) do not want to QUIT. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 assert (NILP (XEVENT_NEXT (target_event)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 GCPRO1 (target_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 investigate_frame_change ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1904
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 if (allow_queued && !NILP (command_event_queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 Lisp_Object event = dequeue_command_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 Fcopy_event (event, target_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 Fdeallocate_event (event);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1910 DEBUG_PRINT_EMACS_EVENT ("command event queue", target_event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 struct Lisp_Event *e = XEVENT (target_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 /* The command_event_queue was empty. Wait for an event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 event_stream_next_event (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 /* If this was a timeout, then we need to extract some data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 out of the returned closure and might need to resignal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 if (e->event_type == timeout_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 Lisp_Object tristan, isolde;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 e->event.timeout.id_number =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 event_stream_resignal_wakeup (e->event.timeout.interval_id, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 &tristan, &isolde);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1928
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 e->event.timeout.function = tristan;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 e->event.timeout.object = isolde;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 /* next_event_internal() doesn't print out timeout events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 because of the extra info we just set. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1933 DEBUG_PRINT_EMACS_EVENT ("real, timeout", target_event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 /* If we read a ^G, then set quit-flag but do not discard the ^G.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 The callers of next_event_internal() will do one of two things:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 -- set Vquit_flag to Qnil. (next-event does this.) This will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 cause the ^G to be treated as a normal keystroke.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 -- not change Vquit_flag but attempt to enqueue the ^G, at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 which point it will be discarded. The next time QUIT is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 called, it will notice that Vquit_flag was set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 if (e->event_type == key_press_event &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 event_matches_key_specifier_p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 (e, make_char (CONSOLE_QUIT_CHAR (XCONSOLE (EVENT_CHANNEL (e))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 Vquit_flag = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 run_pre_idle_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 if (!NILP (Vpre_idle_hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 && !detect_input_pending ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 safe_run_hook_trapping_errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 ("Error in `pre-idle-hook' (setting hook to nil)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 Qpre_idle_hook, 1);
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 static void push_this_command_keys (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 static void push_recent_keys (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 static void dribble_out_event (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 static void execute_internal_event (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1972 DEFUN ("next-event", Fnext_event, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 Return the next available event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 Pass this object to `dispatch-event' to handle it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 In most cases, you will want to use `next-command-event', which returns
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
1976 the next available "user" event (i.e. keypress, button-press,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 button-release, or menu selection) instead of this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 If EVENT is non-nil, it should be an event object and will be filled in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 and returned; otherwise a new event object will be created and returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 If PROMPT is non-nil, it should be a string and will be displayed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 echo area while this function is waiting for an event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 The next available event will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 -- any events in `unread-command-events' or `unread-command-event'; else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 -- the next event in the currently executing keyboard macro, if any; else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 -- an event queued by `enqueue-eval-event', if any; else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 -- the next available event from the window system or terminal driver.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 In the last case, this function will block until an event is available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 The returned event will be one of the following types:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 -- a key-press event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 -- a button-press or button-release event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 -- a misc-user-event, meaning the user selected an item on a menu or used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 the scrollbar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 -- a process event, meaning that output from a subprocess is available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 -- a timeout event, meaning that a timeout has elapsed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 -- an eval event, which simply causes a function to be executed when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 event is dispatched. Eval events are generated by `enqueue-eval-event'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 or by certain other conditions happening.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 -- a magic event, indicating that some window-system-specific event
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2005 happened (such as a focus-change notification) that must be handled
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 synchronously with other events. `dispatch-event' knows what to do with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 these events.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2008 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2009 (event, prompt))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 {
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 110
diff changeset
2011 /* This function can call lisp */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 /* #### We start out using the selected console before an event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 is received, for echoing the partially completed command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 This is most definitely wrong -- there needs to be a separate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 echo area for each console! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 struct console *con = XCONSOLE (Vselected_console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 struct command_builder *command_builder =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 XCOMMAND_BUILDER (con->command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 int store_this_key = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 struct gcpro gcpro1;
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2021 #ifdef LWLIB_MENUBARS_LUCID
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2022 extern int in_menu_callback; /* defined in menubar-x.c */
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2023 #endif /* LWLIB_MENUBARS_LUCID */
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2024
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 GCPRO1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 /* DO NOT do QUIT anywhere within this function or the functions it calls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 We want to read the ^G as an event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2029 #ifdef LWLIB_MENUBARS_LUCID
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2030 /*
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2031 * #### Fix the menu code so this isn't necessary.
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2032 *
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2033 * We cannot allow the lwmenu code to be reentered, because the
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2034 * code is not written to be reentrant and will crash. Therefore
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2035 * paths from the menu callbacks back into the menu code have to
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2036 * be blocked. Fnext_event is the normal path into the menu code,
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2037 * so we signal an error here.
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2038 */
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2039 if (in_menu_callback)
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2040 error ("Attempt to call next-event inside menu callback");
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2041 #endif /* LWLIB_MENUBARS_LUCID */
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 120
diff changeset
2042
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 if (NILP (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 if (!NILP (prompt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 Bytecount len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 CHECK_STRING (prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2053 len = XSTRING_LENGTH (prompt);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 if (command_builder->echo_buf_length < len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 len = command_builder->echo_buf_length - 1;
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
2056 memcpy (command_builder->echo_buf, XSTRING_DATA (prompt), len);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 command_builder->echo_buf[len] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 command_builder->echo_buf_index = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 echo_area_message (XFRAME (CONSOLE_SELECTED_FRAME (con)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 command_builder->echo_buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 Qnil, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 command_builder->echo_buf_index,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 Qcommand);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 start_over_and_avoid_hosage:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 /* If there is something in unread-command-events, simply return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 But do some error checking to make sure the user hasn't put something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 in the unread-command-events that they shouldn't have.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 This does not update this-command-keys and recent-keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 if (!NILP (Vunread_command_events))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 if (!CONSP (Vunread_command_events))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 Vunread_command_events = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 signal_error (Qwrong_type_argument,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 list3 (Qconsp, Vunread_command_events,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 Qunread_command_events));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 Lisp_Object e = XCAR (Vunread_command_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 Vunread_command_events = XCDR (Vunread_command_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 if (!EVENTP (e) || !command_event_p (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 signal_error (Qwrong_type_argument,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 list3 (Qcommand_event_p, e, Qunread_command_events));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 redisplay ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 if (!EQ (e, event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 Fcopy_event (e, event);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2092 DEBUG_PRINT_EMACS_EVENT ("unread-command-events", event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2096 /* Do similar for unread-command-event (obsoleteness support). */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 else if (!NILP (Vunread_command_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 Lisp_Object e = Vunread_command_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 Vunread_command_event = Qnil;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2101
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 if (!EVENTP (e) || !command_event_p (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 signal_error (Qwrong_type_argument,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 list3 (Qeventp, e, Qunread_command_event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 if (!EQ (e, event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 Fcopy_event (e, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 redisplay ();
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2110 DEBUG_PRINT_EMACS_EVENT ("unread-command-event", event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2112
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 /* If we're executing a keyboard macro, take the next event from that,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 and update this-command-keys and recent-keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 Note that the unread-command-events take precedence over kbd macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 if (!NILP (Vexecuting_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 redisplay ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 pop_kbd_macro_event (event); /* This throws past us at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 end-of-macro. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 store_this_key = 1;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2125 DEBUG_PRINT_EMACS_EVENT ("keyboard macro", event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 /* Otherwise, read a real event, possibly from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 command_event_queue, and update this-command-keys and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 recent-keys. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 run_pre_idle_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 redisplay ();
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2134 next_event_internal (event, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 Vquit_flag = Qnil; /* Read C-g as an event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 store_this_key = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 status_notify (); /* Notice process change */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 #ifdef C_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 alloca (0); /* Cause a garbage collection now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 /* Since we can free the most stuff here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 * (since this is typically called from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 * the command-loop top-level). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 #endif /* C_ALLOCA */
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 (object_dead_p (XEVENT (event)->channel))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 /* event_console_or_selected may crash if the channel is dead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 Best just to eat it and get the next event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 goto start_over_and_avoid_hosage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 /* OK, now we can stop the selected-console kludge and use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 actual console from the event. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 con = event_console_or_selected (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 command_builder = XCOMMAND_BUILDER (con->command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 switch (XEVENT_TYPE (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 goto RETURN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 case misc_user_event:
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2165 /* don't echo menu accelerator keys */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2166 reset_key_echo (command_builder, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 goto EXECUTE_KEY;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 case button_press_event: /* key or mouse input can trigger prompting */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 goto STORE_AND_EXECUTE_KEY;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 case key_press_event: /* any key input can trigger autosave */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 maybe_do_auto_save ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 num_input_chars++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 STORE_AND_EXECUTE_KEY:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 if (store_this_key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 echo_key_event (command_builder, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 EXECUTE_KEY:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 /* Store the last-input-event. The semantics of this is that it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 the thing most recently returned by next-command-event. It need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 not have come from the keyboard or a keyboard macro, it may have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 come from unread-command-events. It's always a command-event (a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 key, click, or menu selection), never a motion or process event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 if (!EVENTP (Vlast_input_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 Vlast_input_event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 if (XEVENT_TYPE (Vlast_input_event) == dead_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 Vlast_input_event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 error ("Someone deallocated last-input-event!");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 if (! EQ (event, Vlast_input_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 Fcopy_event (event, Vlast_input_event);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2198
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 /* last-input-char and last-input-time are derived from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 last-input-event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 Note that last-input-char will never have its high-bit set, in an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 effort to sidestep the ambiguity between M-x and oslash.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 Vlast_input_char = Fevent_to_character (Vlast_input_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 Qnil, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 EMACS_TIME t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 EMACS_GET_TIME (t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 if (!CONSP (Vlast_input_time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 Vlast_input_time = Fcons (Qnil, Qnil);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2211 XCAR (Vlast_input_time) = make_int ((EMACS_SECS (t) >> 16) & 0xffff);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2212 XCDR (Vlast_input_time) = make_int ((EMACS_SECS (t) >> 0) & 0xffff);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 /* If this key came from the keyboard or from a keyboard macro, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 it goes into the recent-keys and this-command-keys vectors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 If this key came from the keyboard, and we're defining a keyboard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 macro, then it goes into the macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 if (store_this_key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 push_this_command_keys (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 push_recent_keys (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 dribble_out_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 if (!EVENTP (command_builder->current_events))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 finalize_kbd_macro_chars (con);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 store_kbd_macro_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 /* If this is the help char and there is a help form, then execute the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 help form and swallow this character. This is the only place where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 calling Fnext_event() can cause arbitrary lisp code to run. Note
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 that execute_help_form() calls Fnext_command_event(), which calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 this function, as well as Fdispatch_event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 if (!NILP (Vhelp_form) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 event_matches_key_specifier_p (XEVENT (event), Vhelp_char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 execute_help_form (command_builder, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 RETURN:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2244 return event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2247 DEFUN ("next-command-event", Fnext_command_event, 0, 2, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2248 Return the next available "user" event.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 Pass this object to `dispatch-event' to handle it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 If EVENT is non-nil, it should be an event object and will be filled in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 and returned; otherwise a new event object will be created and returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 If PROMPT is non-nil, it should be a string and will be displayed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 echo area while this function is waiting for an event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 The event returned will be a keyboard, mouse press, or mouse release event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 If there are non-command events available (mouse motion, sub-process output,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 etc) then these will be executed (with `dispatch-event') and discarded. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 function is provided as a convenience; it is equivalent to the lisp code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 (next-event event prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 (not (or (key-press-event-p event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 (button-press-event-p event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 (button-release-event-p event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 (misc-user-event-p event))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 (dispatch-event event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2269 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2270 (event, prompt))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 GCPRO1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 maybe_echo_keys (XCOMMAND_BUILDER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 (XCONSOLE (Vselected_console)->
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 command_builder), 0); /* #### This sucks bigtime */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 event = Fnext_event (event, prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 if (command_event_p (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2287 return event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 reset_current_events (struct command_builder *command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 Lisp_Object event = command_builder->current_events;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 reset_command_builder_event_chain (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 if (EVENTP (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 deallocate_event_chain (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2299 DEFUN ("discard-input", Fdiscard_input, 0, 0, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2300 Discard any pending "user" events.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 Also cancel any kbd macro being defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 A user event is a key press, button press, button release, or
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2303 "misc-user" event (menu selection or scrollbar action).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2304 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2305 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 /* This throws away user-input on the queue, but doesn't process any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 events. Calling dispatch_event() here leads to a race condition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 Lisp_Object event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 Lisp_Object head = Qnil, tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 Lisp_Object oiq = Vinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 /* #### not correct here with Vselected_console? Should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 discard-input take a console argument, or maybe map over
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 all consoles? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 struct console *con = XCONSOLE (Vselected_console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 /* next_event_internal() can cause arbitrary Lisp code to be evalled */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 GCPRO2 (event, oiq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 Vinhibit_quit = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 /* If a macro was being defined then we have to mark the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 has changed to ensure that it gets updated correctly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 if (!NILP (con->defining_kbd_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 MARK_MODELINE_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 con->defining_kbd_macro = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 reset_current_events (XCOMMAND_BUILDER (con->command_builder));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 while (!NILP (command_event_queue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 || event_stream_event_pending_p (1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 /* This will take stuff off the command_event_queue, or read it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 from the event_stream, but it will not block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2335 next_event_internal (event, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 Vquit_flag = Qnil; /* Treat C-g as a user event (ignore it).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 It is vitally important that we reset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 Vquit_flag here. Otherwise, if we're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 reading from a TTY console,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 maybe_read_quit_event() will notice
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 that C-g has been set and send us
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 another C-g. That will cause us
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 to get right back here, and read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 another C-g, ad infinitum ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 /* If the event is a user event, ignore it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 if (!command_event_p (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 /* Otherwise, chain the event onto our list of events not to ignore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 and keep reading until the queue is empty. This does not mean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 that if a subprocess is generating an infinite amount of output,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 we will never terminate (*provided* that the behavior of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 next_event_cb() is correct -- see the comment in events.h),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 because this loop ends as soon as there are no more user events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 on the command_event_queue or event_stream.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 enqueue_event (Fcopy_event (event, Qnil), &head, &tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 if (!NILP (command_event_queue) || !NILP (command_event_queue_tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 /* Now tack our chain of events back on to the front of the queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 Actually, since the queue is now drained, we can just replace it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 The effect of this will be that we have deleted all user events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 from the input stream without changing the relative ordering of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 any other events. (Some events may have been taken from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 event_stream and added to the command_event_queue, however.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 At this time, the command_event_queue will contain only eval_events.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 command_event_queue = head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 command_event_queue_tail = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 Fdeallocate_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 Vinhibit_quit = oiq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 return Qnil;
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 /* pausing until an action occurs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2389 /* This is used in accept-process-output, sleep-for and sit-for.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2390 Before running any process_events in these routines, we set
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2391 recursive_sit_for to Qt, and use this unwind protect to reset it to
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2392 Qnil upon exit. When recursive_sit_for is Qt, calling sit-for will
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2393 cause it to return immediately.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2394
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2395 All of these routines install timeouts, so we clear the installed
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2396 timeout as well.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2397
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2398 Note: It's very easy to break the desired behaviours of these
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2399 3 routines. If you make any changes to anything in this area, run
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2400 the regression tests at the bottom of the file. -- dmoore */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2401
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2402
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2403 static Lisp_Object
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2404 sit_for_unwind (Lisp_Object timeout_id)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2405 {
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2406 if (!NILP(timeout_id))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2407 Fdisable_timeout (timeout_id);
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2408
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2409 recursive_sit_for = Qnil;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2410 return Qnil;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2411 }
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2412
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 /* #### Is (accept-process-output nil 3) supposed to be like (sleep-for 3)?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2416 DEFUN ("accept-process-output", Faccept_process_output, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 Allow any pending output from subprocesses to be read by Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 It is read into the process' buffers or given to their filter functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 Non-nil arg PROCESS means do not return until some output has been received
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2420 from PROCESS. Nil arg PROCESS means do not return until some output has
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2421 been received from any process.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 If the second arg is non-nil, it is the maximum number of seconds to wait:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 this function will return after that much time even if no input has arrived
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 from PROCESS. This argument may be a float, meaning wait some fractional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 part of a second.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 If the third arg is non-nil, it is a number of milliseconds that is added
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 to the second arg. (This exists only for compatibility.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 Return non-nil iff we received any output before the timeout expired.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2429 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2430 (process, timeout_secs, timeout_msecs))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 Lisp_Object event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 Lisp_Object result = Qnil;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2436 int timeout_id = -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 int timeout_enabled = 0;
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2438 int done = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 struct buffer *old_buffer = current_buffer;
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2440 int count;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2441
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 /* We preserve the current buffer but nothing else. If a focus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 change alters the selected window then the top level event loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 will eventually alter current_buffer to match. In the mean time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 we don't want to mess up whatever called this function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 if (!NILP (process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 CHECK_PROCESS (process);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 GCPRO2 (event, process);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2452 if (!NILP (timeout_secs) || !NILP (timeout_msecs))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 unsigned long msecs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 if (!NILP (timeout_secs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 msecs = lisp_number_to_milliseconds (timeout_secs, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 if (!NILP (timeout_msecs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 CHECK_NATNUM (timeout_msecs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 msecs += XINT (timeout_msecs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 if (msecs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 timeout_id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 timeout_enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2471 count = specpdl_depth ();
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2472 record_unwind_protect (sit_for_unwind,
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2473 timeout_enabled ? make_int (timeout_id) : Qnil);
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2474 recursive_sit_for = Qt;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2475
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2476 while (!done &&
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2477 ((NILP (process) && timeout_enabled) ||
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2478 (NILP (process) && event_stream_event_pending_p (0)) ||
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2479 (!NILP (process))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 /* Calling detect_input_pending() is the wrong thing here, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 that considers the Vunread_command_events and command_event_queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 We don't need to look at the command_event_queue because we are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 only interested in process events, which don't go on that. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 fact, we can't read from it anyway, because we put stuff on it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 Note that event_stream->event_pending_p must be called in such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 a way that it says whether any events *of any kind* are ready,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 not just user events, or (accept-process-output nil) will fail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 to dispatch any process events that may be on the queue. It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 not clear to me that this is important, because the top-level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 loop will process it, and I don't think that there is ever a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 time when one calls accept-process-output with a nil argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 and really need the processes to be handled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2495 /* If our timeout has arrived, we move along. */
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
2496 if (timeout_enabled && !event_stream_wakeup_pending_p (timeout_id, 0))
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2497 {
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2498 timeout_enabled = 0;
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2499 done = 1; /* We're done. */
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2500 continue; /* Don't call next_event_internal */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2501 }
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2502
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 QUIT; /* next_event_internal() does not QUIT, so check for ^G
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 before reading output from the process - this makes it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 less likely that the filter will actually be aborted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2508 next_event_internal (event, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 /* If C-g was pressed while we were waiting, Vquit_flag got
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 set and next_event_internal() also returns C-g. When
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 we enqueue the C-g below, it will get discarded. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 next time through, QUIT will be called and will signal a quit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 switch (XEVENT_TYPE (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 case process_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 {
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2517 if (NILP (process) ||
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2518 EQ (XEVENT (event)->event.process.process, process))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 {
86
364816949b59 Import from CVS: tag r20-0b93
cvs
parents: 82
diff changeset
2520 done = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 /* RMS's version always returns nil when proc is nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 and only returns t if input ever arrived on proc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 result = Qt;
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 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 case timeout_event:
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2530 /* We execute the event even if it's ours, and notice that it's
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2531 happened above. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 enqueue_command_event_1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2546 unbind_to (count, timeout_enabled ? make_int (timeout_id) : Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 Fdeallocate_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 current_buffer = old_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2554 DEFUN ("sleep-for", Fsleep_for, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 Pause, without updating display, for ARG seconds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 ARG may be a float, meaning pause for some fractional part of a second.
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2557
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2558 It is recommended that you never call sleep-for from inside of a process
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2559 filter function or timer event (either synchronous or asynchronous).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2560 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2561 (seconds))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 Lisp_Object event = Qnil;
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2567 int count;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 GCPRO1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 event = Fmake_event ();
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2574
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2575 count = specpdl_depth ();
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2576 record_unwind_protect (sit_for_unwind, make_int (id));
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2577 recursive_sit_for = Qt;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2578
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 {
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2581 /* If our timeout has arrived, we move along. */
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2582 if (!event_stream_wakeup_pending_p (id, 0))
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2583 goto DONE_LABEL;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2584
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 QUIT; /* next_event_internal() does not QUIT, so check for ^G
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 before reading output from the process - this makes it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 less likely that the filter will actually be aborted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 /* We're a generator of the command_event_queue, so we can't be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 consumer as well. We don't care about command and eval-events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 anyway.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2593 next_event_internal (event, 0); /* blocks */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 /* See the comment in accept-process-output about Vquit_flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 switch (XEVENT_TYPE (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 case timeout_event:
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2598 /* We execute the event even if it's ours, and notice that it's
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2599 happened above. */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2600 case process_event:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 enqueue_command_event_1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 DONE_LABEL:
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2615 unbind_to (count, make_int (id));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 Fdeallocate_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2621 DEFUN ("sit-for", Fsit_for, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 Perform redisplay, then wait ARG seconds or until user input is available.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 ARG may be a float, meaning a fractional part of a second.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 Optional second arg non-nil means don't redisplay, just wait for input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 Redisplay is preempted as always if user input arrives, and does not
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2626 happen if input is available before it starts.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 Value is t if waited the full time with no input arriving.
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2628
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2629 If sit-for is called from within a process filter function or timer
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2630 event (either synchronous or asynchronous) it will return immediately.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2631 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2632 (seconds, nodisplay))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 Lisp_Object event, result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 int id;
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2639 int count;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2640
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 /* The unread-command-events count as pending input */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 /* If the command-builder already has user-input on it (not eval events)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 then that means we're done too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 if (!NILP (command_event_queue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 EVENT_CHAIN_LOOP (event, command_event_queue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 if (command_event_p (event))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2653 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 /* If we're in a macro, or noninteractive, or early in temacs, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 don't wait. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 if (noninteractive || !NILP (Vexecuting_macro))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2660 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2662 /* Recusive call from a filter function or timeout handler. */
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2663 if (!NILP(recursive_sit_for))
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2664 {
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2665 if (!event_stream_event_pending_p (1) && NILP (nodisplay))
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2666 {
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2667 run_pre_idle_hook ();
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2668 redisplay ();
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2669 }
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2670 return Qnil;
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2671 }
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2672
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
2673
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 /* Otherwise, start reading events from the event_stream.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 Do this loop at least once even if (sit-for 0) so that we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 redisplay when no input pending.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2678 GCPRO1 (event);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
2679 event = Fmake_event ();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 /* Generate the wakeup even if MSECS is 0, so that existing timeout/etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 events get processed. The old (pre-19.12) code special-cased this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 and didn't generate a wakeup, but the resulting behavior was less than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 ideal; viz. the occurrence of (sit-for 0.001) scattered throughout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 the E-Lisp universe. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2689 count = specpdl_depth ();
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2690 record_unwind_protect (sit_for_unwind, make_int (id));
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2691 recursive_sit_for = Qt;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2692
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 /* If there is no user input pending, then redisplay.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 if (!event_stream_event_pending_p (1) && NILP (nodisplay))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 run_pre_idle_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 redisplay ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2703 /* If our timeout has arrived, we move along. */
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2704 if (!event_stream_wakeup_pending_p (id, 0))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 result = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 goto DONE_LABEL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 QUIT; /* next_event_internal() does not QUIT, so check for ^G
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 before reading output from the process - this makes it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 less likely that the filter will actually be aborted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 /* We're a generator of the command_event_queue, so we can't be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 consumer as well. In fact, we know there's nothing on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 command_event_queue that we didn't just put there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2718 next_event_internal (event, 0); /* blocks */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 /* See the comment in accept-process-output about Vquit_flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 if (command_event_p (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 {
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2723 QUIT; /* If the command was C-g check it here
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2724 so that we abort out of the sit-for,
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2725 not the next command. sleep-for and
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2726 accept-process-output continue looping
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2727 so they check QUIT again implicitly.*/
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 goto DONE_LABEL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 switch (XEVENT_TYPE (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 case eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 /* eval-events get delayed until later. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 enqueue_command_event (Fcopy_event (event, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2739
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 case timeout_event:
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2741 /* We execute the event even if it's ours, and notice that it's
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2742 happened above. */
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
2743 default:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 DONE_LABEL:
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2752 unbind_to (count, make_int (id));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 /* Put back the event (if any) that made Fsit_for() exit before the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 timeout. Note that it is being added to the back of the queue, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 would be inappropriate if there were any user events on the queue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 already: we would be misordering them. But we know that there are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 no user-events on the queue, or else we would not have reached this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 point at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 if (NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 enqueue_command_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 Fdeallocate_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2767 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 /* This handy little function is used by xselect.c and energize.c to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 wait for replies from processes that aren't really processes (that is,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 the X server and the Energize server).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 wait_delaying_user_input (int (*predicate) (void *arg), void *predicate_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 Lisp_Object event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 GCPRO1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 while (!(*predicate) (predicate_arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 QUIT; /* next_event_internal() does not QUIT. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 /* We're a generator of the command_event_queue, so we can't be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 consumer as well. Also, we have no reason to consult the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 command_event_queue; there are only user and eval-events there,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 and we'd just have to put them back anyway.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
2791 next_event_internal (event, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 /* See the comment in accept-process-output about Vquit_flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 if (command_event_p (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 || (XEVENT_TYPE (event) == eval_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 || (XEVENT_TYPE (event) == magic_eval_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 enqueue_command_event_1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 /* dispatching events; command builder */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 execute_internal_event (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 /* events on dead channels get silently eaten */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 if (object_dead_p (XEVENT (event)->channel))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 /* This function can GC */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2816 switch (XEVENT_TYPE (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 case empty_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 case eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2823 call1 (XEVENT (event)->event.eval.function,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 XEVENT (event)->event.eval.object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 case magic_eval_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 (XEVENT (event)->event.magic_eval.internal_function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 (XEVENT (event)->event.magic_eval.object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 case pointer_motion_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 if (!NILP (Vmouse_motion_handler))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 call1 (Vmouse_motion_handler, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 case process_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 Lisp_Object p = XEVENT (event)->event.process.process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 Charcount readstatus;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 assert (PROCESSP (p));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 while ((readstatus = read_process_output (p)) > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 if (readstatus > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 ; /* this clauses never gets executed but allows the #ifdefs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 to work cleanly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 #ifdef EWOULDBLOCK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 else if (readstatus == -1 && errno == EWOULDBLOCK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 #endif /* EWOULDBLOCK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 #ifdef EAGAIN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 else if (readstatus == -1 && errno == EAGAIN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 #endif /* EAGAIN */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2861 else if ((readstatus == 0 &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 /* Note that we cannot distinguish between no input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 available now and a closed pipe.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 With luck, a closed pipe will be accompanied by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 subprocess termination and SIGCHLD. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 (!network_connection_p (p) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 When connected to ToolTalk (i.e.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 connected_via_filedesc_p()), it's not possible to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 reliably determine whether there is a message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 waiting for ToolTalk to receive. ToolTalk expects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 to have tt_message_receive() called exactly once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 every time the file descriptor becomes active, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 the filter function forces this by returning 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 Emacs must not interpret this as a closed pipe. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 connected_via_filedesc_p (XPROCESS (p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 #ifdef HAVE_PTYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 /* On some OSs with ptys, when the process on one end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 a pty exits, the other end gets an error reading with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 errno = EIO instead of getting an EOF (0 bytes read).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 Therefore, if we get an error reading and errno =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 EIO, just continue, because the child process has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 exited and should clean itself up soon (e.g. when we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 get a SIGCHLD). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 || (readstatus == -1 && errno == EIO)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 {
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
2889 /* Currently, we rely on SIGCHLD to indicate that the
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
2890 process has terminated. Unfortunately, on some systems
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
2891 the SIGCHLD gets missed some of the time. So we put an
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
2892 additional check in status_notify() to see whether a
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
2893 process has terminated. We must tell status_notify()
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
2894 to enable that check, and we do so now. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 kick_status_notify ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 /* Deactivate network connection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 Lisp_Object status = Fprocess_status (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 if (EQ (status, Qopen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 /* In case somebody changes the theory of whether to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 return open as opposed to run for network connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 "processes"... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 || EQ (status, Qrun))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 update_process_status (p, Qexit, 256, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 deactivate_process (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 /* We must call status_notify here to allow the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 event_stream->unselect_process_cb to be run if appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 Otherwise, dead fds may be selected for, and we will get a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 continuous stream of process events for them. Since we don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 return until all process events have been flushed, we would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 get stuck here, processing events on a process whose status
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 was 'exit. Call this after dispatch-event, or the fds will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 have been closed before we read the last data from them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 It's safe for the filter to signal an error because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 status_notify() will be called on return to top-level.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 status_notify ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 case timeout_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 struct Lisp_Event *e = XEVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 if (!NILP (e->event.timeout.function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 call1 (e->event.timeout.function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 e->event.timeout.object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 case magic_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 event_stream_handle_magic_event (XEVENT (event));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 this_command_keys_replace_suffix (Lisp_Object suffix, Lisp_Object chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 Lisp_Object first_before_suffix =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 event_chain_find_previous (Vthis_command_keys, suffix);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 if (NILP (first_before_suffix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 Vthis_command_keys = chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 XSET_EVENT_NEXT (first_before_suffix, chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 deallocate_event_chain (suffix);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 Vthis_command_keys_tail = event_chain_tail (chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 command_builder_replace_suffix (struct command_builder *builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 Lisp_Object suffix, Lisp_Object chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 Lisp_Object first_before_suffix =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 event_chain_find_previous (builder->current_events, suffix);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 if (NILP (first_before_suffix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 builder->current_events = chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 XSET_EVENT_NEXT (first_before_suffix, chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 deallocate_event_chain (suffix);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 builder->most_current_event = event_chain_tail (chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 command_builder_find_leaf_1 (struct command_builder *builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 Lisp_Object event0 = builder->current_events;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 if (NILP (event0))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2980 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 return event_binding (event0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
2985 #if defined(HAVE_X_WINDOWS) && defined(HAVE_MENUBARS)
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2986 static void
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2987 menu_move_up (void)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2988 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2989 widget_value *current, *prev;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2990 widget_value *entries;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
2991
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2992 current = lw_get_entries (False);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2993 entries = lw_get_entries (True);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2994 prev = NULL;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2995 if (current != entries)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2996 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2997 while (entries != current)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2998 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2999 if (entries->name /*&& entries->enabled*/) prev = entries;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3000 entries = entries->next;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3001 assert (entries);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3002 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3003 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3004
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3005 if (!prev)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3006 /* move to last item */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3007 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3008 while (entries->next)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3009 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3010 if (entries->name /*&& entries->enabled*/) prev = entries;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3011 entries = entries->next;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3012 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3013 if (prev)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3014 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3015 if (entries->name /*&& entries->enabled*/)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3016 prev = entries;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3017 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3018 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3019 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3020 /* no selectable items in this menu, pop up to previous level */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3021 lw_pop_menu ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3022 return;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3023 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3024 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3025 lw_set_item (prev);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3026 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3027
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3028 static void
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3029 menu_move_down (void)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3030 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3031 widget_value *current;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3032 widget_value *new;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3033
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3034 current = lw_get_entries (False);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3035 new = current;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3036
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3037 while (new->next)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3038 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3039 new = new->next;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3040 if (new->name /*&& new->enabled*/) break;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3041 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3042
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3043 if (new==current||!(new->name/*||new->enabled*/))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3044 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3045 new = lw_get_entries (True);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3046 while (new!=current)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3047 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3048 if (new->name /*&& new->enabled*/) break;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3049 new = new->next;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3050 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3051 if (new==current&&!(new->name /*|| new->enabled*/))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3052 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3053 lw_pop_menu ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3054 return;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3055 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3056 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3057
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3058 lw_set_item (new);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3059 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3060
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3061 static void
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3062 menu_move_left (void)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3063 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3064 int level = lw_menu_level ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3065 int l = level;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3066 widget_value *current;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3067
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3068 while (level >= 3)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3069 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3070 --level;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3071 lw_pop_menu ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3072 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3073 menu_move_up ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3074 current = lw_get_entries (False);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3075 if (l > 2 && current->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3076 lw_push_menu (current->contents);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3077 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3078
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3079 static void
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3080 menu_move_right (void)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3081 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3082 int level = lw_menu_level ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3083 int l = level;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3084 widget_value *current;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3085
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3086 while (level >= 3)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3087 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3088 --level;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3089 lw_pop_menu ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3090 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3091 menu_move_down ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3092 current = lw_get_entries (False);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3093 if (l > 2 && current->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3094 lw_push_menu (current->contents);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3095 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3096
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3097 static void
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3098 menu_select_item (widget_value *val)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3099 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3100 if (val == NULL)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3101 val = lw_get_entries (False);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3102
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3103 /* is match a submenu? */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3104
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3105 if (val->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3106 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3107 /* enter the submenu */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3108
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3109 lw_set_item (val);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3110 lw_push_menu (val->contents);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3111 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3112 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3113 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3114 /* Execute the menu entry by calling the menu's `select'
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3115 callback function
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3116 */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3117 lw_kill_menus (val);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3118 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3119 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3120
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3121 static Lisp_Object
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3122 command_builder_operate_menu_accelerator (struct command_builder *builder)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3123 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3124 /* this function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3125
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3126 struct console *con = XCONSOLE (Vselected_console);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3127 Lisp_Object evee = builder->most_current_event;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3128 Lisp_Object binding;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3129 widget_value *entries;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3130
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3131 extern int lw_menu_accelerate; /* lwlib.c */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3132
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3133 #if 0
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3134 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3135 int i;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3136 Lisp_Object t;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3137 char buf[50];
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3138
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3139 t = builder->current_events;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3140 i = 0;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3141 while (!NILP (t))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3142 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3143 i++;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3144 sprintf(buf,"OPERATE (%d): ",i);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3145 write_c_string (buf,Qexternal_debugging_output);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3146 print_internal (t, Qexternal_debugging_output, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3147 write_c_string ("\n", Qexternal_debugging_output);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3148 t = XEVENT_NEXT (t);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3149 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3150 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3151 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3152
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3153 /* menu accelerator keys don't go into keyboard macros */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3154 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3155 con->kbd_macro_ptr = con->kbd_macro_end;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3156
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3157 /* don't echo menu accelerator keys */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3158 /*reset_key_echo (builder, 1);*/
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3159
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3160 if (!lw_menu_accelerate)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3161 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3162 /* `convert' mouse display to keyboard display
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3163 by entering the open submenu
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3164 */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3165 entries = lw_get_entries (False);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3166 if (entries->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3167 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3168 lw_push_menu (entries->contents);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3169 lw_display_menu (CurrentTime);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3170 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3171 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3172
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3173 /* compare event to the current menu accelerators */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3174
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3175 entries=lw_get_entries (True);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3176
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3177 while (entries)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3178 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3179 Lisp_Object accel;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3180 VOID_TO_LISP (accel, entries->accel);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3181 if (entries->name && !NILP (accel))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3182 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3183 if (event_matches_key_specifier_p (XEVENT (evee), accel))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3184 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3185 /* a match! */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3186
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3187 menu_select_item (entries);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3188
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3189 if (lw_menu_active) lw_display_menu (CurrentTime);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3190
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3191 reset_this_command_keys (Vselected_console, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3192 /*reset_command_builder_event_chain (builder);*/
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3193 return Vmenu_accelerator_map;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3194 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3195 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3196 entries = entries->next;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3197 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3198
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3199 /* try to look up event in menu-accelerator-map */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3200
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3201 binding = event_binding_in (evee, Vmenu_accelerator_map, 1);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3202
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3203 if (NILP (binding))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3204 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3205 /* beep at user for undefined key */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3206 return Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3207 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3208 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3209 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3210 if (EQ (binding, Qmenu_quit))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3211 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3212 /* turn off menus and set quit flag */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3213 lw_kill_menus (NULL);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3214 Vquit_flag = Qt;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3215 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3216 else if (EQ (binding, Qmenu_up))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3217 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3218 int level = lw_menu_level ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3219 if (level > 2)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3220 menu_move_up ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3221 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3222 else if (EQ (binding, Qmenu_down))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3223 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3224 int level = lw_menu_level ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3225 if (level > 2)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3226 menu_move_down ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3227 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3228 menu_select_item (NULL);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3229 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3230 else if (EQ (binding, Qmenu_left))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3231 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3232 int level = lw_menu_level ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3233 if (level > 3)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3234 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3235 lw_pop_menu ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3236 lw_display_menu (CurrentTime);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3237 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3238 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3239 menu_move_left ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3240 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3241 else if (EQ (binding, Qmenu_right))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3242 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3243 int level = lw_menu_level ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3244 if (level > 2 &&
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3245 lw_get_entries (False)->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3246 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3247 widget_value *current = lw_get_entries (False);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3248 if (current->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3249 menu_select_item (NULL);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3250 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3251 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3252 menu_move_right ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3253 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3254 else if (EQ (binding, Qmenu_select))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3255 menu_select_item (NULL);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3256 else if (EQ (binding, Qmenu_escape))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3257 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3258 int level = lw_menu_level ();
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3259
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3260 if (level > 2)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3261 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3262 lw_pop_menu ();
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3263 lw_display_menu (CurrentTime);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3264 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3265 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3266 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3267 /* turn off menus quietly */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3268 lw_kill_menus (NULL);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3269 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3270 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3271 else if (KEYMAPP (binding))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3272 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3273 /* prefix key */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3274 reset_this_command_keys (Vselected_console, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3275 /*reset_command_builder_event_chain (builder);*/
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3276 return binding;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3277 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3278 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3279 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3280 /* turn off menus and execute binding */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3281 lw_kill_menus (NULL);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3282 reset_this_command_keys (Vselected_console, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3283 /*reset_command_builder_event_chain (builder);*/
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3284 return binding;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3285 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3286 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3287
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3288 if (lw_menu_active) lw_display_menu (CurrentTime);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3289
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3290 reset_this_command_keys (Vselected_console, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3291 /*reset_command_builder_event_chain (builder);*/
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3292
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3293 return Vmenu_accelerator_map;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3294 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3295
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3296 static Lisp_Object
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3297 menu_accelerator_junk_on_error (Lisp_Object errordata, Lisp_Object ignored)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3298 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3299 Vmenu_accelerator_prefix = Qnil;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3300 Vmenu_accelerator_modifiers = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3301 Vmenu_accelerator_enabled = Qnil;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3302 if (!NILP (errordata))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3303 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3304 Lisp_Object args[2];
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3305
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3306 args[0] = build_string ("Error in menu accelerators (setting to nil)");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3307 /* #### This should call
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3308 (with-output-to-string (display-error errordata))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3309 but that stuff is all in Lisp currently. */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3310 args[1] = errordata;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3311 warn_when_safe_lispobj
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3312 (Qerror, Qwarning,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3313 emacs_doprnt_string_lisp ((CONST Bufbyte *) "%s: %s",
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3314 Qnil, -1, 2, args));
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3315 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3316
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3317 return Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3318 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3319
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3320 static Lisp_Object
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3321 menu_accelerator_safe_compare (Lisp_Object event0)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3322 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3323 if (CONSP (Vmenu_accelerator_prefix))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3324 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3325 Lisp_Object t;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3326 t=Vmenu_accelerator_prefix;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3327 while (!NILP (t)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3328 && !NILP (event0)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3329 && event_matches_key_specifier_p (XEVENT (event0), Fcar (t)))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3330 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3331 t = Fcdr (t);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3332 event0 = XEVENT_NEXT (event0);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3333 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3334 if (!NILP (t))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3335 return Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3336 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3337 else if (NILP (event0))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3338 return Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3339 else if (event_matches_key_specifier_p (XEVENT (event0), Vmenu_accelerator_prefix))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3340 event0 = XEVENT_NEXT (event0);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3341 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3342 return Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3343 return event0;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3344 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3345
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3346 static Lisp_Object
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3347 menu_accelerator_safe_mod_compare (Lisp_Object cons)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3348 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3349 return (event_matches_key_specifier_p (XEVENT (XCAR (cons)), XCDR (cons))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3350 ? Qt
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3351 : Qnil);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3352 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3353
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3354 static Lisp_Object
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3355 command_builder_find_menu_accelerator (struct command_builder *builder)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3356 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3357 /* this function can GC */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3358 Lisp_Object event0 = builder->current_events;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3359 struct console *con = XCONSOLE (Vselected_console);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3360 struct frame *f = XFRAME (CONSOLE_SELECTED_FRAME (con));
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3361 Widget menubar_widget;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3362
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3363 /* compare entries in event0 against the menu prefix */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3364
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3365 if ((!CONSOLE_X_P (XCONSOLE (builder->console))) || NILP (event0) ||
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3366 XEVENT (event0)->event_type != key_press_event)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3367 return Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3368
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3369 if (!NILP (Vmenu_accelerator_prefix))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3370 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3371 event0 = condition_case_1 (Qerror,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3372 menu_accelerator_safe_compare,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3373 event0,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3374 menu_accelerator_junk_on_error,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3375 Qnil);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3376 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3377
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3378 if (NILP (event0))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3379 return Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3380
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3381 menubar_widget = FRAME_X_MENUBAR_WIDGET (f);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3382 if (menubar_widget
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3383 && CONSP (Vmenu_accelerator_modifiers))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3384 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3385 Lisp_Object fake;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3386 Lisp_Object last = Qnil;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3387 struct gcpro gcpro1;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3388 Lisp_Object matchp;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3389
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3390 widget_value *val;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3391 LWLIB_ID id = XPOPUP_DATA (f->menubar_data)->id;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3392
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3393 val = lw_get_all_values (id);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3394 if (val)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3395 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3396 val = val->contents;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3397
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3398 fake = Fcopy_sequence (Vmenu_accelerator_modifiers);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3399 last = fake;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3400
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3401 while (!NILP (Fcdr (last)))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3402 last = Fcdr (last);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3403
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3404 Fsetcdr (last, Fcons (Qnil, Qnil));
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3405 last = Fcdr (last);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3406 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3407
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3408 fake = Fcons (Qnil, fake);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3409
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3410 GCPRO1 (fake);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3411
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3412 while (val)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3413 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3414 Lisp_Object accel;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3415 VOID_TO_LISP (accel, val->accel);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3416 if (val->name && !NILP (accel))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3417 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3418 Fsetcar (last, accel);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3419 Fsetcar (fake, event0);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3420 matchp = condition_case_1 (Qerror,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3421 menu_accelerator_safe_mod_compare,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3422 fake,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3423 menu_accelerator_junk_on_error,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3424 Qnil);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3425 if (!NILP (matchp))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3426 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3427 /* we found one! */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3428
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3429 lw_set_menu (menubar_widget, val);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3430 /* yah - yet another hack.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3431 pretend emacs timestamp is the same as an X timestamp,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3432 which for the moment it is. (read events.h)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3433 */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3434 lw_map_menu (XEVENT (event0)->timestamp);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3435
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3436 if (val->contents)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3437 lw_push_menu (val->contents);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3438
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3439 lw_display_menu (CurrentTime);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3440
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3441 /* menu accelerator keys don't go into keyboard macros */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3442 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3443 con->kbd_macro_ptr = con->kbd_macro_end;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3444
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3445 /* don't echo menu accelerator keys */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3446 /*reset_key_echo (builder, 1);*/
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3447 reset_this_command_keys (Vselected_console, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3448 UNGCPRO;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3449
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3450 return Vmenu_accelerator_map;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3451 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3452 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3453
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3454 val = val->next;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3455 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3456
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3457 UNGCPRO;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3458 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3459 return Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3460 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3461
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3462
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3463 DEFUN ("accelerate-menu", Faccelerate_menu, 0, 0, "_", /*
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3464 Make the menubar active. Menu items can be selected using menu accelerators
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3465 or by actions defined in menu-accelerator-map.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3466 */
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3467 ())
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3468 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3469 struct console *con = XCONSOLE (Vselected_console);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3470 struct frame *f = XFRAME (CONSOLE_SELECTED_FRAME (con));
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3471 LWLIB_ID id = XPOPUP_DATA (f->menubar_data)->id;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3472 widget_value *val = lw_get_all_values (id);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3473
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3474 val = val->contents;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3475 lw_set_menu (FRAME_X_MENUBAR_WIDGET (f), val);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3476 lw_map_menu (CurrentTime);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3477
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3478 lw_display_menu (CurrentTime);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3479
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3480 /* menu accelerator keys don't go into keyboard macros */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3481 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3482 con->kbd_macro_ptr = con->kbd_macro_end;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3483
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3484 return Qnil;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3485 }
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
3486 #endif /* HAVE_X_WINDOWS && HAVE_MENUBARS */
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3487
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 /* See if we can do function-key-map or key-translation-map translation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 on the current events in the command builder. If so, do this, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 return the resulting binding, if any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 munge_keymap_translate (struct command_builder *builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 enum munge_me_out_the_door munge,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 int has_normal_binding_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 Lisp_Object suffix;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3498
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 EVENT_CHAIN_LOOP (suffix, builder->munge_me[munge].first_mungeable_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 Lisp_Object result = munging_key_map_event_binding (suffix, munge);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3502
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3503 if (NILP (result))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3504 continue;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3505
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3506 if (KEYMAPP (result))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3507 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3508 if (NILP (builder->last_non_munged_event)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3509 && !has_normal_binding_p)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3510 builder->last_non_munged_event = builder->most_current_event;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3511 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3512 else
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3513 builder->last_non_munged_event = Qnil;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3514
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3515 if (!KEYMAPP (result) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3516 !VECTORP (result) &&
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3517 !STRINGP (result))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3519 struct gcpro gcpro1;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3520 GCPRO1 (suffix);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3521 result = call1 (result, Qnil);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3522 UNGCPRO;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3523 if (NILP (result))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3524 return Qnil;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3525 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3526
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3527 if (KEYMAPP (result))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3528 return result;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3529
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3530 if (VECTORP (result) || STRINGP (result))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3531 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3532 Lisp_Object new_chain = key_sequence_to_event_chain (result);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3533 Lisp_Object tempev;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3534 int n, tckn;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3535
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3536 /* If the first_mungeable_event of the other munger is
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3537 within the events we're munging, then it will point to
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3538 deallocated events afterwards, which is bad -- so make it
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3539 point at the beginning of the munged events. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3540 EVENT_CHAIN_LOOP (tempev, suffix)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3542 Lisp_Object *mungeable_event =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3543 &builder->munge_me[1 - munge].first_mungeable_event;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3544 if (EQ (tempev, *mungeable_event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3546 *mungeable_event = new_chain;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3547 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3551 n = event_chain_count (suffix);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3552 command_builder_replace_suffix (builder, suffix, new_chain);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3553 builder->munge_me[munge].first_mungeable_event = Qnil;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3554 /* Now hork this-command-keys as well. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3555
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3556 /* We just assume that the events we just replaced are
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3557 sitting in copied form at the end of this-command-keys.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3558 If the user did weird things with `dispatch-event' this
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3559 may not be the case, but at least we make sure we won't
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3560 crash. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3561 new_chain = copy_event_chain (new_chain);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3562 tckn = event_chain_count (Vthis_command_keys);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3563 if (tckn >= n)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3564 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3565 this_command_keys_replace_suffix
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3566 (event_chain_nth (Vthis_command_keys, tckn - n),
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3567 new_chain);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3568 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3569
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3570 result = command_builder_find_leaf_1 (builder);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3571 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3573
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3574 signal_simple_error ((munge == MUNGE_ME_FUNCTION_KEY ?
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3575 "Invalid binding in function-key-map" :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3576 "Invalid binding in key-translation-map"),
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3577 result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 /* Compare the current state of the command builder against the local and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 global keymaps, and return the binding. If there is no match, try again,
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3585 case-insensitively. The return value will be one of:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 -- nil (there is no binding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 -- a keymap (part of a command has been specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 -- a command (anything that satisfies `commandp'; this includes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 some symbols, lists, subrs, strings, vectors, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 compiled-function objects)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 command_builder_find_leaf (struct command_builder *builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 int allow_misc_user_events_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 Lisp_Object evee = builder->current_events;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3600 if (XEVENT_TYPE (evee) == misc_user_event)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3602 if (allow_misc_user_events_p && (NILP (XEVENT_NEXT (evee))))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3603 return list2 (XEVENT (evee)->event.eval.function,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3604 XEVENT (evee)->event.eval.object);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3605 else
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3606 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3609 /* if we're currently in a menu accelerator, check there for further events */
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
3610 #if defined(HAVE_X_WINDOWS) && defined(HAVE_MENUBARS)
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3611 if (lw_menu_active)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3612 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3613 return command_builder_operate_menu_accelerator (builder);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3614 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3615 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3616 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
3617 result = Qnil;
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3618 if (EQ (Vmenu_accelerator_enabled, Qmenu_force))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3619 result = command_builder_find_menu_accelerator (builder);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3620 if (NILP (result))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3621 #endif
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3622 result = command_builder_find_leaf_1 (builder);
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
3623 #if defined(HAVE_X_WINDOWS) && defined(HAVE_MENUBARS)
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3624 if (NILP (result)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3625 && EQ (Vmenu_accelerator_enabled, Qmenu_fallback))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3626 result = command_builder_find_menu_accelerator (builder);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3627 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3628 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 /* Check to see if we have a potential function-key-map match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 if (NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 result = munge_keymap_translate (builder, MUNGE_ME_FUNCTION_KEY, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 regenerate_echo_keys_from_this_command_keys (builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 /* Check to see if we have a potential key-translation-map match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 Lisp_Object key_translate_result =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 munge_keymap_translate (builder, MUNGE_ME_KEY_TRANSLATION,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 !NILP (result));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 if (!NILP (key_translate_result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 result = key_translate_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 regenerate_echo_keys_from_this_command_keys (builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 if (!NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 /* If key-sequence wasn't bound, we'll try some fallbacks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 /* If we didn't find a binding, and the last event in the sequence is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 a shifted character, then try again with the lowercase version. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3656 if (XEVENT_TYPE (builder->most_current_event) == key_press_event
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3657 && !NILP (Vretry_undefined_key_binding_unshifted))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3658 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3659 Lisp_Object terminal = builder->most_current_event;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3660 struct key_data* key = & XEVENT (terminal)->event.key;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3661 Emchar c = 0;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3662 if ((key->modifiers & MOD_SHIFT)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3663 || (CHAR_OR_CHAR_INTP (key->keysym)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3664 && ((c = XCHAR_OR_CHAR_INT (key->keysym)), c >= 'A' && c <= 'Z')))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3665 {
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 153
diff changeset
3666 struct Lisp_Event terminal_copy = *XEVENT (terminal);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3667
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3668 if (key->modifiers & MOD_SHIFT)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3669 key->modifiers &= (~ MOD_SHIFT);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3670 else
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3671 key->keysym = make_char (c + 'a' - 'A');
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3672
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3673 result = command_builder_find_leaf (builder, allow_misc_user_events_p);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3674 if (!NILP (result))
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 153
diff changeset
3675 return result;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3676 /* If there was no match with the lower-case version either,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3677 then put back the upper-case event for the error
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3678 message. But make sure that function-key-map didn't
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3679 change things out from under us. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3680 if (EQ (terminal, builder->most_current_event))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3681 *XEVENT (terminal) = terminal_copy;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3682 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3683 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3684
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3685 /* help-char is `auto-bound' in every keymap */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686 if (!NILP (Vprefix_help_command) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687 event_matches_key_specifier_p (XEVENT (builder->most_current_event),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 Vhelp_char))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3689 return Vprefix_help_command;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3691 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3692 /* If keysym is a non-ASCII char, bind it to self-insert-char by default. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3693 if (XEVENT_TYPE (builder->most_current_event) == key_press_event
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3694 && !NILP (Vcomposed_character_default_binding))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3695 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3696 Lisp_Object keysym = XEVENT (builder->most_current_event)->event.key.keysym;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3697 if (CHARP (keysym) && !CHAR_ASCII_P (XCHAR (keysym)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3698 return Vcomposed_character_default_binding;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3699 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
3700 #endif /* HAVE_XIM */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3701
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 /* If we read extra events attempting to match a function key but end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 up failing, then we release those events back to the command loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 and fail on the original lookup. The released events will then be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 reprocessed in the context of the first part having failed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 if (!NILP (builder->last_non_munged_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 Lisp_Object event0 = builder->last_non_munged_event;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3709
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 /* Put the commands back on the event queue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 enqueue_event_chain (XEVENT_NEXT (event0),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 &command_event_queue,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 &command_event_queue_tail);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3714
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 /* Then remove them from the command builder. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 XSET_EVENT_NEXT (event0, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 builder->most_current_event = event0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 builder->last_non_munged_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 /* Every time a command-event (a key, button, or menu selection) is read by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 Fnext_event(), it is stored in the recent_keys_ring, in Vlast_input_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 and in Vthis_command_keys. (Eval-events are not stored there.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 Every time a command is invoked, Vlast_command_event is set to the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 event in the sequence.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 This means that Vthis_command_keys is really about "input read since the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 last command was executed" rather than about "what keys invoked this
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3734 command." This is a little counterintuitive, but that's the way it
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 has always worked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 As an extra kink, the function read-key-sequence resets/updates the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 last-command-event and this-command-keys. It doesn't append to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 command-keys as read-char does. Such are the pitfalls of having to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 maintain compatibility with a program for which the only specification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 is the code itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 (We could implement recent_keys_ring and Vthis_command_keys as the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744 data structure.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3747 DEFUN ("recent-keys", Frecent_keys, 0, 1, 0, /*
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3748 Return a vector of recent keyboard or mouse button events read.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3749 If NUMBER is non-nil, not more than NUMBER events will be returned.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3750 Change number of events stored using `set-recent-keys-size'.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3751
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 This copies the event objects into a new vector; it is safe to keep and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 modify them.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3754 */
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3755 (number))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 Lisp_Object val = Qnil;
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3759 int nwanted;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 int start, nkeys, i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761 GCPRO1 (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3763 if (NILP (number))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3764 nwanted = recent_keys_ring_size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3765 else
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3766 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3767 CHECK_NATNUM (number);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3768 nwanted = XINT (number);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3769 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3770
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3771 /* Create the keys ring vector, if none present. */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3772 if (NILP (Vrecent_keys_ring))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3773 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3774 Vrecent_keys_ring = make_vector (recent_keys_ring_size, Qnil);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3775 /* And return nothing in particular. */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3776 return make_vector (0, Qnil);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3777 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3778
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3779 if (NILP (XVECTOR_DATA (Vrecent_keys_ring)[recent_keys_ring_index]))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 /* This means the vector has not yet wrapped */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 nkeys = recent_keys_ring_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 start = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 {
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3787 nkeys = recent_keys_ring_size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3788 start = ((recent_keys_ring_index == nkeys) ? 0 : recent_keys_ring_index);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3791 if (nwanted < nkeys)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3792 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3793 start += nkeys - nwanted;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3794 if (start >= recent_keys_ring_size)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3795 start -= recent_keys_ring_size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3796 nkeys = nwanted;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3797 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3798 else
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3799 nwanted = nkeys;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3800
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3801 val = make_vector (nwanted, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 for (i = 0, j = start; i < nkeys; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3805 Lisp_Object e = XVECTOR_DATA (Vrecent_keys_ring)[j];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 if (NILP (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 abort ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3809 XVECTOR_DATA (val)[i] = Fcopy_event (e, Qnil);
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3810 if (++j >= recent_keys_ring_size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 j = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3814 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3817
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3818 DEFUN ("recent-keys-ring-size", Frecent_keys_ring_size, 0, 0, 0, /*
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3819 The maximum number of events `recent-keys' can return.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3820 */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3821 ())
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3822 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3823 return make_int (recent_keys_ring_size);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3824 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3825
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3826 DEFUN ("set-recent-keys-ring-size", Fset_recent_keys_ring_size, 1, 1, 0, /*
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3827 Set the maximum number of events to be stored internally.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3828 */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3829 (size))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3830 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3831 Lisp_Object new_vector = Qnil;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3832 int i, j, nkeys, start, min;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3833 struct gcpro gcpro1;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3834 GCPRO1 (new_vector);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3835
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3836 CHECK_INT (size);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3837 if (XINT (size) <= 0)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3838 error ("Recent keys ring size must be positive");
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3839 if (XINT (size) == recent_keys_ring_size)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3840 return size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3841
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3842 new_vector = make_vector (XINT (size), Qnil);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3843
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3844 if (NILP (Vrecent_keys_ring))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3845 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3846 Vrecent_keys_ring = new_vector;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3847 return size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3848 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3849
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3850 if (NILP (XVECTOR_DATA (Vrecent_keys_ring)[recent_keys_ring_index]))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3851 /* This means the vector has not yet wrapped */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3852 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3853 nkeys = recent_keys_ring_index;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3854 start = 0;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3855 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3856 else
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3857 {
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3858 nkeys = recent_keys_ring_size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3859 start = ((recent_keys_ring_index == nkeys) ? 0 : recent_keys_ring_index);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3860 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3861
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3862 if (XINT (size) > nkeys)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3863 min = nkeys;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3864 else
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3865 min = XINT (size);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3866
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3867 for (i = 0, j = start; i < min; i++)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3868 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3869 XVECTOR_DATA (new_vector)[i] = XVECTOR_DATA (Vrecent_keys_ring)[j];
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3870 if (++j >= recent_keys_ring_size)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3871 j = 0;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3872 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3873 recent_keys_ring_size = XINT (size);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3874 recent_keys_ring_index = (i < recent_keys_ring_size) ? i : 0;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3875
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3876 Vrecent_keys_ring = new_vector;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3877
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3878 UNGCPRO;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3879 return size;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3880 }
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3881
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 /* Vthis_command_keys having value Qnil means that the next time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 push_this_command_keys is called, it should start over.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3884 The times at which the command-keys are reset
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 (instead of merely being augmented) are pretty conterintuitive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 (More specifically:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 -- We do not reset this-command-keys when we finish reading a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 command. This is because some commands (e.g. C-u) act
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 like command prefixes; they signal this by setting prefix-arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 to non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 -- Therefore, we reset this-command-keys when we finish
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
3893 executing a command, unless prefix-arg is set.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 -- However, if we ever do a non-local exit out of a command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 loop (e.g. an error in a command), we need to reset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 this-command-keys. We do this by calling reset_this_command_keys()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 from cmdloop.c, whenever an error causes an invocation of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 default error handler, and whenever there's a throw to top-level.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 reset_this_command_keys (Lisp_Object console, int clear_echo_area_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 struct command_builder *command_builder =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 XCOMMAND_BUILDER (XCONSOLE (console)->command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 reset_key_echo (command_builder, clear_echo_area_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 deallocate_event_chain (Vthis_command_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910 Vthis_command_keys = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 Vthis_command_keys_tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 reset_current_events (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 push_this_command_keys (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 Lisp_Object new = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 Fcopy_event (event, new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 enqueue_event (new, &Vthis_command_keys, &Vthis_command_keys_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 /* The following two functions are used in call-interactively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 for the @ and e specifications. We used to just use
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
3927 `current-mouse-event' (i.e. the last mouse event in this-command-keys),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 but FSF does it more generally so we follow their lead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 extract_this_command_keys_nth_mouse_event (int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 if (EVENTP (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 && (XEVENT_TYPE (event) == button_press_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 || XEVENT_TYPE (event) == button_release_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 || XEVENT_TYPE (event) == misc_user_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 if (!n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 /* must copy to avoid an abort() in next_event_internal() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 if (!NILP (XEVENT_NEXT (event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 return Fcopy_event (event, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 n--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 extract_vector_nth_mouse_event (Lisp_Object vector, int n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 int i;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3961 int len = XVECTOR_LENGTH (vector);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3962
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3963 for (i = 0; i < len; i++)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3965 Lisp_Object event = XVECTOR_DATA (vector)[i];
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3966 if (EVENTP (event))
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3967 switch (XEVENT_TYPE (event))
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3968 {
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3969 case button_press_event :
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3970 case button_release_event :
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3971 case misc_user_event :
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3972 if (n == 0)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3973 return event;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3974 n--;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3975 break;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3976 default:
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3977 continue;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3978 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 push_recent_keys (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 {
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3987 Lisp_Object e;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3988
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3989 if (NILP (Vrecent_keys_ring))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3990 Vrecent_keys_ring = make_vector (recent_keys_ring_size, Qnil);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
3991
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3992 e = XVECTOR_DATA (Vrecent_keys_ring) [recent_keys_ring_index];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 if (NILP (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 e = Fmake_event ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3997 XVECTOR_DATA (Vrecent_keys_ring) [recent_keys_ring_index] = e;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 Fcopy_event (event, e);
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
4000 if (++recent_keys_ring_index == recent_keys_ring_size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 recent_keys_ring_index = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 current_events_into_vector (struct command_builder *command_builder)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 Lisp_Object vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 int n = event_chain_count (command_builder->current_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 /* Copy the vector and the events in it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 /* No need to copy the events, since they're already copies, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 nobody other than the command-builder has pointers to them */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 vector = make_vector (n, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 n = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 EVENT_CHAIN_LOOP (event, command_builder->current_events)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4018 XVECTOR_DATA (vector)[n++] = event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 reset_command_builder_event_chain (command_builder);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4020 return vector;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 Given the current state of the command builder and a new command event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 that has just been dispatched:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 -- add the event to the event chain forming the current command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 (doing meta-translation as necessary)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4030 -- return the binding of this event chain; this will be one of:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 -- nil (there is no binding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 -- a keymap (part of a command has been specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 -- a command (anything that satisfies `commandp'; this includes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 some symbols, lists, subrs, strings, vectors, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 compiled-function objects)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 lookup_command_event (struct command_builder *command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 Lisp_Object event, int allow_misc_user_events_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 /* Clear output from previous command execution */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 if (!EQ (Qcommand, echo_area_status (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 /* but don't let mouse-up clear what mouse-down just printed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 && (XEVENT (event)->event_type != button_release_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 clear_echo_area (f, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 /* Add the given event to the command builder.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 Extra hack: this also updates the recent_keys_ring and Vthis_command_keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 vectors to translate "ESC x" to "M-x" (for any "x" of course).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 Lisp_Object recent = command_builder->most_current_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 if (EVENTP (recent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 && event_matches_key_specifier_p (XEVENT (recent), Vmeta_prefix_char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 struct Lisp_Event *e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 /* When we see a sequence like "ESC x", pretend we really saw "M-x".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061 DoubleThink the recent-keys and this-command-keys as well. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 /* Modify the previous most-recently-pushed event on the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 builder to be a copy of this one with the meta-bit set instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 pushing a new event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 Fcopy_event (event, recent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 e = XEVENT (recent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 if (e->event_type == key_press_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 e->event.key.modifiers |= MOD_META;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4071 else if (e->event_type == button_press_event
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072 || e->event_type == button_release_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 e->event.button.modifiers |= MOD_META;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 int tckn = event_chain_count (Vthis_command_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 if (tckn >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 /* ??? very strange if it's < 2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 this_command_keys_replace_suffix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 (event_chain_nth (Vthis_command_keys, tckn - 2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 Fcopy_event (recent, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 regenerate_echo_keys_from_this_command_keys (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 event = Fcopy_event (event, Fmake_event ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 command_builder_append_event (command_builder, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 Lisp_Object leaf = command_builder_find_leaf (command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 allow_misc_user_events_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 GCPRO1 (leaf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 if (KEYMAPP (leaf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 {
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4104 if (!lw_menu_active)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 {
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4106 Lisp_Object prompt = Fkeymap_prompt (leaf, Qt);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4107 if (STRINGP (prompt))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 {
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4109 /* Append keymap prompt to key echo buffer */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4110 int buf_index = command_builder->echo_buf_index;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4111 Bytecount len = XSTRING_LENGTH (prompt);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4112
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4113 if (len + buf_index + 1 <= command_builder->echo_buf_length)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4114 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4115 Bufbyte *echo = command_builder->echo_buf + buf_index;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4116 memcpy (echo, XSTRING_DATA (prompt), len);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4117 echo[len] = 0;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4118 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4119 maybe_echo_keys (command_builder, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 }
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4121 else
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4122 maybe_echo_keys (command_builder, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 }
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4124 else if (!NILP (Vquit_flag)) {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4125 Lisp_Object quit_event = Fmake_event();
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4126 struct Lisp_Event *e = XEVENT (quit_event);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4127 /* if quit happened during menu acceleration, pretend we read it */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4128 struct console *con = XCONSOLE (Fselected_console ());
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4129 int ch = CONSOLE_QUIT_CHAR (con);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4130
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4131 character_to_event (ch, e, con, 1);
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4132 e->channel = make_console (con);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4133
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4134 enqueue_command_event (quit_event);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4135 Vquit_flag = Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4136 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 else if (!NILP (leaf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 if (EQ (Qcommand, echo_area_status (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 && command_builder->echo_buf_index > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 /* If we had been echoing keys, echo the last one (without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 the trailing dash) and redisplay before executing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 command_builder->echo_buf[command_builder->echo_buf_index] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 maybe_echo_keys (command_builder, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 Fsit_for (Qzero, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 RETURN_UNGCPRO (leaf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 execute_command_event (struct command_builder *command_builder,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 struct console *con = XCONSOLE (command_builder->console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 GCPRO1 (event); /* event may be freshly created */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 reset_current_events (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4166 switch (XEVENT (event)->event_type)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4167 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4168 case key_press_event:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4169 Vcurrent_mouse_event = Qnil;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4170 break;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4171 case button_press_event:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4172 case button_release_event:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4173 case misc_user_event:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4174 Vcurrent_mouse_event = Fcopy_event (event, Qnil);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4175 break;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4176 default: break;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4177 }
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4178
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4179 /* Store the last-command-event. The semantics of this is that it
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4180 is the last event most recently involved in command-lookup. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 if (!EVENTP (Vlast_command_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 Vlast_command_event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 if (XEVENT (Vlast_command_event)->event_type == dead_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 Vlast_command_event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 error ("Someone deallocated the last-command-event!");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4188
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 if (! EQ (event, Vlast_command_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 Fcopy_event (event, Vlast_command_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 /* Note that last-command-char will never have its high-bit set, in
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4193 an effort to sidestep the ambiguity between M-x and oslash. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 Vlast_command_char = Fevent_to_character (Vlast_command_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 Qnil, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 /* Actually call the command, with all sorts of hair to preserve or clear
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 the echo-area and region as appropriate and call the pre- and post-
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4199 command-hooks. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 int old_kbd_macro = con->kbd_macro_end;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4202 struct window *w = XWINDOW (Fselected_window (Qnil));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4204 /* We're executing a new command, so the old value is irrelevant. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 /* If the previous command tried to force a specific window-start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 reset the flag in case this command moves point far away from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 that position. Also, reset the window's buffer's change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 information so that we don't trigger an incremental update. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 if (w->force_start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 w->force_start = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 buffer_reset_changes (XBUFFER (w->buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217 pre_command_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219 if (XEVENT (event)->event_type == misc_user_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4221 call1 (XEVENT (event)->event.eval.function,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 XEVENT (event)->event.eval.object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 Fcommand_execute (Vthis_command, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 post_command_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4231 #if 0 /* #### here was an attempted fix that didn't work */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4232 if (XEVENT (event)->event_type == misc_user_event)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4233 ;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4234 else
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4235 #endif
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4236 if (!NILP (con->prefix_arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 /* Commands that set the prefix arg don't update last-command, don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239 reset the echoing state, and don't go into keyboard macros unless
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4240 followed by another command. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 maybe_echo_keys (command_builder, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 /* If we're recording a keyboard macro, and the last command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 executed set a prefix argument, then decrement the pointer to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 the "last character really in the macro" to be just before this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 command. This is so that the ^U in "^U ^X )" doesn't go onto
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4247 the end of macro. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 if (!NILP (con->defining_kbd_macro))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 con->kbd_macro_end = old_kbd_macro;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253 /* Start a new command next time */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 Vlast_command = Vthis_command;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255 /* Emacs 18 doesn't unconditionally clear the echoed keystrokes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 so we don't either */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 reset_this_command_keys (make_console (con), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 /* Run the pre command hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 pre_command_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 last_point_position = BUF_PT (current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 XSETBUFFER (last_point_position_buffer, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 safe_run_hook_trapping_errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 ("Error in `pre-command-hook' (setting hook to nil)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 Qpre_command_hook, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 /* Run the post command hook. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 post_command_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 /* Turn off region highlighting unless this command requested that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 it be left on, or we're in the minibuffer. We don't turn it off
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 when we're in the minibuffer so that things like M-x write-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 still work!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 This could be done via a function on the post-command-hook, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 we don't want the user to accidentally remove it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4291
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4292 Lisp_Object win = Fselected_window (Qnil);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4293
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4294 #if 0
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4295 /* If the last command deleted the frame, `win' might be nil.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4296 It seems safest to do nothing in this case. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4297 /* ### This doesn't really fix the problem,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4298 if delete-frame is called by some hook */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4299 if (NILP (win))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4300 return;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4301 #endif
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4302
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 if (! zmacs_region_stays
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4304 && (!MINI_WINDOW_P (XWINDOW (win))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4305 || EQ (zmacs_region_buffer (), WINDOW_BUFFER (XWINDOW (win)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 zmacs_deactivate_region ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 zmacs_update_region ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 safe_run_hook_trapping_errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 ("Error in `post-command-hook' (setting hook to nil)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312 Qpost_command_hook, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 #ifdef DEFERRED_ACTION_CRAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 if (!NILP (Vdeferred_action_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 call0 (Vdeferred_action_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 #ifdef ILL_CONCEIVED_HOOK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 if (NILP (Vunread_command_events)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 && NILP (Vexecuting_macro)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 && !NILP (Vpost_command_idle_hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 && !NILP (Fsit_for (make_float ((double) post_command_idle_delay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 / 1000000), Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 safe_run_hook_trapping_errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 ("Error in `post-command-idle-hook' (setting hook to nil)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 Qpost_command_idle_hook, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 if (!NILP (current_buffer->mark_active))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 current_buffer->mark_active = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 run_hook (intern ("deactivate-mark-hook"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 else if (current_buffer != prev_buffer ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 BUF_MODIFF (current_buffer) != prev_modiff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 run_hook (intern ("activate-mark-hook"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 #endif /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 /* #### Kludge!!! This is necessary to make sure that things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 are properly positioned even if post-command-hook moves point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 #### There should be a cleaner way of handling this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347 call0 (Qauto_show_make_point_visible);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4351 DEFUN ("dispatch-event", Fdispatch_event, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 Given an event object as returned by `next-event', execute it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 Key-press, button-press, and button-release events get accumulated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 until a complete key sequence (see `read-key-sequence') is reached,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 at which point the sequence is looked up in the current keymaps and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 acted upon.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 Mouse motion events cause the low-level handling function stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 `mouse-motion-handler' to be called. (There are very few circumstances
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 under which you should change this handler. Use `mode-motion-hook'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 instead.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 Menu, timeout, and eval events cause the associated function or handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 to be called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367 Process events cause the subprocess's output to be read and acted upon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 appropriately (see `start-process').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 Magic events are handled as necessary.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4371 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4372 (event))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 struct command_builder *command_builder;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 struct Lisp_Event *ev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 Lisp_Object console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378 Lisp_Object channel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 ev = XEVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 /* events on dead channels get silently eaten */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 channel = EVENT_CHANNEL (ev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 if (object_dead_p (channel))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 /* Some events don't have channels (e.g. eval events). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389 console = CDFW_CONSOLE (channel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 if (NILP (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391 console = Vselected_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392 else if (!EQ (console, Vselected_console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 Fselect_console (console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 command_builder = XCOMMAND_BUILDER (XCONSOLE (console)->command_builder);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4396 switch (XEVENT (event)->event_type)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4402 Lisp_Object leaf = lookup_command_event (command_builder, event, 1);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4403
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 if (KEYMAPP (leaf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405 /* Incomplete key sequence */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 if (NILP (leaf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 /* At this point, we know that the sequence is not bound to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410 command. Normally, we beep and print a message informing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411 user of this. But we do not beep or print a message when:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 o the last event in this sequence is a mouse-up event; or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 o the last event in this sequence is a mouse-down event and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415 there is a binding for the mouse-up version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4417 That is, if the sequence ``C-x button1'' is typed, and is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418 bound to a command, but the sequence ``C-x button1up'' is bound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419 to a command, we do not complain about the ``C-x button1''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420 sequence. If neither ``C-x button1'' nor ``C-x button1up'' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421 bound to a command, then we complain about the ``C-x button1''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422 sequence, but later will *not* complain about the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423 ``C-x button1up'' sequence, which would be redundant.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 This is pretty hairy, but I think it's the most intuitive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 behavior.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428 Lisp_Object terminal = command_builder->most_current_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 if (XEVENT_TYPE (terminal) == button_press_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432 int no_bitching;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 /* Temporarily pretend the last event was an "up" instead of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 "down", and look up its binding. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 XEVENT_TYPE (terminal) = button_release_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 /* If the "up" version is bound, don't complain. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 no_bitching
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4438 = !NILP (command_builder_find_leaf (command_builder, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 /* Undo the temporary changes we just made. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 XEVENT_TYPE (terminal) = button_press_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 if (no_bitching)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443 /* Pretend this press was not seen (treat as a prefix) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444 if (EQ (command_builder->current_events, terminal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 reset_current_events (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450 Lisp_Object eve;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 EVENT_CHAIN_LOOP (eve, command_builder->current_events)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 if (EQ (XEVENT_NEXT (eve), terminal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 Fdeallocate_event (command_builder->
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 most_current_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 XSET_EVENT_NEXT (eve, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 command_builder->most_current_event = eve;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 maybe_echo_keys (command_builder, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 /* Complain that the typed sequence is not defined, if this is the
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4467 kind of sequence that warrants a complaint. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 XCONSOLE (console)->defining_kbd_macro = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469 XCONSOLE (console)->prefix_arg = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 /* Don't complain about undefined button-release events */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4471 if (XEVENT_TYPE (terminal) != button_release_event)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4473 Lisp_Object keys = current_events_into_vector (command_builder);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 /* Run the pre-command-hook before barfing about an undefined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 key. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 Vthis_command = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 GCPRO1 (keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 pre_command_hook ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 /* The post-command-hook doesn't run. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 Fsignal (Qundefined_keystroke_sequence, list1 (keys));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485 /* Reset the command builder for reading the next sequence. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 reset_this_command_keys (console, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4488 else /* key sequence is bound to a command */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 Vthis_command = leaf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 /* Don't push an undo boundary if the command set the prefix arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 or if we are executing a keyboard macro, or if in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 minibuffer. If the command we are about to execute is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 self-insert, it's tricky: up to 20 consecutive self-inserts may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 be done without an undo boundary. This counter is reset as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 soon as a command other than self-insert-command is executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498 if (! EQ (leaf, Qself_insert_command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499 command_builder->self_insert_countdown = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500 if (NILP (XCONSOLE (console)->prefix_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 && NILP (Vexecuting_macro)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 /* This was done in the days when there was no undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504 in the minibuffer. If we don't disable this code,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 then each instance of "undo" undoes everything in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 the minibuffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 && !EQ (minibuf_window, Fselected_window (Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 && command_builder->self_insert_countdown == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 Fundo_boundary ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512 if (EQ (leaf, Qself_insert_command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 if (--command_builder->self_insert_countdown < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515 command_builder->self_insert_countdown = 20;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4517 execute_command_event
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4518 (command_builder,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4519 !NILP (Fequal (event, command_builder-> most_current_event))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4520 ? event
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4521 /* Use the translated event that was most recently seen.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4522 This way, last-command-event becomes f1 instead of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4523 the P from ESC O P. But we must copy it, else we'll
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4524 lose when the command-builder events are deallocated. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4525 : Fcopy_event (command_builder-> most_current_event, Qnil));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 case misc_user_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 /* Jamie said:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533 We could just always use the menu item entry, whatever it is, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 this might break some Lisp code that expects `this-command' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 always contain a symbol. So only store it if this is a simple
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 `call-interactively' sort of menu item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 But this is bogus. `this-command' could be a string or vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 anyway (for keyboard macros). There's even one instance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 (in pending-del.el) of `this-command' getting set to a cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 (a lambda expression). So in the `eval' case I'll just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542 convert it into a lambda expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 if (EQ (XEVENT (event)->event.eval.function, Qcall_interactively)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 && SYMBOLP (XEVENT (event)->event.eval.object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 Vthis_command = XEVENT (event)->event.eval.object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 else if (EQ (XEVENT (event)->event.eval.function, Qeval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 Vthis_command =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 Fcons (Qlambda, Fcons (Qnil, XEVENT (event)->event.eval.object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550 else if (SYMBOLP (XEVENT (event)->event.eval.function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 /* A scrollbar command or the like. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552 Vthis_command = XEVENT (event)->event.eval.function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554 /* Huh? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 Vthis_command = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4557 /* clear the echo area */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4558 reset_key_echo (command_builder, 1);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4559
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560 command_builder->self_insert_countdown = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 if (NILP (XCONSOLE (console)->prefix_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 && NILP (Vexecuting_macro)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 && !EQ (minibuf_window, Fselected_window (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564 Fundo_boundary ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 execute_command_event (command_builder, event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4574 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4577 DEFUN ("read-key-sequence", Fread_key_sequence, 1, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 Read a sequence of keystrokes or mouse clicks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 Returns a vector of the event objects read. The vector and the event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 objects it contains are freshly created (and will not be side-effected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 by subsequent calls to this function).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 The sequence read is sufficient to specify a non-prefix command starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 from the current local and global keymaps. A C-g typed while in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 function is treated like any other character, and `quit-flag' is not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 First arg PROMPT is a prompt string. If nil, do not prompt specially.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 86
diff changeset
4588 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echoes
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589 as a continuation of the previous key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 convert the last event to lower case. (Normally any upper case event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593 is converted to lower case if the original event is undefined and the lower
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 case equivalent is defined.) This argument is provided mostly for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 FSF compatibility; the equivalent effect can be achieved more generally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 by binding `retry-undefined-key-binding-unshifted' to nil around the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 call to `read-key-sequence'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 A C-g typed while in this function is treated like any other character,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600 and `quit-flag' is not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 If the user selects a menu item while we are prompting for a key-sequence,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 the returned value will be a vector of a single menu-selection event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 An error will be signalled if you pass this value to `lookup-key' or a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 related function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 `read-key-sequence' checks `function-key-map' for function key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608 sequences, where they wouldn't conflict with ordinary bindings. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4609 `function-key-map' for more details.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4610 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4611 (prompt, continue_echo, dont_downcase_last))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 struct console *con = XCONSOLE (Vselected_console); /* #### correct?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615 Probably not -- see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4616 comment in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617 next-event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618 struct command_builder *command_builder =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4619 XCOMMAND_BUILDER (con->command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4621 Lisp_Object event = Fmake_event ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4622 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 GCPRO1 (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626 if (!NILP (prompt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627 CHECK_STRING (prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4628 /* else prompt = Fkeymap_prompt (current_buffer->keymap); may GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4629 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4631 if (NILP (continue_echo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4632 reset_this_command_keys (make_console (con), 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636 if (!NILP (dont_downcase_last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4637 specbind (Qretry_undefined_key_binding_unshifted, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4639 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4641 Fnext_event (event, prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4642 /* restore the selected-console damage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4643 con = event_console_or_selected (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4644 command_builder = XCOMMAND_BUILDER (con->command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4645 if (! command_event_p (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646 execute_internal_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4648 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4649 if (XEVENT (event)->event_type == misc_user_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4650 reset_current_events (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4651 result = lookup_command_event (command_builder, event, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4652 if (!KEYMAPP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4654 result = current_events_into_vector (command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655 reset_key_echo (command_builder, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4656 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4657 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658 prompt = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 Vquit_flag = Qnil; /* In case we read a ^G; do not call check_quit() here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663 Fdeallocate_event (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4664 RETURN_UNGCPRO (unbind_to (speccount, result));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4665 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4666
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4667 DEFUN ("this-command-keys", Fthis_command_keys, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4668 Return a vector of the keyboard or mouse button events that were used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4669 to invoke this command. This copies the vector and the events; it is safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4670 to keep and modify them.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4671 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4672 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4673 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4674 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4675 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4676 int len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4678 if (NILP (Vthis_command_keys))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4679 return make_vector (0, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4681 len = event_chain_count (Vthis_command_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4683 result = make_vector (len, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4684 len = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4685 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4686 XVECTOR_DATA (result)[len++] = Fcopy_event (event, Qnil);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4687 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4688 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4689
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4690 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4691 Used for complicated reasons in `universal-argument-other-key'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4693 `universal-argument-other-key' rereads the event just typed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4694 It then gets translated through `function-key-map'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4695 The translated event gets included in the echo area and in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4696 the value of `this-command-keys' in addition to the raw original event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4697 That is not right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4699 Calling this function directs the translated event to replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4700 the original event, so that only one version of the event actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4701 appears in the echo area and in the value of `this-command-keys.'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4702 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4703 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4704 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4705 /* #### I don't understand this at all, so currently it does nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4706 If there is ever a problem, maybe someone should investigate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4707 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4708 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712 dribble_out_event (Lisp_Object event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714 if (NILP (Vdribble_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 if (XEVENT (event)->event_type == key_press_event &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718 !XEVENT (event)->event.key.modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720 Lisp_Object keysym = XEVENT (event)->event.key.keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 if (CHARP (XEVENT (event)->event.key.keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 Emchar ch = XCHAR (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724 Bufbyte str[MAX_EMCHAR_LEN];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 Bytecount len;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4726
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727 len = set_charptr_emchar (str, ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 Lstream_write (XLSTREAM (Vdribble_file), str, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 else if (string_char_length (XSYMBOL (keysym)->name) == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731 /* one-char key events are printed with just the key name */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732 Fprinc (keysym, Vdribble_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 else if (EQ (keysym, Qreturn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734 Lstream_putc (XLSTREAM (Vdribble_file), '\n');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735 else if (EQ (keysym, Qspace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4736 Lstream_putc (XLSTREAM (Vdribble_file), ' ');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 Fprinc (event, Vdribble_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4739 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4741 Fprinc (event, Vdribble_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4742 Lstream_flush (XLSTREAM (Vdribble_file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4743 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4745 DEFUN ("open-dribble-file", Fopen_dribble_file, 1, 1,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4746 "FOpen dribble file: ", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 Start writing all keyboard characters to a dribble file called FILE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748 If FILE is nil, close any open dribble file.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4749 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4750 (file))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 /* XEmacs change: always close existing dribble file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754 /* FSFmacs uses FILE *'s here. With lstreams, that's unnecessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755 if (!NILP (Vdribble_file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4757 Lstream_close (XLSTREAM (Vdribble_file));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4758 Vdribble_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4759 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 if (!NILP (file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4761 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4762 int fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4764 file = Fexpand_file_name (file, Qnil);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 8
diff changeset
4765 fd = creat ((char *) XSTRING_DATA (file), 0666);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 if (fd < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4767 error ("Unable to create dribble file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4768 Vdribble_file = make_filedesc_output_stream (fd, 0, 0, LSTR_CLOSING);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4769 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4770 Vdribble_file =
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4771 make_encoding_output_stream (XLSTREAM (Vdribble_file),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4772 Fget_coding_system (Qescape_quoted));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4773 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784 syms_of_event_stream (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 defsymbol (&Qdisabled, "disabled");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 defsymbol (&Qcommand_event_p, "command-event-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789 deferror (&Qundefined_keystroke_sequence, "undefined-keystroke-sequence",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 "Undefined keystroke sequence", Qerror);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791 defsymbol (&Qcommand_execute, "command-execute");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4793 DEFSUBR (Frecent_keys);
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
4794 DEFSUBR (Frecent_keys_ring_size);
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
4795 DEFSUBR (Fset_recent_keys_ring_size);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4796 DEFSUBR (Finput_pending_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4797 DEFSUBR (Fenqueue_eval_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4798 DEFSUBR (Fnext_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4799 DEFSUBR (Fnext_command_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4800 DEFSUBR (Fdiscard_input);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4801 DEFSUBR (Fsit_for);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4802 DEFSUBR (Fsleep_for);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4803 DEFSUBR (Faccept_process_output);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4804 DEFSUBR (Fadd_timeout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4805 DEFSUBR (Fdisable_timeout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4806 DEFSUBR (Fadd_async_timeout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4807 DEFSUBR (Fdisable_async_timeout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4808 DEFSUBR (Fdispatch_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4809 DEFSUBR (Fread_key_sequence);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4810 DEFSUBR (Fthis_command_keys);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4811 DEFSUBR (Freset_this_command_lengths);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4812 DEFSUBR (Fopen_dribble_file);
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4813 #if defined(HAVE_X_WINDOWS) && defined(HAVE_MENUBARS)
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4814 DEFSUBR (Faccelerate_menu);
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4815 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 defsymbol (&Qpre_command_hook, "pre-command-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 defsymbol (&Qpost_command_hook, "post-command-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819 defsymbol (&Qunread_command_events, "unread-command-events");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 defsymbol (&Qunread_command_event, "unread-command-event");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 defsymbol (&Qpre_idle_hook, "pre-idle-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822 #ifdef ILL_CONCEIVED_HOOK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823 defsymbol (&Qpost_command_idle_hook, "post-command-idle-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825 #ifdef DEFERRED_ACTION_CRAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826 defsymbol (&Qdeferred_action_function, "deferred-action-function");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828 defsymbol (&Qretry_undefined_key_binding_unshifted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4829 "retry-undefined-key-binding-unshifted");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 defsymbol (&Qauto_show_make_point_visible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 "auto-show-make-point-visible");
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4832
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4833 defsymbol (&Qmenu_force, "menu-force");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4834 defsymbol (&Qmenu_fallback, "menu-fallback");
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
4835
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4836 defsymbol (&Qmenu_quit, "menu-quit");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4837 defsymbol (&Qmenu_up, "menu-up");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4838 defsymbol (&Qmenu_down, "menu-down");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4839 defsymbol (&Qmenu_left, "menu-left");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4840 defsymbol (&Qmenu_right, "menu-right");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4841 defsymbol (&Qmenu_select, "menu-select");
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4842 defsymbol (&Qmenu_escape, "menu-escape");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4845 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4846 vars_of_event_stream (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4847 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849 vars_of_event_Xt ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851 #if defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852 vars_of_event_tty ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4853 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4856 recent_keys_ring_index = 0;
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
4857 recent_keys_ring_size = 100;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
4858 Vrecent_keys_ring = Qnil;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 142
diff changeset
4859 staticpro (&Vrecent_keys_ring);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861 Vthis_command_keys = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862 staticpro (&Vthis_command_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863 Vthis_command_keys_tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4865 num_input_chars = 0;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
4866
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867 command_event_queue = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868 staticpro (&command_event_queue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869 command_event_queue_tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871 Vlast_selected_frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872 staticpro (&Vlast_selected_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 pending_timeout_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875 staticpro (&pending_timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877 pending_async_timeout_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4878 staticpro (&pending_async_timeout_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4880 Vtimeout_free_list = make_opaque_list (sizeof (struct timeout),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4881 mark_timeout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4882 staticpro (&Vtimeout_free_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 the_low_level_timeout_blocktype =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885 Blocktype_new (struct low_level_timeout_blocktype);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 something_happened = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 last_point_position_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890 staticpro (&last_point_position_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
4892 recursive_sit_for = Qnil;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
4893
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 *Nonzero means echo unfinished commands after this many seconds of pause.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4897 echo_keystrokes = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899 DEFVAR_INT ("auto-save-interval", &auto_save_interval /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4900 *Number of keyboard input characters between auto-saves.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901 Zero means disable autosaving due to number of characters typed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 See also the variable `auto-save-timeout'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904 auto_save_interval = 300;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907 Function or functions to run before every command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 This may examine the `this-command' variable to find out what command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4909 is about to be run, or may change it to cause a different command to run.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910 Function on this hook must be careful to avoid signalling errors!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 Vpre_command_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4915 Function or functions to run after every command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916 This may examine the `this-command' variable to find out what command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 was just executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4919 Vpost_command_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 DEFVAR_LISP ("pre-idle-hook", &Vpre_idle_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922 Normal hook run when XEmacs it about to be idle.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4923 This occurs whenever it is going to block, waiting for an event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 This generally happens as a result of a call to `next-event',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925 `next-command-event', `sit-for', `sleep-for', `accept-process-output',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 `x-get-selection', or various Energize-specific commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 Errors running the hook are caught and ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929 Vpre_idle_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4930
72
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
4931 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse /*
142
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 138
diff changeset
4932 *Variable to control XEmacs behavior with respect to focus changing.
72
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
4933 If this variable is set to t, then XEmacs will not gratuitously change
142
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 138
diff changeset
4934 the keyboard focus. XEmacs cannot in general detect when this mode is
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 138
diff changeset
4935 use by the window manager, so it is up to the user to set it.
72
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
4936 */ );
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
4937 focus_follows_mouse = 0;
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents: 70
diff changeset
4938
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4939 #ifdef ILL_CONCEIVED_HOOK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4940 /* Ill-conceived because it's not run in all sorts of cases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4941 where XEmacs is blocking. That's what `pre-idle-hook'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4942 is designed to solve. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4943 xxDEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4944 Normal hook run after each command is executed, if idle.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4945 `post-command-idle-delay' specifies a time in microseconds that XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4946 must be idle for in order for the functions on this hook to be called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4947 Errors running the hook are caught and ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4948 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4949 Vpost_command_idle_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4951 xxDEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4952 Delay time before running `post-command-idle-hook'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4953 This is measured in microseconds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4954 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4955 post_command_idle_delay = 5000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4956 #endif /* ILL_CONCEIVED_HOOK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4958 #ifdef DEFERRED_ACTION_CRAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4959 /* Random FSFmacs crap. There is absolutely nothing to gain,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4960 and a great deal to lose, in using this in place of just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4961 setting `post-command-hook'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4962 xxDEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4963 List of deferred actions to be performed at a later time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4964 The precise format isn't relevant here; we just check whether it is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4965 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 Vdeferred_action_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 xxDEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 Function to call to handle deferred actions, after each command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4970 This function is called with no arguments after each command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4971 whenever `deferred-action-list' is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973 Vdeferred_action_function = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974 #endif /* DEFERRED_ACTION_CRAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976 DEFVAR_LISP ("last-command-event", &Vlast_command_event /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977 Last keyboard or mouse button event that was part of a command. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978 variable is off limits: you may not set its value or modify the event that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4979 is its value, as it is destructively modified by `read-key-sequence'. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980 you want to keep a pointer to this value, you must use `copy-event'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4981 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4982 Vlast_command_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4984 DEFVAR_LISP ("last-command-char", &Vlast_command_char /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4985 If the value of `last-command-event' is a keyboard event, then
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4986 this is the nearest ASCII equivalent to it. This is the value that
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4987 `self-insert-command' will put in the buffer. Remember that there is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4988 NOT a 1:1 mapping between keyboard events and ASCII characters: the set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4989 of keyboard events is much larger, so writing code that examines this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 variable to determine what key has been typed is bad practice, unless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 you are certain that it will be one of a small set of characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993 Vlast_command_char = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995 DEFVAR_LISP ("last-input-event", &Vlast_input_event /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 Last keyboard or mouse button event received. This variable is off
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997 limits: you may not set its value or modify the event that is its value, as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998 it is destructively modified by `next-event'. If you want to keep a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4999 to this value, you must use `copy-event'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5000 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001 Vlast_input_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 DEFVAR_LISP ("current-mouse-event", &Vcurrent_mouse_event /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 The mouse-button event which invoked this command, or nil.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
5005 This is usually what `(interactive "e")' returns.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 Vcurrent_mouse_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009 DEFVAR_LISP ("last-input-char", &Vlast_input_char /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 If the value of `last-input-event' is a keyboard event, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 this is the nearest ASCII equivalent to it. Remember that there is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012 NOT a 1:1 mapping between keyboard events and ASCII characters: the set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 of keyboard events is much larger, so writing code that examines this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 variable to determine what key has been typed is bad practice, unless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 you are certain that it will be one of a small set of characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 Vlast_input_char = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019 DEFVAR_LISP ("last-input-time", &Vlast_input_time /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020 The time (in seconds since Jan 1, 1970) of the last-command-event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 represented as a cons of two 16-bit integers. This is destructively
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 modified, so copy it if you want to keep it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5024 Vlast_input_time = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 DEFVAR_LISP ("unread-command-events", &Vunread_command_events /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 List of event objects to be read as next command input events.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028 This can be used to simulate the receipt of events from the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029 Normally this is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 Events are removed from the front of this list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 Vunread_command_events = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5034 DEFVAR_LISP ("unread-command-event", &Vunread_command_event /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035 Obsolete. Use `unread-command-events' instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5037 Vunread_command_event = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5039 DEFVAR_LISP ("last-command", &Vlast_command /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5040 The last command executed. Normally a symbol with a function definition,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041 but can be whatever was found in the keymap, or whatever the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5042 `this-command' was set to by that command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5043 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5044 Vlast_command = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 DEFVAR_LISP ("this-command", &Vthis_command /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5047 The command now being executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5048 The command can set this variable; whatever is put here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 will be in `last-command' during the following command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5051 Vthis_command = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5053 DEFVAR_LISP ("help-char", &Vhelp_char /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5054 Character to recognize as meaning Help.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5055 When it is read, do `(eval help-form)', and display result if it's a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056 If the value of `help-form' is nil, this char can be read normally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5057 This can be any form recognized as a single key specifier.
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 86
diff changeset
5058 The help-char cannot be a negative number in XEmacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5060 Vhelp_char = make_char (8); /* C-h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 DEFVAR_LISP ("help-form", &Vhelp_form /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 Form to execute when character help-char is read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 If the form returns a string, that string is displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065 If `help-form' is nil, the help char is not recognized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5066 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 Vhelp_form = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5069 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5070 Command to run when `help-char' character follows a prefix key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5071 This command is used only when there is no actual binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5072 for that character after that prefix key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5073 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5074 Vprefix_help_command = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5076 DEFVAR_CONST_LISP ("keyboard-translate-table", &Vkeyboard_translate_table /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5077 Hash table used as translate table for keyboard input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5078 Use `keyboard-translate' to portably add entries to this table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5079 Each key-press event is looked up in this table as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5081 -- If an entry maps a symbol to a symbol, then a key-press event whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5082 keysym is the former symbol (with any modifiers at all) gets its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5083 keysym changed and its modifiers left alone. This is useful for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5084 dealing with non-standard X keyboards, such as the grievous damage
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085 that Sun has inflicted upon the world.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5086 -- If an entry maps a character to a character, then a key-press event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5087 matching the former character gets converted to a key-press event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5088 matching the latter character. This is useful on ASCII terminals
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5089 for (e.g.) making C-\\ look like C-s, to get around flow-control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5090 problems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5091 -- If an entry maps a character to a symbol, then a key-press event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5092 matching the character gets converted to a key-press event whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5093 keysym is the given symbol and which has no modifiers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5094 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5096 DEFVAR_LISP ("retry-undefined-key-binding-unshifted",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5097 &Vretry_undefined_key_binding_unshifted /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 If a key-sequence which ends with a shifted keystroke is undefined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5099 and this variable is non-nil then the command lookup is retried again
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5100 with the last key unshifted. (e.g. C-X C-F would be retried as C-X C-f.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 If lookup still fails, a normal error is signalled. In general,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102 you should *bind* this, not set it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5103 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5104 Vretry_undefined_key_binding_unshifted = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5106 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5107 DEFVAR_LISP ("Vcomposed_character_default_binding",
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
5108 &Vretry_undefined_key_binding_unshifted /*
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5109 The default keybinding to use for key events from composed input.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5110 Window systems frequently have ways to allow the user to compose
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5111 single characters in a language using multiple keystrokes.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5112 XEmacs sees these as single character keypress events.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5113 */ );
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5114 Vcomposed_character_default_binding = Qself_insert_command;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5115 #endif /* HAVE_XIM */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
5116
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117 Vcontrolling_terminal = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118 staticpro (&Vcontrolling_terminal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 Vdribble_file = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121 staticpro (&Vdribble_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 DEFVAR_INT ("debug-emacs-events", &debug_emacs_events /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125 If non-zero, display debug information about Emacs events that XEmacs sees.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126 Information is displayed on stderr.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 Before the event, the source of the event is displayed in parentheses,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 and is one of the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5131 \(real) A real event from the window system or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132 terminal driver, as far as XEmacs can tell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5134 \(keyboard macro) An event generated from a keyboard macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136 \(unread-command-events) An event taken from `unread-command-events'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138 \(unread-command-event) An event taken from `unread-command-event'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 \(command event queue) An event taken from an internal queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141 Events end up on this queue when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142 `enqueue-eval-event' is called or when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5143 user or eval events are received while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5144 XEmacs is blocking (e.g. in `sit-for',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5145 `sleep-for', or `accept-process-output',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5146 or while waiting for the reply to an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5147 X selection).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5149 \(->keyboard-translate-table) The result of an event translated through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5150 keyboard-translate-table. Note that in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5151 this case, two events are printed even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5152 though only one is really generated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5154 \(SIGINT) A faked C-g resulting when XEmacs receives
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5155 a SIGINT (e.g. C-c was pressed in XEmacs'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5156 controlling terminal or the signal was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5157 explicitly sent to the XEmacs process).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5158 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5159 debug_emacs_events = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5160 #endif
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5161
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5162 DEFVAR_LISP("menu-accelerator-prefix", &Vmenu_accelerator_prefix /*
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5163 Prefix key(s) that must be typed before menu accelerators will be activated.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5164 Set this to a value acceptable by define-key.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5165 */ );
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5166 Vmenu_accelerator_prefix = Qnil;
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5167
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5168 DEFVAR_LISP ("menu-accelerator-modifiers", &Vmenu_accelerator_modifiers /*
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5169 Modifier keys which must be pressed to get to the top level menu accelerators.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5170 This is a list of modifier key symbols. All modifier keys must be held down
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5171 while a valid menu accelerator key is pressed in order for the top level
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5172 menu to become active.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5173
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5174 See also menu-accelerator-enabled and menu-accelerator-prefix.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5175 */ );
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5176 Vmenu_accelerator_modifiers = list1 (Qmeta);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
5177
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5178 DEFVAR_LISP ("menu-accelerator-enabled", &Vmenu_accelerator_enabled /*
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5179 Whether menu accelerator keys can cause the menubar to become active.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5180 If 'menu-force or 'menu-fallback, then menu accelerator keys can
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5181 be used to activate the top level menu. Once the menubar becomes active, the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5182 accelerator keys can be used regardless of the value of this variable.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5183
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5184 menu-force is used to indicate that the menu accelerator key takes
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5185 precedence over bindings in the current keymap(s). menu-fallback means
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5186 that bindings in the current keymap take precedence over menu accelerator keys.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 181
diff changeset
5187 Thus a top level menu with an accelerator of "T" would be activated on a
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5188 keypress of Meta-t if menu-accelerator-enabled is menu-force.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5189 However, if menu-accelerator-enabled is menu-fallback, then
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5190 Meta-t will not activate the menubar and will instead run the function
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5191 transpose-words, to which it is normally bound.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5192
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5193 See also menu-accelerator-modifiers and menu-accelerator-prefix.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5194 */ );
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5195 Vmenu_accelerator_enabled = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199 complex_vars_of_event_stream (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201 Vkeyboard_translate_table = Fmake_hashtable (make_int (100), Qnil);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5202
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5203 DEFVAR_LISP ("menu-accelerator-map", &Vmenu_accelerator_map /*
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5204 Keymap for use when the menubar is active.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5205 The actions menu-quit, menu-up, menu-down, menu-left, menu-right,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5206 menu-select and menu-escape can be mapped to keys in this map.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5207
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5208 menu-quit Immediately deactivate the menubar and any open submenus without
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5209 selecting an item.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5210 menu-up Move the menu cursor up one row in the current menu. If the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5211 move extends past the top of the menu, wrap around to the bottom.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5212 menu-down Move the menu cursor down one row in the current menu. If the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5213 move extends past the bottom of the menu, wrap around to the top.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5214 If executed while the cursor is in the top level menu, move down
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5215 into the selected menu.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5216 menu-left Move the cursor from a submenu into the parent menu. If executed
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5217 while the cursor is in the top level menu, move the cursor to the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5218 left. If the move extends past the left edge of the menu, wrap
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5219 around to the right edge.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5220 menu-right Move the cursor into a submenu. If the cursor is located in the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5221 top level menu or is not currently on a submenu heading, then move
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5222 the cursor to the next top level menu entry. If the move extends
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5223 past the right edge of the menu, wrap around to the left edge.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5224 menu-select Activate the item under the cursor. If the cursor is located on
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5225 a submenu heading, then move the cursor into the submenu.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5226 menu-escape Pop up to the next level of menus. Moves from a submenu into its
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5227 parent menu. From the top level menu, this deactivates the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5228 menubar.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5229
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5230 This keymap can also contain normal key-command bindings, in which case the
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5231 menubar is deactivated and the corresponding command is executed.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5232
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5233 The action bindings used by the menu accelerator code are designed to mimic
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5234 the actions of menu traversal keys in a commonly used PC operating system.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5235 */ );
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
5236 Vmenu_accelerator_map = Fmake_keymap(Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 init_event_stream (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5242 if (initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244 #ifdef HAVE_UNIXOID_EVENT_LOOP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 init_event_unixoid ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5248 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249 if (!strcmp (display_use, "x"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 init_event_Xt_late ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5253 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 /* For TTY's, use the Xt event loop if we can; it allows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5255 us to later open an X connection. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 #if defined (HAVE_X_WINDOWS) && !defined (DEBUG_TTY_EVENT_STREAM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 init_event_Xt_late ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259 init_event_tty_late ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5260 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262 init_interrupts_late ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5263 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5267 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5268 useful testcases for v18/v19 compatibility:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5270 (defun foo ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5271 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5272 (setq unread-command-event (character-to-event ?A (allocate-event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5273 (setq x (list (read-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5274 ; (read-key-sequence "") ; try it with and without this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5275 last-command-char last-input-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5276 (recent-keys) (this-command-keys))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5277 (global-set-key "\^Q" 'foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5279 without the read-key-sequence:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5280 ^Q ==> (65 17 65 [... ^Q] [^Q])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5281 ^U^U^Q ==> (65 17 65 [... ^U ^U ^Q] [^U ^U ^Q])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5282 ^U^U^U^G^Q ==> (65 17 65 [... ^U ^U ^U ^G ^Q] [^Q])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5284 with the read-key-sequence:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5285 ^Qb ==> (65 [b] 17 98 [... ^Q b] [b])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5286 ^U^U^Qb ==> (65 [b] 17 98 [... ^U ^U ^Q b] [b])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5287 ^U^U^U^G^Qb ==> (65 [b] 17 98 [... ^U ^U ^U ^G ^Q b] [b])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5289 ;the evi-mode command "4dlj.j.j.j.j.j." is also a good testcase (gag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5291 ;(setq x (list (read-char) quit-flag))^J^G
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5292 ;(let ((inhibit-quit t)) (setq x (list (read-char) quit-flag)))^J^G
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5293 ;for BOTH, x should get set to (7 t), but no result should be printed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5295 ;also do this: make two frames, one viewing "*scratch*", the other "foo".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5296 ;in *scratch*, type (sit-for 20)^J
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5297 ;wait a couple of seconds, move cursor to foo, type "a"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5298 ;a should be inserted in foo. Cursor highlighting should not change in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5299 ;the meantime.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5301 ;do it with sleep-for. move cursor into foo, then back into *scratch*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5302 ;before typing.
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5303 ;repeat also with (accept-process-output nil 20)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5304
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5305 ;make sure ^G aborts sit-for, sleep-for and accept-process-output:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5307 (defun tst ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5308 (list (condition-case c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5309 (sleep-for 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5310 (quit c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5311 (read-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5313 (tst)^Ja^G ==> ((quit) 97) with no signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5314 (tst)^J^Ga ==> ((quit) 97) with no signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5315 (tst)^Jabc^G ==> ((quit) 97) with no signal, and "bc" inserted in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5316
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5317 ; with sit-for only do the 2nd test.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5318 ; Do all 3 tests with (accept-proccess-output nil 20)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5319
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5320 Do this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5321 (setq enable-recursive-minibuffers t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5322 minibuffer-max-depth nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5323 ESC ESC ESC ESC - there are now two minibuffers active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5324 C-g C-g C-g - there should be active 0, not 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5325 Similarly:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5326 C-x C-f ~ / ? - wait for "Making completion list..." to display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5327 C-g - wait for "Quit" to display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5328 C-g - minibuffer should not be active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5329 however C-g before "Quit" is displayed should leave minibuffer active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5331 ;do it all in both v18 and v19 and make sure all results are the same.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5332 ;all of these cases matter a lot, but some in quite subtle ways.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5333 */
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5334
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5335 /*
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5336 Additional test cases for accept-process-output, sleep-for, sit-for.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5337 Be sure you do all of the above checking for C-g and focus, too!
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5338
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5339 ; Make sure that timer handlers are run during, not after sit-for:
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5340 (defun timer-check ()
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5341 (add-timeout 2 '(lambda (ignore) (message "timer ran")) nil)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5342 (sit-for 5)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5343 (message "after sit-for"))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5344
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5345 ; The first message should appear after 2 seconds, and the final message
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5346 ; 3 seconds after that.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5347 ; repeat above test with (sleep-for 5) and (accept-process-output nil 5)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5348
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5349
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5350
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5351 ; Make sure that process filters are run during, not after sit-for.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5352 (defun fubar ()
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5353 (message "sit-for = %s" (sit-for 30)))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5354 (add-hook 'post-command-hook 'fubar)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5355
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5356 ; Now type M-x shell RET
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5357 ; wait for the shell prompt then send: ls RET
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5358 ; the output of ls should fill immediately, and not wait 30 seconds.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5359
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5360 ; repeat above test with (sleep-for 30) and (accept-process-output nil 30)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5361
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5362
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5363
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5364 ; Make sure that recursive invocations return immediately:
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5365 (defmacro test-diff-time (start end)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5366 `(+ (* (- (car ,end) (car ,start)) 65536.0)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5367 (- (cadr ,end) (cadr ,start))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5368 (/ (- (caddr ,end) (caddr ,start)) 1000000.0)))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5369
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5370 (defun testee (ignore)
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5371 (sit-for 10))
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5372
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5373 (defun test-them ()
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5374 (let ((start (current-time))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5375 end)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5376 (add-timeout 2 'testee nil)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5377 (sit-for 5)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5378 (add-timeout 2 'testee nil)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5379 (sleep-for 5)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5380 (add-timeout 2 'testee nil)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5381 (accept-process-output nil 5)
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5382 (setq end (current-time))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5383 (test-diff-time start end)))
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5384
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5385 (test-them) should sit for 15 seconds.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5386 Repeat with testee set to sleep-for and accept-process-output.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5387 These should each delay 36 seconds.
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5388
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 100
diff changeset
5389 */