518
|
1 /* Declarations useful when processing input.
|
2961
|
2 Copyright (C) 1985, 1986, 1987, 1993 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
|
23 /* Total number of times read_char has returned, outside of macros. */
|
|
24 extern int num_nonmacro_input_chars;
|
|
25
|
3591
|
26 /* Nonzero means polling for input is temporarily suppressed. */
|
518
|
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
|
1440
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
33 /* Vector holding the key sequence that invoked the current command.
|
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
34 It is reused for each command, and it may be longer than the current
|
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
35 sequence; this_command_key_count indicates how many elements
|
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
36 actually mean something. */
|
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
37 extern Lisp_Object this_command_keys;
|
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
diff
changeset
|
38 extern int this_command_key_count;
|
1387
|
39
|
1989
|
40 #ifdef MULTI_FRAME
|
|
41 /* The frame in which the last input event occurred, or Qmacro if the
|
|
42 last event came from a macro. We use this to determine when to
|
|
43 generate switch-frame events. This may be cleared by functions
|
|
44 like Fselect_frame, to make sure that a switch-frame event is
|
|
45 generated by the next character. */
|
2172
|
46 extern Lisp_Object internal_last_event_frame;
|
1989
|
47 #endif
|
|
48
|
518
|
49
|
|
50 /* Macros for dealing with lispy events. */
|
|
51
|
|
52 /* True iff EVENT has data fields describing it (i.e. a mouse click). */
|
|
53 #define EVENT_HAS_PARAMETERS(event) \
|
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
54 (XTYPE (event) == Lisp_Cons)
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
55
|
1313
|
56 /* Extract the head from an event.
|
|
57 This works on composite and simple events. */
|
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
58 #define EVENT_HEAD(event) \
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
59 (EVENT_HAS_PARAMETERS (event) ? XCONS (event)->car : (event))
|
518
|
60
|
1313
|
61 /* Extract the starting and ending positions from a composite event. */
|
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
62 #define EVENT_START(event) (XCONS (XCONS (event)->cdr)->car)
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
63 #define EVENT_END(event) (XCONS (XCONS (XCONS (event)->cdr)->cdr)->car)
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
64
|
3990
|
65 /* Extract the click count from a multi-click event. */
|
|
66 #define EVENT_CLICK_COUNT(event) (Fnth ((event), make_number (2)))
|
|
67
|
1313
|
68 /* Extract the fields of a position. */
|
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
69 #define POSN_WINDOW(posn) (XCONS (posn)->car)
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
70 #define POSN_BUFFER_POSN(posn) (XCONS (XCONS (posn)->cdr)->car)
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
71 #define POSN_WINDOW_POSN(posn) (XCONS (XCONS (XCONS (posn)->cdr)->cdr)->car)
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
72 #define POSN_TIMESTAMP(posn) \
|
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
73 (XCONS (XCONS (XCONS (XCONS (posn)->cdr)->cdr)->cdr)->car)
|
3990
|
74 #define POSN_SCROLLBAR_PART(posn) (Fnth ((posn), make_number (4)))
|
518
|
75
|
|
76 /* Some of the event heads. */
|
1387
|
77 extern Lisp_Object Qswitch_frame;
|
518
|
78
|
|
79 /* Properties on event heads. */
|
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
80 extern Lisp_Object Qevent_kind, Qevent_symbol_elements;
|
518
|
81
|
|
82 /* Getting an unmodified version of an event head. */
|
|
83 #define EVENT_HEAD_UNMODIFIED(event_head) \
|
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
diff
changeset
|
84 (Fcar (Fget ((event_head), Qevent_symbol_elements)))
|
518
|
85
|
|
86 /* The values of Qevent_kind properties. */
|
|
87 extern Lisp_Object Qfunction_key, Qmouse_click, Qmouse_movement;
|
1989
|
88 extern Lisp_Object Qscroll_bar_movement;
|
518
|
89
|
|
90 /* Getting the kind of an event head. */
|
|
91 #define EVENT_HEAD_KIND(event_head) \
|
|
92 (Fget ((event_head), Qevent_kind))
|
|
93
|
|
94 /* Symbols to use for non-text mouse positions. */
|
732
|
95 extern Lisp_Object Qmode_line, Qvertical_line;
|
518
|
96
|
1516
|
97 extern Lisp_Object get_keymap_1 ();
|
|
98 extern Lisp_Object Fkeymapp ();
|
|
99 extern Lisp_Object reorder_modifiers ();
|
|
100 extern Lisp_Object read_char ();
|
1113
|
101 /* User-supplied string to translate input characters through. */
|
|
102 extern Lisp_Object Vkeyboard_translate_table;
|
|
103
|