0
|
1 /* Define frame-object for XEmacs.
|
|
2 Copyright (C) 1988, 1992, 1993, 1994 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: FSF 19.30. */
|
|
22
|
|
23 #ifndef _XEMACS_FRAME_H_
|
|
24 #define _XEMACS_FRAME_H_
|
|
25
|
|
26 #include "scrollbar.h"
|
|
27 #include "toolbar.h"
|
|
28 #include "device.h"
|
|
29
|
|
30 #define FRAME_TYPE_NAME(f) ((f)->framemeths->name)
|
|
31 #define FRAME_TYPE(f) ((f)->framemeths->symbol)
|
|
32
|
|
33 /******** Accessing / calling a frame method *********/
|
|
34
|
|
35 #define HAS_FRAMEMETH_P(f, m) HAS_CONTYPE_METH_P ((f)->framemeths, m)
|
|
36 #define FRAMEMETH(f, m, args) CONTYPE_METH ((f)->framemeths, m, args)
|
|
37 #define MAYBE_FRAMEMETH(f, m, args) \
|
|
38 MAYBE_CONTYPE_METH ((f)->framemeths, m, args)
|
|
39 #define FRAMEMETH_OR_GIVEN(f, m, args, given) \
|
|
40 CONTYPE_METH_OR_GIVEN((f)->framemeths, m, args, given)
|
|
41
|
|
42 struct frame
|
|
43 {
|
|
44 struct lcrecord_header header;
|
|
45
|
|
46 /* Methods for this frame's console. This can also be retrieved
|
|
47 through frame->device->console, but it's faster this way. */
|
|
48 struct console_methods *framemeths;
|
|
49
|
282
|
50 /* Size of text only area of this frame, excluding scrollbars,
|
|
51 toolbars and end of line glyphs. The size can be in charactes
|
|
52 or pixels, depending on units in which window system resizes
|
|
53 its windows */
|
|
54 int height, width;
|
0
|
55
|
282
|
56 /* New height and width for pending size change, in the same units
|
|
57 as above. 0 if no change pending. */
|
|
58 int new_height, new_width;
|
|
59
|
|
60 /* Size of text-only are of the frame, in default font characters.
|
|
61 This may be inaccurate due to rounding error */
|
|
62 int char_height, char_width;
|
|
63
|
|
64 /* Size of the whole frame, including scrollbars, toolbars and end
|
|
65 of line glyphs, in pixels */
|
|
66 int pixheight, pixwidth;
|
0
|
67
|
149
|
68 #ifdef HAVE_TTY
|
|
69 /* The count of frame number. This applies to TTY frames only. */
|
|
70 int order_count;
|
|
71 #endif
|
|
72
|
0
|
73 /* Width of the internal border. This is a line of background color
|
|
74 just inside the window's border. It is normally only non-zero on
|
|
75 X frames, but we put it here to avoid introducing window system
|
|
76 dependencies. */
|
|
77 int internal_border_width;
|
|
78
|
|
79 /* This frame's root window mirror. This structure exactly mirrors
|
|
80 the frame's window structure but contains only pointers to the
|
|
81 display structures. */
|
|
82 struct window_mirror *root_mirror;
|
|
83
|
|
84 int modiff;
|
|
85
|
|
86 #ifdef HAVE_SCROLLBARS
|
|
87 /* frame-local scrollbar information. See scrollbar.c. */
|
|
88 int scrollbar_y_offset;
|
|
89
|
|
90 /* cache of created scrollbars */
|
|
91 struct scrollbar_instance *sb_vcache;
|
|
92 struct scrollbar_instance *sb_hcache;
|
|
93 #endif
|
|
94
|
|
95 #ifdef HAVE_TOOLBARS
|
|
96 /* We handle these specially rather than putting them in
|
|
97 frameslots.h because we want them to be arrays. */
|
|
98
|
|
99 /* Data representing each currently displayed toolbar. See
|
|
100 toolbar.c */
|
|
101 Lisp_Object toolbar_data[4];
|
|
102
|
|
103 /* Cached specifiers: */
|
|
104
|
|
105 /* Size of the toolbars. The frame-local toolbar space is
|
|
106 subtracted before the windows are arranged. Window and buffer
|
|
107 local toolbars overlay their windows. */
|
|
108 Lisp_Object toolbar_size[4];
|
|
109 /* Visibility of the toolbars. This acts as a valve for toolbar_size. */
|
|
110 Lisp_Object toolbar_visible_p[4];
|
215
|
111 /* Thickness of the border around the toolbar. */
|
|
112 Lisp_Object toolbar_border_width[4];
|
0
|
113 #endif
|
|
114
|
|
115 /* A structure of auxiliary data specific to the device type.
|
|
116 struct x_frame is used for X window frames; defined in console-x.h */
|
|
117 void *frame_data;
|
|
118
|
|
119 #define MARKED_SLOT(x) Lisp_Object x
|
|
120 #include "frameslots.h"
|
|
121 #undef MARKED_SLOT
|
|
122
|
108
|
123 /* Nonzero if frame is currently displayed.
|
|
124 Mutally exclusive with iconfied
|
|
125 JV: This now a tristate flag:
|
|
126 Value : Emacs meaning :f-v-p : X meaning
|
|
127 0 : not displayed : nil : unmapped
|
|
128 >0 : user can access it,needs repainting : t : mapped and visible
|
|
129 <0 : user can access it,needs no repainting : hidden :mapped and invisible
|
|
130 where f-v-p is the return value of frame-visible-p */
|
|
131 int visible;
|
|
132
|
0
|
133 /* one-bit flags: */
|
|
134
|
|
135 /* Are we finished initializing? */
|
|
136 unsigned int init_finished :1;
|
|
137
|
|
138 /* Is frame marked for deletion? This is used in XSetErrorHandler(). */
|
|
139 unsigned int being_deleted :1;
|
|
140
|
|
141 /* Nonzero if this frame has been destroyed. */
|
|
142 unsigned int dead :1;
|
|
143
|
|
144 /* Nonzero if last attempt at redisplay on this frame was preempted. */
|
|
145 unsigned int display_preempted :1;
|
|
146
|
|
147 /* Nonzero if window is currently iconified.
|
|
148 This and visible are mutually exclusive. */
|
|
149 unsigned int iconified :1;
|
|
150
|
|
151 /* Nonzero if this frame should be cleared and then redrawn.
|
|
152 Setting this will also effectively set frame_changed. */
|
|
153 unsigned int clear :1;
|
|
154
|
|
155 /* True if frame actually has a minibuffer window on it.
|
|
156 0 if using a minibuffer window that isn't on this frame. */
|
|
157 unsigned int has_minibuffer :1;
|
185
|
158
|
0
|
159 /* True if frame's root window can't be split. */
|
|
160 unsigned int no_split :1;
|
|
161
|
|
162 unsigned int top_toolbar_was_visible :1;
|
|
163 unsigned int bottom_toolbar_was_visible :1;
|
|
164 unsigned int left_toolbar_was_visible :1;
|
|
165 unsigned int right_toolbar_was_visible :1;
|
|
166
|
|
167 /* redisplay flags */
|
|
168 unsigned int buffers_changed :1;
|
|
169 unsigned int clip_changed :1;
|
|
170 unsigned int extents_changed :1;
|
|
171 unsigned int faces_changed :1;
|
|
172 unsigned int frame_changed :1;
|
269
|
173 unsigned int glyphs_changed :1;
|
0
|
174 unsigned int icon_changed :1;
|
|
175 unsigned int menubar_changed :1;
|
|
176 unsigned int modeline_changed :1;
|
|
177 unsigned int point_changed :1;
|
|
178 unsigned int size_changed :1;
|
|
179 unsigned int toolbar_changed :1;
|
|
180 unsigned int windows_changed :1;
|
|
181 unsigned int windows_structure_changed :1;
|
|
182 unsigned int window_face_cache_reset :1; /* used by expose handler */
|
217
|
183 unsigned int echo_area_garbaged :1; /* used by Fredisplay_echo_area */
|
282
|
184 unsigned int size_slipped :1;
|
0
|
185
|
|
186 unsigned int size_change_pending :1;
|
|
187 unsigned int mirror_dirty :1;
|
|
188
|
|
189 /* flag indicating if any window on this frame is displaying a subwindow */
|
74
|
190 unsigned int subwindows_being_displayed :1;
|
0
|
191 };
|
|
192
|
272
|
193 EXFUN (Fdelete_frame, 2);
|
|
194 EXFUN (Fframe_iconified_p, 1);
|
|
195 EXFUN (Fframe_name, 1);
|
|
196 EXFUN (Fframe_property, 3);
|
|
197 EXFUN (Fmake_frame, 2);
|
|
198 EXFUN (Fmake_frame_visible, 1);
|
|
199 EXFUN (Fraise_frame, 1);
|
|
200 EXFUN (Fselect_frame, 1);
|
|
201 EXFUN (Fset_frame_pointer, 2);
|
|
202 EXFUN (Fset_frame_position, 3);
|
|
203 EXFUN (Fset_frame_size, 4);
|
|
204
|
|
205 extern Lisp_Object Qbackground_toolbar_color, Qbell_volume, Qborder_color;
|
|
206 extern Lisp_Object Qborder_width, Qbottom_toolbar_shadow_color;
|
|
207 extern Lisp_Object Qbottom_toolbar_shadow_pixmap, Qdelete_frame;
|
|
208 extern Lisp_Object Qdeselect_frame_hook, Qdrag_and_drop_functions, Qgc_pointer;
|
|
209 extern Lisp_Object Qiconic, Qinitially_unmapped, Qinter_line_space;
|
|
210 extern Lisp_Object Qinternal_border_width, Qinvisible, Qmap_frame_hook;
|
|
211 extern Lisp_Object Qminibuffer, Qmodeline_pointer, Qmouse_enter_frame_hook;
|
|
212 extern Lisp_Object Qmouse_leave_frame_hook, Qpointer_background;
|
|
213 extern Lisp_Object Qpointer_color, Qpopup, Qscrollbar_placement;
|
|
214 extern Lisp_Object Qselect_frame_hook, Qspace_pointer;
|
|
215 extern Lisp_Object Qsynchronize_minibuffers, Qtext_pointer;
|
|
216 extern Lisp_Object Qtoolbar_shadow_thickness, Qtop_toolbar_shadow_color;
|
|
217 extern Lisp_Object Qtop_toolbar_shadow_pixmap, Qunmap_frame_hook;
|
|
218 extern Lisp_Object Qunsplittable, Quse_backing_store, Qvisible, Qvisual_bell;
|
|
219 extern Lisp_Object Vframe_icon_title_format, Vframe_title_format;
|
|
220 extern Lisp_Object Vmouse_motion_handler;
|
|
221
|
0
|
222
|
|
223 DECLARE_LRECORD (frame, struct frame);
|
|
224 #define XFRAME(x) XRECORD (x, frame, struct frame)
|
|
225 #define XSETFRAME(x, p) XSETRECORD (x, p, frame)
|
|
226 #define FRAMEP(x) RECORDP (x, frame)
|
|
227 #define GC_FRAMEP(x) GC_RECORDP (x, frame)
|
|
228 #define CHECK_FRAME(x) CHECK_RECORD (x, frame)
|
|
229 #define CONCHECK_FRAME(x) CONCHECK_RECORD (x, frame)
|
|
230
|
272
|
231 #define CHECK_LIVE_FRAME(x) do { \
|
|
232 CHECK_FRAME (x); \
|
|
233 if (! FRAME_LIVE_P (XFRAME (x))) \
|
|
234 dead_wrong_type_argument (Qframe_live_p, (x)); \
|
|
235 } while (0)
|
|
236 #define CONCHECK_LIVE_FRAME(x) do { \
|
|
237 CONCHECK_FRAME (x); \
|
|
238 if (! FRAME_LIVE_P (XFRAME (x))) \
|
|
239 x = wrong_type_argument (Qframe_live_p, (x)); \
|
|
240 } while (0)
|
0
|
241
|
|
242 #define FRAME_TYPE_P(f, type) EQ (FRAME_TYPE (f), Q##type)
|
|
243
|
|
244 #ifdef ERROR_CHECK_TYPECHECK
|
272
|
245 INLINE struct frame *
|
|
246 error_check_frame_type (struct frame * f, Lisp_Object sym);
|
|
247 INLINE struct frame *
|
|
248 error_check_frame_type (struct frame * f, Lisp_Object sym)
|
|
249 {
|
|
250 assert (EQ (FRAME_TYPE (f), sym));
|
|
251 return f;
|
|
252 }
|
0
|
253 # define FRAME_TYPE_DATA(f, type) \
|
272
|
254 ((struct type##_frame *) (error_check_frame_type (f, Q##type))->frame_data)
|
0
|
255 #else
|
|
256 # define FRAME_TYPE_DATA(f, type) \
|
|
257 ((struct type##_frame *) (f)->frame_data)
|
|
258 #endif
|
|
259
|
|
260 #define CHECK_FRAME_TYPE(x, type) \
|
|
261 do { \
|
|
262 CHECK_FRAME (x); \
|
|
263 if (!FRAME_TYPE_P (XFRAME (x), type)) \
|
|
264 dead_wrong_type_argument \
|
|
265 (type##_console_methods->predicate_symbol, x); \
|
|
266 } while (0)
|
|
267 #define CONCHECK_FRAME_TYPE(x, type) \
|
|
268 do { \
|
|
269 CONCHECK_FRAME (x); \
|
|
270 if (!FRAME_TYPE_P (XFRAME (x), type)) \
|
|
271 x = wrong_type_argument \
|
|
272 (type##_console_methods->predicate_symbol, x); \
|
|
273 } while (0)
|
|
274
|
|
275 /* #### These should be in the frame-*.h files but there are
|
|
276 too many places where the abstraction is broken. Need to
|
|
277 fix. */
|
|
278
|
|
279 #define FRAME_X_P(frm) CONSOLE_TYPESYM_X_P (FRAME_TYPE (frm))
|
|
280 #define CHECK_X_FRAME(z) CHECK_FRAME_TYPE (z, x)
|
|
281 #define CONCHECK_X_FRAME(z) CONCHECK_FRAME_TYPE (z, x)
|
|
282
|
|
283 #define FRAME_TTY_P(frm) CONSOLE_TYPESYM_TTY_P (FRAME_TYPE (frm))
|
|
284 #define CHECK_TTY_FRAME(z) CHECK_FRAME_TYPE (z, tty)
|
|
285 #define CONCHECK_TTY_FRAME(z) CONCHECK_FRAME_TYPE (z, tty)
|
|
286
|
|
287 #define FRAME_STREAM_P(frm) CONSOLE_TYPESYM_STREAM_P (FRAME_TYPE (frm))
|
|
288 #define CHECK_STREAM_FRAME(z) CHECK_FRAME_TYPE (z, stream)
|
|
289 #define CONCHECK_STREAM_FRAME(z) CONCHECK_FRAME_TYPE (z, stream)
|
|
290
|
|
291 #define FRAME_WIN_P(frm) CONSOLE_TYPESYM_WIN_P (FRAME_TYPE (frm))
|
|
292
|
|
293 extern int frame_changed;
|
|
294
|
272
|
295 #define MARK_FRAME_FACES_CHANGED(f) do { \
|
|
296 struct frame *mffc_f = (f); \
|
|
297 mffc_f->faces_changed = 1; \
|
|
298 mffc_f->modiff++; \
|
|
299 if (!NILP (mffc_f->device)) \
|
|
300 { \
|
|
301 struct device *mffc_d = XDEVICE (mffc_f->device); \
|
|
302 MARK_DEVICE_FACES_CHANGED (mffc_d); \
|
|
303 } \
|
|
304 else \
|
|
305 faces_changed = 1; \
|
|
306 } while (0)
|
0
|
307
|
272
|
308 #define MARK_FRAME_GLYPHS_CHANGED(f) do { \
|
|
309 struct frame *mfgc_f = (f); \
|
|
310 mfgc_f->glyphs_changed = 1; \
|
|
311 mfgc_f->modiff++; \
|
|
312 if (!NILP (mfgc_f->device)) \
|
|
313 { \
|
|
314 struct device *mfgc_d = XDEVICE (mfgc_f->device); \
|
|
315 MARK_DEVICE_GLYPHS_CHANGED (mfgc_d); \
|
|
316 } \
|
|
317 else \
|
|
318 glyphs_changed = 1; \
|
|
319 } while (0)
|
269
|
320
|
272
|
321 #define MARK_FRAME_TOOLBARS_CHANGED(f) do { \
|
|
322 struct frame *mftc_f = (f); \
|
|
323 mftc_f->toolbar_changed = 1; \
|
|
324 mftc_f->modiff++; \
|
|
325 if (!NILP (mftc_f->device)) \
|
|
326 { \
|
|
327 struct device *mftc_d = XDEVICE (mftc_f->device); \
|
|
328 MARK_DEVICE_TOOLBARS_CHANGED (mftc_d); \
|
|
329 } \
|
|
330 else \
|
|
331 toolbar_changed = 1; \
|
|
332 } while (0)
|
0
|
333
|
272
|
334 #define MARK_FRAME_SIZE_CHANGED(f) do { \
|
|
335 struct frame *mfsc_f = (f); \
|
|
336 mfsc_f->size_changed = 1; \
|
|
337 mfsc_f->size_change_pending = 1; \
|
|
338 mfsc_f->modiff++; \
|
|
339 if (!NILP (mfsc_f->device)) \
|
|
340 { \
|
|
341 struct device *mfsc_d = XDEVICE (mfsc_f->device); \
|
|
342 MARK_DEVICE_SIZE_CHANGED (mfsc_d); \
|
|
343 } \
|
|
344 else \
|
|
345 size_changed = 1; \
|
|
346 } while (0)
|
0
|
347
|
272
|
348 #define MARK_FRAME_CHANGED(f) do { \
|
|
349 struct frame *mfc_f = (f); \
|
|
350 mfc_f->frame_changed = 1; \
|
|
351 mfc_f->modiff++; \
|
|
352 if (!NILP (mfc_f->device)) \
|
|
353 { \
|
|
354 struct device *mfc_d = XDEVICE (mfc_f->device); \
|
|
355 MARK_DEVICE_FRAME_CHANGED (mfc_d); \
|
|
356 } \
|
|
357 else \
|
|
358 frame_changed = 1; \
|
|
359 } while (0)
|
0
|
360
|
272
|
361 #define MARK_FRAME_WINDOWS_CHANGED(f) do { \
|
|
362 struct frame *mfwc_f = (f); \
|
|
363 mfwc_f->windows_changed = 1; \
|
|
364 mfwc_f->modiff++; \
|
|
365 if (!NILP (mfwc_f->device)) \
|
|
366 { \
|
|
367 struct device *mfwc_d = XDEVICE (mfwc_f->device); \
|
|
368 MARK_DEVICE_WINDOWS_CHANGED (mfwc_d); \
|
|
369 } \
|
|
370 else \
|
|
371 windows_changed = 1; \
|
|
372 } while (0)
|
0
|
373
|
272
|
374 #define MARK_FRAME_WINDOWS_STRUCTURE_CHANGED(f) do { \
|
|
375 struct frame *fwsc_f = (f); \
|
|
376 fwsc_f->windows_structure_changed = 1; \
|
|
377 fwsc_f->modiff++; \
|
|
378 if (!NILP (fwsc_f->device)) \
|
|
379 { \
|
|
380 struct device *fwsc_d = XDEVICE (fwsc_f->device); \
|
|
381 MARK_DEVICE_WINDOWS_STRUCTURE_CHANGED (fwsc_d); \
|
|
382 } \
|
|
383 else \
|
|
384 windows_structure_changed = 1; \
|
284
|
385 invalidate_vertical_divider_cache_in_frame (fwsc_f); \
|
272
|
386 } while (0)
|
0
|
387
|
282
|
388 #define MARK_FRAME_SIZE_SLIPPED(f) do { \
|
|
389 struct frame *fwsc_f = (f); \
|
|
390 fwsc_f->size_slipped = 1; \
|
|
391 fwsc_f->modiff++; \
|
|
392 if (!NILP (fwsc_f->device)) \
|
|
393 { \
|
|
394 struct device *fwsc_d = XDEVICE (fwsc_f->device); \
|
|
395 MARK_DEVICE_FRAME_CHANGED (fwsc_d); \
|
|
396 } \
|
|
397 else \
|
|
398 frame_changed = 1; \
|
|
399 } while (0)
|
|
400
|
|
401 #define CLEAR_FRAME_SIZE_SLIPPED(f) do { \
|
|
402 struct frame *fwsc_f = (f); \
|
|
403 fwsc_f->size_slipped = 0; \
|
|
404 } while (0)
|
|
405
|
0
|
406 #define SET_FRAME_CLEAR(f) MARK_FRAME_CHANGED (f); (f)->clear = 1
|
|
407 #define FRAME_DEVICE(f) ((f)->device)
|
|
408 #define FRAME_CONSOLE(f) DEVICE_CONSOLE (XDEVICE (FRAME_DEVICE (f)))
|
|
409 #define FRAME_LIVE_P(f) (!(f)->dead)
|
|
410
|
|
411 #define FRAME_MINIBUF_ONLY_P(f) \
|
|
412 EQ (FRAME_ROOT_WINDOW (f), FRAME_MINIBUF_WINDOW (f))
|
|
413 #define FRAME_HAS_MINIBUF_P(f) ((f)->has_minibuffer)
|
|
414 #define FRAME_HEIGHT(f) ((f)->height)
|
|
415 #define FRAME_WIDTH(f) ((f)->width)
|
282
|
416 #define FRAME_CHARHEIGHT(f) ((f)->char_height)
|
|
417 #define FRAME_CHARWIDTH(f) ((f)->char_width)
|
0
|
418 #define FRAME_PIXHEIGHT(f) ((f)->pixheight)
|
|
419 #define FRAME_PIXWIDTH(f) ((f)->pixwidth)
|
|
420 #ifdef HAVE_SCROLLBARS
|
282
|
421 #define FRAME_SCROLLBAR_WIDTH(f) \
|
|
422 (NILP ((f)->vertical_scrollbar_visible_p) ? \
|
|
423 0 : XINT ((f)->scrollbar_width))
|
|
424 #define FRAME_SCROLLBAR_HEIGHT(f) \
|
|
425 (NILP ((f)->horizontal_scrollbar_visible_p) ? \
|
|
426 0 : XINT ((f)->scrollbar_height))
|
0
|
427 #else
|
|
428 #define FRAME_SCROLLBAR_WIDTH(f) 0
|
|
429 #define FRAME_SCROLLBAR_HEIGHT(f) 0
|
|
430 #endif
|
|
431
|
|
432 #define FRAME_NEW_HEIGHT(f) ((f)->new_height)
|
|
433 #define FRAME_NEW_WIDTH(f) ((f)->new_width)
|
|
434 #define FRAME_CURSOR_X(f) ((f)->cursor_x)
|
|
435 #define FRAME_CURSOR_Y(f) ((f)->cursor_y)
|
|
436 #define FRAME_VISIBLE_P(f) ((f)->visible)
|
185
|
437 #define FRAME_REPAINT_P(f) ((f)->visible>0)
|
0
|
438 #define FRAME_NO_SPLIT_P(f) ((f)->no_split)
|
|
439 #define FRAME_ICONIFIED_P(f) ((f)->iconified)
|
|
440 #define FRAME_FOCUS_FRAME(f) ((f)->focus_frame)
|
|
441 #define FRAME_MINIBUF_WINDOW(f) ((f)->minibuffer_window)
|
|
442 #define FRAME_ROOT_WINDOW(f) ((f)->root_window)
|
|
443 /* Catch people attempting to set this. */
|
|
444 #define FRAME_SELECTED_WINDOW(f) NON_LVALUE ((f)->selected_window)
|
|
445 #define FRAME_LAST_NONMINIBUF_WINDOW(f) \
|
|
446 NON_LVALUE ((f)->last_nonminibuf_window)
|
|
447 #define FRAME_SB_VCACHE(f) ((f)->sb_vcache)
|
|
448 #define FRAME_SB_HCACHE(f) ((f)->sb_hcache)
|
|
449
|
|
450 #if 0 /* FSFmacs */
|
|
451
|
|
452 #define FRAME_VISIBLE_P(f) ((f)->visible != 0)
|
|
453 #define FRAME_SET_VISIBLE(f,p) \
|
|
454 ((f)->async_visible = (p), FRAME_SAMPLE_VISIBILITY (f))
|
|
455
|
|
456 /* Emacs's redisplay code could become confused if a frame's
|
|
457 visibility changes at arbitrary times. For example, if a frame is
|
|
458 visible while the desired glyphs are being built, but becomes
|
|
459 invisible before they are updated, then some rows of the
|
|
460 desired_glyphs will be left marked as enabled after redisplay is
|
|
461 complete, which should never happen. The next time the frame
|
|
462 becomes visible, redisplay will probably barf.
|
|
463
|
|
464 Currently, there are no similar situations involving iconified, but
|
|
465 the principle is the same.
|
|
466
|
|
467 So instead of having asynchronous input handlers directly set and
|
|
468 clear the frame's visibility and iconification flags, they just set
|
|
469 the async_visible and async_iconified flags; the redisplay code
|
|
470 calls the FRAME_SAMPLE_VISIBILITY macro before doing any redisplay,
|
|
471 which sets visible and iconified from their asynchronous
|
|
472 counterparts.
|
|
473
|
|
474 Synchronous code must use the FRAME_SET_VISIBLE macro.
|
|
475
|
|
476 Also, if a frame used to be invisible, but has just become visible,
|
|
477 it must be marked as garbaged, since redisplay hasn't been keeping
|
|
478 up its contents. */
|
|
479 #define FRAME_SAMPLE_VISIBILITY(f) \
|
|
480 (((f)->async_visible && ! (f)->visible) ? SET_FRAME_GARBAGED (f) : 0, \
|
|
481 (f)->visible = (f)->async_visible, \
|
|
482 (f)->iconified = (f)->async_iconified)
|
|
483
|
|
484 #endif /* FSFmacs */
|
|
485
|
|
486 #define FRAME_BORDER_WIDTH(f) ((f)->internal_border_width)
|
|
487 #define FRAME_BORDER_HEIGHT(f) ((f)->internal_border_width)
|
|
488
|
|
489 /* This returns the frame-local value; that tells you what you should
|
|
490 use when computing the frame size. It is *not* the actual toolbar
|
|
491 size because that depends on the selected window. Use the macros
|
|
492 below for that.
|
|
493 */
|
|
494
|
|
495 #ifdef HAVE_TOOLBARS
|
|
496 #define FRAME_RAW_THEORETICAL_TOOLBAR_VISIBLE(f, pos) \
|
263
|
497 (!NILP((f)->toolbar_data[pos]) && !NILP ((f)->toolbar_visible_p[pos]))
|
0
|
498 #define FRAME_RAW_THEORETICAL_TOOLBAR_SIZE(f, pos) \
|
269
|
499 (!NILP ((f)->toolbar_data[pos]) && INTP((f)->toolbar_size[pos]) ? \
|
263
|
500 (XINT ((f)->toolbar_size[pos])) : 0)
|
215
|
501 #define FRAME_RAW_THEORETICAL_TOOLBAR_BORDER_WIDTH(f, pos) \
|
269
|
502 (!NILP ((f)->toolbar_data[pos]) && INTP((f)->toolbar_border_width[pos]) ? \
|
263
|
503 (XINT ((f)->toolbar_border_width[pos])) : 0)
|
0
|
504 #else
|
|
505 #define FRAME_RAW_THEORETICAL_TOOLBAR_VISIBLE(f, pos) 0
|
|
506 #define FRAME_RAW_THEORETICAL_TOOLBAR_SIZE(f, pos) 0
|
215
|
507 #define FRAME_RAW_THEORETICAL_TOOLBAR_BORDER_WIDTH(f, pos) 0
|
0
|
508 #endif
|
|
509
|
|
510 #define FRAME_THEORETICAL_TOOLBAR_SIZE(f, pos) \
|
|
511 (FRAME_RAW_THEORETICAL_TOOLBAR_VISIBLE (f, pos) \
|
|
512 ? FRAME_RAW_THEORETICAL_TOOLBAR_SIZE (f, pos) \
|
|
513 : 0)
|
|
514
|
|
515 #define FRAME_THEORETICAL_TOP_TOOLBAR_HEIGHT(f) \
|
|
516 FRAME_THEORETICAL_TOOLBAR_SIZE (f, TOP_TOOLBAR)
|
|
517 #define FRAME_THEORETICAL_BOTTOM_TOOLBAR_HEIGHT(f) \
|
|
518 FRAME_THEORETICAL_TOOLBAR_SIZE (f, BOTTOM_TOOLBAR)
|
|
519 #define FRAME_THEORETICAL_LEFT_TOOLBAR_WIDTH(f) \
|
|
520 FRAME_THEORETICAL_TOOLBAR_SIZE (f, LEFT_TOOLBAR)
|
|
521 #define FRAME_THEORETICAL_RIGHT_TOOLBAR_WIDTH(f) \
|
|
522 FRAME_THEORETICAL_TOOLBAR_SIZE (f, RIGHT_TOOLBAR)
|
|
523
|
215
|
524 #define FRAME_THEORETICAL_TOOLBAR_BORDER_WIDTH(f, pos) \
|
|
525 (FRAME_RAW_THEORETICAL_TOOLBAR_VISIBLE (f, pos) \
|
|
526 ? FRAME_RAW_THEORETICAL_TOOLBAR_BORDER_WIDTH (f, pos) \
|
|
527 : 0)
|
|
528
|
|
529 #define FRAME_THEORETICAL_TOP_TOOLBAR_BORDER_WIDTH(f) \
|
|
530 FRAME_THEORETICAL_TOOLBAR_BORDER_WIDTH (f, TOP_TOOLBAR)
|
|
531 #define FRAME_THEORETICAL_BOTTOM_TOOLBAR_BORDER_WIDTH(f) \
|
|
532 FRAME_THEORETICAL_TOOLBAR_BORDER_WIDTH (f, BOTTOM_TOOLBAR)
|
|
533 #define FRAME_THEORETICAL_LEFT_TOOLBAR_BORDER_WIDTH(f) \
|
|
534 FRAME_THEORETICAL_TOOLBAR_BORDER_WIDTH (f, LEFT_TOOLBAR)
|
|
535 #define FRAME_THEORETICAL_RIGHT_TOOLBAR_BORDER_WIDTH(f) \
|
|
536 FRAME_THEORETICAL_TOOLBAR_BORDER_WIDTH (f, RIGHT_TOOLBAR)
|
|
537
|
0
|
538 /* This returns the window-local value rather than the frame-local value;
|
|
539 that tells you about what's actually visible rather than what should
|
|
540 be used when computing the frame size. */
|
|
541
|
|
542 #ifdef HAVE_TOOLBARS
|
|
543 #define FRAME_RAW_REAL_TOOLBAR_VISIBLE(f, pos) \
|
267
|
544 (HAS_DEVMETH_P (XDEVICE (FRAME_DEVICE (f)), initialize_frame_toolbars) \
|
|
545 && !NILP (XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->toolbar_visible_p[pos]))
|
215
|
546 #define FRAME_RAW_REAL_TOOLBAR_BORDER_WIDTH(f, pos) \
|
269
|
547 ((INTP (XWINDOW \
|
|
548 (FRAME_LAST_NONMINIBUF_WINDOW (f))->toolbar_border_width[pos])) ? \
|
|
549 (XINT (XWINDOW \
|
|
550 (FRAME_LAST_NONMINIBUF_WINDOW (f))->toolbar_border_width[pos])) \
|
|
551 : 0)
|
0
|
552 #define FRAME_RAW_REAL_TOOLBAR_SIZE(f, pos) \
|
269
|
553 ((INTP (XWINDOW \
|
|
554 (FRAME_LAST_NONMINIBUF_WINDOW (f))->toolbar_size[pos])) ? \
|
|
555 (XINT (XWINDOW \
|
|
556 (FRAME_LAST_NONMINIBUF_WINDOW (f))->toolbar_size[pos])) : 0)
|
0
|
557 #define FRAME_REAL_TOOLBAR(f, pos) \
|
|
558 (XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->toolbar[pos])
|
|
559 #else
|
|
560 #define FRAME_RAW_REAL_TOOLBAR_VISIBLE(f, pos) 0
|
215
|
561 #define FRAME_RAW_REAL_TOOLBAR_BORDER_WIDTH(f, pos) 0
|
0
|
562 #define FRAME_RAW_REAL_TOOLBAR_SIZE(f, pos) 0
|
|
563 #define FRAME_REAL_TOOLBAR(f, pos) Qnil
|
|
564 #endif
|
|
565
|
|
566 /* Note to Chuck
|
|
567 Note to Chuck
|
|
568 Note to Chuck:
|
|
569
|
|
570 The former definitions of FRAME_REAL_FOO_TOOLBAR_VISIBLE
|
|
571 looked at the toolbar data to see what was there. The
|
|
572 current ones look at the current values of the specifiers.
|
|
573 This is a semantic change; the former definition returned
|
|
574 what was *actually* there right at the moment, while the
|
|
575 current one returns what *ought* to be there once redisplay
|
|
576 has run to completion. I think this new definition is more
|
|
577 correct in almost all circumstances and is much less likely
|
|
578 to lead to strange race conditions. I'm not completely
|
|
579 sure that there aren't some places in the redisplay code
|
|
580 that use these macros and expect the former semantics, so
|
|
581 if you encounter some odd toolbar behavior, you might want
|
|
582 to look into this. --ben */
|
|
583
|
|
584 #define FRAME_REAL_TOOLBAR_VISIBLE(f, pos) \
|
263
|
585 ((!NILP (FRAME_REAL_TOOLBAR (f, pos)) \
|
|
586 && FRAME_RAW_REAL_TOOLBAR_SIZE (f, pos) > 0) \
|
0
|
587 ? FRAME_RAW_REAL_TOOLBAR_VISIBLE (f, pos) \
|
|
588 : 0)
|
|
589 #define FRAME_REAL_TOOLBAR_SIZE(f, pos) \
|
263
|
590 ((!NILP (FRAME_REAL_TOOLBAR (f, pos)) \
|
|
591 && FRAME_RAW_REAL_TOOLBAR_VISIBLE (f, pos)) \
|
0
|
592 ? FRAME_RAW_REAL_TOOLBAR_SIZE (f, pos) \
|
|
593 : 0)
|
215
|
594 #define FRAME_REAL_TOOLBAR_BORDER_WIDTH(f, pos) \
|
263
|
595 ((!NILP (FRAME_REAL_TOOLBAR (f, pos)) \
|
|
596 && FRAME_RAW_REAL_TOOLBAR_VISIBLE (f, pos)) \
|
215
|
597 ? FRAME_RAW_REAL_TOOLBAR_BORDER_WIDTH (f, pos) \
|
|
598 : 0)
|
0
|
599
|
|
600 #define FRAME_REAL_TOP_TOOLBAR_HEIGHT(f) \
|
|
601 FRAME_REAL_TOOLBAR_SIZE (f, TOP_TOOLBAR)
|
|
602 #define FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT(f) \
|
|
603 FRAME_REAL_TOOLBAR_SIZE (f, BOTTOM_TOOLBAR)
|
|
604 #define FRAME_REAL_LEFT_TOOLBAR_WIDTH(f) \
|
|
605 FRAME_REAL_TOOLBAR_SIZE (f, LEFT_TOOLBAR)
|
|
606 #define FRAME_REAL_RIGHT_TOOLBAR_WIDTH(f) \
|
|
607 FRAME_REAL_TOOLBAR_SIZE (f, RIGHT_TOOLBAR)
|
|
608
|
215
|
609 #define FRAME_REAL_TOP_TOOLBAR_BORDER_WIDTH(f) \
|
|
610 FRAME_REAL_TOOLBAR_BORDER_WIDTH (f, TOP_TOOLBAR)
|
|
611 #define FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH(f) \
|
|
612 FRAME_REAL_TOOLBAR_BORDER_WIDTH (f, BOTTOM_TOOLBAR)
|
|
613 #define FRAME_REAL_LEFT_TOOLBAR_BORDER_WIDTH(f) \
|
|
614 FRAME_REAL_TOOLBAR_BORDER_WIDTH (f, LEFT_TOOLBAR)
|
|
615 #define FRAME_REAL_RIGHT_TOOLBAR_BORDER_WIDTH(f) \
|
|
616 FRAME_REAL_TOOLBAR_BORDER_WIDTH (f, RIGHT_TOOLBAR)
|
|
617
|
0
|
618 #define FRAME_REAL_TOP_TOOLBAR_VISIBLE(f) \
|
|
619 FRAME_REAL_TOOLBAR_VISIBLE (f, TOP_TOOLBAR)
|
|
620 #define FRAME_REAL_BOTTOM_TOOLBAR_VISIBLE(f) \
|
|
621 FRAME_REAL_TOOLBAR_VISIBLE (f, BOTTOM_TOOLBAR)
|
|
622 #define FRAME_REAL_LEFT_TOOLBAR_VISIBLE(f) \
|
|
623 FRAME_REAL_TOOLBAR_VISIBLE (f, LEFT_TOOLBAR)
|
|
624 #define FRAME_REAL_RIGHT_TOOLBAR_VISIBLE(f) \
|
|
625 FRAME_REAL_TOOLBAR_VISIBLE (f, RIGHT_TOOLBAR)
|
|
626
|
215
|
627 #define FRAME_TOP_BORDER_START(f) \
|
|
628 (FRAME_REAL_TOP_TOOLBAR_HEIGHT (f) + \
|
|
629 2 * FRAME_REAL_TOP_TOOLBAR_BORDER_WIDTH (f))
|
0
|
630 #define FRAME_TOP_BORDER_END(f) \
|
|
631 (FRAME_TOP_BORDER_START (f) + FRAME_BORDER_HEIGHT (f))
|
|
632
|
|
633 #define FRAME_BOTTOM_BORDER_START(f) \
|
|
634 (FRAME_PIXHEIGHT (f) - FRAME_BORDER_HEIGHT (f) - \
|
215
|
635 FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT (f) - \
|
|
636 2 * FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f))
|
0
|
637 #define FRAME_BOTTOM_BORDER_END(f) \
|
215
|
638 (FRAME_PIXHEIGHT (f) - FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT (f) - \
|
|
639 2 * FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f))
|
0
|
640
|
215
|
641 #define FRAME_LEFT_BORDER_START(f) \
|
|
642 (FRAME_REAL_LEFT_TOOLBAR_WIDTH (f) + \
|
|
643 2 * FRAME_REAL_LEFT_TOOLBAR_BORDER_WIDTH (f))
|
0
|
644 #define FRAME_LEFT_BORDER_END(f) \
|
|
645 (FRAME_LEFT_BORDER_START (f) + FRAME_BORDER_WIDTH (f))
|
|
646
|
|
647 #define FRAME_RIGHT_BORDER_START(f) \
|
|
648 (FRAME_PIXWIDTH (f) - FRAME_BORDER_WIDTH (f) - \
|
235
|
649 FRAME_REAL_RIGHT_TOOLBAR_WIDTH(f) - \
|
|
650 2 * FRAME_REAL_RIGHT_TOOLBAR_BORDER_WIDTH (f))
|
0
|
651 #define FRAME_RIGHT_BORDER_END(f) \
|
215
|
652 (FRAME_PIXWIDTH (f) - FRAME_REAL_RIGHT_TOOLBAR_WIDTH (f) - \
|
|
653 2 * FRAME_REAL_RIGHT_TOOLBAR_BORDER_WIDTH(f))
|
0
|
654
|
|
655 /* Equivalent in FSF Emacs:
|
|
656
|
|
657 FOR_EACH_FRAME (LIST_VAR, FRAME_VAR) followed by a statement is a
|
|
658 `for' loop which iterates over the elements of Vframe_list. The
|
|
659 loop will set FRAME_VAR, a Lisp_Object, to each frame in
|
|
660 Vframe_list in succession and execute the statement. LIST_VAR
|
|
661 should be a Lisp_Object too; it is used to iterate through the
|
|
662 Vframe_list.
|
|
663 */
|
|
664
|
|
665 /* NO_BREAK means that "break" doesn't do what you think it does!
|
|
666 Use goto instead. "continue" is OK, though. */
|
|
667 #define FRAME_LOOP_NO_BREAK(frmcons, devcons, concons) \
|
|
668 DEVICE_LOOP_NO_BREAK (devcons, concons) \
|
|
669 DEVICE_FRAME_LOOP (frmcons, XDEVICE (XCAR (devcons)))
|
|
670
|
|
671 void update_frame_title (struct frame *f);
|
|
672 Lisp_Object next_frame (Lisp_Object f, Lisp_Object frametype,
|
|
673 Lisp_Object console);
|
|
674 Lisp_Object prev_frame (Lisp_Object f, Lisp_Object frametype,
|
|
675 Lisp_Object console);
|
185
|
676 void store_in_alist (Lisp_Object *alistptr,
|
|
677 CONST char *propname,
|
0
|
678 Lisp_Object val);
|
|
679 void pixel_to_char_size (struct frame *f, int pixel_width, int pixel_height,
|
|
680 int *char_width, int *char_height);
|
|
681 void char_to_pixel_size (struct frame *f, int char_width, int char_height,
|
|
682 int *pixel_width, int *pixel_height);
|
|
683 void round_size_to_char (struct frame *f, int in_width, int in_height,
|
|
684 int *out_width, int *out_height);
|
269
|
685 void pixel_to_real_char_size (struct frame *f, int pixel_width, int pixel_height,
|
|
686 int *char_width, int *char_height);
|
|
687 void char_to_real_pixel_size (struct frame *f, int char_width, int char_height,
|
|
688 int *pixel_width, int *pixel_height);
|
|
689 void round_size_to_real_char (struct frame *f, int in_width, int in_height,
|
|
690 int *out_width, int *out_height);
|
0
|
691 void change_frame_size (struct frame *frame,
|
185
|
692 int newlength, int newwidth,
|
0
|
693 int delay);
|
282
|
694 void adjust_frame_size (struct frame *frame);
|
|
695 void frame_size_slipped (Lisp_Object specifier, struct frame *f,
|
|
696 Lisp_Object oldval);
|
0
|
697 void hold_frame_size_changes (void);
|
|
698 void unhold_one_frame_size_changes (struct frame *f);
|
|
699 void unhold_frame_size_changes (void);
|
|
700 void select_frame_1 (Lisp_Object frame);
|
149
|
701 void select_frame_2 (Lisp_Object frame);
|
0
|
702 struct frame *selected_frame (void);
|
|
703 struct frame *device_selected_frame (struct device *d);
|
|
704 struct frame *decode_frame (Lisp_Object frame);
|
|
705 struct frame *decode_frame_or_selected (Lisp_Object cdf);
|
|
706 Lisp_Object make_frame (struct frame *f);
|
|
707 int other_visible_frames (struct frame *f);
|
|
708 void delete_frame_internal (struct frame *f, int force,
|
|
709 int called_from_delete_device,
|
|
710 int from_io_error);
|
|
711 void io_error_delete_frame (Lisp_Object frame);
|
|
712 Lisp_Object find_some_frame (int (*predicate) (Lisp_Object, void *),
|
|
713 void *closure);
|
|
714 int device_matches_console_spec (Lisp_Object frame, Lisp_Object device,
|
|
715 Lisp_Object console);
|
|
716 Lisp_Object frame_first_window (struct frame *f);
|
|
717 int show_gc_cursor (struct frame *f, Lisp_Object cursor);
|
|
718 void set_frame_selected_window (struct frame *f, Lisp_Object window);
|
|
719 int is_surrogate_for_selected_frame (struct frame *f);
|
|
720 void update_frame_icon (struct frame *f);
|
284
|
721 void invalidate_vertical_divider_cache_in_frame (struct frame *f);
|
0
|
722
|
|
723 #endif /* _XEMACS_FRAME_H_ */
|