(top-level): Don't require cl when compiling.
[emacs.git] / src / frame.h
blob009cbd76da51b89299c9103f01f4e6580cfd61d8
1 /* Define frame-object for GNU Emacs.
2 Copyright (C) 1993, 1994, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* Don't multiply include: dispextern.h includes macterm.h which
21 includes frame.h some emacs source includes both dispextern.h and
22 frame.h */
24 #ifndef EMACS_FRAME_H
25 #define EMACS_FRAME_H
28 /* Miscellanea. */
30 /* Nonzero means there is at least one garbaged frame. */
31 extern int frame_garbaged;
33 /* Nonzero means FRAME_MESSAGE_BUF (selected_frame) is being used by
34 print. */
36 extern int message_buf_print;
38 /* Nonzero means window system changes focus when moving the
39 mouse. */
41 extern int focus_follows_mouse;
44 /* The structure representing a frame. */
46 enum output_method
48 output_initial,
49 output_termcap,
50 output_x_window,
51 output_msdos_raw,
52 output_w32,
53 output_mac
56 enum vertical_scroll_bar_type
58 vertical_scroll_bar_none,
59 vertical_scroll_bar_left,
60 vertical_scroll_bar_right
63 enum text_cursor_kinds
65 DEFAULT_CURSOR = -2,
66 NO_CURSOR = -1,
67 FILLED_BOX_CURSOR,
68 HOLLOW_BOX_CURSOR,
69 BAR_CURSOR,
70 HBAR_CURSOR
73 enum fullscreen_type
75 /* Values used as a bit mask, BOTH == WIDTH | HEIGHT. */
76 FULLSCREEN_NONE = 0,
77 FULLSCREEN_WIDTH = 1,
78 FULLSCREEN_HEIGHT = 2,
79 FULLSCREEN_BOTH = 3,
80 FULLSCREEN_WAIT = 4
84 #define FRAME_FOREGROUND_PIXEL(f) ((f)->foreground_pixel)
85 #define FRAME_BACKGROUND_PIXEL(f) ((f)->background_pixel)
87 struct terminal;
89 struct font_driver_list;
91 struct frame
93 EMACS_UINT size;
94 struct Lisp_Vector *next;
96 /* All Lisp_Object components must come first.
97 That ensures they are all aligned normally. */
99 /* Name of this frame: a Lisp string. It is used for looking up resources,
100 as well as for the title in some cases. */
101 Lisp_Object name;
103 /* The name to use for the icon, the last time
104 it was refreshed. nil means not explicitly specified. */
105 Lisp_Object icon_name;
107 /* This is the frame title specified explicitly, if any.
108 Usually it is nil. */
109 Lisp_Object title;
111 /* The frame which should receive keystrokes that occur in this
112 frame, or nil if they should go to the frame itself. This is
113 usually nil, but if the frame is minibufferless, we can use this
114 to redirect keystrokes to a surrogate minibuffer frame when
115 needed.
117 Note that a value of nil is different than having the field point
118 to the frame itself. Whenever the Fselect_frame function is used
119 to shift from one frame to the other, any redirections to the
120 original frame are shifted to the newly selected frame; if
121 focus_frame is nil, Fselect_frame will leave it alone. */
122 Lisp_Object focus_frame;
124 /* This frame's root window. Every frame has one.
125 If the frame has only a minibuffer window, this is it.
126 Otherwise, if the frame has a minibuffer window, this is its sibling. */
127 Lisp_Object root_window;
129 /* This frame's selected window.
130 Each frame has its own window hierarchy
131 and one of the windows in it is selected within the frame.
132 The selected window of the selected frame is Emacs's selected window. */
133 Lisp_Object selected_window;
135 /* This frame's minibuffer window.
136 Most frames have their own minibuffer windows,
137 but only the selected frame's minibuffer window
138 can actually appear to exist. */
139 Lisp_Object minibuffer_window;
141 /* Parameter alist of this frame.
142 These are the parameters specified when creating the frame
143 or modified with modify-frame-parameters. */
144 Lisp_Object param_alist;
146 /* List of scroll bars on this frame.
147 Actually, we don't specify exactly what is stored here at all; the
148 scroll bar implementation code can use it to store anything it likes.
149 This field is marked by the garbage collector. It is here
150 instead of in the `device' structure so that the garbage
151 collector doesn't need to look inside the window-system-dependent
152 structure. */
153 Lisp_Object scroll_bars;
154 Lisp_Object condemned_scroll_bars;
156 /* Vector describing the items to display in the menu bar.
157 Each item has four elements in this vector.
158 They are KEY, STRING, SUBMAP, and HPOS.
159 (HPOS is not used in when the X toolkit is in use.)
160 There are four additional elements of nil at the end, to terminate. */
161 Lisp_Object menu_bar_items;
163 /* Alist of elements (FACE-NAME . FACE-VECTOR-DATA). */
164 Lisp_Object face_alist;
166 /* A vector that records the entire structure of this frame's menu bar.
167 For the format of the data, see extensive comments in xmenu.c.
168 Only the X toolkit version uses this. */
169 Lisp_Object menu_bar_vector;
171 /* Predicate for selecting buffers for other-buffer. */
172 Lisp_Object buffer_predicate;
174 /* List of buffers viewed in this frame, for other-buffer. */
175 Lisp_Object buffer_list;
177 /* List of buffers that were viewed, then buried in this frame. The
178 most recently buried buffer is first. For last-buffer. */
179 Lisp_Object buried_buffer_list;
181 /* A dummy window used to display menu bars under X when no X
182 toolkit support is available. */
183 Lisp_Object menu_bar_window;
185 /* A window used to display the tool-bar of a frame. */
186 Lisp_Object tool_bar_window;
188 /* Desired and current tool-bar items. */
189 Lisp_Object tool_bar_items;
191 /* Desired and current contents displayed in tool_bar_window. */
192 Lisp_Object desired_tool_bar_string, current_tool_bar_string;
194 /* Beyond here, there should be no more Lisp_Object components. */
196 /* Cache of realized faces. */
197 struct face_cache *face_cache;
199 /* Number of elements in `menu_bar_vector' that have meaningful data. */
200 EMACS_INT menu_bar_items_used;
202 /* A buffer to hold the frame's name. We can't use the Lisp
203 string's pointer (`name', above) because it might get relocated. */
204 char *namebuf;
206 /* Glyph pool and matrix. */
207 struct glyph_pool *current_pool;
208 struct glyph_pool *desired_pool;
209 struct glyph_matrix *desired_matrix;
210 struct glyph_matrix *current_matrix;
212 /* 1 means that glyphs on this frame have been initialized so it can
213 be used for output. */
214 unsigned glyphs_initialized_p : 1;
216 /* Set to non-zero in change_frame_size when size of frame changed
217 Clear the frame in clear_garbaged_frames if set. */
218 unsigned resized_p : 1;
220 /* Set to non-zero in when we want for force a flush_display in
221 update_frame, usually after resizing the frame. */
222 unsigned force_flush_display_p : 1;
224 /* Set to non-zero if the default face for the frame has been
225 realized. Reset to zero whenever the default face changes.
226 Used to see the difference between a font change and face change. */
227 unsigned default_face_done_p : 1;
229 /* Set to non-zero if this frame has already been hscrolled during
230 current redisplay. */
231 unsigned already_hscrolled_p : 1;
233 /* Set to non-zero when current redisplay has updated frame. */
234 unsigned updated_p : 1;
236 /* Set to non-zero to minimize tool-bar height even when
237 auto-resize-tool-bar is set to grow-only. */
238 unsigned minimize_tool_bar_window_p : 1;
240 #if defined (USE_GTK) || defined (MAC_OS)
241 /* Nonzero means using a tool bar that comes from the toolkit. */
242 int external_tool_bar;
243 #endif
245 /* Margin at the top of the frame. Used to display the tool-bar. */
246 int tool_bar_lines;
248 int n_tool_bar_rows;
249 int n_tool_bar_items;
251 /* A buffer for decode_mode_line. */
252 char *decode_mode_spec_buffer;
254 /* See do_line_insertion_deletion_costs for info on these arrays. */
255 /* Cost of inserting 1 line on this frame */
256 int *insert_line_cost;
257 /* Cost of deleting 1 line on this frame */
258 int *delete_line_cost;
259 /* Cost of inserting n lines on this frame */
260 int *insert_n_lines_cost;
261 /* Cost of deleting n lines on this frame */
262 int *delete_n_lines_cost;
264 /* Size of this frame, excluding fringes, scroll bars etc.,
265 in units of canonical characters. */
266 EMACS_INT text_lines, text_cols;
268 /* Total size of this frame (i.e. its native window), in units of
269 canonical characters. */
270 EMACS_INT total_lines, total_cols;
272 /* New text height and width for pending size change.
273 0 if no change pending. */
274 int new_text_lines, new_text_cols;
276 /* Pixel position of the frame window (x and y offsets in root window). */
277 int left_pos, top_pos;
279 /* Size of the frame window in pixels. */
280 int pixel_height, pixel_width;
282 /* Dots per inch of the screen the frame is on. */
283 double resx, resy;
285 /* These many pixels are the difference between the outer window (i.e. the
286 left and top of the window manager decoration) and FRAME_X_WINDOW. */
287 int x_pixels_diff, y_pixels_diff;
289 /* This is the gravity value for the specified window position. */
290 int win_gravity;
292 /* The geometry flags for this window. */
293 int size_hint_flags;
295 /* Border width of the frame window as known by the (X) window system. */
296 int border_width;
298 /* Width of the internal border. This is a line of background color
299 just inside the window's border. When the frame is selected,
300 a highlighting is displayed inside the internal border. */
301 int internal_border_width;
303 /* Canonical X unit. Width of default font, in pixels. */
304 int column_width;
306 /* Widht of space glyph of default font, in pixels. */
307 int space_width;
309 /* Canonical Y unit. Height of a line, in pixels. */
310 int line_height;
312 /* The output method says how the contents of this frame are
313 displayed. It could be using termcap, or using an X window.
314 This must be the same as the terminal->type. */
315 enum output_method output_method;
317 /* The terminal device that this frame uses. If this is NULL, then
318 the frame has been deleted. */
319 struct terminal *terminal;
321 /* Device-dependent, frame-local auxiliary data used for displaying
322 the contents. When the frame is deleted, this data is deleted as
323 well. */
324 union output_data
326 struct tty_output *tty; /* termchar.h */
327 struct x_output *x; /* xterm.h */
328 struct w32_output *w32; /* w32term.h */
329 struct mac_output *mac; /* macterm.h */
330 EMACS_INT nothing;
332 output_data;
334 /* List of font-drivers available on the frame. */
335 struct font_driver_list *font_driver_list;
336 /* List of data specific to font-driver and frame, but common to
337 faces. */
338 struct font_data_list *font_data_list;
340 /* Total width of fringes reserved for drawing truncation bitmaps,
341 continuation bitmaps and alike. The width is in canonical char
342 units of the frame. This must currently be the case because window
343 sizes aren't pixel values. If it weren't the case, we wouldn't be
344 able to split windows horizontally nicely. */
345 int fringe_cols;
347 /* The extra width (in pixels) currently allotted for fringes. */
348 int left_fringe_width, right_fringe_width;
350 /* See FULLSCREEN_ enum below */
351 enum fullscreen_type want_fullscreen;
353 /* Number of lines of menu bar. */
354 int menu_bar_lines;
356 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
357 || defined (USE_GTK)
358 /* Nonzero means using a menu bar that comes from the X toolkit. */
359 unsigned int external_menu_bar : 1;
360 #endif
362 /* Nonzero if last attempt at redisplay on this frame was preempted. */
363 unsigned char display_preempted : 1;
365 /* visible is nonzero if the frame is currently displayed; we check
366 it to see if we should bother updating the frame's contents.
367 DON'T SET IT DIRECTLY; instead, use FRAME_SET_VISIBLE.
369 Note that, since invisible frames aren't updated, whenever a
370 frame becomes visible again, it must be marked as garbaged. The
371 FRAME_SAMPLE_VISIBILITY macro takes care of this.
373 On ttys and on Windows NT/9X, to avoid wasting effort updating
374 visible frames that are actually completely obscured by other
375 windows on the display, we bend the meaning of visible slightly:
376 if greater than 1, then the frame is obscured - we still consider
377 it to be "visible" as seen from lisp, but we don't bother
378 updating it. We must take care to garbage the frame when it
379 ceaces to be obscured though.
381 iconified is nonzero if the frame is currently iconified.
383 Asynchronous input handlers should NOT change these directly;
384 instead, they should change async_visible or async_iconified, and
385 let the FRAME_SAMPLE_VISIBILITY macro set visible and iconified
386 at the next redisplay.
388 These should probably be considered read-only by everyone except
389 FRAME_SAMPLE_VISIBILITY.
391 These two are mutually exclusive. They might both be zero, if the
392 frame has been made invisible without an icon. */
393 unsigned char visible : 2;
394 unsigned char iconified : 1;
396 /* Let's not use bitfields for volatile variables. */
398 /* Asynchronous input handlers change these, and
399 FRAME_SAMPLE_VISIBILITY copies them into visible and iconified.
400 See FRAME_SAMPLE_VISIBILITY, below. */
401 volatile char async_visible, async_iconified;
403 /* Nonzero if this frame should be redrawn. */
404 volatile char garbaged;
406 /* True if frame actually has a minibuffer window on it.
407 0 if using a minibuffer window that isn't on this frame. */
408 unsigned char has_minibuffer : 1;
410 /* 0 means, if this frame has just one window,
411 show no modeline for that window. */
412 unsigned char wants_modeline : 1;
414 /* Non-zero if the hardware device this frame is displaying on can
415 support scroll bars. */
416 char can_have_scroll_bars;
418 /* Non-0 means raise this frame to the top of the heap when selected. */
419 unsigned char auto_raise : 1;
421 /* Non-0 means lower this frame to the bottom of the stack when left. */
422 unsigned char auto_lower : 1;
424 /* True if frame's root window can't be split. */
425 unsigned char no_split : 1;
427 /* If this is set, then Emacs won't change the frame name to indicate
428 the current buffer, etcetera. If the user explicitly sets the frame
429 name, this gets set. If the user sets the name to Qnil, this is
430 cleared. */
431 unsigned char explicit_name : 1;
433 /* Nonzero if size of some window on this frame has changed. */
434 unsigned char window_sizes_changed : 1;
436 /* Nonzero if the mouse has moved on this display device
437 since the last time we checked. */
438 unsigned char mouse_moved :1;
440 /* If can_have_scroll_bars is non-zero, this is non-zero if we should
441 actually display them on this frame. */
442 enum vertical_scroll_bar_type vertical_scroll_bar_type;
444 /* What kind of text cursor should we draw in the future?
445 This should always be filled_box_cursor or bar_cursor. */
446 enum text_cursor_kinds desired_cursor;
448 /* Width of bar cursor (if we are using that). */
449 int cursor_width;
451 /* What kind of text cursor should we draw when the cursor blinks off?
452 This can be filled_box_cursor or bar_cursor or no_cursor. */
453 enum text_cursor_kinds blink_off_cursor;
455 /* Width of bar cursor (if we are using that) for blink-off state. */
456 int blink_off_cursor_width;
458 /* Storage for messages to this frame. */
459 char *message_buf;
461 /* Nonnegative if current redisplay should not do scroll computation
462 for lines beyond a certain vpos. This is the vpos. */
463 int scroll_bottom_vpos;
465 /* Configured width of the scroll bar, in pixels and in characters.
466 config_scroll_bar_cols tracks config_scroll_bar_width if the
467 latter is positive; a zero value in config_scroll_bar_width means
468 to compute the actual width on the fly, using config_scroll_bar_cols
469 and the current font width. */
470 int config_scroll_bar_width;
471 int config_scroll_bar_cols;
473 /* The size of the extra width currently allotted for vertical
474 scroll bars in this frame, in pixels. */
475 int scroll_bar_actual_width;
477 /* The baud rate that was used to calculate costs for this frame. */
478 int cost_calculation_baud_rate;
480 /* Exponent for gamma correction of colors. 1/(VIEWING_GAMMA *
481 SCREEN_GAMMA) where viewing_gamma is 0.4545 and SCREEN_GAMMA is a
482 frame parameter. 0 means don't do gamma correction. */
483 double gamma;
485 /* Additional space to put between text lines on this frame. */
486 int extra_line_spacing;
488 /* All display backends seem to need these two pixel values. */
489 unsigned long background_pixel;
490 unsigned long foreground_pixel;
493 #ifdef MULTI_KBOARD
494 #define FRAME_KBOARD(f) ((f)->terminal->kboard)
495 #else
496 #define FRAME_KBOARD(f) (&the_only_kboard)
497 #endif
499 /* Return a pointer to the image cache of frame F. */
500 #define FRAME_IMAGE_CACHE(F) ((F)->terminal->image_cache)
502 typedef struct frame *FRAME_PTR;
504 #define XFRAME(p) (eassert (FRAMEP(p)),(struct frame *) XPNTR (p))
505 #define XSETFRAME(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_FRAME))
507 /* Given a window, return its frame as a Lisp_Object. */
508 #define WINDOW_FRAME(w) (w)->frame
510 /* Test a frame for particular kinds of display methods. */
511 #define FRAME_INITIAL_P(f) ((f)->output_method == output_initial)
512 #define FRAME_TERMCAP_P(f) ((f)->output_method == output_termcap)
513 #define FRAME_X_P(f) ((f)->output_method == output_x_window)
514 #define FRAME_W32_P(f) ((f)->output_method == output_w32)
515 #define FRAME_MSDOS_P(f) ((f)->output_method == output_msdos_raw)
516 #define FRAME_MAC_P(f) ((f)->output_method == output_mac)
518 /* FRAME_WINDOW_P tests whether the frame is a window, and is
519 defined to be the predicate for the window system being used. */
521 #ifdef HAVE_X_WINDOWS
522 #define FRAME_WINDOW_P(f) FRAME_X_P (f)
523 #endif
524 #ifdef HAVE_NTGUI
525 #define FRAME_WINDOW_P(f) FRAME_W32_P (f)
526 #endif
527 #ifdef MAC_OS
528 #define FRAME_WINDOW_P(f) FRAME_MAC_P (f)
529 #endif
530 #ifndef FRAME_WINDOW_P
531 #define FRAME_WINDOW_P(f) (0)
532 #endif
534 /* Nonzero if frame F is still alive (not deleted). */
535 #define FRAME_LIVE_P(f) ((f)->terminal != 0)
537 /* Nonzero if frame F is a minibuffer-only frame. */
538 #define FRAME_MINIBUF_ONLY_P(f) \
539 EQ (FRAME_ROOT_WINDOW (f), FRAME_MINIBUF_WINDOW (f))
541 /* Nonzero if frame F contains a minibuffer window.
542 (If this is 0, F must use some other minibuffer window.) */
543 #define FRAME_HAS_MINIBUF_P(f) ((f)->has_minibuffer)
545 /* Pixel height of frame F, including non-toolkit menu bar and
546 non-toolkit tool bar lines. */
547 #define FRAME_PIXEL_HEIGHT(f) ((f)->pixel_height)
549 /* Pixel width of frame F. */
550 #define FRAME_PIXEL_WIDTH(f) ((f)->pixel_width)
552 /* Height of frame F, measured in canonical lines, including
553 non-toolkit menu bar and non-toolkit tool bar lines. */
554 #define FRAME_LINES(f) (f)->text_lines
556 /* Width of frame F, measured in canonical character columns,
557 not including scroll bars if any. */
558 #define FRAME_COLS(f) (f)->text_cols
560 /* Number of lines of frame F used for menu bar.
561 This is relevant on terminal frames and on
562 X Windows when not using the X toolkit.
563 These lines are counted in FRAME_LINES. */
564 #define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines
566 /* Nonzero if this frame should display a tool bar
567 in a way that does not use any text lines. */
568 #if defined (USE_GTK) || defined (MAC_OS)
569 #define FRAME_EXTERNAL_TOOL_BAR(f) (f)->external_tool_bar
570 #else
571 #define FRAME_EXTERNAL_TOOL_BAR(f) 0
572 #endif
574 /* Number of lines of frame F used for the tool-bar. */
576 #define FRAME_TOOL_BAR_LINES(f) (f)->tool_bar_lines
579 /* Lines above the top-most window in frame F. */
581 #define FRAME_TOP_MARGIN(F) \
582 (FRAME_MENU_BAR_LINES (F) + FRAME_TOOL_BAR_LINES (F))
584 /* Nonzero if this frame should display a menu bar
585 in a way that does not use any text lines. */
586 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
587 || defined (USE_GTK)
588 #define FRAME_EXTERNAL_MENU_BAR(f) (f)->external_menu_bar
589 #else
590 #define FRAME_EXTERNAL_MENU_BAR(f) 0
591 #endif
592 #define FRAME_VISIBLE_P(f) ((f)->visible != 0)
594 /* Nonzero if frame F is currently visible but hidden. */
595 #define FRAME_OBSCURED_P(f) ((f)->visible > 1)
597 /* Nonzero if frame F is currently iconified. */
598 #define FRAME_ICONIFIED_P(f) (f)->iconified
600 #define FRAME_SET_VISIBLE(f,p) \
601 ((f)->async_visible = (p), FRAME_SAMPLE_VISIBILITY (f))
602 #define SET_FRAME_GARBAGED(f) (frame_garbaged = 1, f->garbaged = 1)
603 #define FRAME_GARBAGED_P(f) (f)->garbaged
605 /* Nonzero means do not allow splitting this frame's window. */
606 #define FRAME_NO_SPLIT_P(f) (f)->no_split
608 /* Not really implemented. */
609 #define FRAME_WANTS_MODELINE_P(f) (f)->wants_modeline
611 /* Nonzero if a size change has been requested for frame F
612 but not yet really put into effect. This can be true temporarily
613 when an X event comes in at a bad time. */
614 #define FRAME_WINDOW_SIZES_CHANGED(f) (f)->window_sizes_changed
616 /* The minibuffer window of frame F, if it has one; otherwise nil. */
617 #define FRAME_MINIBUF_WINDOW(f) (f)->minibuffer_window
619 /* The root window of the window tree of frame F. */
620 #define FRAME_ROOT_WINDOW(f) (f)->root_window
622 /* The currently selected window of the window tree of frame F. */
623 #define FRAME_SELECTED_WINDOW(f) (f)->selected_window
625 #define FRAME_INSERT_COST(f) (f)->insert_line_cost
626 #define FRAME_DELETE_COST(f) (f)->delete_line_cost
627 #define FRAME_INSERTN_COST(f) (f)->insert_n_lines_cost
628 #define FRAME_DELETEN_COST(f) (f)->delete_n_lines_cost
629 #define FRAME_MESSAGE_BUF(f) (f)->message_buf
630 #define FRAME_SCROLL_BOTTOM_VPOS(f) (f)->scroll_bottom_vpos
631 #define FRAME_FOCUS_FRAME(f) (f)->focus_frame
633 /* Nonzero if frame F supports scroll bars.
634 If this is zero, then it is impossible to enable scroll bars
635 on frame F. */
636 #define FRAME_CAN_HAVE_SCROLL_BARS(f) ((f)->can_have_scroll_bars)
638 /* This frame slot says whether scroll bars are currently enabled for frame F,
639 and which side they are on. */
640 #define FRAME_VERTICAL_SCROLL_BAR_TYPE(f) ((f)->vertical_scroll_bar_type)
641 #define FRAME_HAS_VERTICAL_SCROLL_BARS(f) \
642 ((f)->vertical_scroll_bar_type != vertical_scroll_bar_none)
643 #define FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT(f) \
644 ((f)->vertical_scroll_bar_type == vertical_scroll_bar_left)
645 #define FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT(f) \
646 ((f)->vertical_scroll_bar_type == vertical_scroll_bar_right)
648 /* Width that a scroll bar in frame F should have, if there is one.
649 Measured in pixels.
650 If scroll bars are turned off, this is still nonzero. */
651 #define FRAME_CONFIG_SCROLL_BAR_WIDTH(f) ((f)->config_scroll_bar_width)
653 /* Width that a scroll bar in frame F should have, if there is one.
654 Measured in columns (characters).
655 If scroll bars are turned off, this is still nonzero. */
656 #define FRAME_CONFIG_SCROLL_BAR_COLS(f) ((f)->config_scroll_bar_cols)
658 /* Width of a scroll bar in frame F, measured in columns (characters),
659 but only if scroll bars are on the left. If scroll bars are on
660 the right in this frame, or there are no scroll bars, value is 0. */
662 #define FRAME_LEFT_SCROLL_BAR_COLS(f) \
663 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f) \
664 ? FRAME_CONFIG_SCROLL_BAR_COLS (f) \
665 : 0)
667 /* Width of a left scroll bar in frame F, measured in pixels */
669 #define FRAME_LEFT_SCROLL_BAR_AREA_WIDTH(f) \
670 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f) \
671 ? (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)) \
672 : 0)
674 /* Width of a scroll bar in frame F, measured in columns (characters),
675 but only if scroll bars are on the right. If scroll bars are on
676 the left in this frame, or there are no scroll bars, value is 0. */
678 #define FRAME_RIGHT_SCROLL_BAR_COLS(f) \
679 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f) \
680 ? FRAME_CONFIG_SCROLL_BAR_COLS (f) \
681 : 0)
683 /* Width of a right scroll bar area in frame F, measured in pixels */
685 #define FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH(f) \
686 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f) \
687 ? (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)) \
688 : 0)
690 /* Actual width of a scroll bar in frame F, measured in columns. */
692 #define FRAME_SCROLL_BAR_COLS(f) \
693 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
694 ? FRAME_CONFIG_SCROLL_BAR_COLS (f) \
695 : 0)
697 /* Actual width of a scroll bar area in frame F, measured in pixels. */
699 #define FRAME_SCROLL_BAR_AREA_WIDTH(f) \
700 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
701 ? (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)) \
702 : 0)
704 /* Total width of frame F, in columns (characters),
705 including the width used by scroll bars if any. */
707 #define FRAME_TOTAL_COLS(f) ((f)->total_cols)
709 /* Set the width of frame F to VAL.
710 VAL is the width of a full-frame window,
711 not including scroll bars and fringes. */
713 #define SET_FRAME_COLS(f, val) \
714 (FRAME_COLS (f) = (val), \
715 (f)->total_cols = FRAME_TOTAL_COLS_ARG (f, FRAME_COLS (f)))
717 /* Given a value WIDTH for frame F's nominal width,
718 return the value that FRAME_TOTAL_COLS should have. */
720 #define FRAME_TOTAL_COLS_ARG(f, width) \
721 ((width) \
722 + FRAME_SCROLL_BAR_COLS (f) \
723 + FRAME_FRINGE_COLS (f))
725 /* Maximum + 1 legitimate value for FRAME_CURSOR_X. */
727 #define FRAME_CURSOR_X_LIMIT(f) \
728 (FRAME_COLS (f) + FRAME_LEFT_SCROLL_BAR_COLS (f))
730 /* Nonzero if frame F has scroll bars. */
732 #define FRAME_SCROLL_BARS(f) ((f)->scroll_bars)
734 #define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars)
735 #define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items)
736 #define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate)
738 #define FRAME_DESIRED_CURSOR(f) ((f)->desired_cursor)
739 #define FRAME_BLINK_OFF_CURSOR(f) ((f)->blink_off_cursor)
740 #define FRAME_CURSOR_WIDTH(f) ((f)->cursor_width)
741 #define FRAME_BLINK_OFF_CURSOR_WIDTH(f) ((f)->blink_off_cursor_width)
743 /* Return a pointer to the face cache of frame F. */
745 #define FRAME_FACE_CACHE(F) (F)->face_cache
747 /* Return the size of message_buf of the frame F. We multiply the
748 width of the frame by 4 because multi-byte form may require at most
749 4-byte for a character. */
751 #define FRAME_MESSAGE_BUF_SIZE(f) (((int) FRAME_COLS (f)) * 4)
753 /* Emacs's redisplay code could become confused if a frame's
754 visibility changes at arbitrary times. For example, if a frame is
755 visible while the desired glyphs are being built, but becomes
756 invisible before they are updated, then some rows of the
757 desired_glyphs will be left marked as enabled after redisplay is
758 complete, which should never happen. The next time the frame
759 becomes visible, redisplay will probably barf.
761 Currently, there are no similar situations involving iconified, but
762 the principle is the same.
764 So instead of having asynchronous input handlers directly set and
765 clear the frame's visibility and iconification flags, they just set
766 the async_visible and async_iconified flags; the redisplay code
767 calls the FRAME_SAMPLE_VISIBILITY macro before doing any redisplay,
768 which sets visible and iconified from their asynchronous
769 counterparts.
771 Synchronous code must use the FRAME_SET_VISIBLE macro.
773 Also, if a frame used to be invisible, but has just become visible,
774 it must be marked as garbaged, since redisplay hasn't been keeping
775 up its contents.
777 Note that a tty frame is visible if and only if it is the topmost
778 frame. */
780 #define FRAME_SAMPLE_VISIBILITY(f) \
781 (((f)->async_visible && (f)->visible != (f)->async_visible) ? \
782 SET_FRAME_GARBAGED (f) : 0, \
783 (f)->visible = (f)->async_visible, \
784 (f)->iconified = (f)->async_iconified)
786 #define CHECK_FRAME(x) \
787 CHECK_TYPE (FRAMEP (x), Qframep, x)
789 #define CHECK_LIVE_FRAME(x) \
790 CHECK_TYPE (FRAMEP (x) && FRAME_LIVE_P (XFRAME (x)), Qframe_live_p, x)
792 /* FOR_EACH_FRAME (LIST_VAR, FRAME_VAR) followed by a statement is a
793 `for' loop which iterates over the elements of Vframe_list. The
794 loop will set FRAME_VAR, a Lisp_Object, to each frame in
795 Vframe_list in succession and execute the statement. LIST_VAR
796 should be a Lisp_Object too; it is used to iterate through the
797 Vframe_list.
799 This macro is a holdover from a time when multiple frames weren't always
800 supported. An alternate definition of the macro would expand to
801 something which executes the statement once. */
803 #define FOR_EACH_FRAME(list_var, frame_var) \
804 for ((list_var) = Vframe_list; \
805 (CONSP (list_var) \
806 && (frame_var = XCAR (list_var), 1)); \
807 list_var = XCDR (list_var))
810 extern Lisp_Object Qframep, Qframe_live_p;
811 extern Lisp_Object Qtty, Qtty_type;
812 extern Lisp_Object Qterminal, Qterminal_live_p;
813 extern Lisp_Object Qnoelisp;
815 extern struct frame *last_nonminibuf_frame;
817 extern struct frame *make_initial_frame P_ ((void));
818 extern struct frame *make_terminal_frame P_ ((struct terminal *));
819 extern struct frame *make_frame P_ ((int));
820 #ifdef HAVE_WINDOW_SYSTEM
821 extern struct frame *make_minibuffer_frame P_ ((void));
822 extern struct frame *make_frame_without_minibuffer P_ ((Lisp_Object,
823 struct kboard *,
824 Lisp_Object));
825 #endif /* HAVE_WINDOW_SYSTEM */
826 extern int other_visible_frames P_ ((struct frame *));
828 extern Lisp_Object Vframe_list;
829 extern Lisp_Object Vdefault_frame_alist;
831 extern Lisp_Object Vterminal_frame;
833 extern Lisp_Object Vmouse_highlight;
835 /* The currently selected frame. */
837 extern Lisp_Object selected_frame;
839 /* Value is a pointer to the selected frame. If the selected frame
840 isn't live, abort. */
842 #define SELECTED_FRAME() \
843 ((FRAMEP (selected_frame) \
844 && FRAME_LIVE_P (XFRAME (selected_frame))) \
845 ? XFRAME (selected_frame) \
846 : (abort (), (struct frame *) 0))
849 /***********************************************************************
850 Display-related Macros
851 ***********************************************************************/
853 /* Canonical y-unit on frame F.
854 This value currently equals the line height of the frame (which is
855 the height of the default font of F). */
857 #define FRAME_LINE_HEIGHT(F) ((F)->line_height)
859 /* Canonical x-unit on frame F.
860 This value currently equals the average width of the default font of F. */
862 #define FRAME_COLUMN_WIDTH(F) ((F)->column_width)
864 /* Space glyph width of the default font of frame F. */
866 #define FRAME_SPACE_WIDTH(F) ((F)->space_width)
869 /* Pixel width of areas used to display truncation marks, continuation
870 marks, overlay arrows. This is 0 for terminal frames. */
872 #ifdef HAVE_WINDOW_SYSTEM
874 /* Total width of fringes reserved for drawing truncation bitmaps,
875 continuation bitmaps and alike. The width is in canonical char
876 units of the frame. This must currently be the case because window
877 sizes aren't pixel values. If it weren't the case, we wouldn't be
878 able to split windows horizontally nicely. */
880 #define FRAME_FRINGE_COLS(F) ((F)->fringe_cols)
882 /* Pixel-width of the left and right fringe. */
884 #define FRAME_LEFT_FRINGE_WIDTH(F) ((F)->left_fringe_width)
885 #define FRAME_RIGHT_FRINGE_WIDTH(F) ((F)->right_fringe_width)
887 /* Total width of fringes in pixels. */
889 #define FRAME_TOTAL_FRINGE_WIDTH(F) \
890 (FRAME_LEFT_FRINGE_WIDTH (F) + FRAME_RIGHT_FRINGE_WIDTH (F))
893 /* Pixel-width of internal border lines */
895 #define FRAME_INTERNAL_BORDER_WIDTH(F) ((F)->internal_border_width)
897 #else /* not HAVE_WINDOW_SYSTEM */
899 #define FRAME_FRINGE_COLS(F) 0
900 #define FRAME_TOTAL_FRINGE_WIDTH(F) 0
901 #define FRAME_LEFT_FRINGE_WIDTH(F) 0
902 #define FRAME_RIGHT_FRINGE_WIDTH(F) 0
903 #define FRAME_INTERNAL_BORDER_WIDTH(F) 0
905 #endif /* not HAVE_WINDOW_SYSTEM */
910 /***********************************************************************
911 Conversion between canonical units and pixels
912 ***********************************************************************/
914 /* Canonical x-values are fractions of FRAME_COLUMN_WIDTH, canonical
915 y-unit are fractions of FRAME_LINE_HEIGHT of a frame. Both are
916 represented as Lisp numbers, i.e. integers or floats. */
918 /* Convert canonical value X to pixels. F is the frame whose
919 canonical char width is to be used. X must be a Lisp integer or
920 float. Value is a C integer. */
922 #define FRAME_PIXEL_X_FROM_CANON_X(F, X) \
923 (INTEGERP (X) \
924 ? XINT (X) * FRAME_COLUMN_WIDTH (F) \
925 : (int) (XFLOAT_DATA (X) * FRAME_COLUMN_WIDTH (F)))
927 /* Convert canonical value Y to pixels. F is the frame whose
928 canonical character height is to be used. X must be a Lisp integer
929 or float. Value is a C integer. */
931 #define FRAME_PIXEL_Y_FROM_CANON_Y(F, Y) \
932 (INTEGERP (Y) \
933 ? XINT (Y) * FRAME_LINE_HEIGHT (F) \
934 : (int) (XFLOAT_DATA (Y) * FRAME_LINE_HEIGHT (F)))
936 /* Convert pixel-value X to canonical units. F is the frame whose
937 canonical character width is to be used. X is a C integer. Result
938 is a Lisp float if X is not a multiple of the canon width,
939 otherwise it's a Lisp integer. */
941 #define FRAME_CANON_X_FROM_PIXEL_X(F, X) \
942 ((X) % FRAME_COLUMN_WIDTH (F) != 0 \
943 ? make_float ((double) (X) / FRAME_COLUMN_WIDTH (F)) \
944 : make_number ((X) / FRAME_COLUMN_WIDTH (F)))
946 /* Convert pixel-value Y to canonical units. F is the frame whose
947 canonical character height is to be used. Y is a C integer.
948 Result is a Lisp float if Y is not a multiple of the canon width,
949 otherwise it's a Lisp integer. */
951 #define FRAME_CANON_Y_FROM_PIXEL_Y(F, Y) \
952 ((Y) % FRAME_LINE_HEIGHT (F) \
953 ? make_float ((double) (Y) / FRAME_LINE_HEIGHT (F)) \
954 : make_number ((Y) / FRAME_LINE_HEIGHT (F)))
958 /* Manipulating pixel sizes and character sizes.
959 Knowledge of which factors affect the overall size of the window should
960 be hidden in these macros, if that's possible.
962 Return the upper/left pixel position of the character cell on frame F
963 at ROW/COL. */
965 #define FRAME_LINE_TO_PIXEL_Y(f, row) \
966 (FRAME_INTERNAL_BORDER_WIDTH (f) \
967 + (row) * FRAME_LINE_HEIGHT (f))
969 #define FRAME_COL_TO_PIXEL_X(f, col) \
970 (FRAME_INTERNAL_BORDER_WIDTH (f) \
971 + (col) * FRAME_COLUMN_WIDTH (f))
973 /* Return the pixel width/height of frame F if it has
974 COLS columns/LINES rows. */
976 #define FRAME_TEXT_COLS_TO_PIXEL_WIDTH(f, cols) \
977 (FRAME_COL_TO_PIXEL_X (f, cols) \
978 + (f)->scroll_bar_actual_width \
979 + FRAME_TOTAL_FRINGE_WIDTH (f) \
980 + FRAME_INTERNAL_BORDER_WIDTH (f))
982 #define FRAME_TEXT_LINES_TO_PIXEL_HEIGHT(f, lines) \
983 (FRAME_LINE_TO_PIXEL_Y (f, lines) \
984 + FRAME_INTERNAL_BORDER_WIDTH (f))
987 /* Return the row/column (zero-based) of the character cell containing
988 the pixel on FRAME at Y/X. */
990 #define FRAME_PIXEL_Y_TO_LINE(f, y) \
991 (((y) - FRAME_INTERNAL_BORDER_WIDTH (f)) \
992 / FRAME_LINE_HEIGHT (f))
994 #define FRAME_PIXEL_X_TO_COL(f, x) \
995 (((x) - FRAME_INTERNAL_BORDER_WIDTH (f)) \
996 / FRAME_COLUMN_WIDTH (f))
998 /* How many columns/rows of text can we fit in WIDTH/HEIGHT pixels on
999 frame F? */
1001 #define FRAME_PIXEL_WIDTH_TO_TEXT_COLS(f, width) \
1002 (FRAME_PIXEL_X_TO_COL (f, ((width) \
1003 - FRAME_INTERNAL_BORDER_WIDTH (f) \
1004 - FRAME_TOTAL_FRINGE_WIDTH (f) \
1005 - (f)->scroll_bar_actual_width)))
1007 #define FRAME_PIXEL_HEIGHT_TO_TEXT_LINES(f, height) \
1008 (FRAME_PIXEL_Y_TO_LINE (f, ((height) \
1009 - FRAME_INTERNAL_BORDER_WIDTH (f))))
1012 /***********************************************************************
1013 Frame Parameters
1014 ***********************************************************************/
1016 extern Lisp_Object Qauto_raise, Qauto_lower;
1017 extern Lisp_Object Qborder_color, Qborder_width;
1018 extern Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
1019 extern Lisp_Object Qcursor_color, Qcursor_type;
1020 extern Lisp_Object Qfont;
1021 extern Lisp_Object Qbackground_color, Qforeground_color;
1022 extern Lisp_Object Qicon, Qicon_name, Qicon_type, Qicon_left, Qicon_top;
1023 extern Lisp_Object Qinternal_border_width;
1024 extern Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
1025 extern Lisp_Object Qmouse_color;
1026 extern Lisp_Object Qname, Qtitle;
1027 extern Lisp_Object Qparent_id;
1028 extern Lisp_Object Qunsplittable, Qvisibility;
1029 extern Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
1030 extern Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
1031 extern Lisp_Object Qscreen_gamma;
1032 extern Lisp_Object Qline_spacing;
1033 extern Lisp_Object Qwait_for_wm;
1034 extern Lisp_Object Qfullscreen;
1035 extern Lisp_Object Qfont_backend;
1037 extern Lisp_Object Qleft_fringe, Qright_fringe;
1038 extern Lisp_Object Qheight, Qwidth;
1039 extern Lisp_Object Qminibuffer, Qmodeline;
1040 extern Lisp_Object Qonly;
1041 extern Lisp_Object Qx, Qw32, Qmac, Qpc;
1042 extern Lisp_Object Qvisible;
1043 extern Lisp_Object Qdisplay_type;
1044 extern Lisp_Object Qbackground_mode;
1046 extern Lisp_Object Qx_resource_name;
1048 extern Lisp_Object Qleft, Qright, Qtop, Qbox;
1049 extern Lisp_Object Qdisplay;
1051 #ifdef HAVE_WINDOW_SYSTEM
1053 /* The class of this X application. */
1054 #define EMACS_CLASS "Emacs"
1056 /* These are in xterm.c, w32term.c, etc. */
1058 extern void x_set_scroll_bar_default_width P_ ((struct frame *));
1059 extern void x_set_offset P_ ((struct frame *, int, int, int));
1060 extern void x_wm_set_icon_position P_ ((struct frame *, int, int));
1062 extern Lisp_Object x_new_font P_ ((struct frame *, Lisp_Object, int));
1064 /* These are in frame.c */
1066 extern Lisp_Object Vx_resource_name;
1067 extern Lisp_Object Vx_resource_class;
1070 extern Lisp_Object Qface_set_after_frame_default;
1072 extern void x_fullscreen_adjust P_ ((struct frame *f, int *, int *,
1073 int *, int *));
1075 extern void x_set_frame_parameters P_ ((struct frame *, Lisp_Object));
1076 extern void x_report_frame_params P_ ((struct frame *, Lisp_Object *));
1078 extern void x_set_fullscreen P_ ((struct frame *, Lisp_Object, Lisp_Object));
1079 extern void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
1080 extern void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
1081 extern void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object));
1082 extern void x_set_font_backend P_ ((struct frame *, Lisp_Object, Lisp_Object));
1083 extern void x_set_fringe_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
1084 extern void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
1085 extern void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
1086 Lisp_Object));
1087 extern void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
1088 extern void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
1089 extern void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
1090 extern void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
1091 extern void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
1092 Lisp_Object));
1093 extern void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object,
1094 Lisp_Object));
1096 extern Lisp_Object x_icon_type P_ ((struct frame *));
1098 extern int x_figure_window_size P_ ((struct frame *, Lisp_Object, int));
1101 extern void validate_x_resource_name P_ ((void));
1103 #endif /* HAVE_WINDOW_SYSTEM */
1105 #endif /* not EMACS_FRAME_H */
1107 /* arch-tag: 0df048ee-e6bf-4f48-bd56-e3cd055dd8c4
1108 (do not change this comment) */