annotate src/events.h @ 382:064ab7fed2e0 r21-2-6

Import from CVS: tag r21-2-6
author cvs
date Mon, 13 Aug 2007 11:07:39 +0200
parents 8626e4521993
children 74fd4e045ea6
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 /* Definitions for the new event model;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 created 16-jul-91 by Jamie Zawinski
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #ifndef _XEMACS_EVENTS_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #define _XEMACS_EVENTS_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
30 /* There is one object called an event_stream. This object contains
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
31 callback functions for doing the window-system-dependent operations
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
32 that XEmacs requires.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 If XEmacs is compiled with support for X11 and the X Toolkit, then this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 event_stream structure will contain functions that can cope with input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 on XEmacs windows on multiple displays, as well as input from dumb tty
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
37 frames.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 If it is desired to have XEmacs able to open frames on the displays of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 multiple heterogeneous machines, X11 and SunView, or X11 and NeXT, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 example, then it will be necessary to construct an event_stream structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 that can cope with the given types. Currently, the only implemented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 event_streams are for dumb-ttys, and for X11 plus dumb-ttys.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
44
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
45 To implement this for one window system is relatively simple.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 To implement this for multiple window systems is trickier and may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 not be possible in all situations, but it's been done for X and TTY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Note that these callbacks are *NOT* console methods; that's because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 the routines are not specific to a particular console type but must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 be able to simultaneously cope with all allowable console types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 The slots of the event_stream structure:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
55 next_event_cb A function which fills in an XEmacs_event structure
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 with the next event available. If there is no event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 available, then this should block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 IMPORTANT: timer events and especially process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 events *must not* be returned if there are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 events of other types available; otherwise you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 can end up with an infinite loop in Fdiscard_input().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 event_pending_cb A function which says whether there are events to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 read. If called with an argument of 0, then this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 should say whether calling the next_event_cb will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 block. If called with an argument of 1, then this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 should say whether there are user-generated events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 pending (that is, keypresses or mouse-clicks). This
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
70 is used for redisplay optimization, among other
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
71 things. On dumb ttys, these two results are the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 same, but under a window system, they are not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 If this function is not sure whether there are events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 to be read, it *must* return 0. Otherwise various
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 undesirable effects will occur, such as redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 not occurring until the next event occurs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 handle_magic_event_cb XEmacs calls this with an event structure which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 contains window-system dependent information that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 XEmacs doesn't need to know about, but which must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 happen in order. If the next_event_cb never returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 an event of type "magic", this will never be used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 add_timeout_cb Called with an EMACS_TIME, the absolute time at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 which a wakeup event should be generated; and a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 void *, which is an arbitrary value that will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 returned in the timeout event. The timeouts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 generated by this function should be one-shots:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 they fire once and then disappear. This callback
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 should return an int id-number which uniquely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 identifies this wakeup. If an implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 doesn't have microseconds or millisecond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 granularity, it should round up to the closest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 value it can deal with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
97 remove_timeout_cb Called with an int, the id number of a wakeup to
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 discard. This id number must have been returned by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 the add_timeout_cb. If the given wakeup has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 already expired, this should do nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 select_process_cb These callbacks tell the underlying implementation to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 unselect_process_cb add or remove a file descriptor from the list of fds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 which are polled for inferior-process input. When
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 input becomes available on the given process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 connection, an event of type "process" should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 generated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
109 select_console_cb These callbacks tell the underlying implementation
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 unselect_console_cb to add or remove a console from the list of consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 which are polled for user-input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 select_device_cb These callbacks are used by Unixoid event loops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 unselect_device_cb (those that use select() and file descriptors and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 have a separate input fd per device).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
117 create_stream_pair_cb These callbacks are called by process code to
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
118 delete_stream_pair_cb create and delete a pair of input and output lstreams
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
119 which are used for subprocess I/O.
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
120
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 quitp_cb A handler function called from the `QUIT' macro which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 should check whether the quit character has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 typed. On systems with SIGIO, this will not be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 unless the `sigio_happened' flag is true (it is set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 from the SIGIO handler).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 XEmacs has its own event structures, which are distinct from the event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 structures used by X or any other window system. It is the job of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 event_stream layer to translate to this format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 NOTE: #### All timestamps should be measured as milliseconds since XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 started. Currently many or most events have a 0 as their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 timestamp value, and for other timestamps, they are raw server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 timestamps. (The X protocol doesn't provide any easy way of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 translating between server time and real process time; yuck.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 Every event type has the following structures:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 channel Where this event occurred on. This will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 a frame, device, console, or nil, depending on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 event type. It is important that an object of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 a more specific type than is actually generated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 is not substituted -- e.g. there should not be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 a frame inserted when a key-press event occurs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 because events on dead channels are automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 Specifically:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 -- for button and mouse-motion events, channel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 will be a frame. (The translation to a window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 occurs later.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 -- for keyboard events, channel will be a console.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 Note that fake keyboard events (generated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 by `character-to-event' or something that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 calls this, such as macros) need to have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 the selected console stored into them when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 the event is created. This is so that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 correct console-local variables (e.g. the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 command builder) will get affected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 -- for timer, process, magic-eval, and eval events,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 channel will be nil.
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
163 -- for misc-user events, channel will be a frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 -- for magic events, channel will be a frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (usually) or a device.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
166
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 timestamp When this event occurred -- if not known, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 is made up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 In addition, the following structures are specific to particular event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 types:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
173 key_press_event
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 key What keysym this is; an integer or a symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 If this is an integer, it will be in the printing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 ASCII range: >32 and <127.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 modifiers Bucky-bits on that key: control, meta, etc.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
178 For many keys, Shift is not a bit; that is implicit
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 in the keyboard layout.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 button_press_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 button_release_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 button What button went down or up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 modifiers Bucky-bits on that button: shift, control, meta, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 x, y Where it was at the button-state-change (in pixels).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 pointer_motion_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 x, y Where it was after it moved (in pixels).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 modifiers Bucky-bits down when the motion was detected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (Possibly not all window systems will provide this?)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 process_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 process the XEmacs "process" object in question
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 timeout_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 interval_id The ID returned when the associated call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 add_timeout_cb() was made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 ------ the rest of the fields are filled in by XEmacs -----
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 id_number The XEmacs timeout ID for this timeout (more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 than one timeout event can have the same value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 here, since XEmacs timeouts, as opposed to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 add_timeout_cb() timeouts, can resignal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 themselves)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 function An elisp function to call when this timeout is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 processed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 object The object passed to that function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 eval_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 function An elisp function to call with this event object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 internal_function An unexported function to call with this event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 object. This allows eval events to call internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 functions. For a normal eval event, this field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 will always be 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 object Anything.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 This kind of event is used internally; sometimes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 window system interface would like to inform XEmacs of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 some user action (such as focusing on another frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 but needs that to happen synchronously with the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 user input, like keypresses. This is useful when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 events are reported through callbacks rather
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 than in the standard event stream.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 misc_user_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 function An elisp function to call with this event object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 internal_function Ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 object Anything.
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
227 button What button went down or up.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
228 modifiers Bucky-bits on that button: shift, control, meta, etc.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
229 x, y Where it was at the button-state-change (in pixels).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 This is similar to an eval_event, except that it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 generated by user actions: selections in the
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
232 menubar, scrollbar actions, or drag and drop actions.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
233 It is a "command" event, like key and mouse presses
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
234 (and unlike mouse motion, process output, and enter
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
235 and leave window hooks). In many ways, eval_events
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
236 are not the same as keypresses or misc_user_events.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
237 The button, modifiers, x, and y parts are only used
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
238 by the XEmacs Drag'n'Drop system. Don't depend on their
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
239 values for other types of misc_user_events.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 magic_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 No user-serviceable parts within. This is for things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 like KeymapNotify and ExposeRegion events and so on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 that XEmacs itself doesn't care about, but which it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 must do something with for proper interaction with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 the window system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 Magic_events are handled somewhat asynchronously, just
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
249 like subprocess filters. However, occasionally a
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 magic_event needs to be handled synchronously; in that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 case, the asynchronous handling of the magic_event will
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 177
diff changeset
252 push an eval_event back onto the queue, which will be
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 handled synchronously later. This is one of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 reasons why eval_events exist; I'm not entirely happy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 with this aspect of this event model.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 magic_eval_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 This is like an eval event but its contents are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 not Lisp-accessible. This allows for "internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 eval events" that call non-Lisp-accessible functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 Externally, a magic_eval_event just appears as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 a magic_event; the Lisp programmer need not know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 anything more.
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 185
diff changeset
264
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
265 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
267 /*
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
268 Stream pairs description
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
269 ------------------------
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
270
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
271 Since there are many possible processes/event loop combinations, the event code
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
272 is responsible for creating an appropriate lstream type. The process
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
273 implementation does not care about that implementation.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
274
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
275 The Create stream pair function is passed two void* values, which identify
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
276 process-dependent 'handles'. The process implementation uses these handles
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
277 to communicate with child processes. The function must be prepared to receive
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
278 handle types of any process implementation. Since there only one process
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
279 implementation exists in a particular XEmacs configuration, preprocessing
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
280 is a mean of compiling in the support for the code which deals with particular
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
281 handle types.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
282
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
283 For example, a unixoid type loop, which relies on file descriptors, may be
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
284 asked to create a pair of streams by a unix-style process implementation.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
285 In this case, the handles passed are unix file descriptors, and the code
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
286 may deal with these directly. Although, the same code may be used on Win32
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
287 system with X-Windows. In this case, Win32 process implementation passes
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
288 handles of type HANDLE, and the create_stream_pair function must call
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
289 appropriate function to get file descriptors given HANDLEs, so that these
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
290 descriptors may be passed to XtAddInput.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
291
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
292 The handle given may have special denying value, in which case the
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
293 corresponding lstream should not be created.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
294
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
295 The return value of the function is a unique stream identifier. It is used
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
296 by processes implementation, in its platform-independent part. There is
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
297 the get_process_from_usid function, which returns process object given its
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
298 USID. The event stream is responsible for converting its internal handle
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
299 type into USID.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
300
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
301 Example is the TTY event stream. When a file descriptor signals input, the
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
302 event loop must determine process to which the input is destined. Thus,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
303 the implementation uses process input stream file descriptor as USID, by
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
304 simply casting the fd value to USID type.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
305
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
306 There are two special USID values. One, USID_ERROR, indicates that the stream
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
307 pair cannot be created. The second, USID_DONTHASH, indicates that streams are
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
308 created, but the event stream does not wish to be able to find the process
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
309 by its USID. Specifically, if an event stream implementation never calls
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
310 get_process_from_usid, this value should always be returned, to prevent
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
311 accumulating useless information on USID to process relationship.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
312 */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
313
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
314 /* typedef unsigned int USID; in lisp.h */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
315 #define USID_ERROR ((USID)-1)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
316 #define USID_DONTHASH ((USID)0)
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
317
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 struct Lisp_Event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 struct Lisp_Process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 struct event_stream
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 int (*event_pending_p) (int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 void (*next_event_cb) (struct Lisp_Event *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 void (*handle_magic_event_cb) (struct Lisp_Event *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 int (*add_timeout_cb) (EMACS_TIME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 void (*remove_timeout_cb) (int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 void (*select_console_cb) (struct console *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 void (*unselect_console_cb) (struct console *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 void (*select_process_cb) (struct Lisp_Process *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 void (*unselect_process_cb) (struct Lisp_Process *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 void (*quit_p_cb) (void);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
334 USID (*create_stream_pair_cb) (void* /* inhandle*/, void* /*outhandle*/ ,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
335 Lisp_Object* /* instream */,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
336 Lisp_Object* /* outstream */,
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
337 int /* flags */);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
338 USID (*delete_stream_pair_cb) (Lisp_Object /* instream */,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
339 Lisp_Object /* outstream */);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
342 /* Flags for create_stream_pair_cb() FLAGS parameter */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
343 #define STREAM_PTY_FLUSHING 0x0001
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
344 #define STREAM_NETWORK_CONNECTION 0x0002
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
345
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 extern struct event_stream *event_stream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 typedef enum emacs_event_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 empty_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 key_press_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 button_press_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 button_release_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 pointer_motion_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 process_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 timeout_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 magic_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 magic_eval_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 eval_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 misc_user_event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 dead_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 } emacs_event_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 #define first_event_type empty_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #define last_event_type dead_event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 struct key_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 Lisp_Object keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 unsigned char modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 struct button_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 int button;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 unsigned char modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 struct motion_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 unsigned char modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 struct process_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 Lisp_Object process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 struct timeout_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 int interval_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 int id_number;
382
064ab7fed2e0 Import from CVS: tag r21-2-6
cvs
parents: 380
diff changeset
396 Lisp_Object function;
064ab7fed2e0 Import from CVS: tag r21-2-6
cvs
parents: 380
diff changeset
397 Lisp_Object object;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 struct eval_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 Lisp_Object function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
406 struct misc_user_data
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
407 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
408 Lisp_Object function;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
409 Lisp_Object object;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
410 int button;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
411 unsigned char modifiers;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
412 int x, y;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
413 };
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
414
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 struct magic_eval_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 void (*internal_function) (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 #if defined (HAVE_X_WINDOWS) && defined(emacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 # include <X11/Xlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 union magic_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 {
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
427 #ifdef HAVE_TTY
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
428 char underlying_tty_event;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
429 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 #ifdef HAVE_X_WINDOWS
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
431 XEvent underlying_x_event;
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
432 #endif
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 209
diff changeset
433 #ifdef HAVE_MS_WINDOWS
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 213
diff changeset
434 int underlying_mswindows_event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 struct Lisp_Event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 /* header->next (aka XEVENT_NEXT ()) is used as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 - For dead events, this is the next dead one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 - For events on the command_event_queue, the next one on the queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 - Likewise for events chained in the command builder.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 - Otherwise it's Qnil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 emacs_event_type event_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 Lisp_Object channel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 unsigned int timestamp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 union
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 struct key_data key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 struct button_data button;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 struct motion_data motion;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 struct process_data process;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 struct timeout_data timeout;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
458 struct eval_data eval; /* misc_user_event no longer uses this */
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
459 struct misc_user_data misc; /* because it needs position information */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 union magic_data magic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 struct magic_eval_data magic_eval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 } event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 DECLARE_LRECORD (event, struct Lisp_Event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 #define XEVENT(x) XRECORD (x, event, struct Lisp_Event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 #define XSETEVENT(x, p) XSETRECORD (x, p, event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 #define EVENTP(x) RECORDP (x, event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 #define GC_EVENTP(x) GC_RECORDP (x, event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 #define CHECK_EVENT(x) CHECK_RECORD (x, event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 #define CONCHECK_EVENT(x) CONCHECK_RECORD (x, event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 DECLARE_LRECORD (command_builder, struct command_builder);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 #define EVENT_CHANNEL(a) ((a)->channel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 #define EVENT_TYPE(a) ((a)->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 #define XEVENT_TYPE(a) (XEVENT (a)->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 #define EVENT_NEXT(a) ((a)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 #define XEVENT_NEXT(e) (XEVENT (e)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 #define XSET_EVENT_NEXT(e, n) do { (XEVENT (e)->next = (n)); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 #define EVENT_CHAIN_LOOP(event, chain) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 for (event = chain; !NILP (event); event = XEVENT_NEXT (event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 #define EVENT_LIVE_P(a) (EVENT_TYPE (a) != dead_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
487 #define CHECK_LIVE_EVENT(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
488 CHECK_EVENT (x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
489 if (! EVENT_LIVE_P (XEVENT (x))) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
490 dead_wrong_type_argument (Qevent_live_p, (x)); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
491 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
492 #define CONCHECK_LIVE_EVENT(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
493 CONCHECK_EVENT (x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
494 if (! EVENT_LIVE_P (XEVENT (x))) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
495 x = wrong_type_argument (Qevent_live_p, (x)); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
496 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
499 EXFUN (Fcharacter_to_event, 4);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
500 EXFUN (Fdeallocate_event, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
501 EXFUN (Fevent_glyph_extent, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
502 EXFUN (Fevent_modeline_position, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
503 EXFUN (Fevent_over_modeline_p, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
504 EXFUN (Fevent_over_toolbar_p, 1);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
505 EXFUN (Fevent_over_vertical_divider_p, 1);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
506 EXFUN (Fevent_point, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
507 EXFUN (Fevent_window, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
508 EXFUN (Fmake_event, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
509
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
510 extern Lisp_Object QKbackspace, QKdelete, QKescape, QKlinefeed, QKreturn;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 263
diff changeset
511 extern Lisp_Object QKspace, QKtab, Qmouse_event_p, Vcharacter_set_property;
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
512 extern Lisp_Object Qcancel_mode_internal;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 /* Note: under X Windows, MOD_ALT is generated by the Alt key if there are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 both Alt and Meta keys. If there are no Meta keys, then Alt generates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 MOD_META instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 /* Maybe this should be trickier */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 #define KEYSYM(x) (intern (x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
523 /* from events.c */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 void format_event_object (char *buf, struct Lisp_Event *e, int brief);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 void character_to_event (Emchar c, struct Lisp_Event *event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 struct console *con,
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
527 int use_console_meta_flag,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
528 int do_backspace_mapping);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 void zero_event (struct Lisp_Event *e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 void deallocate_event_chain (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 Lisp_Object event_chain_tail (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 void enqueue_event (Lisp_Object event, Lisp_Object *head, Lisp_Object *tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 Lisp_Object dequeue_event (Lisp_Object *head, Lisp_Object *tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 void enqueue_event_chain (Lisp_Object event_chain, Lisp_Object *head,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 Lisp_Object *tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 int event_chain_count (Lisp_Object event_chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 void nth_of_key_sequence_as_event (Lisp_Object seq, int n, Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 Lisp_Object key_sequence_to_event_chain (Lisp_Object seq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 Lisp_Object event_chain_find_previous (Lisp_Object event_chain,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 Lisp_Object event_chain_nth (Lisp_Object event_chain, int n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 Lisp_Object copy_event_chain (Lisp_Object event_chain);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
543 /* True if this is a non-internal event
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (keyboard press, menu, scrollbar, mouse button) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 int command_event_p (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 struct console *event_console_or_selected (Lisp_Object event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
548 /* from event-stream.c */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
549 Lisp_Object allocate_command_builder (Lisp_Object console);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
550 void enqueue_magic_eval_event (void (*fun) (Lisp_Object), Lisp_Object object);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 void event_stream_next_event (struct Lisp_Event *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 void event_stream_handle_magic_event (struct Lisp_Event *event);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
553 void event_stream_select_console (struct console *con);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
554 void event_stream_unselect_console (struct console *con);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
555 void event_stream_select_process (struct Lisp_Process *proc);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 void event_stream_unselect_process (struct Lisp_Process *proc);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
557 USID event_stream_create_stream_pair (void* inhandle, void* outhandle,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
558 Lisp_Object* instream, Lisp_Object* outstream, int flags);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
559 USID event_stream_delete_stream_pair (Lisp_Object instream, Lisp_Object outstream);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 void event_stream_quit_p (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 struct low_level_timeout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 int id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 EMACS_TIME time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 struct low_level_timeout *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 int add_low_level_timeout (struct low_level_timeout **timeout_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 EMACS_TIME thyme);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 void remove_low_level_timeout (struct low_level_timeout **timeout_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 int id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 int get_low_level_timeout_interval (struct low_level_timeout *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 timeout_list, EMACS_TIME *interval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 int pop_low_level_timeout (struct low_level_timeout **timeout_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 EMACS_TIME *time_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 int event_stream_generate_wakeup (unsigned int milliseconds,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 unsigned int vanilliseconds,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 Lisp_Object object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 int async_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 void event_stream_disable_wakeup (int id, int async_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 void event_stream_deal_with_async_timeout (int interval_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 int event_stream_add_async_timeout (EMACS_TIME thyme);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 void event_stream_remove_async_timeout (int id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
588 /* from event-stream.c -- focus sanity */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
589 extern int focus_follows_mouse;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
590 void investigate_frame_change (void);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
591
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 void emacs_handle_focus_change_preliminary (Lisp_Object frame_inp_and_dev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 void emacs_handle_focus_change_final (Lisp_Object frame_inp_and_dev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 Lisp_Object extract_this_command_keys_nth_mouse_event (int n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 Lisp_Object extract_vector_nth_mouse_event (Lisp_Object vector, int n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 void single_console_state (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 void any_console_state (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 int in_single_console_state (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
602 extern int emacs_is_blocking;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
603
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
604 extern volatile int sigint_happened;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
605
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 #ifdef HAVE_UNIXOID_EVENT_LOOP
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
607 /* from event-unixoid.c */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
608
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 /* Ceci n'est pas un pipe. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 extern int signal_event_pipe[];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 void signal_fake_event (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 void drain_signal_event_pipe (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 extern int fake_event_occurred;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
617 int event_stream_unixoid_select_console (struct console *con);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 int event_stream_unixoid_unselect_console (struct console *con);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
619 int event_stream_unixoid_select_process (struct Lisp_Process *proc);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 int event_stream_unixoid_unselect_process (struct Lisp_Process *proc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 int read_event_from_tty_or_stream_desc (struct Lisp_Event *event,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
622 struct console *con, int fd);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
623 USID event_stream_unixoid_create_stream_pair (void* inhandle, void* outhandle,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
624 Lisp_Object* instream,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
625 Lisp_Object* outstream,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
626 int flags);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
627 USID event_stream_unixoid_delete_stream_pair (Lisp_Object instream,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
628 Lisp_Object outstream);
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
629
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
630 /* Beware: this evil macro evaluates its arg many times */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
631 #define FD_TO_USID(fd) ((fd)==0 ? (USID)999999 : ((fd)<0 ? USID_DONTHASH : (USID)(fd)))
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
632
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 #endif /* HAVE_UNIXOID_EVENT_LOOP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 /* Define this if you want the tty event stream to be used when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 first console is tty, even if HAVE_X_WINDOWS is defined */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 /* #define DEBUG_TTY_EVENT_STREAM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 #endif /* _XEMACS_EVENTS_H_ */