* international/mule-diag.el (print-list): Fix 2008-12-03 change.
[bpt/emacs.git] / src / frame.c
CommitLineData
ff11dfa1 1/* Generic frame functions.
0b5538bd 2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
5bbdf7aa 3 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
dc6f92b8
JB
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
dc6f92b8 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
dc6f92b8
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
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
dc6f92b8 19
18160b98 20#include <config.h>
565620a5
RS
21
22#include <stdio.h>
22e64f7c 23#include <ctype.h>
cc38027b 24#include "lisp.h"
83be827a 25#include "character.h"
6d55d620 26#ifdef HAVE_X_WINDOWS
dfcf069d 27#include "xterm.h"
71025e5e 28#endif
8f23f280
AI
29#ifdef WINDOWSNT
30#include "w32term.h"
31#endif
edfda783
AR
32#ifdef HAVE_NS
33#include "nsterm.h"
34#endif
2538fae4
AI
35#include "buffer.h"
36/* These help us bind and responding to switch-frame events. */
37#include "commands.h"
38#include "keyboard.h"
cc38027b 39#include "frame.h"
972f4259 40#include "blockinput.h"
28d440ab 41#include "termchar.h"
bc1ed486 42#include "termhooks.h"
dfcf069d 43#include "dispextern.h"
f769f1b2 44#include "window.h"
e0c8ad78
KH
45#ifdef HAVE_WINDOW_SYSTEM
46#include "font.h"
47#include "fontset.h"
48#endif
87485d6f
MW
49#ifdef MSDOS
50#include "msdos.h"
4aec4b29 51#include "dosfns.h"
87485d6f 52#endif
e5d77022 53
972f4259 54
2731a0ad
KS
55#ifdef HAVE_WINDOW_SYSTEM
56
972f4259
KS
57/* The name we're using in resource queries. Most often "emacs". */
58
59Lisp_Object Vx_resource_name;
60
61/* The application class we're using in resource queries.
62 Normally "Emacs". */
63
64Lisp_Object Vx_resource_class;
65
0a708637
GM
66/* Lower limit value of the frame opacity (alpha transparency). */
67
68Lisp_Object Vframe_alpha_lower_limit;
69
2731a0ad 70#endif
972f4259 71
dc4db71c
CY
72#ifdef HAVE_NS
73Lisp_Object Qns_parse_geometry;
74#endif
75
972f4259
KS
76Lisp_Object Qframep, Qframe_live_p;
77Lisp_Object Qicon, Qmodeline;
fd0c2bd1 78Lisp_Object Qonly;
edfda783 79Lisp_Object Qx, Qw32, Qmac, Qpc, Qns;
f7af3f7b 80Lisp_Object Qvisible;
8b60f7bc 81Lisp_Object Qdisplay_type;
6345f6aa 82Lisp_Object Qbackground_mode;
c53956fe 83Lisp_Object Qnoelisp;
972f4259
KS
84
85Lisp_Object Qx_frame_parameter;
86Lisp_Object Qx_resource_name;
6ed8eeff
KL
87Lisp_Object Qterminal;
88Lisp_Object Qterminal_live_p;
972f4259
KS
89
90/* Frame parameters (set or reported). */
91
92Lisp_Object Qauto_raise, Qauto_lower;
93Lisp_Object Qborder_color, Qborder_width;
94Lisp_Object Qcursor_color, Qcursor_type;
95Lisp_Object Qgeometry; /* Not used */
96Lisp_Object Qheight, Qwidth;
97Lisp_Object Qleft, Qright;
98Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
99Lisp_Object Qinternal_border_width;
100Lisp_Object Qmouse_color;
101Lisp_Object Qminibuffer;
102Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
103Lisp_Object Qvisibility;
104Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
105Lisp_Object Qscreen_gamma;
106Lisp_Object Qline_spacing;
107Lisp_Object Quser_position, Quser_size;
108Lisp_Object Qwait_for_wm;
109Lisp_Object Qwindow_id;
110#ifdef HAVE_X_WINDOWS
111Lisp_Object Qouter_window_id;
112#endif
113Lisp_Object Qparent_id;
114Lisp_Object Qtitle, Qname;
5839d7e8 115Lisp_Object Qexplicit_name;
972f4259
KS
116Lisp_Object Qunsplittable;
117Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
118Lisp_Object Qleft_fringe, Qright_fringe;
a18b8cb5 119Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
94674d18 120Lisp_Object Qtty_color_mode;
28d440ab 121Lisp_Object Qtty, Qtty_type;
dc6f92b8 122
972f4259 123Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
1a356571 124Lisp_Object Qfont_backend;
0a708637 125Lisp_Object Qalpha;
972f4259
KS
126
127Lisp_Object Qface_set_after_frame_default;
128
a249de79 129Lisp_Object Vterminal_frame;
a1aaa23f 130Lisp_Object Vdefault_frame_alist;
6b61353c 131Lisp_Object Vdefault_frame_scroll_bars;
beb0bc36 132Lisp_Object Vmouse_position_function;
6018080f 133Lisp_Object Vmouse_highlight;
58555d81 134static Lisp_Object Vdelete_frame_functions, Qdelete_frame_functions;
da1da002
MR
135
136int focus_follows_mouse;
a249de79
RS
137\f
138static void
139set_menu_bar_lines_1 (window, n)
daf01701
KL
140 Lisp_Object window;
141 int n;
a249de79
RS
142{
143 struct window *w = XWINDOW (window);
144
57aeea1e 145 XSETFASTINT (w->last_modified, 0);
5af5757b
KS
146 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
147 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
177c0ea7 148
5af5757b
KS
149 if (INTEGERP (w->orig_top_line))
150 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
151 if (INTEGERP (w->orig_total_lines))
152 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
a249de79
RS
153
154 /* Handle just the top child in a vertical split. */
155 if (!NILP (w->vchild))
156 set_menu_bar_lines_1 (w->vchild, n);
157
158 /* Adjust all children in a horizontal split. */
159 for (window = w->hchild; !NILP (window); window = w->next)
160 {
161 w = XWINDOW (window);
162 set_menu_bar_lines_1 (window, n);
163 }
164}
165
e48f782c 166void
a249de79
RS
167set_menu_bar_lines (f, value, oldval)
168 struct frame *f;
169 Lisp_Object value, oldval;
170{
171 int nlines;
172 int olines = FRAME_MENU_BAR_LINES (f);
173
174 /* Right now, menu bars don't work properly in minibuf-only frames;
175 most of the commands try to apply themselves to the minibuffer
e3678b64 176 frame itself, and get an error because you can't switch buffers
a249de79
RS
177 in or split the minibuffer window. */
178 if (FRAME_MINIBUF_ONLY_P (f))
179 return;
180
181 if (INTEGERP (value))
182 nlines = XINT (value);
183 else
184 nlines = 0;
185
57aeea1e
RS
186 if (nlines != olines)
187 {
188 windows_or_buffers_changed++;
189 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
190 FRAME_MENU_BAR_LINES (f) = nlines;
191 set_menu_bar_lines_1 (f->root_window, nlines - olines);
18082e2d 192 adjust_glyphs (f);
57aeea1e 193 }
a249de79
RS
194}
195\f
a249de79 196Lisp_Object Vframe_list;
a249de79 197
dc6f92b8
JB
198extern Lisp_Object Vminibuffer_list;
199extern Lisp_Object get_minibuffer ();
84386599
RS
200extern Lisp_Object Fhandle_switch_frame ();
201extern Lisp_Object Fredirect_frame_focus ();
a54d3a73 202extern Lisp_Object x_get_focus_frame ();
dc6f92b8 203\f
ff11dfa1 204DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
14ff1ee0
PJ
205 doc: /* Return non-nil if OBJECT is a frame.
206Value is t for a termcap frame (a character-only terminal),
207`x' for an Emacs frame that is really an X window,
208`w32' for an Emacs frame that is a window on MS-Windows display,
edfda783 209`ns' for an Emacs frame on a GNUstep or Macintosh Cocoa display,
14ff1ee0
PJ
210`pc' for a direct-write MS-DOS frame.
211See also `frame-live-p'. */)
212 (object)
f9898cc6 213 Lisp_Object object;
dc6f92b8 214{
e35d291d 215 if (!FRAMEP (object))
dc6f92b8 216 return Qnil;
ff11dfa1 217 switch (XFRAME (object)->output_method)
dc6f92b8 218 {
3224dac1 219 case output_initial: /* The initial frame is like a termcap frame. */
dc6f92b8
JB
220 case output_termcap:
221 return Qt;
222 case output_x_window:
fd0c2bd1 223 return Qx;
fbd6baed
GV
224 case output_w32:
225 return Qw32;
bb221971
RS
226 case output_msdos_raw:
227 return Qpc;
574a1a90
RS
228 case output_mac:
229 return Qmac;
edfda783
AR
230 case output_ns:
231 return Qns;
dc6f92b8
JB
232 default:
233 abort ();
234 }
235}
236
dbc4e1c1 237DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
14ff1ee0
PJ
238 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
239Value is nil if OBJECT is not a live frame. If object is a live
6ed8eeff 240frame, the return value indicates what sort of terminal device it is
f6fa0866 241displayed on. See the documentation of `framep' for possible
4e10df59 242return values. */)
14ff1ee0 243 (object)
f9898cc6
JB
244 Lisp_Object object;
245{
ff11dfa1
JB
246 return ((FRAMEP (object)
247 && FRAME_LIVE_P (XFRAME (object)))
248 ? Fframep (object)
f9898cc6
JB
249 : Qnil);
250}
251
428a555e
KL
252DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
253 doc: /* The name of the window system that FRAME is displaying through.
254The value is a symbol---for instance, 'x' for X windows.
255The value is nil if Emacs is using a text-only terminal.
256
257FRAME defaults to the currently selected frame. */)
258 (frame)
259 Lisp_Object frame;
260{
261 Lisp_Object type;
262 if (NILP (frame))
263 frame = selected_frame;
264
265 type = Fframep (frame);
266
267 if (NILP (type))
268 wrong_type_argument (Qframep, frame);
269
270 if (EQ (type, Qt))
271 return Qnil;
272 else
273 return type;
a3547743 274}
428a555e 275
ff11dfa1
JB
276struct frame *
277make_frame (mini_p)
dc6f92b8
JB
278 int mini_p;
279{
ff11dfa1
JB
280 Lisp_Object frame;
281 register struct frame *f;
dc6f92b8
JB
282 register Lisp_Object root_window;
283 register Lisp_Object mini_window;
e9c96c62
GM
284
285 f = allocate_frame ();
36af7d69 286 XSETFRAME (frame, f);
ff11dfa1 287
18082e2d
GM
288 f->desired_matrix = 0;
289 f->current_matrix = 0;
290 f->desired_pool = 0;
291 f->current_pool = 0;
292 f->glyphs_initialized_p = 0;
293 f->decode_mode_spec_buffer = 0;
ff11dfa1 294 f->visible = 0;
323405de 295 f->async_visible = 0;
7556890b 296 f->output_data.nothing = 0;
ff11dfa1 297 f->iconified = 0;
323405de 298 f->async_iconified = 0;
ff11dfa1
JB
299 f->wants_modeline = 1;
300 f->auto_raise = 0;
301 f->auto_lower = 0;
302 f->no_split = 0;
10689a01 303 f->garbaged = 1;
ff11dfa1 304 f->has_minibuffer = mini_p;
a42e9724 305 f->focus_frame = Qnil;
804518aa 306 f->explicit_name = 0;
fd2777e0 307 f->can_have_scroll_bars = 0;
3a43d2dd 308 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
ff11dfa1 309 f->param_alist = Qnil;
fd2777e0
JB
310 f->scroll_bars = Qnil;
311 f->condemned_scroll_bars = Qnil;
306cc902 312 f->face_alist = Qnil;
18082e2d 313 f->face_cache = NULL;
9dd935ee 314 f->menu_bar_items = Qnil;
c8b8e7e3
RS
315 f->menu_bar_vector = Qnil;
316 f->menu_bar_items_used = 0;
329ca574 317 f->buffer_predicate = Qnil;
fa54c6ae 318 f->buffer_list = Qnil;
a18b8cb5 319 f->buried_buffer_list = Qnil;
aec6e486 320 f->namebuf = 0;
2b1c9cfb 321 f->title = Qnil;
18082e2d 322 f->menu_bar_window = Qnil;
9ea173e8 323 f->tool_bar_window = Qnil;
61752261 324 f->tool_bar_items = Qnil;
9ea173e8 325 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
61752261 326 f->n_tool_bar_items = 0;
5af5757b
KS
327 f->left_fringe_width = f->right_fringe_width = 0;
328 f->fringe_cols = 0;
329 f->scroll_bar_actual_width = 0;
330 f->border_width = 0;
331 f->internal_border_width = 0;
332 f->column_width = 1; /* !FRAME_WINDOW_P value */
333 f->line_height = 1; /* !FRAME_WINDOW_P value */
334 f->x_pixels_diff = f->y_pixels_diff = 0;
93421a1f 335#ifdef HAVE_WINDOW_SYSTEM
5af5757b 336 f->want_fullscreen = FULLSCREEN_NONE;
93421a1f 337#endif
5af5757b
KS
338 f->size_hint_flags = 0;
339 f->win_gravity = 0;
698ca23e 340 f->font_driver_list = NULL;
50e3873c 341 f->font_data_list = NULL;
dc6f92b8 342
cc38027b 343 root_window = make_window ();
dc6f92b8
JB
344 if (mini_p)
345 {
cc38027b 346 mini_window = make_window ();
dc6f92b8
JB
347 XWINDOW (root_window)->next = mini_window;
348 XWINDOW (mini_window)->prev = root_window;
349 XWINDOW (mini_window)->mini_p = Qt;
ff11dfa1
JB
350 XWINDOW (mini_window)->frame = frame;
351 f->minibuffer_window = mini_window;
dc6f92b8
JB
352 }
353 else
354 {
355 mini_window = Qnil;
356 XWINDOW (root_window)->next = Qnil;
ff11dfa1 357 f->minibuffer_window = Qnil;
dc6f92b8
JB
358 }
359
ff11dfa1 360 XWINDOW (root_window)->frame = frame;
dc6f92b8
JB
361
362 /* 10 is arbitrary,
363 just so that there is "something there."
ff11dfa1 364 Correct size will be set up later with change_frame_size. */
dc6f92b8 365
5af5757b
KS
366 SET_FRAME_COLS (f, 10);
367 FRAME_LINES (f) = 10;
dc6f92b8 368
5af5757b
KS
369 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
370 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
dc6f92b8
JB
371
372 if (mini_p)
373 {
5af5757b
KS
374 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
375 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
376 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
dc6f92b8
JB
377 }
378
ff11dfa1 379 /* Choose a buffer for the frame's root window. */
5bce042c
JB
380 {
381 Lisp_Object buf;
382
383 XWINDOW (root_window)->buffer = Qt;
384 buf = Fcurrent_buffer ();
385 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
386 a space), try to find another one. */
d5db4077 387 if (SREF (Fbuffer_name (buf), 0) == ' ')
98ce1622 388 buf = Fother_buffer (buf, Qnil, Qnil);
fa54c6ae 389
18082e2d
GM
390 /* Use set_window_buffer, not Fset_window_buffer, and don't let
391 hooks be run by it. The reason is that the whole frame/window
392 arrangement is not yet fully intialized at this point. Windows
393 don't have the right size, glyph matrices aren't initialized
394 etc. Running Lisp functions at this point surely ends in a
395 SEGV. */
5af5757b 396 set_window_buffer (root_window, buf, 0, 0);
fa54c6ae 397 f->buffer_list = Fcons (buf, Qnil);
5bce042c
JB
398 }
399
dc6f92b8
JB
400 if (mini_p)
401 {
402 XWINDOW (mini_window)->buffer = Qt;
18082e2d
GM
403 set_window_buffer (mini_window,
404 (NILP (Vminibuffer_list)
405 ? get_minibuffer (0)
406 : Fcar (Vminibuffer_list)),
5af5757b 407 0, 0);
dc6f92b8
JB
408 }
409
ff11dfa1
JB
410 f->root_window = root_window;
411 f->selected_window = root_window;
d5e7c279
JB
412 /* Make sure this window seems more recently used than
413 a newly-created, never-selected window. */
2a1893f4
SM
414 ++window_select_count;
415 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
dc6f92b8 416
a5f696ac
JD
417 f->default_face_done_p = 0;
418
ff11dfa1 419 return f;
dc6f92b8
JB
420}
421\f
bba88bb1 422#ifdef HAVE_WINDOW_SYSTEM
ff11dfa1 423/* Make a frame using a separate minibuffer window on another frame.
dc6f92b8
JB
424 MINI_WINDOW is the minibuffer window to use. nil means use the
425 default (the global minibuffer). */
426
ff11dfa1 427struct frame *
b0660239 428make_frame_without_minibuffer (mini_window, kb, display)
dc6f92b8 429 register Lisp_Object mini_window;
662ac59a 430 KBOARD *kb;
b0660239 431 Lisp_Object display;
dc6f92b8 432{
ff11dfa1 433 register struct frame *f;
363b873b 434 struct gcpro gcpro1;
dc6f92b8 435
b0660239 436 if (!NILP (mini_window))
b7826503 437 CHECK_LIVE_WINDOW (mini_window);
dc6f92b8 438
b0660239 439 if (!NILP (mini_window)
6ed8eeff
KL
440 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
441 error ("Frame and minibuffer must be on the same terminal");
662ac59a 442
ff11dfa1
JB
443 /* Make a frame containing just a root window. */
444 f = make_frame (0);
dc6f92b8 445
b0660239
KH
446 if (NILP (mini_window))
447 {
448 /* Use default-minibuffer-frame if possible. */
449 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
450 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
451 {
363b873b
RS
452 Lisp_Object frame_dummy;
453
454 XSETFRAME (frame_dummy, f);
455 GCPRO1 (frame_dummy);
b0660239 456 /* If there's no minibuffer frame to use, create one. */
363b873b
RS
457 kb->Vdefault_minibuffer_frame =
458 call1 (intern ("make-initial-minibuffer-frame"), display);
459 UNGCPRO;
b0660239 460 }
177c0ea7 461
b0660239
KH
462 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
463 }
a2812a26 464
ff11dfa1 465 f->minibuffer_window = mini_window;
a2812a26
RS
466
467 /* Make the chosen minibuffer window display the proper minibuffer,
468 unless it is already showing a minibuffer. */
469 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
470 Fset_window_buffer (mini_window,
471 (NILP (Vminibuffer_list)
472 ? get_minibuffer (0)
5af5757b 473 : Fcar (Vminibuffer_list)), Qnil);
ff11dfa1 474 return f;
dc6f92b8
JB
475}
476
ff11dfa1 477/* Make a frame containing only a minibuffer window. */
dc6f92b8 478
ff11dfa1
JB
479struct frame *
480make_minibuffer_frame ()
dc6f92b8 481{
ff11dfa1 482 /* First make a frame containing just a root window, no minibuffer. */
dc6f92b8 483
ff11dfa1 484 register struct frame *f = make_frame (0);
dc6f92b8 485 register Lisp_Object mini_window;
ff11dfa1 486 register Lisp_Object frame;
dc6f92b8 487
2d80a27a 488 XSETFRAME (frame, f);
dc6f92b8 489
804518aa 490 f->auto_raise = 0;
ff11dfa1
JB
491 f->auto_lower = 0;
492 f->no_split = 1;
493 f->wants_modeline = 0;
494 f->has_minibuffer = 1;
dc6f92b8
JB
495
496 /* Now label the root window as also being the minibuffer.
497 Avoid infinite looping on the window chain by marking next pointer
498 as nil. */
499
ff11dfa1 500 mini_window = f->minibuffer_window = f->root_window;
dc6f92b8
JB
501 XWINDOW (mini_window)->mini_p = Qt;
502 XWINDOW (mini_window)->next = Qnil;
804518aa 503 XWINDOW (mini_window)->prev = Qnil;
ff11dfa1 504 XWINDOW (mini_window)->frame = frame;
dc6f92b8
JB
505
506 /* Put the proper buffer in that window. */
507
508 Fset_window_buffer (mini_window,
265a9e55 509 (NILP (Vminibuffer_list)
dc6f92b8 510 ? get_minibuffer (0)
5af5757b 511 : Fcar (Vminibuffer_list)), Qnil);
ff11dfa1 512 return f;
dc6f92b8 513}
bba88bb1 514#endif /* HAVE_WINDOW_SYSTEM */
dc6f92b8 515\f
28d440ab 516/* Construct a frame that refers to a terminal. */
dc6f92b8 517
6ed8eeff 518static int tty_frame_count;
bb1513c9 519
ff11dfa1 520struct frame *
3224dac1 521make_initial_frame (void)
dc6f92b8 522{
3224dac1 523 struct frame *f;
6ed8eeff 524 struct terminal *terminal;
d063751a 525 Lisp_Object frame;
bb1513c9 526
1bc973c2 527 eassert (initial_kboard);
b4f0ee5d 528
bb1513c9
RS
529 /* The first call must initialize Vframe_list. */
530 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
531 Vframe_list = Qnil;
ff11dfa1 532
6ed8eeff 533 terminal = init_initial_terminal ();
3224dac1
KL
534
535 f = make_frame (1);
536 XSETFRAME (frame, f);
537
538 Vframe_list = Fcons (frame, Vframe_list);
539
6ed8eeff 540 tty_frame_count = 1;
3224dac1
KL
541 f->name = build_string ("F1");
542
543 f->visible = 1;
544 f->async_visible = 1;
545
6ed8eeff
KL
546 f->output_method = terminal->type;
547 f->terminal = terminal;
548 f->terminal->reference_count++;
3224dac1 549 f->output_data.nothing = 0;
a3547743 550
3224dac1
KL
551 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
552 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
a3547743 553
3224dac1
KL
554 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
555 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
556
edfda783
AR
557#ifdef CANNOT_DUMP
558 if (!noninteractive)
559 init_frame_faces (f);
560#endif
561
3224dac1
KL
562 return f;
563}
564
565
566struct frame *
6ed8eeff 567make_terminal_frame (struct terminal *terminal)
3224dac1
KL
568{
569 register struct frame *f;
3224dac1
KL
570 Lisp_Object frame;
571 char name[20];
ab797f65 572
4e213843
SM
573 if (!terminal->name)
574 error ("Terminal is not live, can't create new frames on it");
ab797f65 575
ff11dfa1 576 f = make_frame (1);
d063751a 577
2d80a27a 578 XSETFRAME (frame, f);
d063751a
RS
579 Vframe_list = Fcons (frame, Vframe_list);
580
6ed8eeff
KL
581 tty_frame_count++;
582 sprintf (name, "F%d", tty_frame_count);
0303e8da 583 f->name = build_string (name);
bb1513c9 584
bb1513c9
RS
585 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
586 f->async_visible = 1; /* Don't let visible be cleared later. */
1266f9ef
EZ
587 f->terminal = terminal;
588 f->terminal->reference_count++;
bb221971 589#ifdef MSDOS
99dda2cd 590 f->output_data.tty->display_info = &the_only_display_info;
2d764c78
EZ
591 if (!inhibit_window_system
592 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
593 || XFRAME (selected_frame)->output_method == output_msdos_raw))
02ab7130 594 f->output_method = output_msdos_raw;
2d764c78
EZ
595 else
596 f->output_method = output_termcap;
5bbdf7aa
DN
597#else /* not MSDOS */
598 f->output_method = output_termcap;
599 create_tty_output (f);
600 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
601 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
602#endif /* not MSDOS */
574a1a90 603
1266f9ef
EZ
604 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
605 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
606
607 /* Set the top frame to the newly created frame. */
608 if (FRAMEP (FRAME_TTY (f)->top_frame)
609 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
610 XFRAME (FRAME_TTY (f)->top_frame)->async_visible = 2; /* obscured */
611
612 FRAME_TTY (f)->top_frame = frame;
613
1a6d3623
EZ
614 if (!noninteractive)
615 init_frame_faces (f);
1a578e9b 616
ff11dfa1 617 return f;
dc6f92b8 618}
bb1513c9 619
ed8dad6b
KL
620/* Get a suitable value for frame parameter PARAMETER for a newly
621 created frame, based on (1) the user-supplied frame parameter
622 alist SUPPLIED_PARMS, (2) CURRENT_VALUE, and finally, if all else
623 fails, (3) Vdefault_frame_alist. */
624
625static Lisp_Object
626get_future_frame_param (Lisp_Object parameter,
627 Lisp_Object supplied_parms,
628 char *current_value)
629{
630 Lisp_Object result;
631
632 result = Fassq (parameter, supplied_parms);
633 if (NILP (result))
634 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
635 if (NILP (result) && current_value != NULL)
636 result = build_string (current_value);
637 if (NILP (result))
638 result = Fassq (parameter, Vdefault_frame_alist);
639 if (!NILP (result) && !STRINGP (result))
640 result = XCDR (result);
641 if (NILP (result) || !STRINGP (result))
642 result = Qnil;
643
644 return result;
645}
646
bb1513c9 647DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
14ff1ee0 648 1, 1, 0,
28d440ab 649 doc: /* Create an additional terminal frame, possibly on another terminal.
14ff1ee0 650This function takes one argument, an alist specifying frame parameters.
28d440ab
KL
651
652You can create multiple frames on a single text-only terminal, but
653only one of them (the selected terminal frame) is actually displayed.
654
655In practice, generally you don't need to specify any parameters,
656except when you want to create a new frame on another terminal.
657In that case, the `tty' parameter specifies the device file to open,
658and the `tty-type' parameter specifies the terminal type. Example:
659
660 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
661
0b0d3e0b
KL
662Note that changing the size of one terminal frame automatically
663affects all frames on the same terminal device. */)
14ff1ee0 664 (parms)
bb1513c9
RS
665 Lisp_Object parms;
666{
667 struct frame *f;
6ed8eeff 668 struct terminal *t = NULL;
574a1a90 669 Lisp_Object frame, tem;
8d2666fe 670 struct frame *sf = SELECTED_FRAME ();
bb1513c9 671
541580aa 672#ifdef MSDOS
2d764c78
EZ
673 if (sf->output_method != output_msdos_raw
674 && sf->output_method != output_termcap)
bb221971 675 abort ();
574a1a90
RS
676#else /* not MSDOS */
677
99b72cc4 678#ifdef WINDOWSNT /* This should work now! */
8d2666fe 679 if (sf->output_method != output_termcap)
bb1513c9 680 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
bb221971 681#endif
574a1a90 682#endif /* not MSDOS */
a3547743 683
b6660415 684 {
6ed8eeff 685 Lisp_Object terminal;
bb1513c9 686
6ed8eeff
KL
687 terminal = Fassq (Qterminal, parms);
688 if (!NILP (terminal))
28d440ab 689 {
6ed8eeff
KL
690 terminal = XCDR (terminal);
691 t = get_terminal (terminal, 1);
28d440ab 692 }
1266f9ef
EZ
693#ifdef MSDOS
694 if (t && t != the_only_display_info.terminal)
695 /* msdos.c assumes a single tty_display_info object. */
696 error ("Multiple terminals are not supported on this platform");
697 if (!t)
698 t = the_only_display_info.terminal;
699#endif
28d440ab 700 }
a3547743 701
6ed8eeff 702 if (!t)
a3547743 703 {
b6660415 704 char *name = 0, *type = 0;
ed8dad6b 705 Lisp_Object tty, tty_type;
b6660415 706
ed8dad6b
KL
707 tty = get_future_frame_param
708 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
709 ? FRAME_TTY (XFRAME (selected_frame))->name
710 : NULL));
711 if (!NILP (tty))
b6660415
KL
712 {
713 name = (char *) alloca (SBYTES (tty) + 1);
714 strncpy (name, SDATA (tty), SBYTES (tty));
715 name[SBYTES (tty)] = 0;
716 }
a3547743 717
ed8dad6b
KL
718 tty_type = get_future_frame_param
719 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
720 ? FRAME_TTY (XFRAME (selected_frame))->type
721 : NULL));
722 if (!NILP (tty_type))
b6660415
KL
723 {
724 type = (char *) alloca (SBYTES (tty_type) + 1);
725 strncpy (type, SDATA (tty_type), SBYTES (tty_type));
726 type[SBYTES (tty_type)] = 0;
727 }
728
6ed8eeff 729 t = init_tty (name, type, 0); /* Errors are not fatal. */
b6660415 730 }
bb1513c9 731
6ed8eeff 732 f = make_terminal_frame (t);
574a1a90 733
9628b887
KL
734 {
735 int width, height;
0b0d3e0b 736 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
9628b887
KL
737 change_frame_size (f, height, width, 0, 0, 0);
738 }
a3547743 739
18082e2d 740 adjust_glyphs (f);
bb1513c9
RS
741 calculate_costs (f);
742 XSETFRAME (frame, f);
8adfc1ec 743 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
bb1513c9 744 Fmodify_frame_parameters (frame, parms);
ed8dad6b 745 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty_type,
6ed8eeff 746 build_string (t->display_info.tty->type)),
ed8dad6b 747 Qnil));
db9d7d9a
KL
748 if (t->display_info.tty->name != NULL)
749 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty,
750 build_string (t->display_info.tty->name)),
751 Qnil));
752 else
753 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty, Qnil), Qnil));
a3547743 754
87f1940e
EZ
755 /* Make the frame face alist be frame-specific, so that each
756 frame could change its face definitions independently. */
8d2666fe 757 f->face_alist = Fcopy_alist (sf->face_alist);
87f1940e
EZ
758 /* Simple Fcopy_alist isn't enough, because we need the contents of
759 the vectors which are the CDRs of associations in face_alist to
760 be copied as well. */
761 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
f3fbd155 762 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
bb1513c9
RS
763 return frame;
764}
1e8324d9 765
dc6f92b8 766\f
1e8324d9
GM
767/* Perform the switch to frame FRAME.
768
769 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
770 FRAME1 as frame.
771
772 If TRACK is non-zero and the frame that currently has the focus
773 redirects its focus to the selected frame, redirect that focused
774 frame's focus to FRAME instead.
775
776 FOR_DELETION non-zero means that the selected frame is being
6ed8eeff 777 deleted, which includes the possibility that the frame's terminal
216e6a14
MR
778 is dead.
779
780 The value of NORECORD is passed as argument to Fselect_window. */
1e8324d9 781
61f94483 782Lisp_Object
216e6a14
MR
783do_switch_frame (frame, track, for_deletion, norecord)
784 Lisp_Object frame, norecord;
1e8324d9 785 int track, for_deletion;
dc6f92b8 786{
8d2666fe 787 struct frame *sf = SELECTED_FRAME ();
177c0ea7 788
2f0b07e0
JB
789 /* If FRAME is a switch-frame event, extract the frame we should
790 switch to. */
791 if (CONSP (frame)
7539e11f
KR
792 && EQ (XCAR (frame), Qswitch_frame)
793 && CONSP (XCDR (frame)))
794 frame = XCAR (XCDR (frame));
2f0b07e0 795
09907c3a
KH
796 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
797 a switch-frame event to arrive after a frame is no longer live,
798 especially when deleting the initial frame during startup. */
b7826503 799 CHECK_FRAME (frame);
09907c3a
KH
800 if (! FRAME_LIVE_P (XFRAME (frame)))
801 return Qnil;
dc6f92b8 802
8d2666fe 803 if (sf == XFRAME (frame))
ff11dfa1 804 return frame;
dc6f92b8 805
0aed85f4
KH
806 /* This is too greedy; it causes inappropriate focus redirection
807 that's hard to get rid of. */
808#if 0
a42e9724
JB
809 /* If a frame's focus has been redirected toward the currently
810 selected frame, we should change the redirection to point to the
811 newly selected frame. This means that if the focus is redirected
812 from a minibufferless frame to a surrogate minibuffer frame, we
813 can use `other-window' to switch between all the frames using
814 that minibuffer frame, and the focus redirection will follow us
815 around. */
0aed85f4
KH
816 if (track)
817 {
818 Lisp_Object tail;
a42e9724 819
7539e11f 820 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
0aed85f4
KH
821 {
822 Lisp_Object focus;
a42e9724 823
7539e11f 824 if (!FRAMEP (XCAR (tail)))
0aed85f4 825 abort ();
a42e9724 826
7539e11f 827 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
a42e9724 828
8d2666fe 829 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
7539e11f 830 Fredirect_frame_focus (XCAR (tail), frame);
0aed85f4
KH
831 }
832 }
833#else /* ! 0 */
834 /* Instead, apply it only to the frame we're pointing to. */
032d78fe 835#ifdef HAVE_WINDOW_SYSTEM
1e8324d9 836 if (track && FRAME_WINDOW_P (XFRAME (frame)))
0aed85f4
KH
837 {
838 Lisp_Object focus, xfocus;
839
d7266360 840 xfocus = x_get_focus_frame (XFRAME (frame));
0aed85f4
KH
841 if (FRAMEP (xfocus))
842 {
843 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
8d2666fe 844 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
0aed85f4
KH
845 Fredirect_frame_focus (xfocus, frame);
846 }
847 }
848#endif /* HAVE_X_WINDOWS */
849#endif /* ! 0 */
a42e9724 850
1e8324d9 851 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
550f0e6a
GM
852 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
853
a4e628d4 854 if (FRAME_TERMCAP_P (XFRAME (frame)) || FRAME_MSDOS_P (XFRAME (frame)))
9628b887 855 {
9b2cd403
SM
856 if (FRAMEP (FRAME_TTY (XFRAME (frame))->top_frame))
857 /* Mark previously displayed frame as now obscured. */
858 XFRAME (FRAME_TTY (XFRAME (frame))->top_frame)->async_visible = 2;
9628b887
KL
859 XFRAME (frame)->async_visible = 1;
860 FRAME_TTY (XFRAME (frame))->top_frame = frame;
861 }
862
8d2666fe
GM
863 selected_frame = frame;
864 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
865 last_nonminibuf_frame = XFRAME (selected_frame);
d5e7c279 866
216e6a14 867 Fselect_window (XFRAME (frame)->selected_window, norecord);
dc6f92b8 868
edfda783
AR
869#ifdef NS_IMPL_COCOA
870 /* term gets no other notification of this */
871 if (for_deletion)
872 Fraise_frame(Qnil);
873#endif
874
074577b8 875 /* We want to make sure that the next event generates a frame-switch
eb8c3be9 876 event to the appropriate frame. This seems kludgy to me, but
074577b8
JB
877 before you take it out, make sure that evaluating something like
878 (select-window (frame-root-window (new-frame))) doesn't end up
879 with your typing being interpreted in the new frame instead of
880 the one you're actually typing in. */
ef352596 881 internal_last_event_frame = Qnil;
074577b8 882
ff11dfa1 883 return frame;
dc6f92b8
JB
884}
885
216e6a14
MR
886DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
887 doc: /* Select FRAME.
14ff1ee0 888Subsequent editing commands apply to its selected window.
216e6a14
MR
889Optional argument NORECORD means to neither change the order of
890recently selected windows nor the buffer list.
891
14ff1ee0 892The selection of FRAME lasts until the next time the user does
216e6a14
MR
893something to select a different frame, or until the next time
894this function is called. If you are using a window system, the
895previously selected frame may be restored as the selected frame
896after return to the command loop, because it still may have the
897window system's input focus. On a text-only terminal, the next
898redisplay will display FRAME.
e4ed805e
LT
899
900This function returns FRAME, or nil if FRAME has been deleted. */)
216e6a14
MR
901 (frame, norecord)
902 Lisp_Object frame, norecord;
0aed85f4 903{
216e6a14 904 return do_switch_frame (frame, 1, 0, norecord);
0aed85f4
KH
905}
906
907
20dc6fbb 908DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
14ff1ee0
PJ
909 doc: /* Handle a switch-frame event EVENT.
910Switch-frame events are usually bound to this function.
911A switch-frame event tells Emacs that the window manager has requested
912that the user's events be directed to the frame mentioned in the event.
913This function selects the selected window of the frame of EVENT.
914
915If EVENT is frame object, handle it as if it were a switch-frame event
916to that frame. */)
20dc6fbb
LT
917 (event)
918 Lisp_Object event;
0aed85f4 919{
6951cd71
KH
920 /* Preserve prefix arg that the command loop just cleared. */
921 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
e05169e2 922 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
216e6a14 923 return do_switch_frame (event, 0, 0, Qnil);
0aed85f4
KH
924}
925
ff11dfa1 926DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
14ff1ee0
PJ
927 doc: /* Return the frame that is now selected. */)
928 ()
dc6f92b8 929{
8d2666fe 930 return selected_frame;
dc6f92b8 931}
4a7cfafc 932\f
ff11dfa1 933DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
14ff1ee0
PJ
934 doc: /* Return the frame object that window WINDOW is on. */)
935 (window)
dc6f92b8
JB
936 Lisp_Object window;
937{
b7826503 938 CHECK_LIVE_WINDOW (window);
ff11dfa1 939 return XWINDOW (window)->frame;
dc6f92b8
JB
940}
941
ba32f2db 942DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
14ff1ee0
PJ
943 doc: /* Returns the topmost, leftmost window of FRAME.
944If omitted, FRAME defaults to the currently selected frame. */)
945 (frame)
ba32f2db
KH
946 Lisp_Object frame;
947{
948 Lisp_Object w;
949
950 if (NILP (frame))
8d2666fe 951 w = SELECTED_FRAME ()->root_window;
ba32f2db
KH
952 else
953 {
b7826503 954 CHECK_LIVE_FRAME (frame);
ba32f2db
KH
955 w = XFRAME (frame)->root_window;
956 }
957 while (NILP (XWINDOW (w)->buffer))
958 {
959 if (! NILP (XWINDOW (w)->hchild))
960 w = XWINDOW (w)->hchild;
961 else if (! NILP (XWINDOW (w)->vchild))
962 w = XWINDOW (w)->vchild;
963 else
964 abort ();
965 }
966 return w;
967}
968
5add3885
RS
969DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
970 Sactive_minibuffer_window, 0, 0, 0,
14ff1ee0
PJ
971 doc: /* Return the currently active minibuffer window, or nil if none. */)
972 ()
5add3885
RS
973{
974 return minibuf_level ? minibuf_window : Qnil;
975}
976
ff11dfa1 977DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
14ff1ee0
PJ
978 doc: /* Returns the root-window of FRAME.
979If omitted, FRAME defaults to the currently selected frame. */)
980 (frame)
ff11dfa1 981 Lisp_Object frame;
dc6f92b8 982{
8d2666fe 983 Lisp_Object window;
177c0ea7 984
ff11dfa1 985 if (NILP (frame))
8d2666fe 986 window = SELECTED_FRAME ()->root_window;
f9898cc6 987 else
8d2666fe 988 {
b7826503 989 CHECK_LIVE_FRAME (frame);
8d2666fe
GM
990 window = XFRAME (frame)->root_window;
991 }
177c0ea7 992
8d2666fe 993 return window;
dc6f92b8
JB
994}
995
ff11dfa1
JB
996DEFUN ("frame-selected-window", Fframe_selected_window,
997 Sframe_selected_window, 0, 1, 0,
216e6a14
MR
998 doc: /* Return the selected window of FRAME.
999FRAME defaults to the currently selected frame. */)
14ff1ee0 1000 (frame)
ff11dfa1 1001 Lisp_Object frame;
dc6f92b8 1002{
8d2666fe 1003 Lisp_Object window;
177c0ea7 1004
ff11dfa1 1005 if (NILP (frame))
8d2666fe 1006 window = SELECTED_FRAME ()->selected_window;
f9898cc6 1007 else
8d2666fe 1008 {
b7826503 1009 CHECK_LIVE_FRAME (frame);
8d2666fe
GM
1010 window = XFRAME (frame)->selected_window;
1011 }
dc6f92b8 1012
8d2666fe 1013 return window;
dc6f92b8
JB
1014}
1015
4a7cfafc 1016DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
216e6a14
MR
1017 Sset_frame_selected_window, 2, 3, 0,
1018 doc: /* Set selected window of FRAME to WINDOW.
1019If FRAME is nil, use the selected frame. If FRAME is the
1020selected frame, this makes WINDOW the selected window.
1021Optional argument NORECORD non-nil means to neither change the
1022order of recently selected windows nor the buffer list.
1023Return WINDOW. */)
1024 (frame, window, norecord)
1025 Lisp_Object frame, window, norecord;
4a7cfafc
RS
1026{
1027 if (NILP (frame))
8d2666fe 1028 frame = selected_frame;
177c0ea7 1029
b7826503
PJ
1030 CHECK_LIVE_FRAME (frame);
1031 CHECK_LIVE_WINDOW (window);
4a7cfafc
RS
1032
1033 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
1034 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
1035
8d2666fe 1036 if (EQ (frame, selected_frame))
216e6a14 1037 return Fselect_window (window, norecord);
4a7cfafc
RS
1038
1039 return XFRAME (frame)->selected_window = window;
1040}
b6660415 1041
4a7cfafc 1042\f
ff11dfa1 1043DEFUN ("frame-list", Fframe_list, Sframe_list,
dc6f92b8 1044 0, 0, 0,
14ff1ee0
PJ
1045 doc: /* Return a list of all frames. */)
1046 ()
dc6f92b8 1047{
d74c1900
GM
1048 Lisp_Object frames;
1049 frames = Fcopy_sequence (Vframe_list);
6a65b1b5 1050#ifdef HAVE_WINDOW_SYSTEM
d74c1900
GM
1051 if (FRAMEP (tip_frame))
1052 frames = Fdelq (tip_frame, frames);
6a65b1b5 1053#endif
d74c1900 1054 return frames;
dc6f92b8
JB
1055}
1056
ff11dfa1 1057/* Return the next frame in the frame list after FRAME.
ff11dfa1 1058 If MINIBUF is nil, exclude minibuffer-only frames.
a9986780
RS
1059 If MINIBUF is a window, include only its own frame
1060 and any frame now using that window as the minibuffer.
f7af3f7b 1061 If MINIBUF is `visible', include all visible frames.
a9986780 1062 If MINIBUF is 0, include all visible and iconified frames.
f7af3f7b
RS
1063 Otherwise, include all frames. */
1064
66a9dbbe 1065static Lisp_Object
ff11dfa1
JB
1066next_frame (frame, minibuf)
1067 Lisp_Object frame;
f9898cc6 1068 Lisp_Object minibuf;
dc6f92b8
JB
1069{
1070 Lisp_Object tail;
1071 int passed = 0;
1072
ff11dfa1
JB
1073 /* There must always be at least one frame in Vframe_list. */
1074 if (! CONSP (Vframe_list))
f9898cc6
JB
1075 abort ();
1076
dbc4e1c1
JB
1077 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
1078 forever. Forestall that. */
b7826503 1079 CHECK_LIVE_FRAME (frame);
dbc4e1c1 1080
dc6f92b8 1081 while (1)
7539e11f 1082 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
dc6f92b8 1083 {
ab9f008d 1084 Lisp_Object f;
d06a8a56 1085
7539e11f 1086 f = XCAR (tail);
06537cc8
RS
1087
1088 if (passed
9628b887
KL
1089 && ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1090 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1091 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1092 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame)))))
d5e7c279 1093 {
d06a8a56
JB
1094 /* Decide whether this frame is eligible to be returned. */
1095
1096 /* If we've looped all the way around without finding any
1097 eligible frames, return the original frame. */
1098 if (EQ (f, frame))
1099 return f;
1100
1101 /* Let minibuf decide if this frame is acceptable. */
1102 if (NILP (minibuf))
1103 {
1104 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1105 return f;
1106 }
f7af3f7b
RS
1107 else if (EQ (minibuf, Qvisible))
1108 {
1109 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1110 if (FRAME_VISIBLE_P (XFRAME (f)))
1111 return f;
1112 }
3780bc22 1113 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
a9986780
RS
1114 {
1115 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1116 if (FRAME_VISIBLE_P (XFRAME (f))
1117 || FRAME_ICONIFIED_P (XFRAME (f)))
1118 return f;
1119 }
f7af3f7b 1120 else if (WINDOWP (minibuf))
d06a8a56 1121 {
a9986780 1122 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
551645f8
GM
1123 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1124 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1125 FRAME_FOCUS_FRAME (XFRAME (f))))
d06a8a56
JB
1126 return f;
1127 }
1128 else
ff11dfa1 1129 return f;
d5e7c279 1130 }
dc6f92b8 1131
d06a8a56 1132 if (EQ (frame, f))
dc6f92b8
JB
1133 passed++;
1134 }
1135}
1136
ff11dfa1 1137/* Return the previous frame in the frame list before FRAME.
ff11dfa1 1138 If MINIBUF is nil, exclude minibuffer-only frames.
a9986780
RS
1139 If MINIBUF is a window, include only its own frame
1140 and any frame now using that window as the minibuffer.
f7af3f7b 1141 If MINIBUF is `visible', include all visible frames.
a9986780 1142 If MINIBUF is 0, include all visible and iconified frames.
f7af3f7b
RS
1143 Otherwise, include all frames. */
1144
66a9dbbe 1145static Lisp_Object
ff11dfa1
JB
1146prev_frame (frame, minibuf)
1147 Lisp_Object frame;
f9898cc6 1148 Lisp_Object minibuf;
dc6f92b8
JB
1149{
1150 Lisp_Object tail;
1151 Lisp_Object prev;
1152
ff11dfa1
JB
1153 /* There must always be at least one frame in Vframe_list. */
1154 if (! CONSP (Vframe_list))
f9898cc6
JB
1155 abort ();
1156
dc6f92b8 1157 prev = Qnil;
7539e11f 1158 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
f9898cc6 1159 {
ab9f008d 1160 Lisp_Object f;
f9898cc6 1161
7539e11f 1162 f = XCAR (tail);
e35d291d 1163 if (!FRAMEP (f))
d06a8a56 1164 abort ();
f9898cc6 1165
d06a8a56
JB
1166 if (EQ (frame, f) && !NILP (prev))
1167 return prev;
f9898cc6 1168
9628b887
KL
1169 if ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1170 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1171 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1172 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame))))
f7af3f7b 1173 {
06537cc8
RS
1174 /* Decide whether this frame is eligible to be returned,
1175 according to minibuf. */
1176 if (NILP (minibuf))
1177 {
1178 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1179 prev = f;
1180 }
1181 else if (WINDOWP (minibuf))
1182 {
1183 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
551645f8
GM
1184 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1185 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1186 FRAME_FOCUS_FRAME (XFRAME (f))))
06537cc8
RS
1187 prev = f;
1188 }
1189 else if (EQ (minibuf, Qvisible))
1190 {
1191 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1192 if (FRAME_VISIBLE_P (XFRAME (f)))
1193 prev = f;
1194 }
1195 else if (XFASTINT (minibuf) == 0)
1196 {
1197 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1198 if (FRAME_VISIBLE_P (XFRAME (f))
1199 || FRAME_ICONIFIED_P (XFRAME (f)))
1200 prev = f;
1201 }
1202 else
a9986780
RS
1203 prev = f;
1204 }
f9898cc6 1205 }
d06a8a56
JB
1206
1207 /* We've scanned the entire list. */
1208 if (NILP (prev))
1209 /* We went through the whole frame list without finding a single
1210 acceptable frame. Return the original frame. */
1211 return frame;
1212 else
1213 /* There were no acceptable frames in the list before FRAME; otherwise,
1214 we would have returned directly from the loop. Since PREV is the last
1215 acceptable frame in the list, return it. */
1216 return prev;
dc6f92b8
JB
1217}
1218
ef2c57ac 1219
ff11dfa1 1220DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
14ff1ee0
PJ
1221 doc: /* Return the next frame in the frame list after FRAME.
1222It considers only frames on the same terminal as FRAME.
1223By default, skip minibuffer-only frames.
1224If omitted, FRAME defaults to the selected frame.
1225If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1226If MINIFRAME is a window, include only its own frame
1227and any frame now using that window as the minibuffer.
1228If MINIFRAME is `visible', include all visible frames.
1229If MINIFRAME is 0, include all visible and iconified frames.
1230Otherwise, include all frames. */)
1231 (frame, miniframe)
8693ca83 1232 Lisp_Object frame, miniframe;
dc6f92b8 1233{
ff11dfa1 1234 if (NILP (frame))
8d2666fe 1235 frame = selected_frame;
177c0ea7 1236
b7826503 1237 CHECK_LIVE_FRAME (frame);
ff11dfa1 1238 return next_frame (frame, miniframe);
dc6f92b8 1239}
dbc4e1c1 1240
ef2c57ac 1241DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
14ff1ee0
PJ
1242 doc: /* Return the previous frame in the frame list before FRAME.
1243It considers only frames on the same terminal as FRAME.
1244By default, skip minibuffer-only frames.
1245If omitted, FRAME defaults to the selected frame.
1246If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1247If MINIFRAME is a window, include only its own frame
1248and any frame now using that window as the minibuffer.
1249If MINIFRAME is `visible', include all visible frames.
1250If MINIFRAME is 0, include all visible and iconified frames.
1251Otherwise, include all frames. */)
1252 (frame, miniframe)
ef2c57ac
RM
1253 Lisp_Object frame, miniframe;
1254{
ef2c57ac 1255 if (NILP (frame))
8d2666fe 1256 frame = selected_frame;
b7826503 1257 CHECK_LIVE_FRAME (frame);
ef2c57ac
RM
1258 return prev_frame (frame, miniframe);
1259}
dc6f92b8 1260\f
808c0f20
RS
1261/* Return 1 if it is ok to delete frame F;
1262 0 if all frames aside from F are invisible.
1263 (Exception: if F is the terminal frame, and we are using X, return 1.) */
dc6f92b8 1264
d56b45eb 1265int
808c0f20
RS
1266other_visible_frames (f)
1267 FRAME_PTR f;
1268{
1269 /* We know the selected frame is visible,
1270 so if F is some other frame, it can't be the sole visible one. */
8d2666fe 1271 if (f == SELECTED_FRAME ())
c08c95c7
RS
1272 {
1273 Lisp_Object frames;
1274 int count = 0;
1275
1276 for (frames = Vframe_list;
1277 CONSP (frames);
7539e11f 1278 frames = XCDR (frames))
c08c95c7 1279 {
ab9f008d 1280 Lisp_Object this;
c08c95c7 1281
7539e11f 1282 this = XCAR (frames);
808c0f20
RS
1283 /* Verify that the frame's window still exists
1284 and we can still talk to it. And note any recent change
1285 in visibility. */
032d78fe
GV
1286#ifdef HAVE_WINDOW_SYSTEM
1287 if (FRAME_WINDOW_P (XFRAME (this)))
5e7b7c5b 1288 {
b0509a40 1289 x_sync (XFRAME (this));
5e7b7c5b
RS
1290 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1291 }
1292#endif
1293
c08c95c7
RS
1294 if (FRAME_VISIBLE_P (XFRAME (this))
1295 || FRAME_ICONIFIED_P (XFRAME (this))
1296 /* Allow deleting the terminal frame when at least
1297 one X frame exists! */
032d78fe 1298 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
c08c95c7
RS
1299 count++;
1300 }
808c0f20 1301 return count > 1;
c08c95c7 1302 }
808c0f20
RS
1303 return 1;
1304}
1305
ea161626
KL
1306/* Error handler for `delete-frame-functions'. */
1307static Lisp_Object
1308delete_frame_handler (Lisp_Object arg)
1309{
1310 add_to_log ("Error during `delete-frame': %s", arg, Qnil);
1311 return Qnil;
1312}
1313
58555d81
SM
1314extern Lisp_Object Qrun_hook_with_args;
1315
56f2de10
MR
1316/* Delete FRAME. When FORCE equals Qnoelisp, delete FRAME
1317 unconditionally. x_connection_closed and delete_terminal use
1318 this. Any other value of FORCE implements the semantics
1319 described for Fdelete_frame. */
1320Lisp_Object
1321delete_frame (frame, force)
1322 register Lisp_Object frame, force;
808c0f20
RS
1323{
1324 struct frame *f;
8d2666fe 1325 struct frame *sf = SELECTED_FRAME ();
bedb9c0e
KL
1326 struct kboard *kb;
1327
99b92e64 1328 int minibuffer_selected;
808c0f20
RS
1329
1330 if (EQ (frame, Qnil))
1331 {
8d2666fe 1332 f = sf;
2d80a27a 1333 XSETFRAME (frame, f);
808c0f20
RS
1334 }
1335 else
1336 {
b7826503 1337 CHECK_FRAME (frame);
808c0f20
RS
1338 f = XFRAME (frame);
1339 }
1340
1341 if (! FRAME_LIVE_P (f))
1342 return Qnil;
1343
e39a993c 1344 if (NILP (force) && !other_visible_frames (f))
808c0f20 1345 error ("Attempt to delete the sole visible or iconified frame");
d5e7c279 1346
56f2de10 1347 /* x_connection_closed must have set FORCE to `noelisp' in order
00c5fd51 1348 to delete the last frame, if it is gone. */
56f2de10 1349 if (NILP (XCDR (Vframe_list)) && !EQ (force, Qnoelisp))
e9687ee8
RS
1350 error ("Attempt to delete the only frame");
1351
ff11dfa1
JB
1352 /* Does this frame have a minibuffer, and is it the surrogate
1353 minibuffer for any other frame? */
fd0c2bd1 1354 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
dc6f92b8 1355 {
ff11dfa1 1356 Lisp_Object frames;
1113d9db 1357
ff11dfa1
JB
1358 for (frames = Vframe_list;
1359 CONSP (frames);
7539e11f 1360 frames = XCDR (frames))
1113d9db 1361 {
7a8cc307 1362 Lisp_Object this;
7539e11f 1363 this = XCAR (frames);
1113d9db 1364
ff11dfa1
JB
1365 if (! EQ (this, frame)
1366 && EQ (frame,
7a8cc307
RS
1367 WINDOW_FRAME (XWINDOW
1368 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
a31787b1 1369 {
56f2de10
MR
1370 /* If we MUST delete this frame, delete the other first.
1371 But do this only if FORCE equals `noelisp'. */
1372 if (EQ (force, Qnoelisp))
1373 delete_frame (this, Qnoelisp);
a31787b1
RS
1374 else
1375 error ("Attempt to delete a surrogate minibuffer frame");
1376 }
1113d9db 1377 }
dc6f92b8
JB
1378 }
1379
56f2de10
MR
1380 /* Run `delete-frame-functions' unless FORCE is `noelisp' or
1381 frame is a tooltip. FORCE is set to `noelisp' when handling
1382 a disconnect from the terminal, so we don't dare call Lisp
1383 code. */
58555d81
SM
1384 if (NILP (Vrun_hooks) || !NILP (Fframe_parameter (frame, intern ("tooltip"))))
1385 ;
1386 if (EQ (force, Qnoelisp))
1387 pending_funcalls
1388 = Fcons (list3 (Qrun_hook_with_args, Qdelete_frame_functions, frame),
1389 pending_funcalls);
1390 else
1391 safe_call2 (Qrun_hook_with_args, Qdelete_frame_functions, frame);
0e662342 1392
b6660415
KL
1393 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1394 if (! FRAME_LIVE_P (f))
1395 return Qnil;
1396
a31787b1
RS
1397 /* At this point, we are committed to deleting the frame.
1398 There is no more chance for errors to prevent it. */
1399
99b92e64
RS
1400 minibuffer_selected = EQ (minibuf_window, selected_window);
1401
ff11dfa1 1402 /* Don't let the frame remain selected. */
8d2666fe 1403 if (f == sf)
06537cc8
RS
1404 {
1405 Lisp_Object tail, frame1;
1406
1407 /* Look for another visible frame on the same terminal. */
1408 frame1 = next_frame (frame, Qvisible);
1409
1410 /* If there is none, find *some* other frame. */
1411 if (NILP (frame1) || EQ (frame1, frame))
1412 {
1413 FOR_EACH_FRAME (tail, frame1)
1414 {
fca177d4 1415 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
06537cc8
RS
1416 break;
1417 }
1418 }
1419
216e6a14 1420 do_switch_frame (frame1, 0, 1, Qnil);
79a65b7f 1421 sf = SELECTED_FRAME ();
06537cc8 1422 }
dc6f92b8 1423
ff11dfa1
JB
1424 /* Don't allow minibuf_window to remain on a deleted frame. */
1425 if (EQ (f->minibuffer_window, minibuf_window))
dc6f92b8 1426 {
8d2666fe 1427 Fset_window_buffer (sf->minibuffer_window,
5af5757b 1428 XWINDOW (minibuf_window)->buffer, Qnil);
8d2666fe 1429 minibuf_window = sf->minibuffer_window;
99b92e64
RS
1430
1431 /* If the dying minibuffer window was selected,
1432 select the new one. */
1433 if (minibuffer_selected)
f1321dc3 1434 Fselect_window (minibuf_window, Qnil);
dc6f92b8
JB
1435 }
1436
130adcb7
EZ
1437 /* Don't let echo_area_window to remain on a deleted frame. */
1438 if (EQ (f->minibuffer_window, echo_area_window))
1439 echo_area_window = sf->minibuffer_window;
1440
bb2a0a65
RS
1441 /* Clear any X selections for this frame. */
1442#ifdef HAVE_X_WINDOWS
1443 if (FRAME_X_P (f))
1444 x_clear_frame_selections (f);
1445#endif
1446
177c0ea7
JB
1447 /* Free glyphs.
1448 This function must be called before the window tree of the
18082e2d
GM
1449 frame is deleted because windows contain dynamically allocated
1450 memory. */
1451 free_glyphs (f);
1452
1ccdfd33 1453#ifdef HAVE_WINDOW_SYSTEM
50e3873c
KH
1454 /* Give chance to each font driver to free a frame specific data. */
1455 font_update_drivers (f, Qnil);
1ccdfd33 1456#endif
50e3873c 1457
4a88b3b0
JB
1458 /* Mark all the windows that used to be on FRAME as deleted, and then
1459 remove the reference to them. */
1460 delete_all_subwindows (XWINDOW (f->root_window));
1461 f->root_window = Qnil;
1462
ff11dfa1 1463 Vframe_list = Fdelq (frame, Vframe_list);
a42e9724 1464 FRAME_SET_VISIBLE (f, 0);
dc6f92b8 1465
a90af46f
CY
1466 /* Allow the vector of menu bar contents to be freed in the next
1467 garbage collection. The frame object itself may not be garbage
1468 collected until much later, because recent_keys and other data
1469 structures can still refer to it. */
acc49a52
JD
1470 f->menu_bar_vector = Qnil;
1471
ebbbc028 1472 free_font_driver_list (f);
70fdbb46
JM
1473 xfree (f->namebuf);
1474 xfree (f->decode_mode_spec_buffer);
1475 xfree (FRAME_INSERT_COST (f));
1476 xfree (FRAME_DELETEN_COST (f));
1477 xfree (FRAME_INSERTN_COST (f));
1478 xfree (FRAME_DELETE_COST (f));
1479 xfree (FRAME_MESSAGE_BUF (f));
d2bee99e 1480
8678b9cc 1481 /* Since some events are handled at the interrupt level, we may get
6ed8eeff 1482 an event for f at any time; if we zero out the frame's terminal
8678b9cc 1483 now, then we may trip up the event-handling code. Instead, we'll
6ed8eeff
KL
1484 promise that the terminal of the frame must be valid until we
1485 have called the window-system-dependent frame destruction
1486 routine. */
dbc4e1c1 1487
6ed8eeff
KL
1488 if (FRAME_TERMINAL (f)->delete_frame_hook)
1489 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
d5e7c279 1490
428a555e 1491 {
6ed8eeff 1492 struct terminal *terminal = FRAME_TERMINAL (f);
a3547743 1493 f->output_data.nothing = 0;
6ed8eeff 1494 f->terminal = 0; /* Now the frame is dead. */
428a555e 1495
6ed8eeff 1496 /* If needed, delete the terminal that this frame was on.
bedb9c0e 1497 (This must be done after the frame is killed.) */
6ed8eeff
KL
1498 terminal->reference_count--;
1499 if (terminal->reference_count == 0)
bedb9c0e 1500 {
174105f7
SM
1501 Lisp_Object tmp;
1502 XSETTERMINAL (tmp, terminal);
1503
bedb9c0e 1504 kb = NULL;
174105f7 1505 Fdelete_terminal (tmp, NILP (force) ? Qt : force);
bedb9c0e
KL
1506 }
1507 else
6ed8eeff 1508 kb = terminal->kboard;
428a555e 1509 }
8678b9cc 1510
ff11dfa1 1511 /* If we've deleted the last_nonminibuf_frame, then try to find
d5e7c279 1512 another one. */
ff11dfa1 1513 if (f == last_nonminibuf_frame)
d5e7c279 1514 {
ff11dfa1 1515 Lisp_Object frames;
1113d9db 1516
ff11dfa1 1517 last_nonminibuf_frame = 0;
d5e7c279 1518
ff11dfa1
JB
1519 for (frames = Vframe_list;
1520 CONSP (frames);
7539e11f 1521 frames = XCDR (frames))
d5e7c279 1522 {
7539e11f 1523 f = XFRAME (XCAR (frames));
ff11dfa1 1524 if (!FRAME_MINIBUF_ONLY_P (f))
d5e7c279 1525 {
ff11dfa1 1526 last_nonminibuf_frame = f;
d5e7c279
JB
1527 break;
1528 }
1529 }
1530 }
dc6f92b8 1531
8ceb7434
RS
1532 /* If there's no other frame on the same kboard, get out of
1533 single-kboard state if we're in it for this kboard. */
bedb9c0e
KL
1534 if (kb != NULL)
1535 {
1536 Lisp_Object frames;
1537 /* Some frame we found on the same kboard, or nil if there are none. */
1538 Lisp_Object frame_on_same_kboard;
8ceb7434 1539
bedb9c0e 1540 frame_on_same_kboard = Qnil;
8ceb7434 1541
bedb9c0e
KL
1542 for (frames = Vframe_list;
1543 CONSP (frames);
1544 frames = XCDR (frames))
1545 {
1546 Lisp_Object this;
1547 struct frame *f1;
8ceb7434 1548
bedb9c0e
KL
1549 this = XCAR (frames);
1550 if (!FRAMEP (this))
1551 abort ();
1552 f1 = XFRAME (this);
8ceb7434 1553
bedb9c0e
KL
1554 if (kb == FRAME_KBOARD (f1))
1555 frame_on_same_kboard = this;
1556 }
8ceb7434 1557
bedb9c0e
KL
1558 if (NILP (frame_on_same_kboard))
1559 not_single_kboard_state (kb);
1560 }
8ceb7434
RS
1561
1562
c4c6d073
KH
1563 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1564 find another one. Prefer minibuffer-only frames, but also notice
1565 frames with other windows. */
bedb9c0e 1566 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
1113d9db 1567 {
ff11dfa1 1568 Lisp_Object frames;
1113d9db 1569
ff11dfa1 1570 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
ab9f008d 1571 Lisp_Object frame_with_minibuf;
32fda9ba
RS
1572 /* Some frame we found on the same kboard, or nil if there are none. */
1573 Lisp_Object frame_on_same_kboard;
1113d9db 1574
32fda9ba 1575 frame_on_same_kboard = Qnil;
ab9f008d 1576 frame_with_minibuf = Qnil;
32fda9ba 1577
ff11dfa1
JB
1578 for (frames = Vframe_list;
1579 CONSP (frames);
7539e11f 1580 frames = XCDR (frames))
1113d9db 1581 {
ab9f008d 1582 Lisp_Object this;
c4c6d073 1583 struct frame *f1;
1113d9db 1584
7539e11f 1585 this = XCAR (frames);
e35d291d 1586 if (!FRAMEP (this))
1113d9db 1587 abort ();
c4c6d073 1588 f1 = XFRAME (this);
1113d9db 1589
c4c6d073
KH
1590 /* Consider only frames on the same kboard
1591 and only those with minibuffers. */
bedb9c0e 1592 if (kb == FRAME_KBOARD (f1)
c4c6d073 1593 && FRAME_HAS_MINIBUF_P (f1))
1113d9db 1594 {
ff11dfa1 1595 frame_with_minibuf = this;
c4c6d073 1596 if (FRAME_MINIBUF_ONLY_P (f1))
1113d9db
JB
1597 break;
1598 }
32fda9ba 1599
bedb9c0e 1600 if (kb == FRAME_KBOARD (f1))
32fda9ba 1601 frame_on_same_kboard = this;
1113d9db
JB
1602 }
1603
32fda9ba
RS
1604 if (!NILP (frame_on_same_kboard))
1605 {
1606 /* We know that there must be some frame with a minibuffer out
1607 there. If this were not true, all of the frames present
1608 would have to be minibufferless, which implies that at some
1609 point their minibuffer frames must have been deleted, but
1610 that is prohibited at the top; you can't delete surrogate
1611 minibuffer frames. */
1612 if (NILP (frame_with_minibuf))
1613 abort ();
1113d9db 1614
bedb9c0e 1615 kb->Vdefault_minibuffer_frame = frame_with_minibuf;
32fda9ba
RS
1616 }
1617 else
1618 /* No frames left on this kboard--say no minibuffer either. */
bedb9c0e 1619 kb->Vdefault_minibuffer_frame = Qnil;
1113d9db
JB
1620 }
1621
e681c92a
RS
1622 /* Cause frame titles to update--necessary if we now have just one frame. */
1623 update_mode_lines = 1;
1624
dc6f92b8
JB
1625 return Qnil;
1626}
56f2de10
MR
1627
1628DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1629 doc: /* Delete FRAME, permanently eliminating it from use.
1630FRAME defaults to the selected frame.
1631
1632A frame may not be deleted if its minibuffer is used by other frames.
1633Normally, you may not delete a frame if all other frames are invisible,
1634but if the second optional argument FORCE is non-nil, you may do so.
1635
1636This function runs `delete-frame-functions' before actually
1637deleting the frame, unless the frame is a tooltip.
1638The functions are run with one argument, the frame to be deleted. */)
1639 (frame, force)
1640 Lisp_Object frame, force;
1641{
1642 return delete_frame (frame, !NILP (force) ? Qt : Qnil);
1643}
1644
dc6f92b8
JB
1645\f
1646/* Return mouse position in character cell units. */
1647
f9898cc6 1648DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
14ff1ee0
PJ
1649 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1650The position is given in character cells, where (0, 0) is the
d0cd961e
EZ
1651upper-left corner of the frame, X is the horizontal offset, and Y is
1652the vertical offset.
14ff1ee0
PJ
1653If Emacs is running on a mouseless terminal or hasn't been programmed
1654to read the mouse position, it returns the selected frame for FRAME
1655and nil for X and Y.
1656If `mouse-position-function' is non-nil, `mouse-position' calls it,
1657passing the normal return value to that function as an argument,
1658and returns whatever that function returns. */)
1659 ()
dc6f92b8 1660{
ff11dfa1 1661 FRAME_PTR f;
dbc4e1c1 1662 Lisp_Object lispy_dummy;
fd2777e0 1663 enum scroll_bar_part party_dummy;
beb0bc36 1664 Lisp_Object x, y, retval;
5384466a 1665 int col, row;
dbc4e1c1 1666 unsigned long long_dummy;
cb2255b3 1667 struct gcpro gcpro1;
dc6f92b8 1668
8d2666fe 1669 f = SELECTED_FRAME ();
c5074d8c
RS
1670 x = y = Qnil;
1671
67f6e31c 1672#if defined (HAVE_MOUSE) || defined (HAVE_GPM)
c5074d8c 1673 /* It's okay for the hook to refrain from storing anything. */
6ed8eeff
KL
1674 if (FRAME_TERMINAL (f)->mouse_position_hook)
1675 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1676 &lispy_dummy, &party_dummy,
1677 &x, &y,
1678 &long_dummy);
76db7eb4
KH
1679 if (! NILP (x))
1680 {
1681 col = XINT (x);
1682 row = XINT (y);
8126c3b4 1683 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
76db7eb4
KH
1684 XSETINT (x, col);
1685 XSETINT (y, row);
1686 }
f443c170 1687#endif
2d80a27a 1688 XSETFRAME (lispy_dummy, f);
beb0bc36 1689 retval = Fcons (lispy_dummy, Fcons (x, y));
cb2255b3 1690 GCPRO1 (retval);
beb0bc36 1691 if (!NILP (Vmouse_position_function))
cb2255b3
GM
1692 retval = call1 (Vmouse_position_function, retval);
1693 RETURN_UNGCPRO (retval);
dc6f92b8
JB
1694}
1695
152e6c70
RS
1696DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1697 Smouse_pixel_position, 0, 0, 0,
14ff1ee0
PJ
1698 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1699The position is given in pixel units, where (0, 0) is the
d0cd961e
EZ
1700upper-left corner of the frame, X is the horizontal offset, and Y is
1701the vertical offset.
14ff1ee0
PJ
1702If Emacs is running on a mouseless terminal or hasn't been programmed
1703to read the mouse position, it returns the selected frame for FRAME
1704and nil for X and Y. */)
1705 ()
152e6c70
RS
1706{
1707 FRAME_PTR f;
1708 Lisp_Object lispy_dummy;
1709 enum scroll_bar_part party_dummy;
1710 Lisp_Object x, y;
152e6c70
RS
1711 unsigned long long_dummy;
1712
8d2666fe 1713 f = SELECTED_FRAME ();
152e6c70
RS
1714 x = y = Qnil;
1715
67f6e31c 1716#if defined (HAVE_MOUSE) || defined (HAVE_GPM)
152e6c70 1717 /* It's okay for the hook to refrain from storing anything. */
6ed8eeff
KL
1718 if (FRAME_TERMINAL (f)->mouse_position_hook)
1719 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1720 &lispy_dummy, &party_dummy,
1721 &x, &y,
1722 &long_dummy);
0c5c1cf7 1723#endif
2d80a27a 1724 XSETFRAME (lispy_dummy, f);
152e6c70
RS
1725 return Fcons (lispy_dummy, Fcons (x, y));
1726}
1727
dc6f92b8 1728DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
14ff1ee0
PJ
1729 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1730Coordinates are relative to the frame, not a window,
1731so the coordinates of the top left character in the frame
1732may be nonzero due to left-hand scroll bars or the menu bar.
1733
d0cd961e
EZ
1734The position is given in character cells, where (0, 0) is the
1735upper-left corner of the frame, X is the horizontal offset, and Y is
1736the vertical offset.
1737
14ff1ee0
PJ
1738This function is a no-op for an X frame that is not visible.
1739If you have just created a frame, you must wait for it to become visible
1740before calling this function on it, like this.
1741 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
ff11dfa1
JB
1742 (frame, x, y)
1743 Lisp_Object frame, x, y;
dc6f92b8 1744{
b7826503
PJ
1745 CHECK_LIVE_FRAME (frame);
1746 CHECK_NUMBER (x);
1747 CHECK_NUMBER (y);
dc6f92b8 1748
dbc4e1c1 1749 /* I think this should be done with a hook. */
032d78fe
GV
1750#ifdef HAVE_WINDOW_SYSTEM
1751 if (FRAME_WINDOW_P (XFRAME (frame)))
d19be8a9 1752 /* Warping the mouse will cause enternotify and focus events. */
d4d76014 1753 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
bb221971 1754#else
be625e00 1755#if defined (MSDOS) && defined (HAVE_MOUSE)
bb221971
RS
1756 if (FRAME_MSDOS_P (XFRAME (frame)))
1757 {
216e6a14 1758 Fselect_frame (frame, Qnil);
bb221971
RS
1759 mouse_moveto (XINT (x), XINT (y));
1760 }
4d1d51d2
NR
1761#else
1762#ifdef HAVE_GPM
1763 {
216e6a14 1764 Fselect_frame (frame, Qnil);
4d1d51d2
NR
1765 term_mouse_moveto (XINT (x), XINT (y));
1766 }
1767#endif
bb221971 1768#endif
dc6f92b8
JB
1769#endif
1770
1771 return Qnil;
1772}
152e6c70
RS
1773
1774DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1775 Sset_mouse_pixel_position, 3, 3, 0,
14ff1ee0 1776 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
d0cd961e
EZ
1777The position is given in pixels, where (0, 0) is the upper-left corner
1778of the frame, X is the horizontal offset, and Y is the vertical offset.
1779
14ff1ee0
PJ
1780Note, this is a no-op for an X frame that is not visible.
1781If you have just created a frame, you must wait for it to become visible
1782before calling this function on it, like this.
1783 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
152e6c70
RS
1784 (frame, x, y)
1785 Lisp_Object frame, x, y;
1786{
b7826503
PJ
1787 CHECK_LIVE_FRAME (frame);
1788 CHECK_NUMBER (x);
1789 CHECK_NUMBER (y);
152e6c70
RS
1790
1791 /* I think this should be done with a hook. */
032d78fe
GV
1792#ifdef HAVE_WINDOW_SYSTEM
1793 if (FRAME_WINDOW_P (XFRAME (frame)))
d19be8a9 1794 /* Warping the mouse will cause enternotify and focus events. */
d4d76014 1795 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
bb221971 1796#else
be625e00 1797#if defined (MSDOS) && defined (HAVE_MOUSE)
bb221971
RS
1798 if (FRAME_MSDOS_P (XFRAME (frame)))
1799 {
216e6a14 1800 Fselect_frame (frame, Qnil);
bb221971
RS
1801 mouse_moveto (XINT (x), XINT (y));
1802 }
67f6e31c
NR
1803#else
1804#ifdef HAVE_GPM
1805 {
216e6a14 1806 Fselect_frame (frame, Qnil);
67f6e31c
NR
1807 term_mouse_moveto (XINT (x), XINT (y));
1808 }
1809#endif
bb221971 1810#endif
152e6c70
RS
1811#endif
1812
1813 return Qnil;
1814}
dc6f92b8 1815\f
98ce1622
RS
1816static void make_frame_visible_1 P_ ((Lisp_Object));
1817
ff11dfa1 1818DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
fc25d15d 1819 0, 1, "",
14ff1ee0
PJ
1820 doc: /* Make the frame FRAME visible (assuming it is an X window).
1821If omitted, FRAME defaults to the currently selected frame. */)
1822 (frame)
ff11dfa1 1823 Lisp_Object frame;
dc6f92b8 1824{
1aa66088 1825 if (NILP (frame))
8d2666fe 1826 frame = selected_frame;
1aa66088 1827
b7826503 1828 CHECK_LIVE_FRAME (frame);
dc6f92b8 1829
dbc4e1c1 1830 /* I think this should be done with a hook. */
032d78fe
GV
1831#ifdef HAVE_WINDOW_SYSTEM
1832 if (FRAME_WINDOW_P (XFRAME (frame)))
02ff9dd5
RS
1833 {
1834 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1835 x_make_frame_visible (XFRAME (frame));
1836 }
fd0c2bd1 1837#endif
dc6f92b8 1838
98ce1622
RS
1839 make_frame_visible_1 (XFRAME (frame)->root_window);
1840
d19be8a9 1841 /* Make menu bar update for the Buffers and Frames menus. */
565620a5
RS
1842 windows_or_buffers_changed++;
1843
ff11dfa1 1844 return frame;
dc6f92b8
JB
1845}
1846
98ce1622
RS
1847/* Update the display_time slot of the buffers shown in WINDOW
1848 and all its descendents. */
1849
1850static void
1851make_frame_visible_1 (window)
1852 Lisp_Object window;
1853{
1854 struct window *w;
1855
1856 for (;!NILP (window); window = w->next)
1857 {
1858 w = XWINDOW (window);
1859
1860 if (!NILP (w->buffer))
1861 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1862
1863 if (!NILP (w->vchild))
1864 make_frame_visible_1 (w->vchild);
1865 if (!NILP (w->hchild))
1866 make_frame_visible_1 (w->hchild);
1867 }
1868}
1869
ff11dfa1 1870DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
808c0f20 1871 0, 2, "",
14ff1ee0
PJ
1872 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1873If omitted, FRAME defaults to the currently selected frame.
1874Normally you may not make FRAME invisible if all other frames are invisible,
1875but if the second optional argument FORCE is non-nil, you may do so. */)
808c0f20
RS
1876 (frame, force)
1877 Lisp_Object frame, force;
dc6f92b8 1878{
1aa66088 1879 if (NILP (frame))
8d2666fe 1880 frame = selected_frame;
1aa66088 1881
b7826503 1882 CHECK_LIVE_FRAME (frame);
dc6f92b8 1883
808c0f20
RS
1884 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1885 error ("Attempt to make invisible the sole visible or iconified frame");
1886
3d378fdf 1887#if 0 /* This isn't logically necessary, and it can do GC. */
9c394f17 1888 /* Don't let the frame remain selected. */
8d2666fe 1889 if (EQ (frame, selected_frame))
216e6a14 1890 do_switch_frame (next_frame (frame, Qt), 0, 0, Qnil)
3d378fdf 1891#endif
9c394f17
RS
1892
1893 /* Don't allow minibuf_window to remain on a deleted frame. */
1894 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1895 {
8d2666fe
GM
1896 struct frame *sf = XFRAME (selected_frame);
1897 Fset_window_buffer (sf->minibuffer_window,
5af5757b 1898 XWINDOW (minibuf_window)->buffer, Qnil);
8d2666fe 1899 minibuf_window = sf->minibuffer_window;
9c394f17
RS
1900 }
1901
dbc4e1c1 1902 /* I think this should be done with a hook. */
032d78fe
GV
1903#ifdef HAVE_WINDOW_SYSTEM
1904 if (FRAME_WINDOW_P (XFRAME (frame)))
ff11dfa1 1905 x_make_frame_invisible (XFRAME (frame));
fd0c2bd1 1906#endif
dc6f92b8 1907
d19be8a9 1908 /* Make menu bar update for the Buffers and Frames menus. */
565620a5
RS
1909 windows_or_buffers_changed++;
1910
dc6f92b8
JB
1911 return Qnil;
1912}
1913
ff11dfa1 1914DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1aa66088 1915 0, 1, "",
14ff1ee0
PJ
1916 doc: /* Make the frame FRAME into an icon.
1917If omitted, FRAME defaults to the currently selected frame. */)
ff11dfa1
JB
1918 (frame)
1919 Lisp_Object frame;
dc6f92b8 1920{
1aa66088 1921 if (NILP (frame))
8d2666fe 1922 frame = selected_frame;
177c0ea7 1923
b7826503 1924 CHECK_LIVE_FRAME (frame);
dc6f92b8 1925
3d378fdf 1926#if 0 /* This isn't logically necessary, and it can do GC. */
9c394f17 1927 /* Don't let the frame remain selected. */
8d2666fe 1928 if (EQ (frame, selected_frame))
20dc6fbb 1929 Fhandle_switch_frame (next_frame (frame, Qt));
3d378fdf 1930#endif
9c394f17
RS
1931
1932 /* Don't allow minibuf_window to remain on a deleted frame. */
1933 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1934 {
8d2666fe
GM
1935 struct frame *sf = XFRAME (selected_frame);
1936 Fset_window_buffer (sf->minibuffer_window,
5af5757b 1937 XWINDOW (minibuf_window)->buffer, Qnil);
8d2666fe 1938 minibuf_window = sf->minibuffer_window;
9c394f17
RS
1939 }
1940
dbc4e1c1 1941 /* I think this should be done with a hook. */
032d78fe
GV
1942#ifdef HAVE_WINDOW_SYSTEM
1943 if (FRAME_WINDOW_P (XFRAME (frame)))
ff11dfa1 1944 x_iconify_frame (XFRAME (frame));
fd0c2bd1 1945#endif
dc6f92b8 1946
d19be8a9 1947 /* Make menu bar update for the Buffers and Frames menus. */
565620a5
RS
1948 windows_or_buffers_changed++;
1949
dc6f92b8
JB
1950 return Qnil;
1951}
1952
ff11dfa1 1953DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
dc6f92b8 1954 1, 1, 0,
14ff1ee0
PJ
1955 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1956A frame that is not \"visible\" is not updated and, if it works through
1957a window system, it may not show at all.
e4ed805e
LT
1958Return the symbol `icon' if frame is visible only as an icon.
1959
1960On a text-only terminal, all frames are considered visible, whether
1961they are currently being displayed or not, and this function returns t
1962for all frames. */)
14ff1ee0 1963 (frame)
ff11dfa1 1964 Lisp_Object frame;
dc6f92b8 1965{
b7826503 1966 CHECK_LIVE_FRAME (frame);
dc6f92b8 1967
5c044f55
RS
1968 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1969
a42e9724 1970 if (FRAME_VISIBLE_P (XFRAME (frame)))
dc6f92b8 1971 return Qt;
a42e9724 1972 if (FRAME_ICONIFIED_P (XFRAME (frame)))
fd0c2bd1 1973 return Qicon;
dc6f92b8
JB
1974 return Qnil;
1975}
1976
ff11dfa1 1977DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
dc6f92b8 1978 0, 0, 0,
14ff1ee0 1979 doc: /* Return a list of all frames now \"visible\" (being updated). */)
dc6f92b8
JB
1980 ()
1981{
ff11dfa1
JB
1982 Lisp_Object tail, frame;
1983 struct frame *f;
dc6f92b8
JB
1984 Lisp_Object value;
1985
1986 value = Qnil;
7539e11f 1987 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
dc6f92b8 1988 {
7539e11f 1989 frame = XCAR (tail);
e35d291d 1990 if (!FRAMEP (frame))
dc6f92b8 1991 continue;
ff11dfa1 1992 f = XFRAME (frame);
a42e9724 1993 if (FRAME_VISIBLE_P (f))
ff11dfa1 1994 value = Fcons (frame, value);
dc6f92b8
JB
1995 }
1996 return value;
1997}
d5e7c279
JB
1998
1999
e518d5e1 2000DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
14ff1ee0 2001 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
e4ed805e 2002If FRAME is invisible or iconified, make it visible.
14ff1ee0
PJ
2003If you don't specify a frame, the selected frame is used.
2004If Emacs is displaying on an ordinary terminal or some other device which
1bf72735 2005doesn't support multiple overlapping frames, this function selects FRAME. */)
14ff1ee0 2006 (frame)
dbc4e1c1
JB
2007 Lisp_Object frame;
2008{
428a555e 2009 struct frame *f;
828ac693 2010 if (NILP (frame))
8d2666fe 2011 frame = selected_frame;
828ac693 2012
b7826503 2013 CHECK_LIVE_FRAME (frame);
8a981af5 2014
428a555e 2015 f = XFRAME (frame);
a3547743 2016
1bf72735
MR
2017 if (FRAME_TERMCAP_P (f))
2018 /* On a text-only terminal select FRAME. */
216e6a14 2019 Fselect_frame (frame, Qnil);
1bf72735
MR
2020 else
2021 /* Do like the documentation says. */
2022 Fmake_frame_visible (frame);
8a981af5 2023
6ed8eeff
KL
2024 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2025 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
dbc4e1c1
JB
2026
2027 return Qnil;
2028}
2029
b49f5578 2030/* Should we have a corresponding function called Flower_Power? */
e518d5e1 2031DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
14ff1ee0
PJ
2032 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
2033If you don't specify a frame, the selected frame is used.
2034If Emacs is displaying on an ordinary terminal or some other device which
2035doesn't support multiple overlapping frames, this function does nothing. */)
2036 (frame)
dbc4e1c1
JB
2037 Lisp_Object frame;
2038{
428a555e 2039 struct frame *f;
a3547743 2040
828ac693 2041 if (NILP (frame))
8d2666fe 2042 frame = selected_frame;
828ac693 2043
b7826503 2044 CHECK_LIVE_FRAME (frame);
177c0ea7 2045
428a555e 2046 f = XFRAME (frame);
a3547743 2047
6ed8eeff
KL
2048 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2049 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
dbc4e1c1
JB
2050
2051 return Qnil;
2052}
2053
d5e7c279 2054\f
ff11dfa1 2055DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
d5e7c279 2056 1, 2, 0,
14ff1ee0
PJ
2057 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
2058In other words, switch-frame events caused by events in FRAME will
2059request a switch to FOCUS-FRAME, and `last-event-frame' will be
2060FOCUS-FRAME after reading an event typed at FRAME.
2061
2062If FOCUS-FRAME is omitted or nil, any existing redirection is
2063cancelled, and the frame again receives its own keystrokes.
2064
2065Focus redirection is useful for temporarily redirecting keystrokes to
2066a surrogate minibuffer frame when a frame doesn't have its own
2067minibuffer window.
2068
66a9dbbe 2069A frame's focus redirection can be changed by `select-frame'. If frame
14ff1ee0
PJ
2070FOO is selected, and then a different frame BAR is selected, any
2071frames redirecting their focus to FOO are shifted to redirect their
2072focus to BAR. This allows focus redirection to work properly when the
2073user switches from one frame to another using `select-window'.
2074
2075This means that a frame whose focus is redirected to itself is treated
2076differently from a frame whose focus is redirected to nil; the former
66a9dbbe 2077is affected by `select-frame', while the latter is not.
14ff1ee0
PJ
2078
2079The redirection lasts until `redirect-frame-focus' is called to change it. */)
2080 (frame, focus_frame)
2081 Lisp_Object frame, focus_frame;
d5e7c279 2082{
428a555e 2083 struct frame *f;
a3547743 2084
13144095
JB
2085 /* Note that we don't check for a live frame here. It's reasonable
2086 to redirect the focus of a frame you're about to delete, if you
2087 know what other frame should receive those keystrokes. */
b7826503 2088 CHECK_FRAME (frame);
f9898cc6 2089
a42e9724 2090 if (! NILP (focus_frame))
b7826503 2091 CHECK_LIVE_FRAME (focus_frame);
d5e7c279 2092
428a555e 2093 f = XFRAME (frame);
a3547743 2094
428a555e 2095 f->focus_frame = focus_frame;
d5e7c279 2096
6ed8eeff
KL
2097 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
2098 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
177c0ea7 2099
d5e7c279
JB
2100 return Qnil;
2101}
2102
2103
ff11dfa1 2104DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
14ff1ee0
PJ
2105 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
2106This returns nil if FRAME's focus is not redirected.
2107See `redirect-frame-focus'. */)
2108 (frame)
2109 Lisp_Object frame;
d5e7c279 2110{
b7826503 2111 CHECK_LIVE_FRAME (frame);
a42e9724 2112
ff11dfa1 2113 return FRAME_FOCUS_FRAME (XFRAME (frame));
d5e7c279
JB
2114}
2115
2116
dc6f92b8 2117\f
329ca574
RS
2118/* Return the value of frame parameter PROP in frame FRAME. */
2119
dc6f92b8 2120Lisp_Object
ff11dfa1
JB
2121get_frame_param (frame, prop)
2122 register struct frame *frame;
dc6f92b8
JB
2123 Lisp_Object prop;
2124{
2125 register Lisp_Object tem;
2126
ff11dfa1 2127 tem = Fassq (prop, frame->param_alist);
dc6f92b8
JB
2128 if (EQ (tem, Qnil))
2129 return tem;
2130 return Fcdr (tem);
2131}
2132
329ca574
RS
2133/* Return the buffer-predicate of the selected frame. */
2134
2135Lisp_Object
98ce1622
RS
2136frame_buffer_predicate (frame)
2137 Lisp_Object frame;
329ca574 2138{
98ce1622 2139 return XFRAME (frame)->buffer_predicate;
329ca574
RS
2140}
2141
fa54c6ae
RS
2142/* Return the buffer-list of the selected frame. */
2143
2144Lisp_Object
98ce1622
RS
2145frame_buffer_list (frame)
2146 Lisp_Object frame;
fa54c6ae 2147{
98ce1622 2148 return XFRAME (frame)->buffer_list;
fa54c6ae
RS
2149}
2150
2151/* Set the buffer-list of the selected frame. */
2152
2153void
98ce1622
RS
2154set_frame_buffer_list (frame, list)
2155 Lisp_Object frame, list;
fa54c6ae 2156{
98ce1622 2157 XFRAME (frame)->buffer_list = list;
fa54c6ae
RS
2158}
2159
a18b8cb5 2160/* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
fa54c6ae
RS
2161
2162void
2163frames_discard_buffer (buffer)
2164 Lisp_Object buffer;
2165{
2166 Lisp_Object frame, tail;
2167
2168 FOR_EACH_FRAME (tail, frame)
2169 {
2170 XFRAME (frame)->buffer_list
2171 = Fdelq (buffer, XFRAME (frame)->buffer_list);
a18b8cb5
KL
2172 XFRAME (frame)->buried_buffer_list
2173 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
fa54c6ae
RS
2174 }
2175}
2176
329ca574
RS
2177/* Modify the alist in *ALISTPTR to associate PROP with VAL.
2178 If the alist already has an element for PROP, we change it. */
2179
dc6f92b8 2180void
fd0c2bd1 2181store_in_alist (alistptr, prop, val)
dc6f92b8 2182 Lisp_Object *alistptr, val;
fd0c2bd1 2183 Lisp_Object prop;
dc6f92b8
JB
2184{
2185 register Lisp_Object tem;
dc6f92b8 2186
dc6f92b8
JB
2187 tem = Fassq (prop, *alistptr);
2188 if (EQ (tem, Qnil))
2189 *alistptr = Fcons (Fcons (prop, val), *alistptr);
2190 else
2191 Fsetcdr (tem, val);
2192}
2193
e5317d61
EZ
2194static int
2195frame_name_fnn_p (str, len)
2196 char *str;
0432e6a1 2197 EMACS_INT len;
e5317d61
EZ
2198{
2199 if (len > 1 && str[0] == 'F')
2200 {
2201 char *end_ptr;
e5317d61 2202
48970f2f
EZ
2203 strtol (str + 1, &end_ptr, 10);
2204
e5317d61
EZ
2205 if (end_ptr == str + len)
2206 return 1;
2207 }
2208 return 0;
2209}
2210
2211/* Set the name of the terminal frame. Also used by MSDOS frames.
2212 Modeled after x_set_name which is used for WINDOW frames. */
2213
66a9dbbe 2214static void
e5317d61
EZ
2215set_term_frame_name (f, name)
2216 struct frame *f;
2217 Lisp_Object name;
2218{
2219 f->explicit_name = ! NILP (name);
2220
2221 /* If NAME is nil, set the name to F<num>. */
2222 if (NILP (name))
2223 {
2224 char namebuf[20];
2225
2226 /* Check for no change needed in this very common case
2227 before we do any consing. */
d5db4077
KR
2228 if (frame_name_fnn_p (SDATA (f->name),
2229 SBYTES (f->name)))
e5317d61
EZ
2230 return;
2231
6ed8eeff
KL
2232 tty_frame_count++;
2233 sprintf (namebuf, "F%d", tty_frame_count);
e5317d61
EZ
2234 name = build_string (namebuf);
2235 }
2236 else
2237 {
b7826503 2238 CHECK_STRING (name);
e5317d61
EZ
2239
2240 /* Don't change the name if it's already NAME. */
2241 if (! NILP (Fstring_equal (name, f->name)))
2242 return;
2243
2244 /* Don't allow the user to set the frame name to F<num>, so it
2245 doesn't clash with the names we generate for terminal frames. */
d5db4077 2246 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
e5317d61
EZ
2247 error ("Frame names of the form F<num> are usurped by Emacs");
2248 }
2249
2250 f->name = name;
2251 update_mode_lines = 1;
2252}
2253
dc6f92b8 2254void
ff11dfa1
JB
2255store_frame_param (f, prop, val)
2256 struct frame *f;
dc6f92b8
JB
2257 Lisp_Object prop, val;
2258{
7eb63b72 2259 register Lisp_Object old_alist_elt;
dc6f92b8 2260
a18b8cb5
KL
2261 /* The buffer-list parameters are stored in a special place and not
2262 in the alist. */
fa54c6ae
RS
2263 if (EQ (prop, Qbuffer_list))
2264 {
2265 f->buffer_list = val;
2266 return;
2267 }
a18b8cb5
KL
2268 if (EQ (prop, Qburied_buffer_list))
2269 {
2270 f->buried_buffer_list = val;
2271 return;
2272 }
fa54c6ae 2273
7eb63b72
GM
2274 /* If PROP is a symbol which is supposed to have frame-local values,
2275 and it is set up based on this frame, switch to the global
2276 binding. That way, we can create or alter the frame-local binding
2277 without messing up the symbol's status. */
2278 if (SYMBOLP (prop))
2279 {
2280 Lisp_Object valcontents;
f5c1dd0d 2281 valcontents = SYMBOL_VALUE (prop);
67ee9f6e 2282 if ((BUFFER_LOCAL_VALUEP (valcontents))
7eb63b72 2283 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
486420a9 2284 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
7eb63b72
GM
2285 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2286 swap_in_global_binding (prop);
2287 }
2288
9b2cd403
SM
2289 /* The tty color needed to be set before the frame's parameter
2290 alist was updated with the new value. This is not true any more,
2291 but we still do this test early on. */
2292 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode)
2293 && f == FRAME_TTY (f)->previous_frame)
2294 /* Force redisplay of this tty. */
2295 FRAME_TTY (f)->previous_frame = NULL;
94674d18 2296
7eb63b72
GM
2297 /* Update the frame parameter alist. */
2298 old_alist_elt = Fassq (prop, f->param_alist);
2299 if (EQ (old_alist_elt, Qnil))
ff11dfa1 2300 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
dc6f92b8 2301 else
7eb63b72 2302 Fsetcdr (old_alist_elt, val);
bc93c097 2303
7eb63b72
GM
2304 /* Update some other special parameters in their special places
2305 in addition to the alist. */
177c0ea7 2306
329ca574
RS
2307 if (EQ (prop, Qbuffer_predicate))
2308 f->buffer_predicate = val;
2309
032d78fe 2310 if (! FRAME_WINDOW_P (f))
e5317d61
EZ
2311 {
2312 if (EQ (prop, Qmenu_bar_lines))
2313 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2314 else if (EQ (prop, Qname))
2315 set_term_frame_name (f, val);
2316 }
a249de79 2317
e35d291d 2318 if (EQ (prop, Qminibuffer) && WINDOWP (val))
bc93c097
JB
2319 {
2320 if (! MINI_WINDOW_P (XWINDOW (val)))
6b61353c 2321 error ("Surrogate minibuffer windows must be minibuffer windows");
bc93c097 2322
213bac8a 2323 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
7af7ef38
KH
2324 && !EQ (val, f->minibuffer_window))
2325 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
bc93c097
JB
2326
2327 /* Install the chosen minibuffer window, with proper buffer. */
ff11dfa1 2328 f->minibuffer_window = val;
bc93c097 2329 }
dc6f92b8
JB
2330}
2331
ff11dfa1 2332DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
14ff1ee0
PJ
2333 doc: /* Return the parameters-alist of frame FRAME.
2334It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2335The meaningful PARMs depend on the kind of frame.
2336If FRAME is omitted, return information on the currently selected frame. */)
2337 (frame)
ff11dfa1 2338 Lisp_Object frame;
dc6f92b8
JB
2339{
2340 Lisp_Object alist;
f769f1b2 2341 FRAME_PTR f;
dd10ec4f 2342 int height, width;
57629833 2343 struct gcpro gcpro1;
dc6f92b8 2344
03390a72 2345 if (NILP (frame))
8d2666fe
GM
2346 frame = selected_frame;
2347
b7826503 2348 CHECK_FRAME (frame);
8d2666fe 2349 f = XFRAME (frame);
dc6f92b8 2350
f769f1b2 2351 if (!FRAME_LIVE_P (f))
dc6f92b8
JB
2352 return Qnil;
2353
ff11dfa1 2354 alist = Fcopy_alist (f->param_alist);
57629833 2355 GCPRO1 (alist);
177c0ea7 2356
2d764c78 2357 if (!FRAME_WINDOW_P (f))
bb221971 2358 {
4aec4b29
EZ
2359 int fg = FRAME_FOREGROUND_PIXEL (f);
2360 int bg = FRAME_BACKGROUND_PIXEL (f);
e1d0bbc9
EZ
2361 Lisp_Object elt;
2362
2363 /* If the frame's parameter alist says the colors are
2364 unspecified and reversed, take the frame's background pixel
2365 for foreground and vice versa. */
2366 elt = Fassq (Qforeground_color, alist);
19b5e79b 2367 if (CONSP (elt) && STRINGP (XCDR (elt)))
70de9f06 2368 {
d5db4077 2369 if (strncmp (SDATA (XCDR (elt)),
70de9f06 2370 unspecified_bg,
d5db4077 2371 SCHARS (XCDR (elt))) == 0)
70de9f06 2372 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
d5db4077 2373 else if (strncmp (SDATA (XCDR (elt)),
70de9f06 2374 unspecified_fg,
d5db4077 2375 SCHARS (XCDR (elt))) == 0)
70de9f06
EZ
2376 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2377 }
e1d0bbc9
EZ
2378 else
2379 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2380 elt = Fassq (Qbackground_color, alist);
19b5e79b 2381 if (CONSP (elt) && STRINGP (XCDR (elt)))
70de9f06 2382 {
d5db4077 2383 if (strncmp (SDATA (XCDR (elt)),
70de9f06 2384 unspecified_fg,
d5db4077 2385 SCHARS (XCDR (elt))) == 0)
70de9f06 2386 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
d5db4077 2387 else if (strncmp (SDATA (XCDR (elt)),
70de9f06 2388 unspecified_bg,
d5db4077 2389 SCHARS (XCDR (elt))) == 0)
70de9f06
EZ
2390 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2391 }
e1d0bbc9
EZ
2392 else
2393 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2d764c78
EZ
2394 store_in_alist (&alist, intern ("font"),
2395 build_string (FRAME_MSDOS_P (f)
2396 ? "ms-dos"
4ec0d3c1 2397 : FRAME_W32_P (f) ? "w32term"
4ec0d3c1 2398 :"tty"));
bb221971 2399 }
fd0c2bd1 2400 store_in_alist (&alist, Qname, f->name);
5af5757b 2401 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
dd10ec4f 2402 store_in_alist (&alist, Qheight, make_number (height));
5af5757b 2403 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
dd10ec4f 2404 store_in_alist (&alist, Qwidth, make_number (width));
f769f1b2 2405 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
fd0c2bd1 2406 store_in_alist (&alist, Qminibuffer,
39acc701 2407 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
f769f1b2
KH
2408 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2409 : FRAME_MINIBUF_WINDOW (f)));
2410 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
03390a72 2411 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
a18b8cb5 2412 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
fd0c2bd1 2413
dbc4e1c1 2414 /* I think this should be done with a hook. */
032d78fe
GV
2415#ifdef HAVE_WINDOW_SYSTEM
2416 if (FRAME_WINDOW_P (f))
ff11dfa1 2417 x_report_frame_params (f, &alist);
b6dd20ed 2418 else
fd0c2bd1 2419#endif
16a3738c
KH
2420 {
2421 /* This ought to be correct in f->param_alist for an X frame. */
2422 Lisp_Object lines;
f4e93c40 2423 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
16a3738c
KH
2424 store_in_alist (&alist, Qmenu_bar_lines, lines);
2425 }
57629833
GM
2426
2427 UNGCPRO;
dc6f92b8
JB
2428 return alist;
2429}
2430
8b60f7bc
GM
2431
2432DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
14ff1ee0
PJ
2433 doc: /* Return FRAME's value for parameter PARAMETER.
2434If FRAME is nil, describe the currently selected frame. */)
2435 (frame, parameter)
2436 Lisp_Object frame, parameter;
8b60f7bc
GM
2437{
2438 struct frame *f;
2439 Lisp_Object value;
2440
2441 if (NILP (frame))
2442 frame = selected_frame;
2443 else
b7826503
PJ
2444 CHECK_FRAME (frame);
2445 CHECK_SYMBOL (parameter);
177c0ea7 2446
8b60f7bc
GM
2447 f = XFRAME (frame);
2448 value = Qnil;
177c0ea7 2449
8b60f7bc
GM
2450 if (FRAME_LIVE_P (f))
2451 {
5cd62b8c 2452 /* Avoid consing in frequent cases. */
67d853e6
GM
2453 if (EQ (parameter, Qname))
2454 value = f->name;
6345f6aa
GM
2455#ifdef HAVE_X_WINDOWS
2456 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2457 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2458#endif /* HAVE_X_WINDOWS */
75700ff2
GM
2459 else if (EQ (parameter, Qbackground_color)
2460 || EQ (parameter, Qforeground_color))
67d853e6
GM
2461 {
2462 value = Fassq (parameter, f->param_alist);
2463 if (CONSP (value))
5f65b39d 2464 {
5f65b39d
EZ
2465 value = XCDR (value);
2466 /* Fframe_parameters puts the actual fg/bg color names,
2467 even if f->param_alist says otherwise. This is
2468 important when param_alist's notion of colors is
2469 "unspecified". We need to do the same here. */
2470 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2471 {
c9b08ba8 2472 const char *color_name;
e1d0bbc9
EZ
2473 EMACS_INT csz;
2474
2475 if (EQ (parameter, Qbackground_color))
2476 {
d5db4077
KR
2477 color_name = SDATA (value);
2478 csz = SCHARS (value);
e1d0bbc9
EZ
2479 if (strncmp (color_name, unspecified_bg, csz) == 0)
2480 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2481 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2482 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2483 }
2484 else if (EQ (parameter, Qforeground_color))
2485 {
d5db4077
KR
2486 color_name = SDATA (value);
2487 csz = SCHARS (value);
e1d0bbc9
EZ
2488 if (strncmp (color_name, unspecified_fg, csz) == 0)
2489 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2490 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2491 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2492 }
5f65b39d
EZ
2493 }
2494 }
b23236fb
EZ
2495 else
2496 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
67d853e6 2497 }
75700ff2
GM
2498 else if (EQ (parameter, Qdisplay_type)
2499 || EQ (parameter, Qbackground_mode))
75700ff2
GM
2500 value = Fcdr (Fassq (parameter, f->param_alist));
2501 else
2502 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
8b60f7bc 2503 }
177c0ea7 2504
8b60f7bc
GM
2505 return value;
2506}
2507
2508
177c0ea7 2509DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
ff11dfa1 2510 Smodify_frame_parameters, 2, 2, 0,
14ff1ee0
PJ
2511 doc: /* Modify the parameters of frame FRAME according to ALIST.
2512If FRAME is nil, it defaults to the selected frame.
2513ALIST is an alist of parameters to change and their new values.
2514Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2515The meaningful PARMs depend on the kind of frame.
2516Undefined PARMs are ignored, but stored in the frame's parameter list
2517so that `frame-parameters' will return them.
2518
2519The value of frame parameter FOO can also be accessed
2520as a frame-local binding for the variable FOO, if you have
cf36572d
GM
2521enabled such bindings for that variable with `make-variable-frame-local'.
2522Note that this functionality is obsolete as of Emacs 22.2, and its
2523use is not recommended. Explicitly check for a frame-parameter instead. */)
14ff1ee0 2524 (frame, alist)
ff11dfa1 2525 Lisp_Object frame, alist;
dc6f92b8 2526{
fd0c2bd1 2527 FRAME_PTR f;
213bac8a 2528 register Lisp_Object tail, prop, val;
dc6f92b8 2529
ff11dfa1 2530 if (EQ (frame, Qnil))
8d2666fe 2531 frame = selected_frame;
b7826503 2532 CHECK_LIVE_FRAME (frame);
8d2666fe 2533 f = XFRAME (frame);
dc6f92b8 2534
dbc4e1c1 2535 /* I think this should be done with a hook. */
032d78fe
GV
2536#ifdef HAVE_WINDOW_SYSTEM
2537 if (FRAME_WINDOW_P (f))
fd0c2bd1 2538 x_set_frame_parameters (f, alist);
329ca574 2539 else
bb221971
RS
2540#endif
2541#ifdef MSDOS
2542 if (FRAME_MSDOS_P (f))
2543 IT_set_frame_parameters (f, alist);
2544 else
329ca574 2545#endif
574a1a90 2546
41d44f1f
RS
2547 {
2548 int length = XINT (Flength (alist));
2549 int i;
2550 Lisp_Object *parms
2551 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2552 Lisp_Object *values
2553 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2554
2555 /* Extract parm names and values into those vectors. */
2556
2557 i = 0;
d7b10f4c 2558 for (tail = alist; CONSP (tail); tail = XCDR (tail))
41d44f1f 2559 {
213bac8a 2560 Lisp_Object elt;
41d44f1f 2561
d7b10f4c 2562 elt = XCAR (tail);
41d44f1f
RS
2563 parms[i] = Fcar (elt);
2564 values[i] = Fcdr (elt);
2565 i++;
2566 }
2567
2568 /* Now process them in reverse of specified order. */
2569 for (i--; i >= 0; i--)
2570 {
2571 prop = parms[i];
2572 val = values[i];
2573 store_frame_param (f, prop, val);
33d537f0
JL
2574
2575 /* Changing the background color might change the background
2576 mode, so that we have to load new defface specs.
2577 Call frame-set-background-mode to do that. */
2578 if (EQ (prop, Qbackground_color))
2579 call1 (Qframe_set_background_mode, frame);
41d44f1f
RS
2580 }
2581 }
3b58be21 2582 return Qnil;
dc6f92b8
JB
2583}
2584\f
a26a1f95 2585DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
14ff1ee0
PJ
2586 0, 1, 0,
2587 doc: /* Height in pixels of a line in the font in frame FRAME.
2588If FRAME is omitted, the selected frame is used.
2589For a terminal frame, the value is always 1. */)
ff11dfa1
JB
2590 (frame)
2591 Lisp_Object frame;
dc6f92b8 2592{
a26a1f95 2593 struct frame *f;
dc6f92b8 2594
a26a1f95 2595 if (NILP (frame))
8d2666fe 2596 frame = selected_frame;
b7826503 2597 CHECK_FRAME (frame);
8d2666fe 2598 f = XFRAME (frame);
a26a1f95 2599
032d78fe
GV
2600#ifdef HAVE_WINDOW_SYSTEM
2601 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2602 return make_number (x_char_height (f));
2603 else
dc6d9681 2604#endif
a26a1f95
RS
2605 return make_number (1);
2606}
dc6d9681 2607
dc6f92b8 2608
a26a1f95 2609DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
14ff1ee0
PJ
2610 0, 1, 0,
2611 doc: /* Width in pixels of characters in the font in frame FRAME.
2612If FRAME is omitted, the selected frame is used.
31b7cc74 2613On a graphical screen, the width is the standard width of the default font.
14ff1ee0
PJ
2614For a terminal screen, the value is always 1. */)
2615 (frame)
a26a1f95 2616 Lisp_Object frame;
dc6f92b8 2617{
a26a1f95
RS
2618 struct frame *f;
2619
2620 if (NILP (frame))
8d2666fe 2621 frame = selected_frame;
b7826503 2622 CHECK_FRAME (frame);
8d2666fe 2623 f = XFRAME (frame);
a26a1f95 2624
032d78fe
GV
2625#ifdef HAVE_WINDOW_SYSTEM
2626 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2627 return make_number (x_char_width (f));
2628 else
2629#endif
2630 return make_number (1);
dc6f92b8
JB
2631}
2632
177c0ea7 2633DEFUN ("frame-pixel-height", Fframe_pixel_height,
a26a1f95 2634 Sframe_pixel_height, 0, 1, 0,
14ff1ee0
PJ
2635 doc: /* Return a FRAME's height in pixels.
2636This counts only the height available for text lines,
2637not menu bars on window-system Emacs frames.
2638For a terminal frame, the result really gives the height in characters.
2639If FRAME is omitted, the selected frame is used. */)
2640 (frame)
a26a1f95 2641 Lisp_Object frame;
dc6f92b8 2642{
a26a1f95
RS
2643 struct frame *f;
2644
2645 if (NILP (frame))
8d2666fe 2646 frame = selected_frame;
b7826503 2647 CHECK_FRAME (frame);
8d2666fe 2648 f = XFRAME (frame);
a26a1f95 2649
032d78fe
GV
2650#ifdef HAVE_WINDOW_SYSTEM
2651 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2652 return make_number (x_pixel_height (f));
2653 else
dc6d9681 2654#endif
5af5757b 2655 return make_number (FRAME_LINES (f));
a26a1f95
RS
2656}
2657
177c0ea7 2658DEFUN ("frame-pixel-width", Fframe_pixel_width,
a26a1f95 2659 Sframe_pixel_width, 0, 1, 0,
14ff1ee0
PJ
2660 doc: /* Return FRAME's width in pixels.
2661For a terminal frame, the result really gives the width in characters.
2662If FRAME is omitted, the selected frame is used. */)
2663 (frame)
a26a1f95
RS
2664 Lisp_Object frame;
2665{
2666 struct frame *f;
2667
2668 if (NILP (frame))
8d2666fe 2669 frame = selected_frame;
b7826503 2670 CHECK_FRAME (frame);
8d2666fe 2671 f = XFRAME (frame);
dc6f92b8 2672
032d78fe
GV
2673#ifdef HAVE_WINDOW_SYSTEM
2674 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2675 return make_number (x_pixel_width (f));
2676 else
2677#endif
5af5757b 2678 return make_number (FRAME_COLS (f));
a26a1f95
RS
2679}
2680\f
ff11dfa1 2681DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
14ff1ee0
PJ
2682 doc: /* Specify that the frame FRAME has LINES lines.
2683Optional third arg non-nil means that redisplay should use LINES lines
2684but that the idea of the actual height of the frame should not be changed. */)
2685 (frame, lines, pretend)
735eeca3 2686 Lisp_Object frame, lines, pretend;
dc6f92b8 2687{
ff11dfa1 2688 register struct frame *f;
dc6f92b8 2689
b7826503 2690 CHECK_NUMBER (lines);
ff11dfa1 2691 if (NILP (frame))
8d2666fe 2692 frame = selected_frame;
b7826503 2693 CHECK_LIVE_FRAME (frame);
8d2666fe 2694 f = XFRAME (frame);
dc6f92b8 2695
dbc4e1c1 2696 /* I think this should be done with a hook. */
032d78fe
GV
2697#ifdef HAVE_WINDOW_SYSTEM
2698 if (FRAME_WINDOW_P (f))
dc6f92b8 2699 {
5af5757b
KS
2700 if (XINT (lines) != FRAME_LINES (f))
2701 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
32347cf4 2702 do_pending_window_change (0);
dc6f92b8
JB
2703 }
2704 else
fd0c2bd1 2705#endif
32347cf4 2706 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
dc6f92b8
JB
2707 return Qnil;
2708}
2709
ff11dfa1 2710DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
14ff1ee0
PJ
2711 doc: /* Specify that the frame FRAME has COLS columns.
2712Optional third arg non-nil means that redisplay should use COLS columns
2713but that the idea of the actual width of the frame should not be changed. */)
2714 (frame, cols, pretend)
fd0c2bd1 2715 Lisp_Object frame, cols, pretend;
dc6f92b8 2716{
ff11dfa1 2717 register struct frame *f;
b7826503 2718 CHECK_NUMBER (cols);
ff11dfa1 2719 if (NILP (frame))
8d2666fe 2720 frame = selected_frame;
b7826503 2721 CHECK_LIVE_FRAME (frame);
8d2666fe 2722 f = XFRAME (frame);
dc6f92b8 2723
dbc4e1c1 2724 /* I think this should be done with a hook. */
032d78fe
GV
2725#ifdef HAVE_WINDOW_SYSTEM
2726 if (FRAME_WINDOW_P (f))
dc6f92b8 2727 {
5af5757b
KS
2728 if (XINT (cols) != FRAME_COLS (f))
2729 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
32347cf4 2730 do_pending_window_change (0);
dc6f92b8
JB
2731 }
2732 else
fd0c2bd1 2733#endif
32347cf4 2734 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
dc6f92b8
JB
2735 return Qnil;
2736}
2737
ff11dfa1 2738DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
14ff1ee0
PJ
2739 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2740 (frame, cols, rows)
ff11dfa1 2741 Lisp_Object frame, cols, rows;
dc6f92b8 2742{
ff11dfa1 2743 register struct frame *f;
dc6f92b8 2744
b7826503
PJ
2745 CHECK_LIVE_FRAME (frame);
2746 CHECK_NUMBER (cols);
2747 CHECK_NUMBER (rows);
ff11dfa1 2748 f = XFRAME (frame);
dc6f92b8 2749
dbc4e1c1 2750 /* I think this should be done with a hook. */
032d78fe
GV
2751#ifdef HAVE_WINDOW_SYSTEM
2752 if (FRAME_WINDOW_P (f))
dc6f92b8 2753 {
5af5757b
KS
2754 if (XINT (rows) != FRAME_LINES (f)
2755 || XINT (cols) != FRAME_COLS (f)
2756 || f->new_text_lines || f->new_text_cols)
808c0f20 2757 x_set_window_size (f, 1, XINT (cols), XINT (rows));
32347cf4 2758 do_pending_window_change (0);
dc6f92b8
JB
2759 }
2760 else
fd0c2bd1 2761#endif
32347cf4 2762 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
dc6f92b8
JB
2763
2764 return Qnil;
2765}
2766
177c0ea7 2767DEFUN ("set-frame-position", Fset_frame_position,
ff11dfa1 2768 Sset_frame_position, 3, 3, 0,
14ff1ee0
PJ
2769 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2770This is actually the position of the upper left corner of the frame.
2771Negative values for XOFFSET or YOFFSET are interpreted relative to
2772the rightmost or bottommost possible position (that stays within the screen). */)
2773 (frame, xoffset, yoffset)
ff11dfa1 2774 Lisp_Object frame, xoffset, yoffset;
dc6f92b8 2775{
ff11dfa1 2776 register struct frame *f;
dc6f92b8 2777
b7826503
PJ
2778 CHECK_LIVE_FRAME (frame);
2779 CHECK_NUMBER (xoffset);
2780 CHECK_NUMBER (yoffset);
ff11dfa1 2781 f = XFRAME (frame);
dc6f92b8 2782
dbc4e1c1 2783 /* I think this should be done with a hook. */
032d78fe
GV
2784#ifdef HAVE_WINDOW_SYSTEM
2785 if (FRAME_WINDOW_P (f))
c7c70761 2786 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
fd0c2bd1 2787#endif
dc6f92b8
JB
2788
2789 return Qt;
2790}
dc6d9681 2791
dc6f92b8 2792\f
972f4259
KS
2793/***********************************************************************
2794 Frame Parameters
2795 ***********************************************************************/
2796
2797/* Connect the frame-parameter names for X frames
2798 to the ways of passing the parameter values to the window system.
2799
2800 The name of a parameter, as a Lisp symbol,
2801 has an `x-frame-parameter' property which is an integer in Lisp
2802 that is an index in this table. */
2803
2804struct frame_parm_table {
2805 char *name;
2806 Lisp_Object *variable;
2807};
2808
2809static struct frame_parm_table frame_parms[] =
2810{
2811 {"auto-raise", &Qauto_raise},
2812 {"auto-lower", &Qauto_lower},
2813 {"background-color", 0},
2814 {"border-color", &Qborder_color},
2815 {"border-width", &Qborder_width},
2816 {"cursor-color", &Qcursor_color},
2817 {"cursor-type", &Qcursor_type},
2818 {"font", 0},
2819 {"foreground-color", 0},
2820 {"icon-name", &Qicon_name},
2821 {"icon-type", &Qicon_type},
2822 {"internal-border-width", &Qinternal_border_width},
2823 {"menu-bar-lines", &Qmenu_bar_lines},
2824 {"mouse-color", &Qmouse_color},
2825 {"name", &Qname},
2826 {"scroll-bar-width", &Qscroll_bar_width},
2827 {"title", &Qtitle},
2828 {"unsplittable", &Qunsplittable},
2829 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2830 {"visibility", &Qvisibility},
2831 {"tool-bar-lines", &Qtool_bar_lines},
2832 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2833 {"scroll-bar-background", &Qscroll_bar_background},
2834 {"screen-gamma", &Qscreen_gamma},
2835 {"line-spacing", &Qline_spacing},
2836 {"left-fringe", &Qleft_fringe},
2837 {"right-fringe", &Qright_fringe},
2838 {"wait-for-wm", &Qwait_for_wm},
2839 {"fullscreen", &Qfullscreen},
0a708637
GM
2840 {"font-backend", &Qfont_backend},
2841 {"alpha", &Qalpha}
972f4259
KS
2842};
2843
2844#ifdef HAVE_WINDOW_SYSTEM
2845
2846extern Lisp_Object Qbox;
2847extern Lisp_Object Qtop;
2848
2849/* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
bd45aef7 2850 wanted positions of the WM window (not Emacs window).
972f4259
KS
2851 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2852 window (FRAME_X_WINDOW).
2853 */
2854
dfcf069d 2855void
972f4259
KS
2856x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2857 struct frame *f;
2858 int *width;
2859 int *height;
2860 int *top_pos;
2861 int *left_pos;
dc6f92b8 2862{
5af5757b
KS
2863 int newwidth = FRAME_COLS (f);
2864 int newheight = FRAME_LINES (f);
05eb7cdc 2865 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
dc6f92b8 2866
5af5757b
KS
2867 *top_pos = f->top_pos;
2868 *left_pos = f->left_pos;
3df1fda2 2869
5af5757b 2870 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
972f4259
KS
2871 {
2872 int ph;
2873
a0fe6cca 2874 ph = x_display_pixel_height (dpyinfo);
5af5757b
KS
2875 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2876 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2877 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
972f4259
KS
2878 *top_pos = 0;
2879 }
dc6f92b8 2880
5af5757b 2881 if (f->want_fullscreen & FULLSCREEN_WIDTH)
972f4259
KS
2882 {
2883 int pw;
2884
a0fe6cca 2885 pw = x_display_pixel_width (dpyinfo);
5af5757b
KS
2886 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2887 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2888 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
972f4259
KS
2889 *left_pos = 0;
2890 }
dc6f92b8 2891
972f4259
KS
2892 *width = newwidth;
2893 *height = newheight;
2894}
dc6f92b8 2895
beb0bc36 2896
972f4259
KS
2897/* Change the parameters of frame F as specified by ALIST.
2898 If a parameter is not specially recognized, do nothing special;
2899 otherwise call the `x_set_...' function for that parameter.
2900 Except for certain geometry properties, always call store_frame_param
2901 to store the new value in the parameter alist. */
14ff1ee0 2902
972f4259
KS
2903void
2904x_set_frame_parameters (f, alist)
2905 FRAME_PTR f;
2906 Lisp_Object alist;
2907{
2908 Lisp_Object tail;
dc6f92b8 2909
972f4259
KS
2910 /* If both of these parameters are present, it's more efficient to
2911 set them both at once. So we wait until we've looked at the
2912 entire list before we set them. */
2913 int width, height;
3df1fda2 2914
972f4259
KS
2915 /* Same here. */
2916 Lisp_Object left, top;
2917
2918 /* Same with these. */
2919 Lisp_Object icon_left, icon_top;
2920
2921 /* Record in these vectors all the parms specified. */
2922 Lisp_Object *parms;
2923 Lisp_Object *values;
2924 int i, p;
2925 int left_no_change = 0, top_no_change = 0;
2926 int icon_left_no_change = 0, icon_top_no_change = 0;
2927 int fullscreen_is_being_set = 0;
56f668f7
MR
2928 int height_for_full_width = 0;
2929 int width_for_full_height = 0;
eba7400d 2930 enum fullscreen_type fullscreen_wanted = FULLSCREEN_NONE;
972f4259
KS
2931
2932 struct gcpro gcpro1, gcpro2;
2933
2934 i = 0;
2935 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2936 i++;
2937
2938 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2939 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2940
2941 /* Extract parm names and values into those vectors. */
2942
2943 i = 0;
d7b10f4c 2944 for (tail = alist; CONSP (tail); tail = XCDR (tail))
972f4259
KS
2945 {
2946 Lisp_Object elt;
2947
d7b10f4c 2948 elt = XCAR (tail);
972f4259
KS
2949 parms[i] = Fcar (elt);
2950 values[i] = Fcdr (elt);
2951 i++;
2952 }
2953 /* TAIL and ALIST are not used again below here. */
2954 alist = tail = Qnil;
2955
2956 GCPRO2 (*parms, *values);
2957 gcpro1.nvars = i;
2958 gcpro2.nvars = i;
2959
2960 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2961 because their values appear in VALUES and strings are not valid. */
2962 top = left = Qunbound;
2963 icon_left = icon_top = Qunbound;
2964
2965 /* Provide default values for HEIGHT and WIDTH. */
5af5757b
KS
2966 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2967 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
972f4259
KS
2968
2969 /* Process foreground_color and background_color before anything else.
2970 They are independent of other properties, but other properties (e.g.,
2971 cursor_color) are dependent upon them. */
2972 /* Process default font as well, since fringe widths depends on it. */
eba7400d 2973 /* Also, process fullscreen, width and height depend upon that. */
972f4259
KS
2974 for (p = 0; p < i; p++)
2975 {
2976 Lisp_Object prop, val;
2977
2978 prop = parms[p];
2979 val = values[p];
2980 if (EQ (prop, Qforeground_color)
2981 || EQ (prop, Qbackground_color)
2982 || EQ (prop, Qfont)
2983 || EQ (prop, Qfullscreen))
2984 {
2985 register Lisp_Object param_index, old_value;
2986
eba7400d
MR
2987 if (EQ (prop, Qfullscreen))
2988 {
2989 /* The parameter handler can reset f->want_fullscreen to
2990 FULLSCREEN_NONE. But we need the requested value later
2991 to decide whether a height or width parameter shall be
2992 applied. Therefore, we remember the requested value in
2993 fullscreen_wanted for the following two cases. */
2994 if (EQ (val, Qfullheight))
2995 fullscreen_wanted = FULLSCREEN_HEIGHT;
2996 else if (EQ (val, Qfullwidth))
2997 fullscreen_wanted = FULLSCREEN_WIDTH;
2998 }
2999
972f4259
KS
3000 old_value = get_frame_param (f, prop);
3001 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
972f4259
KS
3002 if (NILP (Fequal (val, old_value)))
3003 {
3004 store_frame_param (f, prop, val);
3005
3006 param_index = Fget (prop, Qx_frame_parameter);
3007 if (NATNUMP (param_index)
3008 && (XFASTINT (param_index)
3009 < sizeof (frame_parms)/sizeof (frame_parms[0]))
fa971ac3
KL
3010 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3011 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
972f4259
KS
3012 }
3013 }
3014 }
3015
3016 /* Now process them in reverse of specified order. */
3017 for (i--; i >= 0; i--)
3018 {
3019 Lisp_Object prop, val;
3020
3021 prop = parms[i];
3022 val = values[i];
3023
629c715d 3024 if (EQ (prop, Qwidth) && NATNUMP (val))
56f668f7 3025 width_for_full_height = width = XFASTINT (val);
629c715d 3026 else if (EQ (prop, Qheight) && NATNUMP (val))
56f668f7 3027 height_for_full_width = height = XFASTINT (val);
972f4259
KS
3028 else if (EQ (prop, Qtop))
3029 top = val;
3030 else if (EQ (prop, Qleft))
3031 left = val;
3032 else if (EQ (prop, Qicon_top))
3033 icon_top = val;
3034 else if (EQ (prop, Qicon_left))
3035 icon_left = val;
3036 else if (EQ (prop, Qforeground_color)
3037 || EQ (prop, Qbackground_color)
3038 || EQ (prop, Qfont)
3039 || EQ (prop, Qfullscreen))
3040 /* Processed above. */
3041 continue;
3042 else
3043 {
3044 register Lisp_Object param_index, old_value;
3045
3046 old_value = get_frame_param (f, prop);
3047
3048 store_frame_param (f, prop, val);
3049
3050 param_index = Fget (prop, Qx_frame_parameter);
3051 if (NATNUMP (param_index)
3052 && (XFASTINT (param_index)
3053 < sizeof (frame_parms)/sizeof (frame_parms[0]))
fa971ac3
KL
3054 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3055 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
972f4259
KS
3056 }
3057 }
3058
3059 /* Don't die if just one of these was set. */
3060 if (EQ (left, Qunbound))
3061 {
3062 left_no_change = 1;
5af5757b
KS
3063 if (f->left_pos < 0)
3064 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
972f4259 3065 else
5af5757b 3066 XSETINT (left, f->left_pos);
972f4259
KS
3067 }
3068 if (EQ (top, Qunbound))
3069 {
3070 top_no_change = 1;
5af5757b
KS
3071 if (f->top_pos < 0)
3072 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
972f4259 3073 else
5af5757b 3074 XSETINT (top, f->top_pos);
972f4259
KS
3075 }
3076
3077 /* If one of the icon positions was not set, preserve or default it. */
3078 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3079 {
3080 icon_left_no_change = 1;
3081 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3082 if (NILP (icon_left))
3083 XSETINT (icon_left, 0);
3084 }
3085 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3086 {
3087 icon_top_no_change = 1;
3088 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3089 if (NILP (icon_top))
3090 XSETINT (icon_top, 0);
3091 }
3092
972f4259
KS
3093 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3094 {
3095 /* If the frame is visible already and the fullscreen parameter is
3096 being set, it is too late to set WM manager hints to specify
3097 size and position.
3098 Here we first get the width, height and position that applies to
3099 fullscreen. We then move the frame to the appropriate
3100 position. Resize of the frame is taken care of in the code after
3101 this if-statement. */
3102 int new_left, new_top;
3103
3104 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
6b61353c
KH
3105 if (new_top != f->top_pos || new_left != f->left_pos)
3106 x_set_offset (f, new_left, new_top, 1);
56f668f7 3107
eba7400d
MR
3108 /* When both height and fullwidth were requested, make sure the
3109 requested value for height gets applied. */
3110 if (height_for_full_width && fullscreen_wanted == FULLSCREEN_WIDTH)
56f668f7 3111 height = height_for_full_width;
eba7400d
MR
3112 /* When both width and fullheight were requested, make sure the
3113 requested value for width gets applied. */
3114 if (width_for_full_height && fullscreen_wanted == FULLSCREEN_HEIGHT)
56f668f7 3115 width = width_for_full_height;
972f4259 3116 }
972f4259
KS
3117
3118 /* Don't set these parameters unless they've been explicitly
3119 specified. The window might be mapped or resized while we're in
3120 this function, and we don't want to override that unless the lisp
3121 code has asked for it.
3122
3123 Don't set these parameters unless they actually differ from the
3124 window's current parameters; the window may not actually exist
3125 yet. */
3126 {
3127 Lisp_Object frame;
3128
3129 check_frame_size (f, &height, &width);
3130
3131 XSETFRAME (frame, f);
3132
5af5757b
KS
3133 if (width != FRAME_COLS (f)
3134 || height != FRAME_LINES (f)
3135 || f->new_text_lines || f->new_text_cols)
972f4259
KS
3136 Fset_frame_size (frame, make_number (width), make_number (height));
3137
3138 if ((!NILP (left) || !NILP (top))
3139 && ! (left_no_change && top_no_change)
5af5757b
KS
3140 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3141 && NUMBERP (top) && XINT (top) == f->top_pos))
972f4259
KS
3142 {
3143 int leftpos = 0;
3144 int toppos = 0;
3145
3146 /* Record the signs. */
5af5757b 3147 f->size_hint_flags &= ~ (XNegative | YNegative);
972f4259 3148 if (EQ (left, Qminus))
5af5757b 3149 f->size_hint_flags |= XNegative;
972f4259
KS
3150 else if (INTEGERP (left))
3151 {
3152 leftpos = XINT (left);
3153 if (leftpos < 0)
5af5757b 3154 f->size_hint_flags |= XNegative;
972f4259
KS
3155 }
3156 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3157 && CONSP (XCDR (left))
3158 && INTEGERP (XCAR (XCDR (left))))
3159 {
3160 leftpos = - XINT (XCAR (XCDR (left)));
5af5757b 3161 f->size_hint_flags |= XNegative;
972f4259
KS
3162 }
3163 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3164 && CONSP (XCDR (left))
3165 && INTEGERP (XCAR (XCDR (left))))
3166 {
3167 leftpos = XINT (XCAR (XCDR (left)));
3168 }
3169
3170 if (EQ (top, Qminus))
5af5757b 3171 f->size_hint_flags |= YNegative;
972f4259
KS
3172 else if (INTEGERP (top))
3173 {
3174 toppos = XINT (top);
3175 if (toppos < 0)
5af5757b 3176 f->size_hint_flags |= YNegative;
972f4259
KS
3177 }
3178 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3179 && CONSP (XCDR (top))
3180 && INTEGERP (XCAR (XCDR (top))))
3181 {
3182 toppos = - XINT (XCAR (XCDR (top)));
5af5757b 3183 f->size_hint_flags |= YNegative;
972f4259
KS
3184 }
3185 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3186 && CONSP (XCDR (top))
3187 && INTEGERP (XCAR (XCDR (top))))
3188 {
3189 toppos = XINT (XCAR (XCDR (top)));
3190 }
3191
3192
3193 /* Store the numeric value of the position. */
5af5757b
KS
3194 f->top_pos = toppos;
3195 f->left_pos = leftpos;
972f4259 3196
5af5757b 3197 f->win_gravity = NorthWestGravity;
972f4259
KS
3198
3199 /* Actually set that position, and convert to absolute. */
3200 x_set_offset (f, leftpos, toppos, -1);
3201 }
3202
3203 if ((!NILP (icon_left) || !NILP (icon_top))
3204 && ! (icon_left_no_change && icon_top_no_change))
3205 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3206 }
3207
3208 UNGCPRO;
3209}
3210
3211
3212/* Insert a description of internally-recorded parameters of frame X
3213 into the parameter alist *ALISTPTR that is to be given to the user.
3214 Only parameters that are specific to the X window system
3215 and whose values are not correctly recorded in the frame's
3216 param_alist need to be considered here. */
3217
3218void
3219x_report_frame_params (f, alistptr)
3220 struct frame *f;
3221 Lisp_Object *alistptr;
3222{
3223 char buf[16];
3224 Lisp_Object tem;
3225
3226 /* Represent negative positions (off the top or left screen edge)
3227 in a way that Fmodify_frame_parameters will understand correctly. */
5af5757b
KS
3228 XSETINT (tem, f->left_pos);
3229 if (f->left_pos >= 0)
972f4259
KS
3230 store_in_alist (alistptr, Qleft, tem);
3231 else
3232 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3233
5af5757b
KS
3234 XSETINT (tem, f->top_pos);
3235 if (f->top_pos >= 0)
972f4259
KS
3236 store_in_alist (alistptr, Qtop, tem);
3237 else
3238 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3239
3240 store_in_alist (alistptr, Qborder_width,
5af5757b 3241 make_number (f->border_width));
972f4259 3242 store_in_alist (alistptr, Qinternal_border_width,
5af5757b 3243 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
972f4259 3244 store_in_alist (alistptr, Qleft_fringe,
5af5757b 3245 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
972f4259 3246 store_in_alist (alistptr, Qright_fringe,
5af5757b 3247 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
972f4259
KS
3248 store_in_alist (alistptr, Qscroll_bar_width,
3249 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3250 ? make_number (0)
5af5757b
KS
3251 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3252 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
972f4259
KS
3253 /* nil means "use default width"
3254 for non-toolkit scroll bar.
3255 ruler-mode.el depends on this. */
3256 : Qnil));
3257 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3258 store_in_alist (alistptr, Qwindow_id,
3259 build_string (buf));
3260#ifdef HAVE_X_WINDOWS
3261#ifdef USE_X_TOOLKIT
3262 /* Tooltip frame may not have this widget. */
3263 if (FRAME_X_OUTPUT (f)->widget)
3264#endif
3265 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3266 store_in_alist (alistptr, Qouter_window_id,
3267 build_string (buf));
3268#endif
3269 store_in_alist (alistptr, Qicon_name, f->icon_name);
3270 FRAME_SAMPLE_VISIBILITY (f);
3271 store_in_alist (alistptr, Qvisibility,
3272 (FRAME_VISIBLE_P (f) ? Qt
3273 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3274 store_in_alist (alistptr, Qdisplay,
3275 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3276
3277 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3278 tem = Qnil;
3279 else
3280 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
5839d7e8 3281 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
972f4259
KS
3282 store_in_alist (alistptr, Qparent_id, tem);
3283}
3284
3285
3286/* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3287 the previous value of that parameter, NEW_VALUE is the new value. */
3288
3289void
3290x_set_fullscreen (f, new_value, old_value)
3291 struct frame *f;
3292 Lisp_Object new_value, old_value;
3293{
972f4259 3294 if (NILP (new_value))
5af5757b 3295 f->want_fullscreen = FULLSCREEN_NONE;
972f4259 3296 else if (EQ (new_value, Qfullboth))
5af5757b 3297 f->want_fullscreen = FULLSCREEN_BOTH;
972f4259 3298 else if (EQ (new_value, Qfullwidth))
5af5757b 3299 f->want_fullscreen = FULLSCREEN_WIDTH;
972f4259 3300 else if (EQ (new_value, Qfullheight))
5af5757b 3301 f->want_fullscreen = FULLSCREEN_HEIGHT;
d761dd42 3302
a3547743 3303 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
974b73e8 3304 FRAME_TERMINAL (f)->fullscreen_hook (f);
972f4259
KS
3305}
3306
3307
3308/* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3309 the previous value of that parameter, NEW_VALUE is the new value. */
3310
3311void
3312x_set_line_spacing (f, new_value, old_value)
3313 struct frame *f;
3314 Lisp_Object new_value, old_value;
3315{
3316 if (NILP (new_value))
3317 f->extra_line_spacing = 0;
3318 else if (NATNUMP (new_value))
3319 f->extra_line_spacing = XFASTINT (new_value);
3320 else
9dc95187 3321 signal_error ("Invalid line-spacing", new_value);
972f4259
KS
3322 if (FRAME_VISIBLE_P (f))
3323 redraw_frame (f);
3324}
3325
3326
3327/* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3328 the previous value of that parameter, NEW_VALUE is the new value. */
3329
3330void
3331x_set_screen_gamma (f, new_value, old_value)
3332 struct frame *f;
3333 Lisp_Object new_value, old_value;
3334{
05fc2ef7
CY
3335 Lisp_Object bgcolor;
3336
972f4259
KS
3337 if (NILP (new_value))
3338 f->gamma = 0;
3339 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
05fc2ef7
CY
3340 /* The value 0.4545 is the normal viewing gamma. */
3341 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
972f4259 3342 else
9dc95187 3343 signal_error ("Invalid screen-gamma", new_value);
972f4259 3344
05fc2ef7
CY
3345 /* Apply the new gamma value to the frame background. */
3346 bgcolor = Fassq (Qbackground_color, f->param_alist);
3347 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3348 {
3349 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3350 if (NATNUMP (index)
3351 && (XFASTINT (index)
3352 < sizeof (frame_parms)/sizeof (frame_parms[0]))
6baa22c1
KL
3353 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3354 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3355 (f, bgcolor, Qnil);
05fc2ef7
CY
3356 }
3357
3358 Fclear_face_cache (Qnil);
972f4259
KS
3359}
3360
3361
3362void
3363x_set_font (f, arg, oldval)
3364 struct frame *f;
3365 Lisp_Object arg, oldval;
3366{
972f4259 3367 Lisp_Object frame;
e0c8ad78
KH
3368 int fontset = -1;
3369 Lisp_Object font_object;
972f4259 3370
178377e1 3371 /* Set the frame parameter back to the old value because we may
e0c8ad78
KH
3372 fail to use ARG as the new parameter value. */
3373 store_frame_param (f, Qfont, oldval);
0169d360 3374
e0c8ad78
KH
3375 /* ARG is a fontset name, a font name, or a font object.
3376 In the last case, this function never fail. */
3377 if (STRINGP (arg))
3378 {
3379 fontset = fs_query_fontset (arg, 0);
3380 if (fontset < 0)
0169d360 3381 {
e0c8ad78
KH
3382 font_object = font_open_by_name (f, SDATA (arg));
3383 if (NILP (font_object))
3384 error ("Font `%s' is not defined", SDATA (arg));
3385 arg = AREF (font_object, FONT_NAME_INDEX);
0169d360 3386 }
e0c8ad78
KH
3387 else if (fontset > 0)
3388 {
3389 Lisp_Object ascii_font = fontset_ascii (fontset);
0169d360 3390
e0c8ad78
KH
3391 font_object = font_open_by_name (f, SDATA (ascii_font));
3392 if (NILP (font_object))
3393 error ("Font `%s' is not defined", SDATA (arg));
3394 arg = fontset_name (fontset);
3395 }
0169d360 3396 else
e0c8ad78 3397 error ("The default fontset can't be used for a frame font");
0169d360 3398 }
e0c8ad78 3399 else if (FONT_OBJECT_P (arg))
698ca23e 3400 {
e0c8ad78
KH
3401 font_object = arg;
3402 /* This is store the XLFD font name in the frame parameter for
3403 backward compatiblity. We should store the font-object
3404 itself in the future. */
3405 arg = AREF (font_object, FONT_NAME_INDEX);
698ca23e 3406 }
e0c8ad78
KH
3407 else
3408 signal_error ("Invalid font", arg);
972f4259 3409
e0c8ad78
KH
3410 if (! NILP (Fequal (font_object, oldval)))
3411 return;
3412 x_new_font (f, font_object, fontset);
3413 store_frame_param (f, Qfont, arg);
3414 /* Recalculate toolbar height. */
3415 f->n_tool_bar_rows = 0;
3416 /* Ensure we redraw it. */
3417 clear_current_matrices (f);
ca03f883 3418
e0c8ad78 3419 recompute_basic_faces (f);
972f4259
KS
3420
3421 do_pending_window_change (0);
3422
a6f75881
CY
3423 /* We used to call face-set-after-frame-default here, but it leads to
3424 recursive calls (since that function can set the `default' face's
3425 font which in turns changes the frame's `font' parameter).
3426 Also I don't know what this call is meant to do, but it seems the
3427 wrong way to do it anyway (it does a lot more work than what seems
3428 reasonable in response to a change to `font'). */
972f4259
KS
3429}
3430
3431
1a356571
KH
3432void
3433x_set_font_backend (f, new_value, old_value)
3434 struct frame *f;
3435 Lisp_Object new_value, old_value;
3436{
1a356571
KH
3437 if (! NILP (new_value)
3438 && !CONSP (new_value))
3439 {
3440 char *p0, *p1;
1bf72735 3441
1a356571
KH
3442 CHECK_STRING (new_value);
3443 p0 = p1 = SDATA (new_value);
3444 new_value = Qnil;
3445 while (*p0)
3446 {
22e64f7c 3447 while (*p1 && ! isspace (*p1) && *p1 != ',') p1++;
1a356571
KH
3448 if (p0 < p1)
3449 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3450 new_value);
3451 if (*p1)
22e64f7c
KH
3452 {
3453 int c;
3454
3455 while ((c = *++p1) && isspace (c));
3456 }
1a356571
KH
3457 p0 = p1;
3458 }
8fb9e675
KH
3459 new_value = Fnreverse (new_value);
3460 }
3461
3462 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3463 return;
3464
e0c8ad78 3465 if (FRAME_FONT (f))
dfdf55c0 3466 free_all_realized_faces (Qnil);
1a356571 3467
dfdf55c0 3468 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
8fb9e675 3469 if (NILP (new_value))
dfdf55c0
KH
3470 {
3471 if (NILP (old_value))
3472 error ("No font backend available");
3473 font_update_drivers (f, old_value);
3474 error ("None of specified font backends are available");
3475 }
8fb9e675
KH
3476 store_frame_param (f, Qfont_backend, new_value);
3477
e0c8ad78 3478 if (FRAME_FONT (f))
8fb9e675
KH
3479 {
3480 Lisp_Object frame;
3481
3482 XSETFRAME (frame, f);
3483 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3484 ++face_change_count;
3485 ++windows_or_buffers_changed;
3486 }
1a356571 3487}
1a356571
KH
3488
3489
972f4259
KS
3490void
3491x_set_fringe_width (f, new_value, old_value)
3492 struct frame *f;
3493 Lisp_Object new_value, old_value;
3494{
3495 compute_fringe_widths (f, 1);
3496}
3497
3498void
3499x_set_border_width (f, arg, oldval)
3500 struct frame *f;
3501 Lisp_Object arg, oldval;
3502{
3503 CHECK_NUMBER (arg);
3504
5af5757b 3505 if (XINT (arg) == f->border_width)
972f4259
KS
3506 return;
3507
972f4259 3508 if (FRAME_X_WINDOW (f) != 0)
dac85f4b 3509 error ("Cannot change the border width of a frame");
972f4259 3510
5af5757b 3511 f->border_width = XINT (arg);
972f4259
KS
3512}
3513
3514void
3515x_set_internal_border_width (f, arg, oldval)
3516 struct frame *f;
3517 Lisp_Object arg, oldval;
3518{
5af5757b 3519 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
972f4259
KS
3520
3521 CHECK_NUMBER (arg);
5af5757b
KS
3522 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3523 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3524 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
972f4259
KS
3525
3526#ifdef USE_X_TOOLKIT
3527 if (FRAME_X_OUTPUT (f)->edit_widget)
3528 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3529#endif
3530
5af5757b 3531 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
972f4259
KS
3532 return;
3533
3534 if (FRAME_X_WINDOW (f) != 0)
3535 {
5af5757b 3536 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3537 SET_FRAME_GARBAGED (f);
3538 do_pending_window_change (0);
3539 }
3540 else
3541 SET_FRAME_GARBAGED (f);
3542}
3543
3544void
3545x_set_visibility (f, value, oldval)
3546 struct frame *f;
3547 Lisp_Object value, oldval;
3548{
3549 Lisp_Object frame;
3550 XSETFRAME (frame, f);
3551
3552 if (NILP (value))
3553 Fmake_frame_invisible (frame, Qt);
3554 else if (EQ (value, Qicon))
3555 Ficonify_frame (frame);
3556 else
3557 Fmake_frame_visible (frame);
3558}
3559
3560void
3561x_set_autoraise (f, arg, oldval)
3562 struct frame *f;
3563 Lisp_Object arg, oldval;
3564{
3565 f->auto_raise = !EQ (Qnil, arg);
3566}
3567
3568void
3569x_set_autolower (f, arg, oldval)
3570 struct frame *f;
3571 Lisp_Object arg, oldval;
3572{
3573 f->auto_lower = !EQ (Qnil, arg);
3574}
3575
3576void
3577x_set_unsplittable (f, arg, oldval)
3578 struct frame *f;
3579 Lisp_Object arg, oldval;
3580{
3581 f->no_split = !NILP (arg);
3582}
3583
3584void
3585x_set_vertical_scroll_bars (f, arg, oldval)
3586 struct frame *f;
3587 Lisp_Object arg, oldval;
3588{
3589 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3590 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3591 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3592 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3593 {
3594 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3595 = (NILP (arg)
3596 ? vertical_scroll_bar_none
3597 : EQ (Qleft, arg)
3598 ? vertical_scroll_bar_left
3599 : EQ (Qright, arg)
3600 ? vertical_scroll_bar_right
6b61353c
KH
3601 : EQ (Qleft, Vdefault_frame_scroll_bars)
3602 ? vertical_scroll_bar_left
3603 : EQ (Qright, Vdefault_frame_scroll_bars)
3604 ? vertical_scroll_bar_right
3605 : vertical_scroll_bar_none);
972f4259
KS
3606
3607 /* We set this parameter before creating the X window for the
3608 frame, so we can get the geometry right from the start.
3609 However, if the window hasn't been created yet, we shouldn't
3610 call x_set_window_size. */
3611 if (FRAME_X_WINDOW (f))
5af5757b 3612 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3613 do_pending_window_change (0);
3614 }
3615}
3616
3617void
3618x_set_scroll_bar_width (f, arg, oldval)
3619 struct frame *f;
3620 Lisp_Object arg, oldval;
3621{
5af5757b 3622 int wid = FRAME_COLUMN_WIDTH (f);
972f4259
KS
3623
3624 if (NILP (arg))
3625 {
3626 x_set_scroll_bar_default_width (f);
3627
3628 if (FRAME_X_WINDOW (f))
5af5757b 3629 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3630 do_pending_window_change (0);
3631 }
3632 else if (INTEGERP (arg) && XINT (arg) > 0
5af5757b 3633 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
972f4259
KS
3634 {
3635 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3636 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3637
5af5757b
KS
3638 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3639 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
972f4259 3640 if (FRAME_X_WINDOW (f))
5af5757b 3641 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3642 do_pending_window_change (0);
3643 }
3644
5af5757b 3645 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
972f4259
KS
3646 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3647 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3648}
3649
3650
3651
3652/* Return non-nil if frame F wants a bitmap icon. */
3653
3654Lisp_Object
3655x_icon_type (f)
3656 FRAME_PTR f;
3657{
3658 Lisp_Object tem;
3659
3660 tem = assq_no_quit (Qicon_type, f->param_alist);
3661 if (CONSP (tem))
3662 return XCDR (tem);
3663 else
3664 return Qnil;
3665}
3666
0a708637
GM
3667void
3668x_set_alpha (f, arg, oldval)
3669 struct frame *f;
3670 Lisp_Object arg, oldval;
3671{
3672 double alpha = 1.0;
3673 double newval[2];
3674 int i, ialpha;
3675 Lisp_Object item;
3676
3677 for (i = 0; i < 2; i++)
3678 {
3679 newval[i] = 1.0;
3680 if (CONSP (arg))
3681 {
3682 item = CAR (arg);
3683 arg = CDR (arg);
3684 }
3685 else
1fd877d6 3686 item = arg;
0a708637 3687
62e62ea8
CY
3688 if (NILP (item))
3689 alpha = - 1.0;
3690 else if (FLOATP (item))
3691 {
3692 alpha = XFLOAT_DATA (item);
3693 if (alpha < 0.0 || 1.0 < alpha)
3694 args_out_of_range (make_float (0.0), make_float (1.0));
3695 }
3696 else if (INTEGERP (item))
3697 {
3698 ialpha = XINT (item);
3699 if (ialpha < 0 || 100 < ialpha)
3700 args_out_of_range (make_number (0), make_number (100));
3701 else
3702 alpha = ialpha / 100.0;
3703 }
3704 else
3705 wrong_type_argument (Qnumberp, item);
0a708637
GM
3706 newval[i] = alpha;
3707 }
3708
3709 for (i = 0; i < 2; i++)
3710 f->alpha[i] = newval[i];
3711
59bc82c0 3712#if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA)
0a708637
GM
3713 BLOCK_INPUT;
3714 x_set_frame_alpha (f);
3715 UNBLOCK_INPUT;
3716#endif
3717
3718 return;
3719}
3720
972f4259
KS
3721\f
3722/* Subroutines of creating an X frame. */
3723
3724/* Make sure that Vx_resource_name is set to a reasonable value.
3725 Fix it up, or set it to `emacs' if it is too hopeless. */
3726
3727void
3728validate_x_resource_name ()
3729{
3730 int len = 0;
3731 /* Number of valid characters in the resource name. */
3732 int good_count = 0;
3733 /* Number of invalid characters in the resource name. */
3734 int bad_count = 0;
3735 Lisp_Object new;
3736 int i;
3737
3738 if (!STRINGP (Vx_resource_class))
3739 Vx_resource_class = build_string (EMACS_CLASS);
3740
3741 if (STRINGP (Vx_resource_name))
3742 {
3743 unsigned char *p = SDATA (Vx_resource_name);
3744 int i;
3745
3746 len = SBYTES (Vx_resource_name);
3747
3748 /* Only letters, digits, - and _ are valid in resource names.
3749 Count the valid characters and count the invalid ones. */
3750 for (i = 0; i < len; i++)
3751 {
3752 int c = p[i];
3753 if (! ((c >= 'a' && c <= 'z')
3754 || (c >= 'A' && c <= 'Z')
3755 || (c >= '0' && c <= '9')
3756 || c == '-' || c == '_'))
3757 bad_count++;
3758 else
3759 good_count++;
3760 }
3761 }
3762 else
3763 /* Not a string => completely invalid. */
3764 bad_count = 5, good_count = 0;
3765
3766 /* If name is valid already, return. */
3767 if (bad_count == 0)
3768 return;
3769
3770 /* If name is entirely invalid, or nearly so, use `emacs'. */
3771 if (good_count == 0
3772 || (good_count == 1 && bad_count > 0))
3773 {
3774 Vx_resource_name = build_string ("emacs");
3775 return;
3776 }
3777
3778 /* Name is partly valid. Copy it and replace the invalid characters
3779 with underscores. */
3780
3781 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3782
3783 for (i = 0; i < len; i++)
3784 {
3785 int c = SREF (new, i);
3786 if (! ((c >= 'a' && c <= 'z')
3787 || (c >= 'A' && c <= 'Z')
3788 || (c >= '0' && c <= '9')
3789 || c == '-' || c == '_'))
3790 SSET (new, i, '_');
3791 }
3792}
3793
3794
3795extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3796extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3797
3798
b5251fe7 3799/* Get specified attribute from resource database RDB.
972f4259
KS
3800 See Fx_get_resource below for other parameters. */
3801
3802static Lisp_Object
3803xrdb_get_resource (rdb, attribute, class, component, subclass)
3804 XrmDatabase rdb;
3805 Lisp_Object attribute, class, component, subclass;
3806{
3807 register char *value;
3808 char *name_key;
3809 char *class_key;
3810
3811 CHECK_STRING (attribute);
3812 CHECK_STRING (class);
3813
3814 if (!NILP (component))
3815 CHECK_STRING (component);
3816 if (!NILP (subclass))
3817 CHECK_STRING (subclass);
3818 if (NILP (component) != NILP (subclass))
3819 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3820
3821 validate_x_resource_name ();
3822
3823 /* Allocate space for the components, the dots which separate them,
3824 and the final '\0'. Make them big enough for the worst case. */
3825 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3826 + (STRINGP (component)
3827 ? SBYTES (component) : 0)
3828 + SBYTES (attribute)
3829 + 3);
3830
3831 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3832 + SBYTES (class)
3833 + (STRINGP (subclass)
3834 ? SBYTES (subclass) : 0)
3835 + 3);
3836
3837 /* Start with emacs.FRAMENAME for the name (the specific one)
3838 and with `Emacs' for the class key (the general one). */
3839 strcpy (name_key, SDATA (Vx_resource_name));
3840 strcpy (class_key, SDATA (Vx_resource_class));
3841
3842 strcat (class_key, ".");
3843 strcat (class_key, SDATA (class));
3844
3845 if (!NILP (component))
3846 {
3847 strcat (class_key, ".");
3848 strcat (class_key, SDATA (subclass));
3849
3850 strcat (name_key, ".");
3851 strcat (name_key, SDATA (component));
3852 }
3853
3854 strcat (name_key, ".");
3855 strcat (name_key, SDATA (attribute));
3856
3857 value = x_get_string_resource (rdb, name_key, class_key);
3858
3859 if (value != (char *) 0)
3860 return build_string (value);
3861 else
3862 return Qnil;
3863}
3864
3865
3866DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3867 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3868This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3869class, where INSTANCE is the name under which Emacs was invoked, or
3870the name specified by the `-name' or `-rn' command-line arguments.
3871
3872The optional arguments COMPONENT and SUBCLASS add to the key and the
3873class, respectively. You must specify both of them or neither.
3874If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3875and the class is `Emacs.CLASS.SUBCLASS'. */)
3876 (attribute, class, component, subclass)
3877 Lisp_Object attribute, class, component, subclass;
3878{
3879#ifdef HAVE_X_WINDOWS
3880 check_x ();
3881#endif
3882
3883 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3884 attribute, class, component, subclass);
3885}
3886
3887/* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3888
3889Lisp_Object
3890display_x_get_resource (dpyinfo, attribute, class, component, subclass)
a1702920 3891 Display_Info *dpyinfo;
972f4259
KS
3892 Lisp_Object attribute, class, component, subclass;
3893{
3894 return xrdb_get_resource (dpyinfo->xrdb,
3895 attribute, class, component, subclass);
3896}
3897
3898/* Used when C code wants a resource value. */
3899
3900char *
3901x_get_resource_string (attribute, class)
3902 char *attribute, *class;
3903{
3904 char *name_key;
3905 char *class_key;
3906 struct frame *sf = SELECTED_FRAME ();
3907
3908 /* Allocate space for the components, the dots which separate them,
3909 and the final '\0'. */
3910 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3911 + strlen (attribute) + 2);
3912 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3913 + strlen (class) + 2);
3914
3915 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3916 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3917
3918 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3919 name_key, class_key);
3920}
3921
3922
3923/* Return the value of parameter PARAM.
3924
3925 First search ALIST, then Vdefault_frame_alist, then the X defaults
3926 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3927
3928 Convert the resource to the type specified by desired_type.
3929
3930 If no default is specified, return Qunbound. If you call
3931 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3932 and don't let it get stored in any Lisp-visible variables! */
3933
3934Lisp_Object
3935x_get_arg (dpyinfo, alist, param, attribute, class, type)
b5251fe7 3936 Display_Info *dpyinfo;
972f4259
KS
3937 Lisp_Object alist, param;
3938 char *attribute;
3939 char *class;
3940 enum resource_types type;
3941{
3942 register Lisp_Object tem;
3943
3944 tem = Fassq (param, alist);
d00368cf
RS
3945
3946 if (!NILP (tem))
3947 {
3948 /* If we find this parm in ALIST, clear it out
3949 so that it won't be "left over" at the end. */
5f694926 3950 Lisp_Object tail;
d00368cf 3951 XSETCAR (tem, Qnil);
5f694926
RS
3952 /* In case the parameter appears more than once in the alist,
3953 clear it out. */
3954 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3955 if (CONSP (XCAR (tail))
3956 && EQ (XCAR (XCAR (tail)), param))
3957 XSETCAR (XCAR (tail), Qnil);
d00368cf
RS
3958 }
3959 else
972f4259 3960 tem = Fassq (param, Vdefault_frame_alist);
d00368cf
RS
3961
3962 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3963 look in the X resources. */
972f4259
KS
3964 if (EQ (tem, Qnil))
3965 {
3966 if (attribute)
3967 {
3968 tem = display_x_get_resource (dpyinfo,
3969 build_string (attribute),
3970 build_string (class),
3971 Qnil, Qnil);
3972
3973 if (NILP (tem))
3974 return Qunbound;
3975
3976 switch (type)
3977 {
3978 case RES_TYPE_NUMBER:
3979 return make_number (atoi (SDATA (tem)));
3980
3981 case RES_TYPE_FLOAT:
3982 return make_float (atof (SDATA (tem)));
3983
3984 case RES_TYPE_BOOLEAN:
3985 tem = Fdowncase (tem);
3986 if (!strcmp (SDATA (tem), "on")
edfda783
AR
3987#ifdef HAVE_NS
3988 || !strcmp(SDATA(tem), "yes")
3989#endif
972f4259
KS
3990 || !strcmp (SDATA (tem), "true"))
3991 return Qt;
3992 else
3993 return Qnil;
3994
3995 case RES_TYPE_STRING:
3996 return tem;
3997
3998 case RES_TYPE_SYMBOL:
3999 /* As a special case, we map the values `true' and `on'
4000 to Qt, and `false' and `off' to Qnil. */
4001 {
4002 Lisp_Object lower;
4003 lower = Fdowncase (tem);
4004 if (!strcmp (SDATA (lower), "on")
edfda783
AR
4005#ifdef HAVE_NS
4006 || !strcmp(SDATA(lower), "yes")
4007#endif
972f4259
KS
4008 || !strcmp (SDATA (lower), "true"))
4009 return Qt;
4010 else if (!strcmp (SDATA (lower), "off")
edfda783
AR
4011#ifdef HAVE_NS
4012 || !strcmp(SDATA(lower), "no")
4013#endif
972f4259
KS
4014 || !strcmp (SDATA (lower), "false"))
4015 return Qnil;
4016 else
4017 return Fintern (tem, Qnil);
4018 }
4019
4020 default:
4021 abort ();
4022 }
4023 }
4024 else
4025 return Qunbound;
4026 }
4027 return Fcdr (tem);
4028}
4029
4030Lisp_Object
4031x_frame_get_arg (f, alist, param, attribute, class, type)
4032 struct frame *f;
4033 Lisp_Object alist, param;
4034 char *attribute;
4035 char *class;
4036 enum resource_types type;
4037{
4038 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
4039 alist, param, attribute, class, type);
4040}
4041
4042/* Like x_frame_get_arg, but also record the value in f->param_alist. */
4043
4044Lisp_Object
4045x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
4046 struct frame *f;
4047 Lisp_Object alist, param;
4048 char *attribute;
4049 char *class;
4050 enum resource_types type;
4051{
4052 Lisp_Object value;
4053
4054 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
4055 attribute, class, type);
edd1c685 4056 if (! NILP (value) && ! EQ (value, Qunbound))
972f4259
KS
4057 store_frame_param (f, param, value);
4058
4059 return value;
4060}
4061
4062
4063/* Record in frame F the specified or default value according to ALIST
4064 of the parameter named PROP (a Lisp symbol).
4065 If no value is specified for PROP, look for an X default for XPROP
4066 on the frame named NAME.
4067 If that is not found either, use the value DEFLT. */
4068
4069Lisp_Object
4070x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
4071 struct frame *f;
4072 Lisp_Object alist;
4073 Lisp_Object prop;
4074 Lisp_Object deflt;
4075 char *xprop;
4076 char *xclass;
4077 enum resource_types type;
4078{
4079 Lisp_Object tem;
4080
4081 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4082 if (EQ (tem, Qunbound))
4083 tem = deflt;
4084 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
4085 return tem;
4086}
4087
4088
4089
4090\f
dc4db71c
CY
4091#ifdef HAVE_NS
4092
4093/* We used to define x-parse-geometry directly in ns-win.el, but that
4094 confused make-docfile: the documentation string in ns-win.el was
4095 used for x-parse-geometry even in non-NS builds.. */
4096
4097DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4098 doc: /* Parse a Nextstep-style geometry string STRING.
4099Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4100The properties returned may include `top', `left', `height', and `width'.
4101This works by calling `ns-parse-geometry'. */)
4102 (string)
4103 Lisp_Object string;
4104{
4105 call1 (Qns_parse_geometry, string);
4106}
4107
4108#else /* !HAVE_NS */
4109
972f4259
KS
4110DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4111 doc: /* Parse an X-style geometry string STRING.
4112Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4113The properties returned may include `top', `left', `height', and `width'.
4114The value of `left' or `top' may be an integer,
4115or a list (+ N) meaning N pixels relative to top/left corner,
4116or a list (- N) meaning -N pixels relative to bottom/right corner. */)
4117 (string)
4118 Lisp_Object string;
4119{
4120 int geometry, x, y;
4121 unsigned int width, height;
4122 Lisp_Object result;
4123
4124 CHECK_STRING (string);
4125
4126 geometry = XParseGeometry ((char *) SDATA (string),
4127 &x, &y, &width, &height);
972f4259
KS
4128 result = Qnil;
4129 if (geometry & XValue)
4130 {
4131 Lisp_Object element;
4132
4133 if (x >= 0 && (geometry & XNegative))
4134 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
4135 else if (x < 0 && ! (geometry & XNegative))
4136 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
4137 else
4138 element = Fcons (Qleft, make_number (x));
4139 result = Fcons (element, result);
4140 }
4141
4142 if (geometry & YValue)
4143 {
4144 Lisp_Object element;
4145
4146 if (y >= 0 && (geometry & YNegative))
4147 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
4148 else if (y < 0 && ! (geometry & YNegative))
4149 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4150 else
4151 element = Fcons (Qtop, make_number (y));
4152 result = Fcons (element, result);
4153 }
4154
4155 if (geometry & WidthValue)
4156 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4157 if (geometry & HeightValue)
4158 result = Fcons (Fcons (Qheight, make_number (height)), result);
4159
4160 return result;
4161}
dc4db71c
CY
4162#endif /* HAVE_NS */
4163
972f4259
KS
4164
4165/* Calculate the desired size and position of frame F.
4166 Return the flags saying which aspects were specified.
4167
4168 Also set the win_gravity and size_hint_flags of F.
4169
4170 Adjust height for toolbar if TOOLBAR_P is 1.
4171
4172 This function does not make the coordinates positive. */
4173
4174#define DEFAULT_ROWS 40
4175#define DEFAULT_COLS 80
4176
4177int
4178x_figure_window_size (f, parms, toolbar_p)
4179 struct frame *f;
4180 Lisp_Object parms;
4181 int toolbar_p;
4182{
4183 register Lisp_Object tem0, tem1, tem2;
4184 long window_prompting = 0;
4185 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4186
4187 /* Default values if we fall through.
4188 Actually, if that happens we should get
4189 window manager prompting. */
5af5757b
KS
4190 SET_FRAME_COLS (f, DEFAULT_COLS);
4191 FRAME_LINES (f) = DEFAULT_ROWS;
972f4259
KS
4192 /* Window managers expect that if program-specified
4193 positions are not (0,0), they're intentional, not defaults. */
5af5757b
KS
4194 f->top_pos = 0;
4195 f->left_pos = 0;
972f4259 4196
5af5757b 4197 /* Ensure that old new_text_cols and new_text_lines will not override the
972f4259
KS
4198 values set here. */
4199 /* ++KFS: This was specific to W32, but seems ok for all platforms */
5af5757b 4200 f->new_text_cols = f->new_text_lines = 0;
972f4259
KS
4201
4202 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4203 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4204 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4205 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4206 {
4207 if (!EQ (tem0, Qunbound))
4208 {
4209 CHECK_NUMBER (tem0);
5af5757b 4210 FRAME_LINES (f) = XINT (tem0);
972f4259
KS
4211 }
4212 if (!EQ (tem1, Qunbound))
4213 {
4214 CHECK_NUMBER (tem1);
5af5757b 4215 SET_FRAME_COLS (f, XINT (tem1));
972f4259
KS
4216 }
4217 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4218 window_prompting |= USSize;
4219 else
4220 window_prompting |= PSize;
4221 }
4222
5af5757b
KS
4223 f->scroll_bar_actual_width
4224 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
972f4259
KS
4225
4226 /* This used to be done _before_ calling x_figure_window_size, but
4227 since the height is reset here, this was really a no-op. I
4228 assume that moving it here does what Gerd intended (although he
4229 no longer can remember what that was... ++KFS, 2003-03-25. */
4230
4231 /* Add the tool-bar height to the initial frame height so that the
4232 user gets a text display area of the size he specified with -g or
4233 via .Xdefaults. Later changes of the tool-bar height don't
4234 change the frame size. This is done so that users can create
4235 tall Emacs frames without having to guess how tall the tool-bar
4236 will get. */
4237 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4238 {
4239 int margin, relief, bar_height;
4240
4241 relief = (tool_bar_button_relief >= 0
4242 ? tool_bar_button_relief
4243 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4244
4245 if (INTEGERP (Vtool_bar_button_margin)
4246 && XINT (Vtool_bar_button_margin) > 0)
4247 margin = XFASTINT (Vtool_bar_button_margin);
4248 else if (CONSP (Vtool_bar_button_margin)
4249 && INTEGERP (XCDR (Vtool_bar_button_margin))
4250 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4251 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4252 else
4253 margin = 0;
4254
4255 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
5af5757b 4256 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
972f4259
KS
4257 }
4258
4259 compute_fringe_widths (f, 0);
4260
5af5757b
KS
4261 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4262 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
972f4259
KS
4263
4264 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4265 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4266 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4267 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4268 {
4269 if (EQ (tem0, Qminus))
4270 {
5af5757b 4271 f->top_pos = 0;
972f4259
KS
4272 window_prompting |= YNegative;
4273 }
4274 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4275 && CONSP (XCDR (tem0))
4276 && INTEGERP (XCAR (XCDR (tem0))))
4277 {
5af5757b 4278 f->top_pos = - XINT (XCAR (XCDR (tem0)));
972f4259
KS
4279 window_prompting |= YNegative;
4280 }
4281 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4282 && CONSP (XCDR (tem0))
4283 && INTEGERP (XCAR (XCDR (tem0))))
4284 {
5af5757b 4285 f->top_pos = XINT (XCAR (XCDR (tem0)));
972f4259
KS
4286 }
4287 else if (EQ (tem0, Qunbound))
5af5757b 4288 f->top_pos = 0;
972f4259
KS
4289 else
4290 {
4291 CHECK_NUMBER (tem0);
5af5757b
KS
4292 f->top_pos = XINT (tem0);
4293 if (f->top_pos < 0)
972f4259
KS
4294 window_prompting |= YNegative;
4295 }
4296
4297 if (EQ (tem1, Qminus))
4298 {
5af5757b 4299 f->left_pos = 0;
972f4259
KS
4300 window_prompting |= XNegative;
4301 }
4302 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4303 && CONSP (XCDR (tem1))
4304 && INTEGERP (XCAR (XCDR (tem1))))
4305 {
5af5757b 4306 f->left_pos = - XINT (XCAR (XCDR (tem1)));
972f4259
KS
4307 window_prompting |= XNegative;
4308 }
4309 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4310 && CONSP (XCDR (tem1))
4311 && INTEGERP (XCAR (XCDR (tem1))))
4312 {
5af5757b 4313 f->left_pos = XINT (XCAR (XCDR (tem1)));
972f4259
KS
4314 }
4315 else if (EQ (tem1, Qunbound))
5af5757b 4316 f->left_pos = 0;
972f4259
KS
4317 else
4318 {
4319 CHECK_NUMBER (tem1);
5af5757b
KS
4320 f->left_pos = XINT (tem1);
4321 if (f->left_pos < 0)
972f4259
KS
4322 window_prompting |= XNegative;
4323 }
4324
4325 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4326 window_prompting |= USPosition;
4327 else
4328 window_prompting |= PPosition;
4329 }
4330
5af5757b 4331 if (f->want_fullscreen != FULLSCREEN_NONE)
972f4259
KS
4332 {
4333 int left, top;
4334 int width, height;
4335
4336 /* It takes both for some WM:s to place it where we want */
7f6fd740 4337 window_prompting |= USPosition | PPosition;
972f4259 4338 x_fullscreen_adjust (f, &width, &height, &top, &left);
5af5757b
KS
4339 FRAME_COLS (f) = width;
4340 FRAME_LINES (f) = height;
4341 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4342 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4343 f->left_pos = left;
4344 f->top_pos = top;
972f4259
KS
4345 }
4346
4347 if (window_prompting & XNegative)
4348 {
4349 if (window_prompting & YNegative)
5af5757b 4350 f->win_gravity = SouthEastGravity;
972f4259 4351 else
5af5757b 4352 f->win_gravity = NorthEastGravity;
972f4259
KS
4353 }
4354 else
4355 {
4356 if (window_prompting & YNegative)
5af5757b 4357 f->win_gravity = SouthWestGravity;
972f4259 4358 else
5af5757b 4359 f->win_gravity = NorthWestGravity;
972f4259
KS
4360 }
4361
5af5757b 4362 f->size_hint_flags = window_prompting;
972f4259
KS
4363
4364 return window_prompting;
4365}
4366
4367
4368
4369#endif /* HAVE_WINDOW_SYSTEM */
4370
4371
4372\f
4373/***********************************************************************
4374 Initialization
4375 ***********************************************************************/
4376
4377void
4378syms_of_frame ()
4379{
4380 Qframep = intern ("framep");
4381 staticpro (&Qframep);
4382 Qframe_live_p = intern ("frame-live-p");
4383 staticpro (&Qframe_live_p);
5839d7e8
MR
4384 Qexplicit_name = intern ("explicit-name");
4385 staticpro (&Qexplicit_name);
972f4259
KS
4386 Qheight = intern ("height");
4387 staticpro (&Qheight);
4388 Qicon = intern ("icon");
4389 staticpro (&Qicon);
4390 Qminibuffer = intern ("minibuffer");
4391 staticpro (&Qminibuffer);
4392 Qmodeline = intern ("modeline");
4393 staticpro (&Qmodeline);
4394 Qonly = intern ("only");
4395 staticpro (&Qonly);
4396 Qwidth = intern ("width");
4397 staticpro (&Qwidth);
4398 Qgeometry = intern ("geometry");
4399 staticpro (&Qgeometry);
4400 Qicon_left = intern ("icon-left");
4401 staticpro (&Qicon_left);
4402 Qicon_top = intern ("icon-top");
4403 staticpro (&Qicon_top);
4404 Qleft = intern ("left");
4405 staticpro (&Qleft);
4406 Qright = intern ("right");
4407 staticpro (&Qright);
4408 Quser_position = intern ("user-position");
4409 staticpro (&Quser_position);
4410 Quser_size = intern ("user-size");
4411 staticpro (&Quser_size);
4412 Qwindow_id = intern ("window-id");
4413 staticpro (&Qwindow_id);
4414#ifdef HAVE_X_WINDOWS
4415 Qouter_window_id = intern ("outer-window-id");
4416 staticpro (&Qouter_window_id);
4417#endif
4418 Qparent_id = intern ("parent-id");
4419 staticpro (&Qparent_id);
4420 Qx = intern ("x");
4421 staticpro (&Qx);
4422 Qw32 = intern ("w32");
4423 staticpro (&Qw32);
4424 Qpc = intern ("pc");
4425 staticpro (&Qpc);
4426 Qmac = intern ("mac");
4427 staticpro (&Qmac);
edfda783
AR
4428 Qns = intern ("ns");
4429 staticpro (&Qns);
972f4259
KS
4430 Qvisible = intern ("visible");
4431 staticpro (&Qvisible);
4432 Qbuffer_predicate = intern ("buffer-predicate");
4433 staticpro (&Qbuffer_predicate);
4434 Qbuffer_list = intern ("buffer-list");
4435 staticpro (&Qbuffer_list);
a18b8cb5
KL
4436 Qburied_buffer_list = intern ("buried-buffer-list");
4437 staticpro (&Qburied_buffer_list);
972f4259
KS
4438 Qdisplay_type = intern ("display-type");
4439 staticpro (&Qdisplay_type);
4440 Qbackground_mode = intern ("background-mode");
4441 staticpro (&Qbackground_mode);
c53956fe
SM
4442 Qnoelisp = intern ("noelisp");
4443 staticpro (&Qnoelisp);
972f4259
KS
4444 Qtty_color_mode = intern ("tty-color-mode");
4445 staticpro (&Qtty_color_mode);
28d440ab
KL
4446 Qtty = intern ("tty");
4447 staticpro (&Qtty);
4448 Qtty_type = intern ("tty-type");
4449 staticpro (&Qtty_type);
972f4259
KS
4450
4451 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4452 staticpro (&Qface_set_after_frame_default);
4453
4454 Qfullwidth = intern ("fullwidth");
4455 staticpro (&Qfullwidth);
4456 Qfullheight = intern ("fullheight");
4457 staticpro (&Qfullheight);
4458 Qfullboth = intern ("fullboth");
4459 staticpro (&Qfullboth);
4460 Qx_resource_name = intern ("x-resource-name");
4461 staticpro (&Qx_resource_name);
4462
4463 Qx_frame_parameter = intern ("x-frame-parameter");
4464 staticpro (&Qx_frame_parameter);
4465
6ed8eeff
KL
4466 Qterminal = intern ("terminal");
4467 staticpro (&Qterminal);
4468 Qterminal_live_p = intern ("terminal-live-p");
4469 staticpro (&Qterminal_live_p);
a3547743 4470
dc4db71c
CY
4471#ifdef HAVE_NS
4472 Qns_parse_geometry = intern ("ns-parse-geometry");
4473 staticpro (&Qns_parse_geometry);
4474#endif
4475
972f4259
KS
4476 {
4477 int i;
4478
4479 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4480 {
4481 Lisp_Object v = intern (frame_parms[i].name);
4482 if (frame_parms[i].variable)
4483 {
4484 *frame_parms[i].variable = v;
4485 staticpro (frame_parms[i].variable);
4486 }
4487 Fput (v, Qx_frame_parameter, make_number (i));
4488 }
4489 }
4490
2731a0ad 4491#ifdef HAVE_WINDOW_SYSTEM
972f4259
KS
4492 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4493 doc: /* The name Emacs uses to look up X resources.
4494`x-get-resource' uses this as the first component of the instance name
4495when requesting resource values.
4496Emacs initially sets `x-resource-name' to the name under which Emacs
4497was invoked, or to the value specified with the `-name' or `-rn'
4498switches, if present.
4499
4500It may be useful to bind this variable locally around a call
4501to `x-get-resource'. See also the variable `x-resource-class'. */);
4502 Vx_resource_name = Qnil;
4503
4504 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4505 doc: /* The class Emacs uses to look up X resources.
4506`x-get-resource' uses this as the first component of the instance class
4507when requesting resource values.
4508
4509Emacs initially sets `x-resource-class' to "Emacs".
4510
4511Setting this variable permanently is not a reasonable thing to do,
4512but binding this variable locally around a call to `x-get-resource'
4513is a reasonable practice. See also the variable `x-resource-name'. */);
4514 Vx_resource_class = build_string (EMACS_CLASS);
0a708637
GM
4515
4516 DEFVAR_LISP ("frame-alpha-lower-limit", &Vframe_alpha_lower_limit,
4517 doc: /* The lower limit of the frame opacity (alpha transparency).
4518The value should range from 0 (invisible) to 100 (completely opaque).
4519You can also use a floating number between 0.0 and 1.0.
4520The default is 20. */);
4521 Vframe_alpha_lower_limit = make_number (20);
2731a0ad 4522#endif
972f4259
KS
4523
4524 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4525 doc: /* Alist of default values for frame creation.
4526These may be set in your init file, like this:
5ff00c42 4527 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
972f4259
KS
4528These override values given in window system configuration data,
4529 including X Windows' defaults database.
4530For values specific to the first Emacs frame, see `initial-frame-alist'.
095fe281 4531For window-system specific values, see `window-system-default-frame-alist'.
972f4259
KS
4532For values specific to the separate minibuffer frame, see
4533 `minibuffer-frame-alist'.
4534The `menu-bar-lines' element of the list controls whether new frames
4535 have menu bars; `menu-bar-mode' works by altering this element.
4536Setting this variable does not affect existing frames, only new ones. */);
4537 Vdefault_frame_alist = Qnil;
4538
6b61353c
KH
4539 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4540 doc: /* Default position of scroll bars on this window-system. */);
4541#ifdef HAVE_WINDOW_SYSTEM
9e2a2647 4542#if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
edfda783 4543 /* MS-Windows and Mac OS X have scroll bars on the right by default. */
6b61353c
KH
4544 Vdefault_frame_scroll_bars = Qright;
4545#else
4546 Vdefault_frame_scroll_bars = Qleft;
4547#endif
4548#else
4549 Vdefault_frame_scroll_bars = Qnil;
4550#endif
4551
972f4259 4552 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
daf01701 4553 doc: /* The initial frame-object, which represents Emacs's stdout. */);
972f4259 4554
972f4259
KS
4555 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4556 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4557`mouse-position' calls this function, passing its usual return value as
4558argument, and returns whatever this function returns.
4559This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4560which need to do mouse handling at the Lisp level. */);
4561 Vmouse_position_function = Qnil;
4562
4563 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4564 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4565If the value is an integer, highlighting is only shown after moving the
4566mouse, while keyboard input turns off the highlight even when the mouse
4567is over the clickable text. However, the mouse shape still indicates
4568when the mouse is over clickable text. */);
4569 Vmouse_highlight = Qt;
4570
4571 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4572 doc: /* Functions to be run before deleting a frame.
4573The functions are run with one arg, the frame to be deleted.
e519a50b
KL
4574See `delete-frame'.
4575
58555d81
SM
4576Note that functions in this list may be called just before the frame is
4577actually deleted, or some time later (or even both when an earlier function
4578in `delete-frame-functions' (indirectly) calls `delete-frame'
4579recursively). */);
972f4259 4580 Vdelete_frame_functions = Qnil;
58555d81
SM
4581 Qdelete_frame_functions = intern ("delete-frame-functions");
4582 staticpro (&Qdelete_frame_functions);
972f4259
KS
4583
4584 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4585 doc: /* Minibufferless frames use this frame's minibuffer.
4586
4587Emacs cannot create minibufferless frames unless this is set to an
4588appropriate surrogate.
4589
4590Emacs consults this variable only when creating minibufferless
4591frames; once the frame is created, it sticks with its assigned
4592minibuffer, no matter what this variable is set to. This means that
4593this variable doesn't necessarily say anything meaningful about the
4594current set of frames, or where the minibuffer is currently being
4595displayed.
4596
4597This variable is local to the current terminal and cannot be buffer-local. */);
4598
da1da002
MR
4599 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4600 doc: /* Non-nil if window system changes focus when you move the mouse.
4601You should set this variable to tell Emacs how your window manager
4602handles focus, since there is no way in general for Emacs to find out
4603automatically. */);
4604#ifdef HAVE_WINDOW_SYSTEM
9e2a2647 4605#if defined(HAVE_NTGUI) || defined(HAVE_NS)
da1da002
MR
4606 focus_follows_mouse = 0;
4607#else
4608 focus_follows_mouse = 1;
4609#endif
4610#else
4611 focus_follows_mouse = 0;
4612#endif
a3547743 4613
972f4259
KS
4614 staticpro (&Vframe_list);
4615
4616 defsubr (&Sactive_minibuffer_window);
4617 defsubr (&Sframep);
4618 defsubr (&Sframe_live_p);
428a555e 4619 defsubr (&Swindow_system);
972f4259
KS
4620 defsubr (&Smake_terminal_frame);
4621 defsubr (&Shandle_switch_frame);
972f4259
KS
4622 defsubr (&Sselect_frame);
4623 defsubr (&Sselected_frame);
4624 defsubr (&Swindow_frame);
4625 defsubr (&Sframe_root_window);
4626 defsubr (&Sframe_first_window);
4627 defsubr (&Sframe_selected_window);
4628 defsubr (&Sset_frame_selected_window);
4629 defsubr (&Sframe_list);
4630 defsubr (&Snext_frame);
4631 defsubr (&Sprevious_frame);
4632 defsubr (&Sdelete_frame);
4633 defsubr (&Smouse_position);
4634 defsubr (&Smouse_pixel_position);
4635 defsubr (&Sset_mouse_position);
4636 defsubr (&Sset_mouse_pixel_position);
4637#if 0
4638 defsubr (&Sframe_configuration);
4639 defsubr (&Srestore_frame_configuration);
4640#endif
4641 defsubr (&Smake_frame_visible);
4642 defsubr (&Smake_frame_invisible);
4643 defsubr (&Siconify_frame);
4644 defsubr (&Sframe_visible_p);
4645 defsubr (&Svisible_frame_list);
4646 defsubr (&Sraise_frame);
4647 defsubr (&Slower_frame);
4648 defsubr (&Sredirect_frame_focus);
4649 defsubr (&Sframe_focus);
4650 defsubr (&Sframe_parameters);
4651 defsubr (&Sframe_parameter);
4652 defsubr (&Smodify_frame_parameters);
4653 defsubr (&Sframe_char_height);
4654 defsubr (&Sframe_char_width);
4655 defsubr (&Sframe_pixel_height);
4656 defsubr (&Sframe_pixel_width);
4657 defsubr (&Sset_frame_height);
4658 defsubr (&Sset_frame_width);
4659 defsubr (&Sset_frame_size);
4660 defsubr (&Sset_frame_position);
4661
4662#ifdef HAVE_WINDOW_SYSTEM
4663 defsubr (&Sx_get_resource);
4664 defsubr (&Sx_parse_geometry);
4665#endif
4666
dc6f92b8 4667}
6b61353c
KH
4668
4669/* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4670 (do not change this comment) */