]> code.delx.au - gnu-emacs/blob - src/frame.h
(skip_chars): If enable-multibyte-characters is nil,
[gnu-emacs] / src / frame.h
1 /* Define frame-object for GNU Emacs.
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
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
8 the Free Software Foundation; either version 2, or (at your option)
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, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 \f
22 /* Miscellanea. */
23
24 /* Nonzero means don't assume anything about current
25 contents of actual terminal frame */
26 extern int frame_garbaged;
27
28 /* Nonzero means FRAME_MESSAGE_BUF (selected_frame) is being used by
29 print. */
30 extern int message_buf_print;
31
32 \f
33 /* The structure representing a frame. */
34
35 enum output_method
36 { output_termcap, output_x_window, output_msdos_raw, output_w32 };
37
38 enum vertical_scroll_bar_type
39 { vertical_scroll_bar_none, vertical_scroll_bar_left, vertical_scroll_bar_right };
40
41 struct frame
42 {
43 EMACS_INT size;
44 struct Lisp_Vector *next;
45
46 /* All Lisp_Object components must come first.
47 Only EMACS_INT values can be intermixed with them.
48 That ensures they are all aligned normally. */
49
50 /* Name of this frame: a Lisp string. It is used for looking up resources,
51 as well as for the title in some cases. */
52 Lisp_Object name;
53
54 /* The name to use for the icon, the last time
55 it was refreshed. nil means not explicitly specified. */
56 Lisp_Object icon_name;
57
58 /* This is the frame title specified explicitly, if any.
59 Usually it is nil. */
60 Lisp_Object title;
61
62 /* The frame which should receive keystrokes that occur in this
63 frame, or nil if they should go to the frame itself. This is
64 usually nil, but if the frame is minibufferless, we can use this
65 to redirect keystrokes to a surrogate minibuffer frame when
66 needed.
67
68 Note that a value of nil is different than having the field point
69 to the frame itself. Whenever the Fselect_frame function is used
70 to shift from one frame to the other, any redirections to the
71 original frame are shifted to the newly selected frame; if
72 focus_frame is nil, Fselect_frame will leave it alone. */
73 Lisp_Object focus_frame;
74
75 /* This frame's root window. Every frame has one.
76 If the frame has only a minibuffer window, this is it.
77 Otherwise, if the frame has a minibuffer window, this is its sibling. */
78 Lisp_Object root_window;
79
80 /* This frame's selected window.
81 Each frame has its own window hierarchy
82 and one of the windows in it is selected within the frame.
83 The selected window of the selected frame is Emacs's selected window. */
84 Lisp_Object selected_window;
85
86 /* This frame's minibuffer window.
87 Most frames have their own minibuffer windows,
88 but only the selected frame's minibuffer window
89 can actually appear to exist. */
90 Lisp_Object minibuffer_window;
91
92 /* Parameter alist of this frame.
93 These are the parameters specified when creating the frame
94 or modified with modify-frame-parameters. */
95 Lisp_Object param_alist;
96
97 /* List of scroll bars on this frame.
98 Actually, we don't specify exactly what is stored here at all; the
99 scroll bar implementation code can use it to store anything it likes.
100 This field is marked by the garbage collector. It is here
101 instead of in the `display' structure so that the garbage
102 collector doesn't need to look inside the window-system-dependent
103 structure. */
104 Lisp_Object scroll_bars;
105 Lisp_Object condemned_scroll_bars;
106
107 /* Vector describing the items to display in the menu bar.
108 Each item has four elements in this vector.
109 They are KEY, STRING, SUBMAP, and HPOS.
110 (HPOS is not used in when the X toolkit is in use.)
111 There are four additional elements of nil at the end, to terminate. */
112 Lisp_Object menu_bar_items;
113
114 /* Alist of elements (FACE-NAME . FACE-VECTOR-DATA). */
115 Lisp_Object face_alist;
116
117 /* A vector that records the entire structure of this frame's menu bar.
118 For the format of the data, see extensive comments in xmenu.c.
119 Only the X toolkit version uses this. */
120 Lisp_Object menu_bar_vector;
121 /* Number of elements in the vector that have meaningful data. */
122 EMACS_INT menu_bar_items_used;
123
124 /* Predicate for selecting buffers for other-buffer. */
125 Lisp_Object buffer_predicate;
126
127 /* Beyond here, there should be no more Lisp_Object components. */
128
129
130 /* A buffer to hold the frame's name. We can't use the Lisp string's
131 pointer (`name', above) because it might get relocated. */
132 char *namebuf;
133
134 /* glyphs as they appear on the frame */
135 struct frame_glyphs *current_glyphs;
136
137 /* glyphs we'd like to appear on the frame */
138 struct frame_glyphs *desired_glyphs;
139
140 /* See do_line_insertion_deletion_costs for info on these arrays. */
141 /* Cost of inserting 1 line on this frame */
142 int *insert_line_cost;
143 /* Cost of deleting 1 line on this frame */
144 int *delete_line_cost;
145 /* Cost of inserting n lines on this frame */
146 int *insert_n_lines_cost;
147 /* Cost of deleting n lines on this frame */
148 int *delete_n_lines_cost;
149
150 /* glyphs for the mode line */
151 struct frame_glyphs *temp_glyphs;
152
153 /* Intended cursor position of this frame.
154 Measured in characters, counting from upper left corner
155 within the frame. */
156 int cursor_x;
157 int cursor_y;
158
159 /* Actual cursor position of this frame, and the character under it.
160 (Not used for terminal frames.) */
161 int phys_cursor_x;
162 int phys_cursor_y;
163 /* This is handy for undrawing the cursor, because current_glyphs is
164 not always accurate when in do_scrolling. */
165 GLYPH phys_cursor_glyph;
166 /* Nonzero means the cursor is displayed. */
167 int phys_cursor_on;
168
169 /* Size of this frame, in units of characters. */
170 EMACS_INT height;
171 EMACS_INT width;
172 EMACS_INT window_width;
173
174 /* New height and width for pending size change. 0 if no change pending. */
175 int new_height, new_width;
176
177 /* The output method says how the contents of this frame
178 are displayed. It could be using termcap, or using an X window. */
179 enum output_method output_method;
180
181 /* A structure of auxiliary data used for displaying the contents.
182 struct x_output is used for X window frames;
183 it is defined in xterm.h.
184 struct w32_output is used for W32 window frames;
185 it is defined in w32term.h. */
186 union output_data { struct x_output *x; struct w32_output *w32; int nothing; } output_data;
187
188 #ifdef MULTI_KBOARD
189 /* A pointer to the kboard structure associated with this frame.
190 For termcap frames, this points to initial_kboard. For X frames,
191 it will be the same as display.x->display_info->kboard. */
192 struct kboard *kboard;
193 #endif
194
195 /* Number of lines of menu bar. */
196 int menu_bar_lines;
197
198 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
199 /* Nonzero means using a menu bar that comes from the X toolkit. */
200 int external_menu_bar;
201 #endif
202
203 /* Nonzero if last attempt at redisplay on this frame was preempted. */
204 char display_preempted;
205
206 /* visible is nonzero if the frame is currently displayed; we check
207 it to see if we should bother updating the frame's contents.
208 DON'T SET IT DIRECTLY; instead, use FRAME_SET_VISIBLE.
209
210 Note that, since invisible frames aren't updated, whenever a
211 frame becomes visible again, it must be marked as garbaged. The
212 FRAME_SAMPLE_VISIBILITY macro takes care of this.
213
214 iconified is nonzero if the frame is currently iconified.
215
216 Asynchronous input handlers should NOT change these directly;
217 instead, they should change async_visible or async_iconified, and
218 let the FRAME_SAMPLE_VISIBILITY macro set visible and iconified
219 at the next redisplay.
220
221 These should probably be considered read-only by everyone except
222 FRAME_SAMPLE_VISIBILITY.
223
224 These two are mutually exclusive. They might both be zero, if the
225 frame has been made invisible without an icon. */
226 char visible, iconified;
227
228 /* Asynchronous input handlers change these, and
229 FRAME_SAMPLE_VISIBILITY copies them into visible and iconified.
230 See FRAME_SAMPLE_VISIBILITY, below. */
231 #ifdef __STDC__
232 volatile
233 #endif
234 char async_visible, async_iconified;
235
236 /* Nonzero if this frame should be redrawn. */
237 #ifdef __STDC__
238 volatile
239 #endif
240 char garbaged;
241
242 /* True if frame actually has a minibuffer window on it.
243 0 if using a minibuffer window that isn't on this frame. */
244 char has_minibuffer;
245
246 /* 0 means, if this frame has just one window,
247 show no modeline for that window. */
248 char wants_modeline;
249
250 /* Non-zero if the hardware device this frame is displaying on can
251 support scroll bars. */
252 char can_have_scroll_bars;
253
254 /* If can_have_scroll_bars is non-zero, this is non-zero if we should
255 actually display them on this frame. */
256 enum vertical_scroll_bar_type vertical_scroll_bar_type;
257
258 /* Non-0 means raise this frame to the top of the heap when selected. */
259 char auto_raise;
260
261 /* Non-0 means lower this frame to the bottom of the stack when left. */
262 char auto_lower;
263
264 /* True if frame's root window can't be split. */
265 char no_split;
266
267 /* If this is set, then Emacs won't change the frame name to indicate
268 the current buffer, etcetera. If the user explicitly sets the frame
269 name, this gets set. If the user sets the name to Qnil, this is
270 cleared. */
271 char explicit_name;
272
273 /* Nonzero if size of some window on this frame has changed. */
274 char window_sizes_changed;
275
276 /* Storage for messages to this frame. */
277 char *message_buf;
278
279 /* Nonnegative if current redisplay should not do scroll computation
280 for lines beyond a certain vpos. This is the vpos. */
281 int scroll_bottom_vpos;
282
283 /* Width of the scroll bar, in pixels and in characters.
284 scroll_bar_cols tracks scroll_bar_pixel_width if the latter is positive;
285 a zero value in scroll_bar_pixel_width means to compute the actual width
286 on the fly, using scroll_bar_cols and the current font width. */
287 int scroll_bar_pixel_width;
288 int scroll_bar_cols;
289
290 /* The baud rate that was used to calculate costs for this frame. */
291 int cost_calculation_baud_rate;
292
293 /* A pointer to the data structure containing all information of
294 fontsets associated with this frame. See the comments in
295 fontset.h for more detail. */
296 struct fontset_data *fontset_data;
297
298 /* Nonzero if the mouse has moved on this display
299 since the last time we checked. */
300 char mouse_moved;
301 };
302
303 #ifdef MULTI_KBOARD
304 #define FRAME_KBOARD(f) ((f)->kboard)
305 #else
306 #define FRAME_KBOARD(f) (&the_only_kboard)
307 #endif
308
309 typedef struct frame *FRAME_PTR;
310
311 #define XFRAME(p) ((struct frame *) XPNTR (p))
312 #define XSETFRAME(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_FRAME))
313
314 #define WINDOW_FRAME(w) (w)->frame
315
316 #define FRAME_X_P(f) ((f)->output_method == output_x_window)
317 #define FRAME_W32_P(f) ((f)->output_method == output_w32)
318 #define FRAME_MSDOS_P(f) ((f)->output_method == output_msdos_raw)
319
320 /* FRAME_WINDOW_P tests whether the frame is a window, and is
321 defined to be the predicate for the window system being used. */
322 #ifdef HAVE_X_WINDOWS
323 #define FRAME_WINDOW_P(f) FRAME_X_P (f)
324 #endif
325 #ifdef HAVE_NTGUI
326 #define FRAME_WINDOW_P(f) FRAME_W32_P (f)
327 #endif
328 #ifndef FRAME_WINDOW_P
329 #define FRAME_WINDOW_P(f) (0)
330 #endif
331
332 #define FRAME_LIVE_P(f) ((f)->output_data.nothing != 0)
333 #define FRAME_TERMCAP_P(f) ((f)->output_method == output_termcap)
334 #define FRAME_MINIBUF_ONLY_P(f) \
335 EQ (FRAME_ROOT_WINDOW (f), FRAME_MINIBUF_WINDOW (f))
336 #define FRAME_HAS_MINIBUF_P(f) ((f)->has_minibuffer)
337 #define FRAME_CURRENT_GLYPHS(f) (f)->current_glyphs
338 #define FRAME_DESIRED_GLYPHS(f) (f)->desired_glyphs
339 #define FRAME_TEMP_GLYPHS(f) (f)->temp_glyphs
340 #define FRAME_HEIGHT(f) (f)->height
341 #define FRAME_WIDTH(f) (f)->width
342 #define FRAME_NEW_HEIGHT(f) (f)->new_height
343 #define FRAME_NEW_WIDTH(f) (f)->new_width
344 #define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines
345 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
346 #define FRAME_EXTERNAL_MENU_BAR(f) (f)->external_menu_bar
347 #else
348 #define FRAME_EXTERNAL_MENU_BAR(f) 0
349 #endif
350 #define FRAME_CURSOR_X(f) (f)->cursor_x
351 #define FRAME_CURSOR_Y(f) (f)->cursor_y
352 #define FRAME_VISIBLE_P(f) ((f)->visible != 0)
353 #define FRAME_SET_VISIBLE(f,p) \
354 ((f)->async_visible = (p), FRAME_SAMPLE_VISIBILITY (f))
355 #define SET_FRAME_GARBAGED(f) (frame_garbaged = 1, f->garbaged = 1)
356 #define FRAME_GARBAGED_P(f) (f)->garbaged
357 #define FRAME_NO_SPLIT_P(f) (f)->no_split
358 #define FRAME_WANTS_MODELINE_P(f) (f)->wants_modeline
359 #define FRAME_ICONIFIED_P(f) (f)->iconified
360 #define FRAME_WINDOW_SIZES_CHANGED(f) (f)->window_sizes_changed
361 #define FRAME_MINIBUF_WINDOW(f) (f)->minibuffer_window
362 #define FRAME_ROOT_WINDOW(f) (f)->root_window
363 #define FRAME_SELECTED_WINDOW(f) (f)->selected_window
364 #define SET_GLYPHS_FRAME(glyphs,frame) ((glyphs)->frame = (frame))
365 #define FRAME_INSERT_COST(f) (f)->insert_line_cost
366 #define FRAME_DELETE_COST(f) (f)->delete_line_cost
367 #define FRAME_INSERTN_COST(f) (f)->insert_n_lines_cost
368 #define FRAME_DELETEN_COST(f) (f)->delete_n_lines_cost
369 #define FRAME_MESSAGE_BUF(f) (f)->message_buf
370 #define FRAME_SCROLL_BOTTOM_VPOS(f) (f)->scroll_bottom_vpos
371 #define FRAME_FOCUS_FRAME(f) (f)->focus_frame
372 #define FRAME_CAN_HAVE_SCROLL_BARS(f) ((f)->can_have_scroll_bars)
373 #define FRAME_VERTICAL_SCROLL_BAR_TYPE(f) ((f)->vertical_scroll_bar_type)
374 #define FRAME_HAS_VERTICAL_SCROLL_BARS(f) \
375 ((f)->vertical_scroll_bar_type != vertical_scroll_bar_none)
376 #define FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT(f) \
377 ((f)->vertical_scroll_bar_type == vertical_scroll_bar_left)
378 #define FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT(f) \
379 ((f)->vertical_scroll_bar_type == vertical_scroll_bar_right)
380 #define FRAME_SCROLL_BAR_PIXEL_WIDTH(f) ((f)->scroll_bar_pixel_width)
381 #define FRAME_SCROLL_BAR_COLS(f) ((f)->scroll_bar_cols)
382 #define FRAME_LEFT_SCROLL_BAR_WIDTH(f) \
383 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f) \
384 ? FRAME_SCROLL_BAR_COLS (f) \
385 : 0)
386 #define FRAME_SCROLL_BAR_WIDTH(f) \
387 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
388 ? FRAME_SCROLL_BAR_COLS (f) \
389 : 0)
390 #define FRAME_WINDOW_WIDTH_ARG(f, width) \
391 ((width) + FRAME_SCROLL_BAR_WIDTH (f))
392 #define FRAME_WINDOW_WIDTH(f) ((f)->window_width)
393 #define SET_FRAME_WIDTH(f,val) ((f)->width = (val), (f)->window_width = FRAME_WINDOW_WIDTH_ARG (f, (f)->width))
394 #define FRAME_SCROLL_BARS(f) ((f)->scroll_bars)
395 #define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars)
396 #define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items)
397 #define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate)
398 #define FRAME_FONTSET_DATA(f) ((f)->fontset_data)
399
400 /* Return the size of message_buf of the frame F. We multiply the
401 width of the frame by 4 because multi-byte form may require at most
402 4-byte for a character. */
403 #define FRAME_MESSAGE_BUF_SIZE(f) (((int) (f)->width) * 4)
404
405 /* Emacs's redisplay code could become confused if a frame's
406 visibility changes at arbitrary times. For example, if a frame is
407 visible while the desired glyphs are being built, but becomes
408 invisible before they are updated, then some rows of the
409 desired_glyphs will be left marked as enabled after redisplay is
410 complete, which should never happen. The next time the frame
411 becomes visible, redisplay will probably barf.
412
413 Currently, there are no similar situations involving iconified, but
414 the principle is the same.
415
416 So instead of having asynchronous input handlers directly set and
417 clear the frame's visibility and iconification flags, they just set
418 the async_visible and async_iconified flags; the redisplay code
419 calls the FRAME_SAMPLE_VISIBILITY macro before doing any redisplay,
420 which sets visible and iconified from their asynchronous
421 counterparts.
422
423 Synchronous code must use the FRAME_SET_VISIBLE macro.
424
425 Also, if a frame used to be invisible, but has just become visible,
426 it must be marked as garbaged, since redisplay hasn't been keeping
427 up its contents. */
428 #define FRAME_SAMPLE_VISIBILITY(f) \
429 (((f)->async_visible && ! (f)->visible) ? SET_FRAME_GARBAGED (f) : 0, \
430 (f)->visible = (f)->async_visible, \
431 (f)->iconified = (f)->async_iconified)
432
433 #define CHECK_FRAME(x, i) \
434 { \
435 if (! FRAMEP (x)) \
436 x = wrong_type_argument (Qframep, (x)); \
437 }
438
439 #define CHECK_LIVE_FRAME(x, i) \
440 { \
441 if (! FRAMEP (x) \
442 || ! FRAME_LIVE_P (XFRAME (x))) \
443 x = wrong_type_argument (Qframe_live_p, (x)); \
444 }
445
446 /* FOR_EACH_FRAME (LIST_VAR, FRAME_VAR) followed by a statement is a
447 `for' loop which iterates over the elements of Vframe_list. The
448 loop will set FRAME_VAR, a Lisp_Object, to each frame in
449 Vframe_list in succession and execute the statement. LIST_VAR
450 should be a Lisp_Object too; it is used to iterate through the
451 Vframe_list.
452
453 This macro is a holdover from a time when multiple frames weren't always
454 supported. An alternate definition of the macro would expand to
455 something which executes the statement once. */
456 #define FOR_EACH_FRAME(list_var, frame_var) \
457 for ((list_var) = Vframe_list; \
458 (CONSP (list_var) \
459 && (frame_var = XCONS (list_var)->car, 1)); \
460 list_var = XCONS (list_var)->cdr)
461
462
463 extern Lisp_Object Qframep, Qframe_live_p, Qicon;
464
465 extern struct frame *selected_frame;
466 extern struct frame *last_nonminibuf_frame;
467
468 extern struct frame *make_terminal_frame ();
469 extern struct frame *make_frame ();
470 extern struct frame *make_minibuffer_frame ();
471 extern struct frame *make_frame_without_minibuffer ();
472
473 extern Lisp_Object Vframe_list;
474 extern Lisp_Object Vdefault_frame_alist;
475
476 extern Lisp_Object Vterminal_frame;
477 \f
478 /* Device-independent scroll bar stuff. */
479
480 /* Return the starting column (zero-based) of the vertical scroll bar
481 for window W. The column before this one is the last column we can
482 use for text. If the window touches the right edge of the frame,
483 we have extra space allocated for it. Otherwise, the scroll bar
484 takes over the window's rightmost columns. */
485 #define WINDOW_VERTICAL_SCROLL_BAR_COLUMN(w) \
486 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (XFRAME (WINDOW_FRAME (w))) ? \
487 (((XINT ((w)->left) + XINT ((w)->width)) \
488 < FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) \
489 ? (XINT ((w)->left) + XINT ((w)->width) \
490 - FRAME_SCROLL_BAR_COLS (XFRAME (WINDOW_FRAME (w)))) \
491 : FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) \
492 : XINT ((w)->left))
493
494 /* Return the height in lines of the vertical scroll bar in w. If the
495 window has a mode line, don't make the scroll bar extend that far. */
496 #define WINDOW_VERTICAL_SCROLL_BAR_HEIGHT(w) (window_internal_height (w))