1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
/* Hooks by which low level terminal operations
can be made to call other routines.
Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
This file is part of GNU Emacs.
GNU Emacs is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
extern int (*cursor_to_hook) ();
extern int (*raw_cursor_to_hook) ();
extern int (*clear_to_end_hook) ();
extern int (*clear_frame_hook) ();
extern int (*clear_end_of_line_hook) ();
extern int (*ins_del_lines_hook) ();
extern int (*change_line_highlight_hook) ();
extern int (*reassert_line_highlight_hook) ();
extern int (*insert_glyphs_hook) ();
extern int (*write_glyphs_hook) ();
extern int (*delete_glyphs_hook) ();
extern int (*ring_bell_hook) ();
extern int (*reset_terminal_modes_hook) ();
extern int (*set_terminal_modes_hook) ();
extern int (*update_begin_hook) ();
extern int (*update_end_hook) ();
extern int (*set_terminal_window_hook) ();
extern int (*read_socket_hook) ();
/* Return the current position of the mouse. This should clear
mouse_moved until the next motion event arrives. */
extern void (*mouse_position_hook) ( /* FRAME_PTR *f,
Lisp_Object *x,
Lisp_Object *y,
unsigned long *time */ );
/* The window system handling code should set this if the mouse has
moved since the last call to the mouse_position_hook. Calling that
hook should clear this. */
extern int mouse_moved;
/* When a frame's focus redirection is changed, this hook tells the
window system code to re-decide where to put the highlight. Under
X, this means that Emacs lies about where the focus is. */
extern void (*frame_rehighlight_hook) ( /* void */ );
/* If nonzero, send all terminal output characters to this stream also. */
extern FILE *termscript;
/* Expedient hack: only provide the below definitions to files that
are prepared to handle lispy things. XINT is defined iff lisp.h
has been included before this file. */
#ifdef XINT
/* The keyboard input buffer is an array of these structures. Each one
represents some sort of input event - a keystroke, a mouse click, or
a window system event. These get turned into their lispy forms when
they are removed from the event queue. */
struct input_event {
/* What kind of event was this? */
enum {
no_event, /* nothing happened. This should never
actually appear in the event queue. */
ascii_keystroke, /* The ASCII code is in .code.
.frame is the frame in which the key
was typed.
Note that this includes meta-keys, and
the modifiers field of the event
is unused.
.timestamp gives a timestamp (in
milliseconds) for the keystroke. */
non_ascii_keystroke, /* .code is a number identifying the
function key. A code N represents
a key whose name is
function_key_names[N]; function_key_names
is a table in keyboard.c to which you
should feel free to add missing keys.
.modifiers holds the state of the
modifier keys.
.frame is the frame in which the key
was typed.
.timestamp gives a timestamp (in
milliseconds) for the keystroke. */
mouse_click, /* The button number is in .code.
.modifiers holds the state of the
modifier keys.
.x and .y give the mouse position,
in characters, within the window.
.frame gives the frame the mouse
click occurred in.
.timestamp gives a timestamp (in
milliseconds) for the click. */
scrollbar_click, /* .code gives the number of the mouse
button that was clicked.
.part is a lisp symbol indicating which
part of the scrollbar got clicked. This
indicates whether the scroll bar was
horizontal or vertical.
.modifiers gives the state of the
modifier keys.
.x gives the distance from the start
of the scroll bar of the click; .y gives
the total length of the scroll bar.
.frame gives the frame the click
should apply to.
.timestamp gives a timestamp (in
milliseconds) for the click. */
#if 0
frame_selected, /* The user has moved the focus to another
frame.
.frame is the frame that should become
selected at the next convenient time. */
#endif
} kind;
Lisp_Object code;
Lisp_Object part;
/* This is obviously wrong, but I'm not sure what else I should do.
Obviously, this should be a FRAME_PTR. But that would require that
every file which #includes this one should also #include "frame.h",
which would mean that files like cm.c and other innocents would be
dragged into the set of frame.h users. Maybe the definition of this
structure should be elsewhere? In its own file? */
#ifdef MULTI_FRAME
struct frame *frame;
#else
int frame;
#endif
int modifiers; /* See enum below for interpretation. */
Lisp_Object x, y;
unsigned long timestamp;
};
/* Bits in the modifiers member of the input_event structure. */
enum {
shift_modifier = 1,
ctrl_modifier = 2,
meta_modifier = 4,
up_modifier = 8, /* This only applies to mouse buttons. */
last_modifier /* This should always be one more than the
highest modifier bit defined. */
};
#define NUM_MODIFIER_COMBOS ((last_modifier-1) << 1)
#endif
|