Mercurial > emacs
annotate lisp/emacs-lisp/levents.el @ 94913:c83563acc3aa
Throughout the file, delete all USE_FONT_BACKEND
conditionals. Don't check enable_font_backend. Surround non-used
code by "#ifdef OLD_FONT" and "endif".
(FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
(FONT_AVG_WIDTH): Adjusted for the change of struct font.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 14 May 2008 01:00:37 +0000 |
parents | 90a2847062be |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
1 ;;; levents.el --- emulate the Lucid event data type and associated functions |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2066
diff
changeset
|
2 |
64751
5b1a238fcbb4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1993, 2001, 2002, 2003, 2004, |
79704 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
2034 | 5 |
38961
5b23575286e6
Add the Maintainer keyword. From Pavel Janik.
Eli Zaretskii <eliz@gnu.org>
parents:
38414
diff
changeset
|
6 ;; Maintainer: FSF |
39117 | 7 ;; Keywords: emulations |
38961
5b23575286e6
Add the Maintainer keyword. From Pavel Janik.
Eli Zaretskii <eliz@gnu.org>
parents:
38414
diff
changeset
|
8 |
2034 | 9 ;; This file is part of GNU Emacs. |
10 | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
2034 | 12 ;; it under the terms of the GNU General Public License as published by |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
2034 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
2034 | 23 |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2066
diff
changeset
|
24 ;;; Commentary: |
2034 | 25 |
26 ;; Things we cannot emulate in Lisp: | |
27 ;; It is not possible to emulate current-mouse-event as a variable, | |
28 ;; though it is not hard to obtain the data from (this-command-keys). | |
29 | |
30 ;; We do not have a variable unread-command-event; | |
31 ;; instead, we have the more general unread-command-events. | |
32 | |
2039
e062b4567dc6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2034
diff
changeset
|
33 ;; Our read-key-sequence and read-char are not precisely |
e062b4567dc6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2034
diff
changeset
|
34 ;; compatible with those in Lucid Emacs, but they should work ok. |
2034 | 35 |
36 ;;; Code: | |
37 | |
2057
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
38 (defun next-command-event (event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
39 (error "You must rewrite to use `read-command-event' instead of `next-command-event'")) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
40 |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
41 (defun next-event (event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
42 (error "You must rewrite to use `read-event' instead of `next-event'")) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
43 |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
44 (defun dispatch-event (event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
45 (error "`dispatch-event' not supported")) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
46 |
2034 | 47 ;; Make events of type eval, menu and timeout |
48 ;; execute properly. | |
49 | |
50 (define-key global-map [menu] 'execute-eval-event) | |
51 (define-key global-map [timeout] 'execute-eval-event) | |
52 (define-key global-map [eval] 'execute-eval-event) | |
53 | |
54 (defun execute-eval-event (event) | |
55 (interactive "e") | |
56 (funcall (nth 1 event) (nth 2 event))) | |
57 | |
58 (put 'eval 'event-symbol-elements '(eval)) | |
59 (put 'menu 'event-symbol-elements '(eval)) | |
60 (put 'timeout 'event-symbol-elements '(eval)) | |
61 | |
62 (defun allocate-event () | |
63 "Returns an empty event structure. | |
64 In this emulation, it returns nil." | |
65 nil) | |
66 | |
67 (defun button-press-event-p (obj) | |
68 "True if the argument is a mouse-button-press event object." | |
69 (and (consp obj) (symbolp (car obj)) | |
70 (memq 'down (get (car obj) 'event-symbol-elements)))) | |
71 | |
72 (defun button-release-event-p (obj) | |
73 "True if the argument is a mouse-button-release event object." | |
74 (and (consp obj) (symbolp (car obj)) | |
75 (or (memq 'click (get (car obj) 'event-symbol-elements)) | |
76 (memq 'drag (get (car obj) 'event-symbol-elements))))) | |
77 | |
17858
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
78 (defun button-event-p (obj) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
79 "True if the argument is a mouse-button press or release event object." |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
80 (and (consp obj) (symbolp (car obj)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
81 (or (memq 'click (get (car obj) 'event-symbol-elements)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
82 (memq 'down (get (car obj) 'event-symbol-elements)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
83 (memq 'drag (get (car obj) 'event-symbol-elements))))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
84 |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
85 (defun mouse-event-p (obj) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
86 "True if the argument is a mouse-button press or release event object." |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
87 (and (consp obj) (symbolp (car obj)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
88 (or (eq (car obj) 'mouse-movement) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
89 (memq 'click (get (car obj) 'event-symbol-elements)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
90 (memq 'down (get (car obj) 'event-symbol-elements)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
91 (memq 'drag (get (car obj) 'event-symbol-elements))))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
92 |
2034 | 93 (defun character-to-event (ch &optional event) |
94 "Converts a numeric ASCII value to an event structure, replete with | |
95 bucky bits. The character is the first argument, and the event to fill | |
96 in is the second. This function contains knowledge about what the codes | |
97 mean -- for example, the number 9 is converted to the character Tab, | |
98 not the distinct character Control-I. | |
99 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
39117
diff
changeset
|
100 Beware that character-to-event and event-to-character are not strictly |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
39117
diff
changeset
|
101 inverse functions, since events contain much more information than the |
2034 | 102 ASCII character set can encode." |
103 ch) | |
104 | |
105 (defun copy-event (event1 &optional event2) | |
106 "Make a copy of the given event object. | |
107 In this emulation, `copy-event' just returns its argument." | |
108 event1) | |
109 | |
110 (defun deallocate-event (event) | |
111 "Allow the given event structure to be reused. | |
112 In actual Lucid Emacs, you MUST NOT use this event object after | |
113 calling this function with it. You will lose. It is not necessary to | |
114 call this function, as event objects are garbage- collected like all | |
115 other objects; however, it may be more efficient to explicitly | |
116 deallocate events when you are sure that that is safe. | |
117 | |
118 This emulation does not actually deallocate or reuse events | |
119 except via garbage collection and `cons'." | |
120 nil) | |
121 | |
122 (defun enqueue-eval-event: (function object) | |
123 "Add an eval event to the back of the queue. | |
124 It will be the next event read after all pending events." | |
125 (setq unread-command-events | |
126 (nconc unread-command-events | |
127 (list (list 'eval function object))))) | |
128 | |
129 (defun eval-event-p (obj) | |
130 "True if the argument is an eval or menu event object." | |
131 (eq (car-safe obj) 'eval)) | |
132 | |
133 (defun event-button (event) | |
134 "Return the button-number of the given mouse-button-press event." | |
135 (let ((sym (car (get (car event) 'event-symbol-elements)))) | |
136 (cdr (assq sym '((mouse-1 . 1) (mouse-2 . 2) (mouse-3 . 3) | |
137 (mouse-4 . 4) (mouse-5 . 5)))))) | |
138 | |
139 (defun event-function (event) | |
140 "Return the callback function of the given timeout, menu, or eval event." | |
141 (nth 1 event)) | |
142 | |
143 (defun event-key (event) | |
144 "Returns the KeySym of the given key-press event. | |
145 The value is an ASCII printing character (not upper case) or a symbol." | |
146 (if (symbolp event) | |
147 (car (get event 'event-symbol-elements)) | |
148 (let ((base (logand event (1- (lsh 1 18))))) | |
149 (downcase (if (< base 32) (logior base 64) base))))) | |
150 | |
151 (defun event-object (event) | |
152 "Returns the function argument of the given timeout, menu, or eval event." | |
153 (nth 2 event)) | |
154 | |
155 (defun event-point (event) | |
156 "Returns the character position of the given mouse-related event. | |
157 If the event did not occur over a window, or did | |
158 not occur over text, then this returns nil. Otherwise, it returns an index | |
159 into the buffer visible in the event's window." | |
160 (posn-point (event-end event))) | |
161 | |
17858
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
162 ;; Return position of start of line LINE in WINDOW. |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
163 ;; If LINE is nil, return the last position |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
164 ;; visible in WINDOW. |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
165 (defun event-closest-point-1 (window &optional line) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
166 (let* ((total (- (window-height window) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
167 (if (window-minibuffer-p window) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
168 0 1))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
169 (distance (or line total))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
170 (save-excursion |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
171 (goto-char (window-start window)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
172 (if (= (vertical-motion distance) distance) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
173 (if (not line) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
174 (forward-char -1))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
175 (point)))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
176 |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
177 (defun event-closest-point (event &optional start-window) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
178 "Return the nearest position to where EVENT ended its motion. |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
179 This is computed for the window where EVENT's motion started, |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
180 or for window WINDOW if that is specified." |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
181 (or start-window (setq start-window (posn-window (event-start event)))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
182 (if (eq start-window (posn-window (event-end event))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
183 (if (eq (event-point event) 'vertical-line) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
184 (event-closest-point-1 start-window |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
185 (cdr (posn-col-row (event-end event)))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
186 (if (eq (event-point event) 'mode-line) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
187 (event-closest-point-1 start-window) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
188 (event-point event))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
189 ;; EVENT ended in some other window. |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
190 (let* ((end-w (posn-window (event-end event))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
191 (end-w-top) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
192 (w-top (nth 1 (window-edges start-window)))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
193 (setq end-w-top |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
194 (if (windowp end-w) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
195 (nth 1 (window-edges end-w)) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
196 (/ (cdr (posn-x-y (event-end event))) |
17897
02b656fa8243
(event-closest-point): Fix paren error.
Richard M. Stallman <rms@gnu.org>
parents:
17858
diff
changeset
|
197 (frame-char-height end-w)))) |
17858
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
198 (if (>= end-w-top w-top) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
199 (event-closest-point-1 start-window) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
200 (window-start start-window))))) |
72e538330a11
(event-closest-point): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14704
diff
changeset
|
201 |
2034 | 202 (defun event-process (event) |
203 "Returns the process of the given process-output event." | |
204 (nth 1 event)) | |
205 | |
206 (defun event-timestamp (event) | |
207 "Returns the timestamp of the given event object. | |
208 In Lucid Emacs, this works for any kind of event. | |
209 In this emulation, it returns nil for non-mouse-related events." | |
210 (and (listp event) | |
211 (posn-timestamp (event-end event)))) | |
212 | |
213 (defun event-to-character (event &optional lenient) | |
214 "Returns the closest ASCII approximation to the given event object. | |
215 If the event isn't a keypress, this returns nil. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
39117
diff
changeset
|
216 If the second argument is non-nil, then this is lenient in its |
2034 | 217 translation; it will ignore modifier keys other than control and meta, |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
39117
diff
changeset
|
218 and will ignore the shift modifier on those characters which have no |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
39117
diff
changeset
|
219 shifted ASCII equivalent (Control-Shift-A for example, will be mapped to |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
39117
diff
changeset
|
220 the same ASCII code as Control-A.) If the second arg is nil, then nil |
2034 | 221 will be returned for events which have no direct ASCII equivalent." |
222 (if (symbolp event) | |
223 (and lenient | |
224 (cdr (assq event '((backspace . 8) (delete . 127) (tab . 9) | |
225 (return . 10) (enter . 10))))) | |
226 ;; Our interpretation is, ASCII means anything a number can represent. | |
227 (if (integerp event) | |
228 event nil))) | |
229 | |
230 (defun event-window (event) | |
231 "Returns the window of the given mouse-related event object." | |
232 (posn-window (event-end event))) | |
233 | |
234 (defun event-x (event) | |
235 "Returns the X position in characters of the given mouse-related event." | |
236 (/ (car (posn-col-row (event-end event))) | |
2066 | 237 (frame-char-width (window-frame (event-window event))))) |
2034 | 238 |
239 (defun event-x-pixel (event) | |
240 "Returns the X position in pixels of the given mouse-related event." | |
241 (car (posn-col-row (event-end event)))) | |
242 | |
243 (defun event-y (event) | |
244 "Returns the Y position in characters of the given mouse-related event." | |
245 (/ (cdr (posn-col-row (event-end event))) | |
2066 | 246 (frame-char-height (window-frame (event-window event))))) |
2034 | 247 |
248 (defun event-y-pixel (event) | |
249 "Returns the Y position in pixels of the given mouse-related event." | |
250 (cdr (posn-col-row (event-end event)))) | |
251 | |
252 (defun key-press-event-p (obj) | |
253 "True if the argument is a keyboard event object." | |
254 (or (integerp obj) | |
255 (and (symbolp obj) | |
256 (get obj 'event-symbol-elements)))) | |
257 | |
258 (defun menu-event-p (obj) | |
259 "True if the argument is a menu event object." | |
260 (eq (car-safe obj) 'menu)) | |
261 | |
262 (defun motion-event-p (obj) | |
263 "True if the argument is a mouse-motion event object." | |
264 (eq (car-safe obj) 'mouse-movement)) | |
265 | |
2057
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
266 (defun read-command-event () |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
267 "Return the next keyboard or mouse event; execute other events. |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
268 This is similar to the function `next-command-event' of Lucid Emacs, |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
269 but different in that it returns the event rather than filling in |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
270 an existing event object." |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
271 (let (event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
272 (while (progn |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
273 (setq event (read-event)) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
274 (not (or (key-press-event-p event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
275 (button-press-event-p event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
276 (button-release-event-p event) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
277 (menu-event-p event)))) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
278 (let ((type (car-safe event))) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
279 (cond ((eq type 'eval) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
280 (funcall (nth 1 event) (nth 2 event))) |
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
281 ((eq type 'switch-frame) |
2957
ec432bd5d5b9
(event-modifiers): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2232
diff
changeset
|
282 (select-frame (nth 1 event)))))) |
2057
265b81ff7eee
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2039
diff
changeset
|
283 event)) |
2034 | 284 |
285 (defun process-event-p (obj) | |
286 "True if the argument is a process-output event object. | |
287 GNU Emacs 19 does not currently generate process-output events." | |
288 (eq (car-safe obj) 'process)) | |
289 | |
18383 | 290 (provide 'levents) |
291 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79704
diff
changeset
|
292 ;; arch-tag: a80c21da-69d7-46de-9cdb-5f68577b5525 |
2034 | 293 ;;; levents.el ends here |