Seiji Zenitani <zenitani at mac.com>
[bpt/emacs.git] / src / frame.h
CommitLineData
ff11dfa1 1/* Define frame-object for GNU Emacs.
0b5538bd 2 Copyright (C) 1993, 1994, 1999, 2000, 2001, 2002, 2003, 2004,
8cabe764 3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
efa4ce8b
JB
4
5This file is part of GNU Emacs.
6
b9b1cc14 7GNU Emacs is free software: you can redistribute it and/or modify
efa4ce8b 8it under the terms of the GNU General Public License as published by
b9b1cc14
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
efa4ce8b
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
b9b1cc14 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
efa4ce8b 19
843c9999
GM
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 */
23
84e01749
GM
24#ifndef EMACS_FRAME_H
25#define EMACS_FRAME_H
1f922834 26
20a6c8d7
JB
27\f
28/* Miscellanea. */
29
9628b887 30/* Nonzero means there is at least one garbaged frame. */
20a6c8d7
JB
31extern int frame_garbaged;
32
33/* Nonzero means FRAME_MESSAGE_BUF (selected_frame) is being used by
34 print. */
3b83d631 35
20a6c8d7 36extern int message_buf_print;
efa4ce8b 37
9cfa62c7
MR
38/* Nonzero means window system changes focus when moving the
39 mouse. */
40
41extern int focus_follows_mouse;
42
20a6c8d7 43\f
e3678b64 44/* The structure representing a frame. */
efa4ce8b
JB
45
46enum output_method
3b83d631 47{
3224dac1 48 output_initial,
3b83d631
GM
49 output_termcap,
50 output_x_window,
51 output_msdos_raw,
0e015153
RS
52 output_w32,
53 output_mac
3b83d631 54};
efa4ce8b 55
a3211441 56enum vertical_scroll_bar_type
3b83d631
GM
57{
58 vertical_scroll_bar_none,
59 vertical_scroll_bar_left,
60 vertical_scroll_bar_right
61};
a3211441 62
4d418fcc
KS
63enum text_cursor_kinds
64{
65 DEFAULT_CURSOR = -2,
66 NO_CURSOR = -1,
67 FILLED_BOX_CURSOR,
68 HOLLOW_BOX_CURSOR,
69 BAR_CURSOR,
70 HBAR_CURSOR
71};
72
2806a183
SM
73enum fullscreen_type
74{
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
81};
82
83
28d7d09f
KL
84#define FRAME_FOREGROUND_PIXEL(f) ((f)->foreground_pixel)
85#define FRAME_BACKGROUND_PIXEL(f) ((f)->background_pixel)
2d764c78 86
6ed8eeff 87struct terminal;
2d764c78 88
adf494ff 89struct font_driver_list;
adf494ff 90
ff11dfa1 91struct frame
efa4ce8b 92{
d0fdb6da 93 EMACS_UINT size;
efa4ce8b
JB
94 struct Lisp_Vector *next;
95
21015f9c 96 /* All Lisp_Object components must come first.
21015f9c 97 That ensures they are all aligned normally. */
efa4ce8b 98
fa5d1baa
RS
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. */
efa4ce8b
JB
101 Lisp_Object name;
102
e7f79a67
RS
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;
106
fa5d1baa
RS
107 /* This is the frame title specified explicitly, if any.
108 Usually it is nil. */
109 Lisp_Object title;
110
eb8c3be9 111 /* The frame which should receive keystrokes that occur in this
46a5c487
JB
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.
116
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. */
ff11dfa1 122 Lisp_Object focus_frame;
0f79a4ae 123
ff11dfa1
JB
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. */
efa4ce8b
JB
127 Lisp_Object root_window;
128
ff11dfa1
JB
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. */
efa4ce8b
JB
133 Lisp_Object selected_window;
134
ff11dfa1
JB
135 /* This frame's minibuffer window.
136 Most frames have their own minibuffer windows,
137 but only the selected frame's minibuffer window
efa4ce8b
JB
138 can actually appear to exist. */
139 Lisp_Object minibuffer_window;
140
ff11dfa1
JB
141 /* Parameter alist of this frame.
142 These are the parameters specified when creating the frame
143 or modified with modify-frame-parameters. */
efa4ce8b
JB
144 Lisp_Object param_alist;
145
177c0ea7 146 /* List of scroll bars on this frame.
20a6c8d7 147 Actually, we don't specify exactly what is stored here at all; the
a3c87d4e 148 scroll bar implementation code can use it to store anything it likes.
20a6c8d7 149 This field is marked by the garbage collector. It is here
7e59217d 150 instead of in the `device' structure so that the garbage
20a6c8d7
JB
151 collector doesn't need to look inside the window-system-dependent
152 structure. */
a3c87d4e
JB
153 Lisp_Object scroll_bars;
154 Lisp_Object condemned_scroll_bars;
20a6c8d7 155
ad6cd733
RS
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. */
6d05db81
RS
161 Lisp_Object menu_bar_items;
162
fb63ba7d
RS
163 /* Alist of elements (FACE-NAME . FACE-VECTOR-DATA). */
164 Lisp_Object face_alist;
165
21015f9c
RS
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;
21015f9c
RS
170
171 /* Predicate for selecting buffers for other-buffer. */
172 Lisp_Object buffer_predicate;
173
375ff4f1
RS
174 /* List of buffers viewed in this frame, for other-buffer. */
175 Lisp_Object buffer_list;
176
a18b8cb5
KL
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;
63bb3d8e 180
3b83d631
GM
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;
184
9ea173e8
GM
185 /* A window used to display the tool-bar of a frame. */
186 Lisp_Object tool_bar_window;
3b83d631 187
9ea173e8 188 /* Desired and current tool-bar items. */
e3303a23 189 Lisp_Object tool_bar_items;
3b83d631 190
9ea173e8
GM
191 /* Desired and current contents displayed in tool_bar_window. */
192 Lisp_Object desired_tool_bar_string, current_tool_bar_string;
3b83d631 193
63bb3d8e 194 /* Beyond here, there should be no more Lisp_Object components. */
21015f9c 195
3b83d631
GM
196 /* Cache of realized faces. */
197 struct face_cache *face_cache;
21015f9c 198
a390930c
SM
199 /* Number of elements in `menu_bar_vector' that have meaningful data. */
200 EMACS_INT menu_bar_items_used;
201
3b83d631
GM
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. */
bd601e2a
KH
204 char *namebuf;
205
3b83d631
GM
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;
211
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;
21015f9c 215
e3d7bd83
DN
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;
219
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;
223
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;
228
229 /* Set to non-zero if this frame has already been hscrolled during
230 current redisplay. */
231 unsigned already_hscrolled_p : 1;
232
233 /* Set to non-zero when current redisplay has updated frame. */
234 unsigned updated_p : 1;
235
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;
239
66d8c489 240#if defined (USE_GTK) || defined (MAC_OS)
488dd4c4
JD
241 /* Nonzero means using a tool bar that comes from the toolkit. */
242 int external_tool_bar;
243#endif
244
9ea173e8
GM
245 /* Margin at the top of the frame. Used to display the tool-bar. */
246 int tool_bar_lines;
3b83d631 247
045cff16 248 int n_tool_bar_rows;
e3303a23 249 int n_tool_bar_items;
177c0ea7 250
3b83d631
GM
251 /* A buffer for decode_mode_line. */
252 char *decode_mode_spec_buffer;
21015f9c
RS
253
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;
263
b45afe99
KS
264 /* Size of this frame, excluding fringes, scroll bars etc.,
265 in units of canonical characters. */
266 EMACS_INT text_lines, text_cols;
267
268 /* Total size of this frame (i.e. its native window), in units of
269 canonical characters. */
270 EMACS_INT total_lines, total_cols;
271
272 /* New text height and width for pending size change.
273 0 if no change pending. */
274 int new_text_lines, new_text_cols;
275
276 /* Pixel position of the frame window (x and y offsets in root window). */
277 int left_pos, top_pos;
278
279 /* Size of the frame window in pixels. */
280 int pixel_height, pixel_width;
281
adf494ff
KH
282 /* Dots per inch of the screen the frame is on. */
283 double resx, resy;
284
b45afe99
KS
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;
288
289 /* This is the gravity value for the specified window position. */
290 int win_gravity;
291
292 /* The geometry flags for this window. */
293 int size_hint_flags;
21015f9c 294
b45afe99
KS
295 /* Border width of the frame window as known by the (X) window system. */
296 int border_width;
297
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;
302
303 /* Canonical X unit. Width of default font, in pixels. */
304 int column_width;
305
0fc63cc4
KH
306 /* Widht of space glyph of default font, in pixels. */
307 int space_width;
308
b45afe99
KS
309 /* Canonical Y unit. Height of a line, in pixels. */
310 int line_height;
21015f9c 311
428a555e
KL
312 /* The output method says how the contents of this frame are
313 displayed. It could be using termcap, or using an X window.
6ed8eeff 314 This must be the same as the terminal->type. */
efa4ce8b
JB
315 enum output_method output_method;
316
6ed8eeff 317 /* The terminal device that this frame uses. If this is NULL, then
7e59217d 318 the frame has been deleted. */
6ed8eeff 319 struct terminal *terminal;
63bb3d8e 320
7e59217d 321 /* Device-dependent, frame-local auxiliary data used for displaying
428a555e
KL
322 the contents. When the frame is deleted, this data is deleted as
323 well. */
3b83d631
GM
324 union output_data
325 {
428a555e
KL
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 */
cf0fb540 330 EMACS_INT nothing;
3b83d631
GM
331 }
332 output_data;
efa4ce8b 333
adf494ff
KH
334 /* List of font-drivers available on the frame. */
335 struct font_driver_list *font_driver_list;
6aae9c92
KH
336 /* List of data specific to font-driver and frame, but common to
337 faces. */
338 struct font_data_list *font_data_list;
adf494ff 339
b45afe99
KS
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;
346
347 /* The extra width (in pixels) currently allotted for fringes. */
348 int left_fringe_width, right_fringe_width;
349
b45afe99 350 /* See FULLSCREEN_ enum below */
2806a183 351 enum fullscreen_type want_fullscreen;
b45afe99 352
6d05db81
RS
353 /* Number of lines of menu bar. */
354 int menu_bar_lines;
355
488dd4c4
JD
356#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
357 || defined (USE_GTK)
9c95189b 358 /* Nonzero means using a menu bar that comes from the X toolkit. */
2806a183 359 unsigned int external_menu_bar : 1;
9c95189b
RS
360#endif
361
ff11dfa1 362 /* Nonzero if last attempt at redisplay on this frame was preempted. */
2806a183 363 unsigned char display_preempted : 1;
efa4ce8b 364
a4659527
JB
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.
46a5c487 367 DON'T SET IT DIRECTLY; instead, use FRAME_SET_VISIBLE.
efa4ce8b 368
20a6c8d7
JB
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.
372
6548cf00
KL
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.
0969b893 380
a4659527
JB
381 iconified is nonzero if the frame is currently iconified.
382
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.
387
388 These should probably be considered read-only by everyone except
389 FRAME_SAMPLE_VISIBILITY.
390
74cc2959 391 These two are mutually exclusive. They might both be zero, if the
a4659527 392 frame has been made invisible without an icon. */
d4417eb0 393 unsigned char visible : 2;
2806a183
SM
394 unsigned char iconified : 1;
395
396 /* Let's not use bitfields for volatile variables. */
a4659527
JB
397
398 /* Asynchronous input handlers change these, and
399 FRAME_SAMPLE_VISIBILITY copies them into visible and iconified.
400 See FRAME_SAMPLE_VISIBILITY, below. */
b975254e 401 volatile char async_visible, async_iconified;
efa4ce8b 402
ff11dfa1 403 /* Nonzero if this frame should be redrawn. */
b975254e 404 volatile char garbaged;
efa4ce8b 405
ff11dfa1
JB
406 /* True if frame actually has a minibuffer window on it.
407 0 if using a minibuffer window that isn't on this frame. */
2806a183 408 unsigned char has_minibuffer : 1;
177c0ea7 409
ff11dfa1 410 /* 0 means, if this frame has just one window,
efa4ce8b 411 show no modeline for that window. */
2806a183 412 unsigned char wants_modeline : 1;
efa4ce8b 413
46a5c487 414 /* Non-zero if the hardware device this frame is displaying on can
a3c87d4e
JB
415 support scroll bars. */
416 char can_have_scroll_bars;
46a5c487 417
ff11dfa1 418 /* Non-0 means raise this frame to the top of the heap when selected. */
2806a183 419 unsigned char auto_raise : 1;
efa4ce8b 420
ff11dfa1 421 /* Non-0 means lower this frame to the bottom of the stack when left. */
2806a183 422 unsigned char auto_lower : 1;
efa4ce8b 423
ff11dfa1 424 /* True if frame's root window can't be split. */
2806a183 425 unsigned char no_split : 1;
efa4ce8b 426
fbfed6f0
JB
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. */
2806a183 431 unsigned char explicit_name : 1;
fbfed6f0 432
adc12f0f 433 /* Nonzero if size of some window on this frame has changed. */
2806a183 434 unsigned char window_sizes_changed : 1;
adc12f0f 435
e3d7bd83
DN
436 /* Nonzero if the mouse has moved on this display device
437 since the last time we checked. */
2806a183 438 unsigned char mouse_moved :1;
e3d7bd83
DN
439
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;
443
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;
447
448 /* Width of bar cursor (if we are using that). */
449 int cursor_width;
450
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;
454
455 /* Width of bar cursor (if we are using that) for blink-off state. */
456 int blink_off_cursor_width;
457
ff11dfa1 458 /* Storage for messages to this frame. */
efa4ce8b
JB
459 char *message_buf;
460
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;
8d6de7ce 464
b45afe99
KS
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;
472
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;
95b999aa
RS
476
477 /* The baud rate that was used to calculate costs for this frame. */
478 int cost_calculation_baud_rate;
6462918c 479
b61cbba3
GM
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;
d1738c45
GM
484
485 /* Additional space to put between text lines on this frame. */
486 int extra_line_spacing;
f1c69c61 487
28d7d09f
KL
488 /* All display backends seem to need these two pixel values. */
489 unsigned long background_pixel;
490 unsigned long foreground_pixel;
efa4ce8b
JB
491};
492
e3678b64 493#ifdef MULTI_KBOARD
6ed8eeff 494#define FRAME_KBOARD(f) ((f)->terminal->kboard)
37ea66e1
KH
495#else
496#define FRAME_KBOARD(f) (&the_only_kboard)
497#endif
498
354884c4
SM
499/* Return a pointer to the image cache of frame F. */
500#define FRAME_IMAGE_CACHE(F) ((F)->terminal->image_cache)
501
ff11dfa1
JB
502typedef struct frame *FRAME_PTR;
503
8e50cc2d 504#define XFRAME(p) (eassert (FRAMEP(p)),(struct frame *) XPNTR (p))
aac03cca 505#define XSETFRAME(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_FRAME))
ff11dfa1 506
cea6021b 507/* Given a window, return its frame as a Lisp_Object. */
ff11dfa1
JB
508#define WINDOW_FRAME(w) (w)->frame
509
cea6021b 510/* Test a frame for particular kinds of display methods. */
3224dac1 511#define FRAME_INITIAL_P(f) ((f)->output_method == output_initial)
cea6021b 512#define FRAME_TERMCAP_P(f) ((f)->output_method == output_termcap)
efa7f0f9 513#define FRAME_X_P(f) ((f)->output_method == output_x_window)
fbd6baed 514#define FRAME_W32_P(f) ((f)->output_method == output_w32)
6f181713 515#define FRAME_MSDOS_P(f) ((f)->output_method == output_msdos_raw)
0e015153 516#define FRAME_MAC_P(f) ((f)->output_method == output_mac)
efa7f0f9
GV
517
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. */
3b83d631 520
efa7f0f9
GV
521#ifdef HAVE_X_WINDOWS
522#define FRAME_WINDOW_P(f) FRAME_X_P (f)
523#endif
524#ifdef HAVE_NTGUI
fbd6baed 525#define FRAME_WINDOW_P(f) FRAME_W32_P (f)
efa7f0f9 526#endif
e0f712ba 527#ifdef MAC_OS
0e015153
RS
528#define FRAME_WINDOW_P(f) FRAME_MAC_P (f)
529#endif
7651b07e
RS
530#ifndef FRAME_WINDOW_P
531#define FRAME_WINDOW_P(f) (0)
532#endif
efa7f0f9 533
cea6021b 534/* Nonzero if frame F is still alive (not deleted). */
6ed8eeff 535#define FRAME_LIVE_P(f) ((f)->terminal != 0)
cea6021b
RS
536
537/* Nonzero if frame F is a minibuffer-only frame. */
ff11dfa1
JB
538#define FRAME_MINIBUF_ONLY_P(f) \
539 EQ (FRAME_ROOT_WINDOW (f), FRAME_MINIBUF_WINDOW (f))
cea6021b
RS
540
541/* Nonzero if frame F contains a minibuffer window.
542 (If this is 0, F must use some other minibuffer window.) */
10a4cc63 543#define FRAME_HAS_MINIBUF_P(f) ((f)->has_minibuffer)
cea6021b 544
b45afe99
KS
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)
548
549/* Pixel width of frame F. */
550#define FRAME_PIXEL_WIDTH(f) ((f)->pixel_width)
551
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
555
556/* Width of frame F, measured in canonical character columns,
cea6021b 557 not including scroll bars if any. */
b45afe99 558#define FRAME_COLS(f) (f)->text_cols
cea6021b
RS
559
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.
b45afe99 563 These lines are counted in FRAME_LINES. */
6d05db81 564#define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines
cea6021b 565
488dd4c4
JD
566/* Nonzero if this frame should display a tool bar
567 in a way that does not use any text lines. */
66d8c489 568#if defined (USE_GTK) || defined (MAC_OS)
488dd4c4
JD
569#define FRAME_EXTERNAL_TOOL_BAR(f) (f)->external_tool_bar
570#else
571#define FRAME_EXTERNAL_TOOL_BAR(f) 0
572#endif
573
9ea173e8 574/* Number of lines of frame F used for the tool-bar. */
3b83d631 575
9ea173e8 576#define FRAME_TOOL_BAR_LINES(f) (f)->tool_bar_lines
3b83d631 577
488dd4c4 578
3b83d631
GM
579/* Lines above the top-most window in frame F. */
580
581#define FRAME_TOP_MARGIN(F) \
9ea173e8 582 (FRAME_MENU_BAR_LINES (F) + FRAME_TOOL_BAR_LINES (F))
3b83d631 583
cea6021b
RS
584/* Nonzero if this frame should display a menu bar
585 in a way that does not use any text lines. */
488dd4c4
JD
586#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
587 || defined (USE_GTK)
9c95189b 588#define FRAME_EXTERNAL_MENU_BAR(f) (f)->external_menu_bar
4c8888a0
RS
589#else
590#define FRAME_EXTERNAL_MENU_BAR(f) 0
591#endif
46a5c487 592#define FRAME_VISIBLE_P(f) ((f)->visible != 0)
cea6021b
RS
593
594/* Nonzero if frame F is currently visible but hidden. */
0969b893 595#define FRAME_OBSCURED_P(f) ((f)->visible > 1)
cea6021b
RS
596
597/* Nonzero if frame F is currently iconified. */
598#define FRAME_ICONIFIED_P(f) (f)->iconified
599
46a5c487
JB
600#define FRAME_SET_VISIBLE(f,p) \
601 ((f)->async_visible = (p), FRAME_SAMPLE_VISIBILITY (f))
ff11dfa1
JB
602#define SET_FRAME_GARBAGED(f) (frame_garbaged = 1, f->garbaged = 1)
603#define FRAME_GARBAGED_P(f) (f)->garbaged
cea6021b
RS
604
605/* Nonzero means do not allow splitting this frame's window. */
ff11dfa1 606#define FRAME_NO_SPLIT_P(f) (f)->no_split
cea6021b
RS
607
608/* Not really implemented. */
ff11dfa1 609#define FRAME_WANTS_MODELINE_P(f) (f)->wants_modeline
cea6021b
RS
610
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. */
adc12f0f 614#define FRAME_WINDOW_SIZES_CHANGED(f) (f)->window_sizes_changed
cea6021b
RS
615
616/* The minibuffer window of frame F, if it has one; otherwise nil. */
ff11dfa1 617#define FRAME_MINIBUF_WINDOW(f) (f)->minibuffer_window
cea6021b
RS
618
619/* The root window of the window tree of frame F. */
ff11dfa1 620#define FRAME_ROOT_WINDOW(f) (f)->root_window
cea6021b
RS
621
622/* The currently selected window of the window tree of frame F. */
ff11dfa1 623#define FRAME_SELECTED_WINDOW(f) (f)->selected_window
cea6021b 624
177c0ea7
JB
625#define FRAME_INSERT_COST(f) (f)->insert_line_cost
626#define FRAME_DELETE_COST(f) (f)->delete_line_cost
ff11dfa1
JB
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
cea6021b
RS
632
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. */
a3c87d4e 636#define FRAME_CAN_HAVE_SCROLL_BARS(f) ((f)->can_have_scroll_bars)
cea6021b
RS
637
638/* This frame slot says whether scroll bars are currently enabled for frame F,
639 and which side they are on. */
a3211441
RS
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)
cea6021b
RS
647
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. */
b45afe99 651#define FRAME_CONFIG_SCROLL_BAR_WIDTH(f) ((f)->config_scroll_bar_width)
cea6021b
RS
652
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. */
b45afe99 656#define FRAME_CONFIG_SCROLL_BAR_COLS(f) ((f)->config_scroll_bar_cols)
cea6021b
RS
657
658/* Width of a scroll bar in frame F, measured in columns (characters),
7d81cf83
GM
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. */
661
b45afe99 662#define FRAME_LEFT_SCROLL_BAR_COLS(f) \
7d81cf83 663 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f) \
b45afe99 664 ? FRAME_CONFIG_SCROLL_BAR_COLS (f) \
7d81cf83
GM
665 : 0)
666
b45afe99
KS
667/* Width of a left scroll bar in frame F, measured in pixels */
668
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)
673
7d81cf83
GM
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. */
677
b45afe99 678#define FRAME_RIGHT_SCROLL_BAR_COLS(f) \
7d81cf83 679 (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f) \
b45afe99 680 ? FRAME_CONFIG_SCROLL_BAR_COLS (f) \
a3211441 681 : 0)
cea6021b 682
b45afe99
KS
683/* Width of a right scroll bar area in frame F, measured in pixels */
684
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)
689
690/* Actual width of a scroll bar in frame F, measured in columns. */
691
692#define FRAME_SCROLL_BAR_COLS(f) \
693 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
694 ? FRAME_CONFIG_SCROLL_BAR_COLS (f) \
a3211441 695 : 0)
cea6021b 696
b45afe99
KS
697/* Actual width of a scroll bar area in frame F, measured in pixels. */
698
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)
703
cea6021b
RS
704/* Total width of frame F, in columns (characters),
705 including the width used by scroll bars if any. */
b45afe99
KS
706
707#define FRAME_TOTAL_COLS(f) ((f)->total_cols)
cea6021b
RS
708
709/* Set the width of frame F to VAL.
710 VAL is the width of a full-frame window,
b45afe99
KS
711 not including scroll bars and fringes. */
712
713#define SET_FRAME_COLS(f, val) \
714 (FRAME_COLS (f) = (val), \
715 (f)->total_cols = FRAME_TOTAL_COLS_ARG (f, FRAME_COLS (f)))
cea6021b
RS
716
717/* Given a value WIDTH for frame F's nominal width,
b45afe99
KS
718 return the value that FRAME_TOTAL_COLS should have. */
719
720#define FRAME_TOTAL_COLS_ARG(f, width) \
3b83d631 721 ((width) \
b45afe99 722 + FRAME_SCROLL_BAR_COLS (f) \
986f10ad 723 + FRAME_FRINGE_COLS (f))
cea6021b 724
4ff34795 725/* Maximum + 1 legitimate value for FRAME_CURSOR_X. */
b45afe99 726
4ff34795 727#define FRAME_CURSOR_X_LIMIT(f) \
b45afe99 728 (FRAME_COLS (f) + FRAME_LEFT_SCROLL_BAR_COLS (f))
cea6021b
RS
729
730/* Nonzero if frame F has scroll bars. */
b45afe99 731
a3c87d4e 732#define FRAME_SCROLL_BARS(f) ((f)->scroll_bars)
cea6021b 733
a3c87d4e 734#define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars)
6d05db81 735#define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items)
95b999aa 736#define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate)
81d00831 737
4d418fcc
KS
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)
742
3b83d631
GM
743/* Return a pointer to the face cache of frame F. */
744
745#define FRAME_FACE_CACHE(F) (F)->face_cache
746
81d00831
KH
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. */
177c0ea7 750
b45afe99 751#define FRAME_MESSAGE_BUF_SIZE(f) (((int) FRAME_COLS (f)) * 4)
ff11dfa1 752
a4659527
JB
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.
760
761 Currently, there are no similar situations involving iconified, but
762 the principle is the same.
763
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
46a5c487
JB
769 counterparts.
770
20a6c8d7
JB
771 Synchronous code must use the FRAME_SET_VISIBLE macro.
772
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
9628b887
KL
775 up its contents.
776
777 Note that a tty frame is visible if and only if it is the topmost
778 frame. */
177c0ea7 779
a4659527 780#define FRAME_SAMPLE_VISIBILITY(f) \
0969b893
GV
781 (((f)->async_visible && (f)->visible != (f)->async_visible) ? \
782 SET_FRAME_GARBAGED (f) : 0, \
20a6c8d7 783 (f)->visible = (f)->async_visible, \
a4659527
JB
784 (f)->iconified = (f)->async_iconified)
785
915a3e00
KS
786#define CHECK_FRAME(x) \
787 CHECK_TYPE (FRAMEP (x), Qframep, x)
788
789#define CHECK_LIVE_FRAME(x) \
790 CHECK_TYPE (FRAMEP (x) && FRAME_LIVE_P (XFRAME (x)), Qframe_live_p, x)
265a9e55 791
ff11dfa1
JB
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
35f56f96 794 loop will set FRAME_VAR, a Lisp_Object, to each frame in
ff11dfa1 795 Vframe_list in succession and execute the statement. LIST_VAR
35f56f96 796 should be a Lisp_Object too; it is used to iterate through the
177c0ea7 797 Vframe_list.
e5d77022 798
e3678b64
KH
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. */
3b83d631 802
ff11dfa1
JB
803#define FOR_EACH_FRAME(list_var, frame_var) \
804 for ((list_var) = Vframe_list; \
e5d77022 805 (CONSP (list_var) \
ee88f64d
KR
806 && (frame_var = XCAR (list_var), 1)); \
807 list_var = XCDR (list_var))
e5d77022
JB
808
809
5e02ce11 810extern Lisp_Object Qframep, Qframe_live_p;
2666355c 811extern Lisp_Object Qtty, Qtty_type;
6ed8eeff 812extern Lisp_Object Qterminal, Qterminal_live_p;
c53956fe 813extern Lisp_Object Qnoelisp;
efa4ce8b 814
ff11dfa1 815extern struct frame *last_nonminibuf_frame;
efa4ce8b 816
3224dac1 817extern struct frame *make_initial_frame P_ ((void));
6ed8eeff 818extern struct frame *make_terminal_frame P_ ((struct terminal *));
fd6a330f 819extern struct frame *make_frame P_ ((int));
c9e5d3d1 820#ifdef HAVE_WINDOW_SYSTEM
fd6a330f
AS
821extern struct frame *make_minibuffer_frame P_ ((void));
822extern struct frame *make_frame_without_minibuffer P_ ((Lisp_Object,
823 struct kboard *,
824 Lisp_Object));
c9e5d3d1 825#endif /* HAVE_WINDOW_SYSTEM */
fd6a330f 826extern int other_visible_frames P_ ((struct frame *));
efa4ce8b 827
ff11dfa1
JB
828extern Lisp_Object Vframe_list;
829extern Lisp_Object Vdefault_frame_alist;
efa4ce8b 830
ff11dfa1 831extern Lisp_Object Vterminal_frame;
0349c9af
KS
832
833extern Lisp_Object Vmouse_highlight;
efa4ce8b 834\f
650afd94
GM
835/* The currently selected frame. */
836
837extern Lisp_Object selected_frame;
838
839/* Value is a pointer to the selected frame. If the selected frame
b975254e 840 isn't live, abort. */
650afd94
GM
841
842#define SELECTED_FRAME() \
843 ((FRAMEP (selected_frame) \
844 && FRAME_LIVE_P (XFRAME (selected_frame))) \
845 ? XFRAME (selected_frame) \
e1ef1fb2 846 : (abort (), (struct frame *) 0))
3b83d631
GM
847
848\f
849/***********************************************************************
850 Display-related Macros
851 ***********************************************************************/
852
d3378f02 853/* Canonical y-unit on frame F.
b45afe99
KS
854 This value currently equals the line height of the frame (which is
855 the height of the default font of F). */
856
857#define FRAME_LINE_HEIGHT(F) ((F)->line_height)
3b83d631 858
d3378f02 859/* Canonical x-unit on frame F.
0fc63cc4 860 This value currently equals the average width of the default font of F. */
3b83d631 861
b45afe99 862#define FRAME_COLUMN_WIDTH(F) ((F)->column_width)
3b83d631 863
0fc63cc4
KH
864/* Space glyph width of the default font of frame F. */
865
866#define FRAME_SPACE_WIDTH(F) ((F)->space_width)
867
3b83d631
GM
868
869/* Pixel width of areas used to display truncation marks, continuation
5cb26370 870 marks, overlay arrows. This is 0 for terminal frames. */
3b83d631
GM
871
872#ifdef HAVE_WINDOW_SYSTEM
aa5b8e15 873
b45afe99
KS
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. */
879
880#define FRAME_FRINGE_COLS(F) ((F)->fringe_cols)
881
882/* Pixel-width of the left and right fringe. */
883
884#define FRAME_LEFT_FRINGE_WIDTH(F) ((F)->left_fringe_width)
885#define FRAME_RIGHT_FRINGE_WIDTH(F) ((F)->right_fringe_width)
886
887/* Total width of fringes in pixels. */
888
889#define FRAME_TOTAL_FRINGE_WIDTH(F) \
890 (FRAME_LEFT_FRINGE_WIDTH (F) + FRAME_RIGHT_FRINGE_WIDTH (F))
891
892
893/* Pixel-width of internal border lines */
894
895#define FRAME_INTERNAL_BORDER_WIDTH(F) ((F)->internal_border_width)
177c0ea7 896
aa5b8e15
GM
897#else /* not HAVE_WINDOW_SYSTEM */
898
986f10ad 899#define FRAME_FRINGE_COLS(F) 0
b45afe99 900#define FRAME_TOTAL_FRINGE_WIDTH(F) 0
986f10ad 901#define FRAME_LEFT_FRINGE_WIDTH(F) 0
8432bb78 902#define FRAME_RIGHT_FRINGE_WIDTH(F) 0
b45afe99 903#define FRAME_INTERNAL_BORDER_WIDTH(F) 0
aa5b8e15
GM
904
905#endif /* not HAVE_WINDOW_SYSTEM */
177c0ea7 906
3b83d631
GM
907
908
909\f
910/***********************************************************************
911 Conversion between canonical units and pixels
912 ***********************************************************************/
913
b45afe99
KS
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. */
3b83d631
GM
917
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. */
177c0ea7 921
b45afe99 922#define FRAME_PIXEL_X_FROM_CANON_X(F, X) \
3b83d631 923 (INTEGERP (X) \
b45afe99
KS
924 ? XINT (X) * FRAME_COLUMN_WIDTH (F) \
925 : (int) (XFLOAT_DATA (X) * FRAME_COLUMN_WIDTH (F)))
177c0ea7 926
3b83d631
GM
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. */
177c0ea7 930
b45afe99 931#define FRAME_PIXEL_Y_FROM_CANON_Y(F, Y) \
3b83d631 932 (INTEGERP (Y) \
b45afe99
KS
933 ? XINT (Y) * FRAME_LINE_HEIGHT (F) \
934 : (int) (XFLOAT_DATA (Y) * FRAME_LINE_HEIGHT (F)))
3b83d631
GM
935
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. */
940
b45afe99
KS
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)))
3b83d631
GM
945
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. */
950
b45afe99
KS
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)))
955
956
957\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.
961
962 Return the upper/left pixel position of the character cell on frame F
963 at ROW/COL. */
964
965#define FRAME_LINE_TO_PIXEL_Y(f, row) \
966 (FRAME_INTERNAL_BORDER_WIDTH (f) \
967 + (row) * FRAME_LINE_HEIGHT (f))
968
969#define FRAME_COL_TO_PIXEL_X(f, col) \
970 (FRAME_INTERNAL_BORDER_WIDTH (f) \
971 + (col) * FRAME_COLUMN_WIDTH (f))
972
973/* Return the pixel width/height of frame F if it has
974 COLS columns/LINES rows. */
975
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))
981
982#define FRAME_TEXT_LINES_TO_PIXEL_HEIGHT(f, lines) \
983 (FRAME_LINE_TO_PIXEL_Y (f, lines) \
984 + FRAME_INTERNAL_BORDER_WIDTH (f))
985
986
987/* Return the row/column (zero-based) of the character cell containing
988 the pixel on FRAME at Y/X. */
989
990#define FRAME_PIXEL_Y_TO_LINE(f, y) \
991 (((y) - FRAME_INTERNAL_BORDER_WIDTH (f)) \
992 / FRAME_LINE_HEIGHT (f))
993
994#define FRAME_PIXEL_X_TO_COL(f, x) \
995 (((x) - FRAME_INTERNAL_BORDER_WIDTH (f)) \
996 / FRAME_COLUMN_WIDTH (f))
997
998/* How many columns/rows of text can we fit in WIDTH/HEIGHT pixels on
999 frame F? */
1000
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)))
1006
1007#define FRAME_PIXEL_HEIGHT_TO_TEXT_LINES(f, height) \
1008 (FRAME_PIXEL_Y_TO_LINE (f, ((height) \
1009 - FRAME_INTERNAL_BORDER_WIDTH (f))))
177c0ea7 1010
5e02ce11
KS
1011
1012/***********************************************************************
1013 Frame Parameters
1014 ***********************************************************************/
1015
1016extern Lisp_Object Qauto_raise, Qauto_lower;
1017extern Lisp_Object Qborder_color, Qborder_width;
a18b8cb5 1018extern Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
5e02ce11
KS
1019extern Lisp_Object Qcursor_color, Qcursor_type;
1020extern Lisp_Object Qfont;
1021extern Lisp_Object Qbackground_color, Qforeground_color;
1022extern Lisp_Object Qicon, Qicon_name, Qicon_type, Qicon_left, Qicon_top;
1023extern Lisp_Object Qinternal_border_width;
1024extern Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
1025extern Lisp_Object Qmouse_color;
1026extern Lisp_Object Qname, Qtitle;
1027extern Lisp_Object Qparent_id;
1028extern Lisp_Object Qunsplittable, Qvisibility;
1029extern Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
1030extern Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
1031extern Lisp_Object Qscreen_gamma;
1032extern Lisp_Object Qline_spacing;
1033extern Lisp_Object Qwait_for_wm;
1034extern Lisp_Object Qfullscreen;
1a8a83b2 1035extern Lisp_Object Qfont_backend;
5e02ce11
KS
1036
1037extern Lisp_Object Qleft_fringe, Qright_fringe;
1038extern Lisp_Object Qheight, Qwidth;
1039extern Lisp_Object Qminibuffer, Qmodeline;
1040extern Lisp_Object Qonly;
1041extern Lisp_Object Qx, Qw32, Qmac, Qpc;
1042extern Lisp_Object Qvisible;
1043extern Lisp_Object Qdisplay_type;
1044extern Lisp_Object Qbackground_mode;
1045
1046extern Lisp_Object Qx_resource_name;
1047
1048extern Lisp_Object Qleft, Qright, Qtop, Qbox;
1049extern Lisp_Object Qdisplay;
1050
1051#ifdef HAVE_WINDOW_SYSTEM
1052
1053/* The class of this X application. */
1054#define EMACS_CLASS "Emacs"
1055
5e02ce11
KS
1056/* These are in xterm.c, w32term.c, etc. */
1057
1058extern void x_set_scroll_bar_default_width P_ ((struct frame *));
1059extern void x_set_offset P_ ((struct frame *, int, int, int));
1060extern void x_wm_set_icon_position P_ ((struct frame *, int, int));
1061
38548f60 1062extern Lisp_Object x_new_font P_ ((struct frame *, Lisp_Object, int));
5e02ce11
KS
1063
1064/* These are in frame.c */
1065
1066extern Lisp_Object Vx_resource_name;
1067extern Lisp_Object Vx_resource_class;
1068
1069
1070extern Lisp_Object Qface_set_after_frame_default;
1071
1072extern void x_fullscreen_adjust P_ ((struct frame *f, int *, int *,
1073 int *, int *));
1074
1075extern void x_set_frame_parameters P_ ((struct frame *, Lisp_Object));
1076extern void x_report_frame_params P_ ((struct frame *, Lisp_Object *));
1077
1078extern void x_set_fullscreen P_ ((struct frame *, Lisp_Object, Lisp_Object));
1079extern void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
1080extern void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
1081extern void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object));
1a8a83b2 1082extern void x_set_font_backend P_ ((struct frame *, Lisp_Object, Lisp_Object));
5e02ce11
KS
1083extern void x_set_fringe_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
1084extern void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
1085extern void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
1086 Lisp_Object));
1087extern void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
1088extern void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
1089extern void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
1090extern void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
1091extern void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
1092 Lisp_Object));
1093extern void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object,
1094 Lisp_Object));
1095
1096extern Lisp_Object x_icon_type P_ ((struct frame *));
1097
1098extern int x_figure_window_size P_ ((struct frame *, Lisp_Object, int));
1099
1100
1101extern void validate_x_resource_name P_ ((void));
1102
1103#endif /* HAVE_WINDOW_SYSTEM */
1104
84e01749 1105#endif /* not EMACS_FRAME_H */
6b61353c
KH
1106
1107/* arch-tag: 0df048ee-e6bf-4f48-bd56-e3cd055dd8c4
1108 (do not change this comment) */