Mercurial > emacs
annotate src/keyboard.h @ 1244:ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
(wordstar-mode): Move after definition of keymap.
(ws-move-block): Just two args for kill-region.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 28 Sep 1992 13:02:21 +0000 |
parents | 4a1b4379eb53 |
children | 339a82d29dfa |
rev | line source |
---|---|
518 | 1 /* Declarations useful when processing input. |
732 | 2 Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
518 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
732 | 8 the Free Software Foundation; either version 2, or (at your option) |
518 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 /* Total number of times read_char has returned. */ | |
21 extern int num_input_chars; | |
22 | |
1191
4a1b4379eb53
* keyboard.h (num_nonmacro_input_chars): Added extern declaration
Jim Blandy <jimb@redhat.com>
parents:
1113
diff
changeset
|
23 /* Total number of times read_char has returned, outside of macros. */ |
4a1b4379eb53
* keyboard.h (num_nonmacro_input_chars): Added extern declaration
Jim Blandy <jimb@redhat.com>
parents:
1113
diff
changeset
|
24 extern int num_nonmacro_input_chars; |
4a1b4379eb53
* keyboard.h (num_nonmacro_input_chars): Added extern declaration
Jim Blandy <jimb@redhat.com>
parents:
1113
diff
changeset
|
25 |
518 | 26 /* Nonzero means polling for input is temporarily suppresed. */ |
27 extern int poll_suppress_count; | |
28 | |
29 /* Keymap mapping ASCII function key sequences onto their preferred forms. | |
30 Initialized by the terminal-specific lisp files. */ | |
31 extern Lisp_Object Vfunction_key_map; | |
32 | |
33 | |
34 /* Macros for dealing with lispy events. */ | |
35 | |
36 /* True iff EVENT has data fields describing it (i.e. a mouse click). */ | |
37 #define EVENT_HAS_PARAMETERS(event) \ | |
38 (XTYPE (event) == Lisp_Cons && Flength (event) == 5) | |
39 | |
40 /* Access the components of composite events. */ | |
41 #define EVENT_HEAD(event) (Fnth (0, (event))) | |
42 #define EVENT_WINDOW(event) (Fnth (1, (event))) | |
43 #define EVENT_BUFFER_POSN(event) (Fnth (2, (event))) | |
44 #define EVENT_SCROLLBAR_BUTTON EVENT_BUFFER_POSN | |
45 #define EVENT_WINDOW_POSN(event) (Fnth (3, (event))) | |
46 #define EVENT_TIMESTAMP(event) (Fnth (4, (event))) | |
47 | |
48 /* Some of the event heads. */ | |
49 extern Lisp_Object Qvscrollbar_part, Qvslider_part; | |
50 extern Lisp_Object Qvthumbup_part, Qvthumbdown_part; | |
51 extern Lisp_Object Qhscrollbar_part, Qhslider_part; | |
52 extern Lisp_Object Qhthumbleft_part, Qhthumbright_part; | |
53 | |
54 /* Properties on event heads. */ | |
55 extern Lisp_Object Qevent_kind, Qevent_unmodified; | |
56 | |
57 /* Getting an unmodified version of an event head. */ | |
58 #define EVENT_HEAD_UNMODIFIED(event_head) \ | |
59 (Fget ((event_head), Qevent_unmodified)) | |
60 | |
61 /* The values of Qevent_kind properties. */ | |
62 extern Lisp_Object Qfunction_key, Qmouse_click, Qmouse_movement; | |
63 extern Lisp_Object Qscrollbar_click; | |
64 | |
65 /* Getting the kind of an event head. */ | |
66 #define EVENT_HEAD_KIND(event_head) \ | |
67 (Fget ((event_head), Qevent_kind)) | |
68 | |
69 /* Symbols to use for non-text mouse positions. */ | |
732 | 70 extern Lisp_Object Qmode_line, Qvertical_line; |
518 | 71 |
1113 | 72 /* User-supplied string to translate input characters through. */ |
73 extern Lisp_Object Vkeyboard_translate_table; | |
74 |