(tags-loop-scan): Set default value to an error form.
[bpt/emacs.git] / src / keyboard.h
CommitLineData
284f4730 1/* Declarations useful when processing input.
e5d77022 2 Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
284f4730
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
e5d77022 8the Free Software Foundation; either version 2, or (at your option)
284f4730
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* Total number of times read_char has returned. */
21extern int num_input_chars;
22
0ca96cef
JB
23/* Total number of times read_char has returned, outside of macros. */
24extern int num_nonmacro_input_chars;
25
284f4730
JB
26/* Nonzero means polling for input is temporarily suppresed. */
27extern int poll_suppress_count;
28
29/* Keymap mapping ASCII function key sequences onto their preferred forms.
30 Initialized by the terminal-specific lisp files. */
31extern Lisp_Object Vfunction_key_map;
32
49fcd3de
JB
33/* Vector holding the key sequence that invoked the current command.
34 It is reused for each command, and it may be longer than the current
35 sequence; this_command_key_count indicates how many elements
36 actually mean something. */
37extern Lisp_Object this_command_keys;
38extern int this_command_key_count;
6084b314 39
284f4730
JB
40\f
41/* Macros for dealing with lispy events. */
42
43/* True iff EVENT has data fields describing it (i.e. a mouse click). */
44#define EVENT_HAS_PARAMETERS(event) \
ac501cd9 45 (XTYPE (event) == Lisp_Cons)
284f4730 46
53ce28d6
JB
47/* Extract the head from an event.
48 This works on composite and simple events. */
ac501cd9
JB
49#define EVENT_HEAD(event) \
50 (EVENT_HAS_PARAMETERS (event) ? XCONS (event)->car : (event))
51
53ce28d6 52/* Extract the starting and ending positions from a composite event. */
ac501cd9
JB
53#define EVENT_START(event) (XCONS (XCONS (event)->cdr)->car)
54#define EVENT_END(event) (XCONS (XCONS (XCONS (event)->cdr)->cdr)->car)
55
53ce28d6 56/* Extract the fields of a position. */
ac501cd9
JB
57#define POSN_WINDOW(posn) (XCONS (posn)->car)
58#define POSN_BUFFER_POSN(posn) (XCONS (XCONS (posn)->cdr)->car)
ac501cd9
JB
59#define POSN_WINDOW_POSN(posn) (XCONS (XCONS (XCONS (posn)->cdr)->cdr)->car)
60#define POSN_TIMESTAMP(posn) \
61 (XCONS (XCONS (XCONS (XCONS (posn)->cdr)->cdr)->cdr)->car)
284f4730
JB
62
63/* Some of the event heads. */
6084b314 64extern Lisp_Object Qswitch_frame;
284f4730
JB
65
66/* Properties on event heads. */
ac501cd9 67extern Lisp_Object Qevent_kind, Qevent_symbol_elements;
284f4730
JB
68
69/* Getting an unmodified version of an event head. */
70#define EVENT_HEAD_UNMODIFIED(event_head) \
ac501cd9 71 (Fcar (Fget ((event_head), Qevent_symbol_elements)))
284f4730
JB
72
73/* The values of Qevent_kind properties. */
74extern Lisp_Object Qfunction_key, Qmouse_click, Qmouse_movement;
d56a7c54 75extern Lisp_Object Qscrollbar_movement;
284f4730
JB
76
77/* Getting the kind of an event head. */
78#define EVENT_HEAD_KIND(event_head) \
79 (Fget ((event_head), Qevent_kind))
80
81/* Symbols to use for non-text mouse positions. */
e5d77022 82extern Lisp_Object Qmode_line, Qvertical_line;
284f4730 83
5bb46ecf
JB
84extern Lisp_Object get_keymap_1 ();
85extern Lisp_Object Fkeymapp ();
86extern Lisp_Object reorder_modifiers ();
87extern Lisp_Object Fmouse_click_p ();
88extern Lisp_Object read_char ();
ec558adc
JB
89/* User-supplied string to translate input characters through. */
90extern Lisp_Object Vkeyboard_translate_table;
91