Mercurial > emacs
annotate src/keyboard.h @ 9337:7b933936a676
(input_signal_count): New variable.
(XTread_socket): Increment it.
(x_make_frame_visible): Exit final loop when XTread_sockets has run.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 19:38:53 +0000 |
parents | e309bb9ccdc0 |
children | 3b1d5cf74c93 |
rev | line source |
---|---|
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
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 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
26 /* Nonzero means polling for input is temporarily suppressed. */ |
518 | 27 extern int poll_suppress_count; |
28 | |
8654
0334c1b51e87
(polling_for_input): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6912
diff
changeset
|
29 /* Nonzero if polling_for_input is actually being used. */ |
0334c1b51e87
(polling_for_input): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6912
diff
changeset
|
30 extern int polling_for_input; |
0334c1b51e87
(polling_for_input): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6912
diff
changeset
|
31 |
518 | 32 /* Keymap mapping ASCII function key sequences onto their preferred forms. |
33 Initialized by the terminal-specific lisp files. */ | |
34 extern Lisp_Object Vfunction_key_map; | |
35 | |
1440
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1387
diff
changeset
|
36 /* 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>
parents:
1387
diff
changeset
|
37 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>
parents:
1387
diff
changeset
|
38 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>
parents:
1387
diff
changeset
|
39 actually mean something. */ |
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1387
diff
changeset
|
40 extern Lisp_Object this_command_keys; |
8c27b145955a
* keyboard.h (this_command_keys): Extern declaration changed. Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1387
diff
changeset
|
41 extern int this_command_key_count; |
1387
774897fea33a
* keyboard.h (Qswitch_frame): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1313
diff
changeset
|
42 |
1989
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
43 #ifdef MULTI_FRAME |
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
44 /* The frame in which the last input event occurred, or Qmacro if the |
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
45 last event came from a macro. We use this to determine when to |
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
46 generate switch-frame events. This may be cleared by functions |
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
47 like Fselect_frame, to make sure that a switch-frame event is |
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
48 generated by the next character. */ |
2172
9e84120ecc0a
* keyboard.h (internal_last_event_frame): This should be extern,
Jim Blandy <jimb@redhat.com>
parents:
1989
diff
changeset
|
49 extern Lisp_Object internal_last_event_frame; |
1989
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
50 #endif |
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
51 |
518 | 52 |
53 /* Macros for dealing with lispy events. */ | |
54 | |
55 /* True iff EVENT has data fields describing it (i.e. a mouse click). */ | |
9141
e309bb9ccdc0
(EVENT_HAS_PARAMETERS): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
8654
diff
changeset
|
56 #define EVENT_HAS_PARAMETERS(event) (CONSP (event)) |
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
57 |
1313 | 58 /* Extract the head from an event. |
59 This works on composite and simple events. */ | |
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
60 #define EVENT_HEAD(event) \ |
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
61 (EVENT_HAS_PARAMETERS (event) ? XCONS (event)->car : (event)) |
518 | 62 |
1313 | 63 /* 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>
parents:
1191
diff
changeset
|
64 #define EVENT_START(event) (XCONS (XCONS (event)->cdr)->car) |
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
65 #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>
parents:
1191
diff
changeset
|
66 |
3990
8ef557c6a30a
* keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): New
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
67 /* Extract the click count from a multi-click event. */ |
8ef557c6a30a
* keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): New
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
68 #define EVENT_CLICK_COUNT(event) (Fnth ((event), make_number (2))) |
8ef557c6a30a
* keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): New
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
69 |
1313 | 70 /* Extract the fields of a position. */ |
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
71 #define POSN_WINDOW(posn) (XCONS (posn)->car) |
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
72 #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>
parents:
1191
diff
changeset
|
73 #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>
parents:
1191
diff
changeset
|
74 #define POSN_TIMESTAMP(posn) \ |
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
75 (XCONS (XCONS (XCONS (XCONS (posn)->cdr)->cdr)->cdr)->car) |
3990
8ef557c6a30a
* keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): New
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
76 #define POSN_SCROLLBAR_PART(posn) (Fnth ((posn), make_number (4))) |
518 | 77 |
78 /* Some of the event heads. */ | |
1387
774897fea33a
* keyboard.h (Qswitch_frame): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1313
diff
changeset
|
79 extern Lisp_Object Qswitch_frame; |
518 | 80 |
81 /* Properties on event heads. */ | |
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
82 extern Lisp_Object Qevent_kind, Qevent_symbol_elements; |
518 | 83 |
84 /* Getting an unmodified version of an event head. */ | |
85 #define EVENT_HEAD_UNMODIFIED(event_head) \ | |
1311
339a82d29dfa
* keyboard.h (EVENT_HAS_PARAMETERS): Definition changed - all events
Jim Blandy <jimb@redhat.com>
parents:
1191
diff
changeset
|
86 (Fcar (Fget ((event_head), Qevent_symbol_elements))) |
518 | 87 |
88 /* The values of Qevent_kind properties. */ | |
89 extern Lisp_Object Qfunction_key, Qmouse_click, Qmouse_movement; | |
1989
b1c1ab20f810
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
90 extern Lisp_Object Qscroll_bar_movement; |
518 | 91 |
92 /* Getting the kind of an event head. */ | |
93 #define EVENT_HEAD_KIND(event_head) \ | |
94 (Fget ((event_head), Qevent_kind)) | |
95 | |
96 /* Symbols to use for non-text mouse positions. */ | |
732 | 97 extern Lisp_Object Qmode_line, Qvertical_line; |
518 | 98 |
1516
02bd6870de86
* keyboard.h (get_keymap_1, Fkeymapp, reorder_modifiers,
Jim Blandy <jimb@redhat.com>
parents:
1440
diff
changeset
|
99 extern Lisp_Object get_keymap_1 (); |
02bd6870de86
* keyboard.h (get_keymap_1, Fkeymapp, reorder_modifiers,
Jim Blandy <jimb@redhat.com>
parents:
1440
diff
changeset
|
100 extern Lisp_Object Fkeymapp (); |
02bd6870de86
* keyboard.h (get_keymap_1, Fkeymapp, reorder_modifiers,
Jim Blandy <jimb@redhat.com>
parents:
1440
diff
changeset
|
101 extern Lisp_Object reorder_modifiers (); |
02bd6870de86
* keyboard.h (get_keymap_1, Fkeymapp, reorder_modifiers,
Jim Blandy <jimb@redhat.com>
parents:
1440
diff
changeset
|
102 extern Lisp_Object read_char (); |
1113 | 103 /* User-supplied string to translate input characters through. */ |
104 extern Lisp_Object Vkeyboard_translate_table; | |
105 | |
6912 | 106 extern Lisp_Object map_prompt (); |