annotate src/device.h @ 54:05472e90ae02 r19-16-pre2

Import from CVS: tag r19-16-pre2
author cvs
date Mon, 13 Aug 2007 08:57:55 +0200
parents ac2d302a0011
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Define device-object for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Ben Wing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Written by Chuck Thompson and Ben Wing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #ifndef _XEMACS_DEVICE_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define _XEMACS_DEVICE_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* This should really be in redisplay.h but by putting it here we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 won't have to ensure that redisplay.h is always included before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 this file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 struct pixel_to_glyph_translation_cache
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 unsigned int valid :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 struct frame *frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 int low_x_coord, high_x_coord, col, obj_x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 int low_y_coord, high_y_coord, row, obj_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 Bufpos bufpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Bufpos closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Charcount modeline_closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Lisp_Object obj1, obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 int retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #define DEVICE_TYPE_NAME(d) ((d)->devmeths->name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #define DEVICE_TYPE(d) ((d)->devmeths->symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #define DEVICE_SPECIFIC_FRAME_PROPS(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ((d)->devmeths->device_specific_frame_props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /******** Accessing / calling a device method *********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #define HAS_DEVMETH_P(d, m) HAS_CONTYPE_METH_P ((d)->devmeths, m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #define DEVMETH(d, m, args) CONTYPE_METH ((d)->devmeths, m, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #define MAYBE_DEVMETH(d, m, args) MAYBE_CONTYPE_METH ((d)->devmeths, m, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 #define DEVMETH_OR_GIVEN(d, m, args, given) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 CONTYPE_METH_OR_GIVEN((d)->devmeths, m, args, given)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 #define MAYBE_INT_DEVMETH(d, m, args) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 MAYBE_INT_CONTYPE_METH ((d)->devmeths, m, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #define MAYBE_LISP_DEVMETH(d, m, args) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 MAYBE_LISP_CONTYPE_METH ((d)->devmeths, m, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 struct device
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 /* Methods for this device's console. This can also be retrieved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 through device->console, but it's faster this way. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 struct console_methods *devmeths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 /* Name of this device, for resourcing and printing purposes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 If not explicitly given, it's initialized in a device-specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 manner. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Lisp_Object name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 /* What this device is connected to */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Lisp_Object connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /* A canonical name for the connection that is used to determine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 whether `make-device' is being called on an existing device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Lisp_Object canon_connection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* List of frames on this device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Lisp_Object frame_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* The console this device is on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Lisp_Object console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 /* Frame which is "currently selected". This is what `selected-frame'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 returns and is the default frame for many operations. This may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 not be the same as frame_with_focus; `select-frame' changes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 selected_frame but not the frame_with_focus. However, eventually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 either the two values will be the same, or frame_with_focus will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 be nil: right before waiting for an event, the focus is changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 to point to the selected_frame if XEmacs currently has the focus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 on this device. Note that frame_with_focus may be nil (none of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 frames on this device have the window-system focus), but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 selected_frame will never be nil if there are any frames on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 the device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object _selected_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 /* Frame that currently contains the window-manager focus, or none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 Note that we've split frame_with_focus into two variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 frame_with_focus_real is the value we use most of the time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 but frame_with_focus_for_hooks is used for running the select-frame-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 and deselect-frame-hook. We do this because we split the focus handling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 into two parts: one part (deals with drawing the solid/box cursor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 runs as soon as a focus event is received; the other (running the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 hooks) runs after any pending sit-for/sleep-for/accept-process-output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 calls are done. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Lisp_Object frame_with_focus_real;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Lisp_Object frame_with_focus_for_hooks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* If we have recently issued a request to change the focus as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 result of select-frame having been called, the following variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 records the frame we are trying to focus on. The reason for this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 is that the window manager may not grant our request to change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 the focus (so we can't just change frame_with_focus), and we don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 want to keep sending requests again and again to the window manager.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 This variable is reset whenever a focus-change event is seen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Lisp_Object frame_that_ought_to_have_focus;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 /* Color class of this device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Lisp_Object device_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /* Alist of values for user-defined tags in this device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Lisp_Object user_defined_tags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 /* Hash tables for device-specific objects (fonts, colors, etc).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 These are key-weak hash tables (or hash tables containing key-weak
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 hash tables) so that they disappear when the key goes away. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 /* This is a simple key-weak hash table hashing color names to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 instances. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 Lisp_Object color_instance_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 /* This is a simple key-weak hash table hashing font names to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 instances. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Lisp_Object font_instance_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 /* This is a bi-level cache, where the hash table in this slot here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 indexes image-instance-type masks (there are currently 6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 image-instance types and thus 64 possible masks) to key-weak hash
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 tables like the one for colors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 Lisp_Object image_instance_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 /* A structure of auxiliary data specific to the device type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 struct x_device is used for X window frames; defined in console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 struct tty_device is used to TTY's; defined in console-tty.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 void *device_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 /* redisplay flags */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 unsigned int buffers_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 unsigned int clip_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 unsigned int extents_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 unsigned int faces_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 unsigned int frame_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 unsigned int icon_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 unsigned int menubar_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 unsigned int modeline_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 unsigned int point_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 unsigned int size_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 unsigned int toolbar_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 unsigned int windows_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 unsigned int windows_structure_changed :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 unsigned int locked :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* Cache information about last pixel position translated to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 glyph. The law of locality applies very heavily here so caching
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 the value leads to a significant win. At the moment this is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 really X specific but once we have generic mouse support it won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 be. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 struct pixel_to_glyph_translation_cache pixel_to_glyph_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* Output baud rate of device; used for redisplay decisions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 int baud_rate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 /* sound flags */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 unsigned int on_console_p :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 unsigned int connected_to_nas_p :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #ifdef HAVE_UNIXOID_EVENT_LOOP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 /* File descriptors for input and output. Much of the time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (but not always) these will be the same. For an X device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 these both hold the file descriptor of the socket used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 to communicate with the X server. For a TTY device, these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 may or may not be the same and point to the terminal that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 is used for I/O. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 int infd, outfd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 /* holds some data necessary for SIGIO control. Perhaps this should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 be inside of device_data; but it is used for both TTY's and X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 device. Perhaps it should be conditionalized on SIGIO; but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 this requires including syssignal.h and systty.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 int old_sigio_flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 int old_fcntl_owner;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 unsigned int sigio_enabled :1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 DECLARE_LRECORD (device, struct device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 #define XDEVICE(x) XRECORD (x, device, struct device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 #define XSETDEVICE(x, p) XSETRECORD (x, p, device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 #define DEVICEP(x) RECORDP (x, device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #define GC_DEVICEP(x) GC_RECORDP (x, device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 #define CHECK_DEVICE(x) CHECK_RECORD (x, device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #define CONCHECK_DEVICE(x) CONCHECK_RECORD (x, device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #define CHECK_LIVE_DEVICE(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 do { CHECK_DEVICE (x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 if (! DEVICEP (x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 || ! DEVICE_LIVE_P (XDEVICE (x))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 dead_wrong_type_argument (Qdevice_live_p, (x)); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 #define CONCHECK_LIVE_DEVICE(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 do { CONCHECK_DEVICE (x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 if (! DEVICEP (x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 || ! DEVICE_LIVE_P (XDEVICE (x))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 x = wrong_type_argument (Qdevice_live_p, (x)); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #define DEVICE_TYPE_P(d, type) EQ (DEVICE_TYPE (d), Q##type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 #ifdef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 MAC_DECLARE_EXTERN (struct device *, MTdevice_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 # define DEVICE_TYPE_DATA(d, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 MAC_BEGIN \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 MAC_DECLARE (struct device *, MTdevice_data, d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 assert (DEVICE_TYPE_P (MTdevice_data, type)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 MAC_SEP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (struct type##_device *) MTdevice_data->device_data \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 MAC_END
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 # define DEVICE_TYPE_DATA(d, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ((struct type##_device *) (d)->device_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 #define CHECK_DEVICE_TYPE(x, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 CHECK_DEVICE (x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 if (!(DEVICEP (x) && DEVICE_TYPE_P (XDEVICE (x), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 type))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 dead_wrong_type_argument \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (type##_console_methods->predicate_symbol, x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #define CONCHECK_DEVICE_TYPE(x, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 CONCHECK_DEVICE (x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 if (!(DEVICEP (x) && DEVICE_TYPE_P (XDEVICE (x), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 type))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 x = wrong_type_argument \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (type##_console_methods->predicate_symbol, x); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 /* #### These should be in the device-*.h files but there are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 too many places where the abstraction is broken. Need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 fix. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 #define DEVICE_X_P(dev) CONSOLE_TYPESYM_X_P (DEVICE_TYPE (dev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #define CHECK_X_DEVICE(z) CHECK_DEVICE_TYPE (z, x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #define CONCHECK_X_DEVICE(z) CONCHECK_DEVICE_TYPE (z, x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 #define DEVICE_NS_P(dev) CONSOLE_TYPESYM_NS_P (DEVICE_TYPE (dev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 #define CHECK_NS_DEVICE(z) CHECK_DEVICE_TYPE (z, ns)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #define CONCHECK_NS_DEVICE(z) CONCHECK_DEVICE_TYPE (z, ns)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 #define DEVICE_TTY_P(dev) CONSOLE_TYPESYM_TTY_P (DEVICE_TYPE (dev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #define CHECK_TTY_DEVICE(z) CHECK_DEVICE_TYPE (z, tty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #define CONCHECK_TTY_DEVICE(z) CONCHECK_DEVICE_TYPE (z, tty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #define DEVICE_STREAM_P(dev) CONSOLE_TYPESYM_STREAM_P (DEVICE_TYPE (dev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 #define CHECK_STREAM_DEVICE(z) CHECK_DEVICE_TYPE (z, stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 #define CONCHECK_STREAM_DEVICE(z) CONCHECK_DEVICE_TYPE (z, stream)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 #define DEVICE_WIN_P(dev) CONSOLE_TYPESYM_WIN_P (DEVICE_TYPE (dev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 extern Lisp_Object Vdefault_device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 extern Lisp_Object Qdelete_device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 extern Lisp_Object Qdevice_live_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 extern Lisp_Object Vdevice_class_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 extern Lisp_Object Qcolor, Qgrayscale, Qmono;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 int valid_device_class_p (Lisp_Object class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 #define DEVICE_LIVE_P(d) (!EQ (DEVICE_TYPE (d), Qdead))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #define DEVICE_REDISPLAY_INFO(d) ((d)->redisplay_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #define DEVICE_NAME(d) ((d)->name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 #define DEVICE_CLASS(d) ((d)->device_class)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 /* Catch people attempting to set this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 #define DEVICE_SELECTED_FRAME(d) NON_LVALUE ((d)->_selected_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 #define DEVICE_FRAME_WITH_FOCUS_REAL(d) ((d)->frame_with_focus_real)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 #define DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS(d) ((d)->frame_with_focus_for_hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 #define DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 ((d)->frame_that_ought_to_have_focus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 #define DEVICE_USER_DEFINED_TAGS(d) ((d)->user_defined_tags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #define DEVICE_FRAME_LIST(d) ((d)->frame_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 #define DEVICE_CONNECTION(d) ((d)->connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #define DEVICE_CANON_CONNECTION(d) ((d)->canon_connection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 #define DEVICE_CONSOLE(d) ((d)->console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #define DEVICE_BAUD_RATE(d) ((d)->baud_rate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #define DEVICE_INFD(d) ((d)->infd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #define DEVICE_OUTFD(d) ((d)->outfd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #define DEVICE_OLD_SIGIO_FLAG(d) ((d)->old_sigio_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #define DEVICE_OLD_FCNTL_OWNER(d) ((d)->old_fcntl_owner)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 #define DEVICE_ON_CONSOLE_P(d) ((d)->on_console_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 #define DEVICE_CONNECTED_TO_NAS_P(d) ((d)->connected_to_nas_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 #define LOCK_DEVICE(d) do { (d)->locked = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 #define UNLOCK_DEVICE(d) do { (d)->locked = 0; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 #define INVALIDATE_DEVICE_PIXEL_TO_GLYPH_CACHE(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (d)->pixel_to_glyph_cache.valid = 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
317 #define INVALIDATE_PIXEL_TO_GLYPH_CACHE do { \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
318 Lisp_Object _devcons_, _concons_; \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
319 DEVICE_LOOP_NO_BREAK (_devcons_, _concons_) \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 INVALIDATE_DEVICE_PIXEL_TO_GLYPH_CACHE (XDEVICE (XCONS (_devcons_)->car));\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 #define MARK_DEVICE_FACES_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 faces_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (d)->faces_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 #define MARK_DEVICE_TOOLBARS_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 toolbar_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (d)->toolbar_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 #define MARK_DEVICE_SIZE_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 size_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (d)->size_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 #define MARK_DEVICE_FRAMES_FACES_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 Lisp_Object frmcons; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 DEVICE_FRAME_LOOP (frmcons, d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 XFRAME (XCONS (frmcons)->car)->faces_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 MARK_DEVICE_FACES_CHANGED (d); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 #define MARK_DEVICE_FRAME_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 frame_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (d)->frame_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 #define MARK_DEVICE_WINDOWS_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 windows_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (d)->windows_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 #define MARK_DEVICE_WINDOWS_STRUCTURE_CHANGED(d) do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 windows_structure_changed = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (d)->windows_structure_changed = 1; } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 /* This turns out to be used heavily so we make it a macro to make it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 inline. Also, the majority of the time the object will turn out to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 be a window so we move it from being checked last to being checked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 first. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
357 #define DFW_DEVICE(obj) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
358 (WINDOWP (obj) ? WINDOW_DEVICE (XWINDOW (obj)) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
359 : (FRAMEP (obj) ? FRAME_DEVICE (XFRAME (obj)) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
360 : (DEVICEP (obj) ? obj \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
361 : Qnil)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 /* NO_BREAK means that "break" doesn't do what you think it does!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 Use goto instead. "continue" is OK, though. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #define DEVICE_LOOP_NO_BREAK(devcons, concons) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 CONSOLE_LOOP (concons) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 CONSOLE_DEVICE_LOOP (devcons, XCONSOLE (XCAR (concons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 #define DEVICE_FRAME_LOOP(frmcons, d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 LIST_LOOP (frmcons, DEVICE_FRAME_LIST (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 #define CONSOLE_FRAME_LOOP_NO_BREAK(frmcons, devcons, con) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 CONSOLE_DEVICE_LOOP (devcons, con) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 DEVICE_FRAME_LOOP (frmcons, XDEVICE (XCAR (devcons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 void select_device_1 (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 struct device *decode_device (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 Lisp_Object make_device (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 void handle_asynch_device_change (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 void call_critical_lisp_code (struct device *d, Lisp_Object function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 Lisp_Object object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 void delete_device_internal (struct device *d, int force,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 int called_from_delete_console,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 int from_io_error);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 void io_error_delete_device (Lisp_Object device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 Lisp_Object find_nonminibuffer_frame_not_on_device (Lisp_Object device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 void set_device_selected_frame (struct device *d, Lisp_Object frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 #endif /* _XEMACS_DEVICE_H_ */