Put doc strings in comments.
[bpt/emacs.git] / src / frame.c
CommitLineData
ff11dfa1 1/* Generic frame functions.
e9c96c62
GM
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001
3 Free Software Foundation.
dc6f92b8
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
1113d9db 9the Free Software Foundation; either version 2, or (at your option)
dc6f92b8
JB
10any later version.
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
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
dc6f92b8 21
18160b98 22#include <config.h>
565620a5
RS
23
24#include <stdio.h>
cc38027b 25#include "lisp.h"
71025e5e 26#include "charset.h"
6d55d620 27#ifdef HAVE_X_WINDOWS
dfcf069d 28#include "xterm.h"
71025e5e 29#endif
8f23f280
AI
30#ifdef WINDOWSNT
31#include "w32term.h"
32#endif
1a578e9b
AC
33#ifdef macintosh
34#include "macterm.h"
35#endif
2538fae4
AI
36#include "buffer.h"
37/* These help us bind and responding to switch-frame events. */
38#include "commands.h"
39#include "keyboard.h"
e35f6ff7 40#include "keymap.h"
cc38027b 41#include "frame.h"
a1dfb88a
KH
42#ifdef HAVE_WINDOW_SYSTEM
43#include "fontset.h"
44#endif
bc1ed486 45#include "termhooks.h"
dfcf069d 46#include "dispextern.h"
f769f1b2 47#include "window.h"
87485d6f
MW
48#ifdef MSDOS
49#include "msdos.h"
4aec4b29 50#include "dosfns.h"
87485d6f 51#endif
e5d77022 52
fd0c2bd1 53Lisp_Object Qframep;
dbc4e1c1 54Lisp_Object Qframe_live_p;
fd0c2bd1
JB
55Lisp_Object Qheight;
56Lisp_Object Qicon;
bc93c097 57Lisp_Object Qminibuffer;
fd0c2bd1
JB
58Lisp_Object Qmodeline;
59Lisp_Object Qname;
fd0c2bd1
JB
60Lisp_Object Qonly;
61Lisp_Object Qunsplittable;
fa8fdbf9 62Lisp_Object Qmenu_bar_lines;
9ea173e8 63Lisp_Object Qtool_bar_lines;
fd0c2bd1
JB
64Lisp_Object Qwidth;
65Lisp_Object Qx;
fbd6baed 66Lisp_Object Qw32;
bb221971 67Lisp_Object Qpc;
574a1a90 68Lisp_Object Qmac;
f7af3f7b 69Lisp_Object Qvisible;
329ca574 70Lisp_Object Qbuffer_predicate;
fa54c6ae 71Lisp_Object Qbuffer_list;
61eaa912 72Lisp_Object Qtitle;
8b60f7bc 73Lisp_Object Qdisplay_type;
6345f6aa 74Lisp_Object Qbackground_mode;
3df1fda2 75Lisp_Object Qinhibit_default_face_x_resources;
dc6f92b8 76
a249de79 77Lisp_Object Vterminal_frame;
a1aaa23f 78Lisp_Object Vdefault_frame_alist;
beb0bc36 79Lisp_Object Vmouse_position_function;
a249de79
RS
80\f
81static void
82set_menu_bar_lines_1 (window, n)
83 Lisp_Object window;
84 int n;
85{
86 struct window *w = XWINDOW (window);
87
57aeea1e 88 XSETFASTINT (w->last_modified, 0);
a249de79
RS
89 XSETFASTINT (w->top, XFASTINT (w->top) + n);
90 XSETFASTINT (w->height, XFASTINT (w->height) - n);
4336c705
GM
91
92 if (INTEGERP (w->orig_top))
93 XSETFASTINT (w->orig_top, XFASTINT (w->orig_top) + n);
94 if (INTEGERP (w->orig_height))
95 XSETFASTINT (w->orig_height, XFASTINT (w->orig_height) - n);
a249de79
RS
96
97 /* Handle just the top child in a vertical split. */
98 if (!NILP (w->vchild))
99 set_menu_bar_lines_1 (w->vchild, n);
100
101 /* Adjust all children in a horizontal split. */
102 for (window = w->hchild; !NILP (window); window = w->next)
103 {
104 w = XWINDOW (window);
105 set_menu_bar_lines_1 (window, n);
106 }
107}
108
e48f782c 109void
a249de79
RS
110set_menu_bar_lines (f, value, oldval)
111 struct frame *f;
112 Lisp_Object value, oldval;
113{
114 int nlines;
115 int olines = FRAME_MENU_BAR_LINES (f);
116
117 /* Right now, menu bars don't work properly in minibuf-only frames;
118 most of the commands try to apply themselves to the minibuffer
e3678b64 119 frame itself, and get an error because you can't switch buffers
a249de79
RS
120 in or split the minibuffer window. */
121 if (FRAME_MINIBUF_ONLY_P (f))
122 return;
123
124 if (INTEGERP (value))
125 nlines = XINT (value);
126 else
127 nlines = 0;
128
57aeea1e
RS
129 if (nlines != olines)
130 {
131 windows_or_buffers_changed++;
132 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
133 FRAME_MENU_BAR_LINES (f) = nlines;
134 set_menu_bar_lines_1 (f->root_window, nlines - olines);
18082e2d 135 adjust_glyphs (f);
57aeea1e 136 }
a249de79
RS
137}
138\f
a249de79
RS
139Lisp_Object Vemacs_iconified;
140Lisp_Object Vframe_list;
a249de79 141
2d764c78
EZ
142struct x_output tty_display;
143
dc6f92b8
JB
144extern Lisp_Object Vminibuffer_list;
145extern Lisp_Object get_minibuffer ();
84386599
RS
146extern Lisp_Object Fhandle_switch_frame ();
147extern Lisp_Object Fredirect_frame_focus ();
a54d3a73 148extern Lisp_Object x_get_focus_frame ();
dc6f92b8 149\f
ff11dfa1
JB
150DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
151 "Return non-nil if OBJECT is a frame.\n\
152Value is t for a termcap frame (a character-only terminal),\n\
87485d6f 153`x' for an Emacs frame that is really an X window,\n\
2d764c78
EZ
154`w32' for an Emacs frame that is a window on MS-Windows display,\n\
155`mac' for an Emacs frame on a Macintosh display,\n\
87485d6f 156`pc' for a direct-write MS-DOS frame.\n\
e6b27a8f 157See also `frame-live-p'.")
f9898cc6
JB
158 (object)
159 Lisp_Object object;
dc6f92b8 160{
e35d291d 161 if (!FRAMEP (object))
dc6f92b8 162 return Qnil;
ff11dfa1 163 switch (XFRAME (object)->output_method)
dc6f92b8
JB
164 {
165 case output_termcap:
166 return Qt;
167 case output_x_window:
fd0c2bd1 168 return Qx;
fbd6baed
GV
169 case output_w32:
170 return Qw32;
bb221971
RS
171 case output_msdos_raw:
172 return Qpc;
574a1a90
RS
173 case output_mac:
174 return Qmac;
dc6f92b8
JB
175 default:
176 abort ();
177 }
178}
179
dbc4e1c1 180DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
ff11dfa1
JB
181 "Return non-nil if OBJECT is a frame which has not been deleted.\n\
182Value is nil if OBJECT is not a live frame. If object is a live\n\
183frame, the return value indicates what sort of output device it is\n\
184displayed on. Value is t for a termcap frame (a character-only\n\
185terminal), `x' for an Emacs frame being displayed in an X window.")
f9898cc6
JB
186 (object)
187 Lisp_Object object;
188{
ff11dfa1
JB
189 return ((FRAMEP (object)
190 && FRAME_LIVE_P (XFRAME (object)))
191 ? Fframep (object)
f9898cc6
JB
192 : Qnil);
193}
194
ff11dfa1
JB
195struct frame *
196make_frame (mini_p)
dc6f92b8
JB
197 int mini_p;
198{
ff11dfa1
JB
199 Lisp_Object frame;
200 register struct frame *f;
dc6f92b8
JB
201 register Lisp_Object root_window;
202 register Lisp_Object mini_window;
e9c96c62
GM
203
204 f = allocate_frame ();
36af7d69 205 XSETFRAME (frame, f);
ff11dfa1 206
18082e2d
GM
207 f->desired_matrix = 0;
208 f->current_matrix = 0;
209 f->desired_pool = 0;
210 f->current_pool = 0;
211 f->glyphs_initialized_p = 0;
212 f->decode_mode_spec_buffer = 0;
ff11dfa1 213 f->visible = 0;
323405de 214 f->async_visible = 0;
7556890b 215 f->output_data.nothing = 0;
ff11dfa1 216 f->iconified = 0;
323405de 217 f->async_iconified = 0;
ff11dfa1
JB
218 f->wants_modeline = 1;
219 f->auto_raise = 0;
220 f->auto_lower = 0;
221 f->no_split = 0;
10689a01 222 f->garbaged = 1;
ff11dfa1 223 f->has_minibuffer = mini_p;
a42e9724 224 f->focus_frame = Qnil;
804518aa 225 f->explicit_name = 0;
fd2777e0 226 f->can_have_scroll_bars = 0;
3a43d2dd 227 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
ff11dfa1 228 f->param_alist = Qnil;
fd2777e0
JB
229 f->scroll_bars = Qnil;
230 f->condemned_scroll_bars = Qnil;
306cc902 231 f->face_alist = Qnil;
18082e2d 232 f->face_cache = NULL;
9dd935ee 233 f->menu_bar_items = Qnil;
c8b8e7e3
RS
234 f->menu_bar_vector = Qnil;
235 f->menu_bar_items_used = 0;
329ca574 236 f->buffer_predicate = Qnil;
fa54c6ae 237 f->buffer_list = Qnil;
b4f0ee5d
KH
238#ifdef MULTI_KBOARD
239 f->kboard = initial_kboard;
240#endif
aec6e486 241 f->namebuf = 0;
2b1c9cfb 242 f->title = Qnil;
18082e2d 243 f->menu_bar_window = Qnil;
9ea173e8 244 f->tool_bar_window = Qnil;
61752261 245 f->tool_bar_items = Qnil;
9ea173e8 246 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
61752261 247 f->n_tool_bar_items = 0;
dc6f92b8 248
cc38027b 249 root_window = make_window ();
dc6f92b8
JB
250 if (mini_p)
251 {
cc38027b 252 mini_window = make_window ();
dc6f92b8
JB
253 XWINDOW (root_window)->next = mini_window;
254 XWINDOW (mini_window)->prev = root_window;
255 XWINDOW (mini_window)->mini_p = Qt;
ff11dfa1
JB
256 XWINDOW (mini_window)->frame = frame;
257 f->minibuffer_window = mini_window;
dc6f92b8
JB
258 }
259 else
260 {
261 mini_window = Qnil;
262 XWINDOW (root_window)->next = Qnil;
ff11dfa1 263 f->minibuffer_window = Qnil;
dc6f92b8
JB
264 }
265
ff11dfa1 266 XWINDOW (root_window)->frame = frame;
dc6f92b8
JB
267
268 /* 10 is arbitrary,
269 just so that there is "something there."
ff11dfa1 270 Correct size will be set up later with change_frame_size. */
dc6f92b8 271
3a43d2dd 272 SET_FRAME_WIDTH (f, 10);
ff11dfa1 273 f->height = 10;
dc6f92b8 274
f4e93c40
KH
275 XSETFASTINT (XWINDOW (root_window)->width, 10);
276 XSETFASTINT (XWINDOW (root_window)->height, (mini_p ? 9 : 10));
dc6f92b8
JB
277
278 if (mini_p)
279 {
f4e93c40
KH
280 XSETFASTINT (XWINDOW (mini_window)->width, 10);
281 XSETFASTINT (XWINDOW (mini_window)->top, 9);
282 XSETFASTINT (XWINDOW (mini_window)->height, 1);
dc6f92b8
JB
283 }
284
ff11dfa1 285 /* Choose a buffer for the frame's root window. */
5bce042c
JB
286 {
287 Lisp_Object buf;
288
289 XWINDOW (root_window)->buffer = Qt;
290 buf = Fcurrent_buffer ();
291 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
292 a space), try to find another one. */
293 if (XSTRING (Fbuffer_name (buf))->data[0] == ' ')
98ce1622 294 buf = Fother_buffer (buf, Qnil, Qnil);
fa54c6ae 295
18082e2d
GM
296 /* Use set_window_buffer, not Fset_window_buffer, and don't let
297 hooks be run by it. The reason is that the whole frame/window
298 arrangement is not yet fully intialized at this point. Windows
299 don't have the right size, glyph matrices aren't initialized
300 etc. Running Lisp functions at this point surely ends in a
301 SEGV. */
302 set_window_buffer (root_window, buf, 0);
fa54c6ae 303 f->buffer_list = Fcons (buf, Qnil);
5bce042c
JB
304 }
305
dc6f92b8
JB
306 if (mini_p)
307 {
308 XWINDOW (mini_window)->buffer = Qt;
18082e2d
GM
309 set_window_buffer (mini_window,
310 (NILP (Vminibuffer_list)
311 ? get_minibuffer (0)
312 : Fcar (Vminibuffer_list)),
313 0);
dc6f92b8
JB
314 }
315
ff11dfa1
JB
316 f->root_window = root_window;
317 f->selected_window = root_window;
d5e7c279
JB
318 /* Make sure this window seems more recently used than
319 a newly-created, never-selected window. */
f4e93c40 320 XSETFASTINT (XWINDOW (f->selected_window)->use_time, ++window_select_count);
dc6f92b8 321
ff11dfa1 322 return f;
dc6f92b8
JB
323}
324\f
bba88bb1 325#ifdef HAVE_WINDOW_SYSTEM
ff11dfa1 326/* Make a frame using a separate minibuffer window on another frame.
dc6f92b8
JB
327 MINI_WINDOW is the minibuffer window to use. nil means use the
328 default (the global minibuffer). */
329
ff11dfa1 330struct frame *
b0660239 331make_frame_without_minibuffer (mini_window, kb, display)
dc6f92b8 332 register Lisp_Object mini_window;
662ac59a 333 KBOARD *kb;
b0660239 334 Lisp_Object display;
dc6f92b8 335{
ff11dfa1 336 register struct frame *f;
363b873b 337 struct gcpro gcpro1;
dc6f92b8 338
b0660239
KH
339 if (!NILP (mini_window))
340 CHECK_LIVE_WINDOW (mini_window, 0);
dc6f92b8 341
662ac59a 342#ifdef MULTI_KBOARD
b0660239
KH
343 if (!NILP (mini_window)
344 && XFRAME (XWINDOW (mini_window)->frame)->kboard != kb)
662ac59a
KH
345 error ("frame and minibuffer must be on the same display");
346#endif
347
ff11dfa1
JB
348 /* Make a frame containing just a root window. */
349 f = make_frame (0);
dc6f92b8 350
b0660239
KH
351 if (NILP (mini_window))
352 {
353 /* Use default-minibuffer-frame if possible. */
354 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
355 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
356 {
363b873b
RS
357 Lisp_Object frame_dummy;
358
359 XSETFRAME (frame_dummy, f);
360 GCPRO1 (frame_dummy);
b0660239 361 /* If there's no minibuffer frame to use, create one. */
363b873b
RS
362 kb->Vdefault_minibuffer_frame =
363 call1 (intern ("make-initial-minibuffer-frame"), display);
364 UNGCPRO;
b0660239 365 }
363b873b 366
b0660239
KH
367 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
368 }
a2812a26 369
ff11dfa1 370 f->minibuffer_window = mini_window;
a2812a26
RS
371
372 /* Make the chosen minibuffer window display the proper minibuffer,
373 unless it is already showing a minibuffer. */
374 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
375 Fset_window_buffer (mini_window,
376 (NILP (Vminibuffer_list)
377 ? get_minibuffer (0)
378 : Fcar (Vminibuffer_list)));
ff11dfa1 379 return f;
dc6f92b8
JB
380}
381
ff11dfa1 382/* Make a frame containing only a minibuffer window. */
dc6f92b8 383
ff11dfa1
JB
384struct frame *
385make_minibuffer_frame ()
dc6f92b8 386{
ff11dfa1 387 /* First make a frame containing just a root window, no minibuffer. */
dc6f92b8 388
ff11dfa1 389 register struct frame *f = make_frame (0);
dc6f92b8 390 register Lisp_Object mini_window;
ff11dfa1 391 register Lisp_Object frame;
dc6f92b8 392
2d80a27a 393 XSETFRAME (frame, f);
dc6f92b8 394
804518aa 395 f->auto_raise = 0;
ff11dfa1
JB
396 f->auto_lower = 0;
397 f->no_split = 1;
398 f->wants_modeline = 0;
399 f->has_minibuffer = 1;
dc6f92b8
JB
400
401 /* Now label the root window as also being the minibuffer.
402 Avoid infinite looping on the window chain by marking next pointer
403 as nil. */
404
ff11dfa1 405 mini_window = f->minibuffer_window = f->root_window;
dc6f92b8
JB
406 XWINDOW (mini_window)->mini_p = Qt;
407 XWINDOW (mini_window)->next = Qnil;
804518aa 408 XWINDOW (mini_window)->prev = Qnil;
ff11dfa1 409 XWINDOW (mini_window)->frame = frame;
dc6f92b8
JB
410
411 /* Put the proper buffer in that window. */
412
413 Fset_window_buffer (mini_window,
265a9e55 414 (NILP (Vminibuffer_list)
dc6f92b8
JB
415 ? get_minibuffer (0)
416 : Fcar (Vminibuffer_list)));
ff11dfa1 417 return f;
dc6f92b8 418}
bba88bb1 419#endif /* HAVE_WINDOW_SYSTEM */
dc6f92b8 420\f
ff11dfa1 421/* Construct a frame that refers to the terminal (stdin and stdout). */
dc6f92b8 422
bb1513c9
RS
423static int terminal_frame_count;
424
ff11dfa1
JB
425struct frame *
426make_terminal_frame ()
dc6f92b8 427{
ff11dfa1 428 register struct frame *f;
d063751a 429 Lisp_Object frame;
bb1513c9
RS
430 char name[20];
431
b4f0ee5d
KH
432#ifdef MULTI_KBOARD
433 if (!initial_kboard)
434 {
435 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
436 init_kboard (initial_kboard);
a1b658dd
KH
437 initial_kboard->next_kboard = all_kboards;
438 all_kboards = initial_kboard;
b4f0ee5d
KH
439 }
440#endif
441
bb1513c9
RS
442 /* The first call must initialize Vframe_list. */
443 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
444 Vframe_list = Qnil;
ff11dfa1 445
ff11dfa1 446 f = make_frame (1);
d063751a 447
2d80a27a 448 XSETFRAME (frame, f);
d063751a
RS
449 Vframe_list = Fcons (frame, Vframe_list);
450
bb1513c9 451 terminal_frame_count++;
0303e8da
RS
452 sprintf (name, "F%d", terminal_frame_count);
453 f->name = build_string (name);
bb1513c9 454
bb1513c9
RS
455 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
456 f->async_visible = 1; /* Don't let visible be cleared later. */
bb221971
RS
457#ifdef MSDOS
458 f->output_data.x = &the_only_x_display;
2d764c78
EZ
459 if (!inhibit_window_system
460 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
461 || XFRAME (selected_frame)->output_method == output_msdos_raw))
65606f5e
EZ
462 {
463 f->output_method = output_msdos_raw;
464 /* This initialization of foreground and background pixels is
465 only important for the initial frame created in temacs. If
466 we don't do that, we get black background and foreground in
467 the dumped Emacs because the_only_x_display is a static
468 variable, hence it is born all-zeroes, and zero is the code
469 for the black color. Other frames all inherit their pixels
470 from what's already in the_only_x_display. */
471 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
472 && f->output_data.x->background_pixel == 0
473 && f->output_data.x->foreground_pixel == 0)
474 {
475 f->output_data.x->background_pixel = FACE_TTY_DEFAULT_BG_COLOR;
476 f->output_data.x->foreground_pixel = FACE_TTY_DEFAULT_FG_COLOR;
477 }
478 }
2d764c78
EZ
479 else
480 f->output_method = output_termcap;
481#else
4ec0d3c1 482#ifdef WINDOWSNT
ff8d4bf4 483 f->output_method = output_termcap;
4ec0d3c1
AI
484 f->output_data.x = &tty_display;
485#else
574a1a90 486#ifdef macintosh
1a578e9b
AC
487 make_mac_terminal_frame (f);
488#else
2d764c78 489 f->output_data.x = &tty_display;
1a578e9b 490#endif /* macintosh */
4ec0d3c1 491#endif /* WINDOWSNT */
2d764c78 492#endif /* MSDOS */
574a1a90 493
1a6d3623
EZ
494 if (!noninteractive)
495 init_frame_faces (f);
1a578e9b 496
ff11dfa1 497 return f;
dc6f92b8 498}
bb1513c9
RS
499
500DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
4bc7e3ad
RS
501 1, 1, 0, "Create an additional terminal frame.\n\
502You can create multiple frames on a text-only terminal in this way.\n\
503Only the selected terminal frame is actually displayed.\n\
504This function takes one argument, an alist specifying frame parameters.\n\
505In practice, generally you don't need to specify any parameters.\n\
506Note that changing the size of one terminal frame automatically affects all.")
bb1513c9
RS
507 (parms)
508 Lisp_Object parms;
509{
510 struct frame *f;
574a1a90 511 Lisp_Object frame, tem;
8d2666fe 512 struct frame *sf = SELECTED_FRAME ();
bb1513c9 513
541580aa 514#ifdef MSDOS
2d764c78
EZ
515 if (sf->output_method != output_msdos_raw
516 && sf->output_method != output_termcap)
bb221971 517 abort ();
574a1a90
RS
518#else /* not MSDOS */
519
520#ifdef macintosh
8d2666fe 521 if (sf->output_method != output_mac)
574a1a90 522 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
bb221971 523#else
8d2666fe 524 if (sf->output_method != output_termcap)
bb1513c9 525 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
bb221971 526#endif
574a1a90 527#endif /* not MSDOS */
bb1513c9
RS
528
529 f = make_terminal_frame ();
574a1a90 530
8d2666fe
GM
531 change_frame_size (f, FRAME_HEIGHT (sf),
532 FRAME_WIDTH (sf), 0, 0, 0);
18082e2d 533 adjust_glyphs (f);
bb1513c9
RS
534 calculate_costs (f);
535 XSETFRAME (frame, f);
8adfc1ec 536 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
bb1513c9 537 Fmodify_frame_parameters (frame, parms);
87f1940e
EZ
538
539 /* Make the frame face alist be frame-specific, so that each
540 frame could change its face definitions independently. */
8d2666fe 541 f->face_alist = Fcopy_alist (sf->face_alist);
87f1940e
EZ
542 /* Simple Fcopy_alist isn't enough, because we need the contents of
543 the vectors which are the CDRs of associations in face_alist to
544 be copied as well. */
545 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
546 XCDR (XCAR (tem)) = Fcopy_sequence (XCDR (XCAR (tem)));
bb1513c9
RS
547 return frame;
548}
1e8324d9 549
dc6f92b8 550\f
1e8324d9
GM
551/* Perform the switch to frame FRAME.
552
553 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
554 FRAME1 as frame.
555
556 If TRACK is non-zero and the frame that currently has the focus
557 redirects its focus to the selected frame, redirect that focused
558 frame's focus to FRAME instead.
559
560 FOR_DELETION non-zero means that the selected frame is being
561 deleted, which includes the possibility that the frame's display
562 is dead. */
563
61f94483 564Lisp_Object
1e8324d9
GM
565do_switch_frame (frame, track, for_deletion)
566 Lisp_Object frame;
567 int track, for_deletion;
dc6f92b8 568{
8d2666fe
GM
569 struct frame *sf = SELECTED_FRAME ();
570
2f0b07e0
JB
571 /* If FRAME is a switch-frame event, extract the frame we should
572 switch to. */
573 if (CONSP (frame)
7539e11f
KR
574 && EQ (XCAR (frame), Qswitch_frame)
575 && CONSP (XCDR (frame)))
576 frame = XCAR (XCDR (frame));
2f0b07e0 577
09907c3a
KH
578 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
579 a switch-frame event to arrive after a frame is no longer live,
580 especially when deleting the initial frame during startup. */
581 CHECK_FRAME (frame, 0);
582 if (! FRAME_LIVE_P (XFRAME (frame)))
583 return Qnil;
dc6f92b8 584
8d2666fe 585 if (sf == XFRAME (frame))
ff11dfa1 586 return frame;
dc6f92b8 587
0aed85f4
KH
588 /* This is too greedy; it causes inappropriate focus redirection
589 that's hard to get rid of. */
590#if 0
a42e9724
JB
591 /* If a frame's focus has been redirected toward the currently
592 selected frame, we should change the redirection to point to the
593 newly selected frame. This means that if the focus is redirected
594 from a minibufferless frame to a surrogate minibuffer frame, we
595 can use `other-window' to switch between all the frames using
596 that minibuffer frame, and the focus redirection will follow us
597 around. */
0aed85f4
KH
598 if (track)
599 {
600 Lisp_Object tail;
a42e9724 601
7539e11f 602 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
0aed85f4
KH
603 {
604 Lisp_Object focus;
a42e9724 605
7539e11f 606 if (!FRAMEP (XCAR (tail)))
0aed85f4 607 abort ();
a42e9724 608
7539e11f 609 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
a42e9724 610
8d2666fe 611 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
7539e11f 612 Fredirect_frame_focus (XCAR (tail), frame);
0aed85f4
KH
613 }
614 }
615#else /* ! 0 */
616 /* Instead, apply it only to the frame we're pointing to. */
032d78fe 617#ifdef HAVE_WINDOW_SYSTEM
1e8324d9 618 if (track && FRAME_WINDOW_P (XFRAME (frame)))
0aed85f4
KH
619 {
620 Lisp_Object focus, xfocus;
621
d7266360 622 xfocus = x_get_focus_frame (XFRAME (frame));
0aed85f4
KH
623 if (FRAMEP (xfocus))
624 {
625 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
8d2666fe 626 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
0aed85f4
KH
627 Fredirect_frame_focus (xfocus, frame);
628 }
629 }
630#endif /* HAVE_X_WINDOWS */
631#endif /* ! 0 */
a42e9724 632
1e8324d9 633 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
550f0e6a
GM
634 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
635
8d2666fe
GM
636 selected_frame = frame;
637 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
638 last_nonminibuf_frame = XFRAME (selected_frame);
d5e7c279 639
ff11dfa1 640 Fselect_window (XFRAME (frame)->selected_window);
dc6f92b8 641
074577b8 642 /* We want to make sure that the next event generates a frame-switch
eb8c3be9 643 event to the appropriate frame. This seems kludgy to me, but
074577b8
JB
644 before you take it out, make sure that evaluating something like
645 (select-window (frame-root-window (new-frame))) doesn't end up
646 with your typing being interpreted in the new frame instead of
647 the one you're actually typing in. */
ef352596 648 internal_last_event_frame = Qnil;
074577b8 649
ff11dfa1 650 return frame;
dc6f92b8
JB
651}
652
0aed85f4
KH
653DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
654 "Select the frame FRAME.\n\
655Subsequent editing commands apply to its selected window.\n\
656The selection of FRAME lasts until the next time the user does\n\
657something to select a different frame, or until the next time this\n\
658function is called.")
659 (frame, no_enter)
660 Lisp_Object frame, no_enter;
661{
1e8324d9 662 return do_switch_frame (frame, 1, 0);
0aed85f4
KH
663}
664
665
666DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 2, "e",
667 "Handle a switch-frame event EVENT.\n\
668Switch-frame events are usually bound to this function.\n\
669A switch-frame event tells Emacs that the window manager has requested\n\
670that the user's events be directed to the frame mentioned in the event.\n\
671This function selects the selected window of the frame of EVENT.\n\
672\n\
673If EVENT is frame object, handle it as if it were a switch-frame event\n\
674to that frame.")
735eeca3
EN
675 (event, no_enter)
676 Lisp_Object event, no_enter;
0aed85f4 677{
6951cd71
KH
678 /* Preserve prefix arg that the command loop just cleared. */
679 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
e05169e2 680 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
1e8324d9 681 return do_switch_frame (event, 0, 0);
0aed85f4
KH
682}
683
1c212787
KH
684DEFUN ("ignore-event", Fignore_event, Signore_event, 0, 0, "",
685 "Do nothing, but preserve any prefix argument already specified.\n\
686This is a suitable binding for iconify-frame and make-frame-visible.")
687 ()
688{
689 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
690 return Qnil;
691}
0aed85f4 692
ff11dfa1
JB
693DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
694 "Return the frame that is now selected.")
dc6f92b8
JB
695 ()
696{
8d2666fe 697 return selected_frame;
dc6f92b8 698}
4a7cfafc 699\f
ff11dfa1
JB
700DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
701 "Return the frame object that window WINDOW is on.")
dc6f92b8
JB
702 (window)
703 Lisp_Object window;
704{
774910eb 705 CHECK_LIVE_WINDOW (window, 0);
ff11dfa1 706 return XWINDOW (window)->frame;
dc6f92b8
JB
707}
708
ba32f2db
KH
709DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
710 "Returns the topmost, leftmost window of FRAME.\n\
711If omitted, FRAME defaults to the currently selected frame.")
712 (frame)
713 Lisp_Object frame;
714{
715 Lisp_Object w;
716
717 if (NILP (frame))
8d2666fe 718 w = SELECTED_FRAME ()->root_window;
ba32f2db
KH
719 else
720 {
721 CHECK_LIVE_FRAME (frame, 0);
722 w = XFRAME (frame)->root_window;
723 }
724 while (NILP (XWINDOW (w)->buffer))
725 {
726 if (! NILP (XWINDOW (w)->hchild))
727 w = XWINDOW (w)->hchild;
728 else if (! NILP (XWINDOW (w)->vchild))
729 w = XWINDOW (w)->vchild;
730 else
731 abort ();
732 }
733 return w;
734}
735
5add3885
RS
736DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
737 Sactive_minibuffer_window, 0, 0, 0,
738 "Return the currently active minibuffer window, or nil if none.")
739 ()
740{
741 return minibuf_level ? minibuf_window : Qnil;
742}
743
ff11dfa1 744DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
8693ca83
JB
745 "Returns the root-window of FRAME.\n\
746If omitted, FRAME defaults to the currently selected frame.")
ff11dfa1
JB
747 (frame)
748 Lisp_Object frame;
dc6f92b8 749{
8d2666fe
GM
750 Lisp_Object window;
751
ff11dfa1 752 if (NILP (frame))
8d2666fe 753 window = SELECTED_FRAME ()->root_window;
f9898cc6 754 else
8d2666fe
GM
755 {
756 CHECK_LIVE_FRAME (frame, 0);
757 window = XFRAME (frame)->root_window;
758 }
759
760 return window;
dc6f92b8
JB
761}
762
ff11dfa1
JB
763DEFUN ("frame-selected-window", Fframe_selected_window,
764 Sframe_selected_window, 0, 1, 0,
8693ca83
JB
765 "Return the selected window of frame object FRAME.\n\
766If omitted, FRAME defaults to the currently selected frame.")
ff11dfa1
JB
767 (frame)
768 Lisp_Object frame;
dc6f92b8 769{
8d2666fe
GM
770 Lisp_Object window;
771
ff11dfa1 772 if (NILP (frame))
8d2666fe 773 window = SELECTED_FRAME ()->selected_window;
f9898cc6 774 else
8d2666fe
GM
775 {
776 CHECK_LIVE_FRAME (frame, 0);
777 window = XFRAME (frame)->selected_window;
778 }
dc6f92b8 779
8d2666fe 780 return window;
dc6f92b8
JB
781}
782
4a7cfafc
RS
783DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
784 Sset_frame_selected_window, 2, 2, 0,
785 "Set the selected window of frame object FRAME to WINDOW.\n\
786If FRAME is nil, the selected frame is used.\n\
787If FRAME is the selected frame, this makes WINDOW the selected window.")
788 (frame, window)
789 Lisp_Object frame, window;
790{
791 if (NILP (frame))
8d2666fe
GM
792 frame = selected_frame;
793
794 CHECK_LIVE_FRAME (frame, 0);
4a7cfafc
RS
795 CHECK_LIVE_WINDOW (window, 1);
796
797 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
798 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
799
8d2666fe 800 if (EQ (frame, selected_frame))
4a7cfafc
RS
801 return Fselect_window (window);
802
803 return XFRAME (frame)->selected_window = window;
804}
805\f
ff11dfa1 806DEFUN ("frame-list", Fframe_list, Sframe_list,
dc6f92b8 807 0, 0, 0,
ff11dfa1 808 "Return a list of all frames.")
dc6f92b8
JB
809 ()
810{
d74c1900
GM
811 Lisp_Object frames;
812 frames = Fcopy_sequence (Vframe_list);
6a65b1b5 813#ifdef HAVE_WINDOW_SYSTEM
d74c1900
GM
814 if (FRAMEP (tip_frame))
815 frames = Fdelq (tip_frame, frames);
6a65b1b5 816#endif
d74c1900 817 return frames;
dc6f92b8
JB
818}
819
ff11dfa1 820/* Return the next frame in the frame list after FRAME.
ff11dfa1 821 If MINIBUF is nil, exclude minibuffer-only frames.
a9986780
RS
822 If MINIBUF is a window, include only its own frame
823 and any frame now using that window as the minibuffer.
f7af3f7b 824 If MINIBUF is `visible', include all visible frames.
a9986780 825 If MINIBUF is 0, include all visible and iconified frames.
f7af3f7b
RS
826 Otherwise, include all frames. */
827
dc6f92b8 828Lisp_Object
ff11dfa1
JB
829next_frame (frame, minibuf)
830 Lisp_Object frame;
f9898cc6 831 Lisp_Object minibuf;
dc6f92b8
JB
832{
833 Lisp_Object tail;
834 int passed = 0;
835
ff11dfa1
JB
836 /* There must always be at least one frame in Vframe_list. */
837 if (! CONSP (Vframe_list))
f9898cc6
JB
838 abort ();
839
dbc4e1c1
JB
840 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
841 forever. Forestall that. */
842 CHECK_LIVE_FRAME (frame, 0);
843
dc6f92b8 844 while (1)
7539e11f 845 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
dc6f92b8 846 {
ab9f008d 847 Lisp_Object f;
d06a8a56 848
7539e11f 849 f = XCAR (tail);
06537cc8
RS
850
851 if (passed
852 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
d5e7c279 853 {
d06a8a56
JB
854 /* Decide whether this frame is eligible to be returned. */
855
856 /* If we've looped all the way around without finding any
857 eligible frames, return the original frame. */
858 if (EQ (f, frame))
859 return f;
860
861 /* Let minibuf decide if this frame is acceptable. */
862 if (NILP (minibuf))
863 {
864 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
865 return f;
866 }
f7af3f7b
RS
867 else if (EQ (minibuf, Qvisible))
868 {
869 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
870 if (FRAME_VISIBLE_P (XFRAME (f)))
871 return f;
872 }
3780bc22 873 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
a9986780
RS
874 {
875 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
876 if (FRAME_VISIBLE_P (XFRAME (f))
877 || FRAME_ICONIFIED_P (XFRAME (f)))
878 return f;
879 }
f7af3f7b 880 else if (WINDOWP (minibuf))
d06a8a56 881 {
a9986780 882 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
551645f8
GM
883 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
884 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
885 FRAME_FOCUS_FRAME (XFRAME (f))))
d06a8a56
JB
886 return f;
887 }
888 else
ff11dfa1 889 return f;
d5e7c279 890 }
dc6f92b8 891
d06a8a56 892 if (EQ (frame, f))
dc6f92b8
JB
893 passed++;
894 }
895}
896
ff11dfa1 897/* Return the previous frame in the frame list before FRAME.
ff11dfa1 898 If MINIBUF is nil, exclude minibuffer-only frames.
a9986780
RS
899 If MINIBUF is a window, include only its own frame
900 and any frame now using that window as the minibuffer.
f7af3f7b 901 If MINIBUF is `visible', include all visible frames.
a9986780 902 If MINIBUF is 0, include all visible and iconified frames.
f7af3f7b
RS
903 Otherwise, include all frames. */
904
dc6f92b8 905Lisp_Object
ff11dfa1
JB
906prev_frame (frame, minibuf)
907 Lisp_Object frame;
f9898cc6 908 Lisp_Object minibuf;
dc6f92b8
JB
909{
910 Lisp_Object tail;
911 Lisp_Object prev;
912
ff11dfa1
JB
913 /* There must always be at least one frame in Vframe_list. */
914 if (! CONSP (Vframe_list))
f9898cc6
JB
915 abort ();
916
dc6f92b8 917 prev = Qnil;
7539e11f 918 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
f9898cc6 919 {
ab9f008d 920 Lisp_Object f;
f9898cc6 921
7539e11f 922 f = XCAR (tail);
e35d291d 923 if (!FRAMEP (f))
d06a8a56 924 abort ();
f9898cc6 925
d06a8a56
JB
926 if (EQ (frame, f) && !NILP (prev))
927 return prev;
f9898cc6 928
06537cc8 929 if (FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
f7af3f7b 930 {
06537cc8
RS
931 /* Decide whether this frame is eligible to be returned,
932 according to minibuf. */
933 if (NILP (minibuf))
934 {
935 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
936 prev = f;
937 }
938 else if (WINDOWP (minibuf))
939 {
940 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
551645f8
GM
941 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
942 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
943 FRAME_FOCUS_FRAME (XFRAME (f))))
06537cc8
RS
944 prev = f;
945 }
946 else if (EQ (minibuf, Qvisible))
947 {
948 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
949 if (FRAME_VISIBLE_P (XFRAME (f)))
950 prev = f;
951 }
952 else if (XFASTINT (minibuf) == 0)
953 {
954 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
955 if (FRAME_VISIBLE_P (XFRAME (f))
956 || FRAME_ICONIFIED_P (XFRAME (f)))
957 prev = f;
958 }
959 else
a9986780
RS
960 prev = f;
961 }
f9898cc6 962 }
d06a8a56
JB
963
964 /* We've scanned the entire list. */
965 if (NILP (prev))
966 /* We went through the whole frame list without finding a single
967 acceptable frame. Return the original frame. */
968 return frame;
969 else
970 /* There were no acceptable frames in the list before FRAME; otherwise,
971 we would have returned directly from the loop. Since PREV is the last
972 acceptable frame in the list, return it. */
973 return prev;
dc6f92b8
JB
974}
975
ef2c57ac 976
ff11dfa1
JB
977DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
978 "Return the next frame in the frame list after FRAME.\n\
06537cc8 979It considers only frames on the same terminal as FRAME.\n\
a42e9724 980By default, skip minibuffer-only frames.\n\
d06a8a56 981If omitted, FRAME defaults to the selected frame.\n\
c08c95c7 982If optional argument MINIFRAME is nil, exclude minibuffer-only frames.\n\
06537cc8 983If MINIFRAME is a window, include only its own frame\n\
a9986780 984and any frame now using that window as the minibuffer.\n\
f7af3f7b 985If MINIFRAME is `visible', include all visible frames.\n\
06537cc8 986If MINIFRAME is 0, include all visible and iconified frames.\n\
f7af3f7b 987Otherwise, include all frames.")
ff11dfa1 988 (frame, miniframe)
8693ca83 989 Lisp_Object frame, miniframe;
dc6f92b8 990{
ff11dfa1 991 if (NILP (frame))
8d2666fe
GM
992 frame = selected_frame;
993
994 CHECK_LIVE_FRAME (frame, 0);
ff11dfa1 995 return next_frame (frame, miniframe);
dc6f92b8 996}
dbc4e1c1 997
ef2c57ac
RM
998DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
999 "Return the previous frame in the frame list before FRAME.\n\
06537cc8 1000It considers only frames on the same terminal as FRAME.\n\
ef2c57ac
RM
1001By default, skip minibuffer-only frames.\n\
1002If omitted, FRAME defaults to the selected frame.\n\
1003If optional argument MINIFRAME is nil, exclude minibuffer-only frames.\n\
06537cc8 1004If MINIFRAME is a window, include only its own frame\n\
a9986780 1005and any frame now using that window as the minibuffer.\n\
f7af3f7b 1006If MINIFRAME is `visible', include all visible frames.\n\
06537cc8 1007If MINIFRAME is 0, include all visible and iconified frames.\n\
f7af3f7b 1008Otherwise, include all frames.")
ef2c57ac
RM
1009 (frame, miniframe)
1010 Lisp_Object frame, miniframe;
1011{
ef2c57ac 1012 if (NILP (frame))
8d2666fe
GM
1013 frame = selected_frame;
1014 CHECK_LIVE_FRAME (frame, 0);
ef2c57ac
RM
1015 return prev_frame (frame, miniframe);
1016}
dc6f92b8 1017\f
808c0f20
RS
1018/* Return 1 if it is ok to delete frame F;
1019 0 if all frames aside from F are invisible.
1020 (Exception: if F is the terminal frame, and we are using X, return 1.) */
dc6f92b8 1021
d56b45eb 1022int
808c0f20
RS
1023other_visible_frames (f)
1024 FRAME_PTR f;
1025{
1026 /* We know the selected frame is visible,
1027 so if F is some other frame, it can't be the sole visible one. */
8d2666fe 1028 if (f == SELECTED_FRAME ())
c08c95c7
RS
1029 {
1030 Lisp_Object frames;
1031 int count = 0;
1032
1033 for (frames = Vframe_list;
1034 CONSP (frames);
7539e11f 1035 frames = XCDR (frames))
c08c95c7 1036 {
ab9f008d 1037 Lisp_Object this;
c08c95c7 1038
7539e11f 1039 this = XCAR (frames);
808c0f20
RS
1040 /* Verify that the frame's window still exists
1041 and we can still talk to it. And note any recent change
1042 in visibility. */
032d78fe
GV
1043#ifdef HAVE_WINDOW_SYSTEM
1044 if (FRAME_WINDOW_P (XFRAME (this)))
5e7b7c5b 1045 {
b0509a40 1046 x_sync (XFRAME (this));
5e7b7c5b
RS
1047 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1048 }
1049#endif
1050
c08c95c7
RS
1051 if (FRAME_VISIBLE_P (XFRAME (this))
1052 || FRAME_ICONIFIED_P (XFRAME (this))
1053 /* Allow deleting the terminal frame when at least
1054 one X frame exists! */
032d78fe 1055 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
c08c95c7
RS
1056 count++;
1057 }
808c0f20 1058 return count > 1;
c08c95c7 1059 }
808c0f20
RS
1060 return 1;
1061}
1062
1063DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1064 "Delete FRAME, permanently eliminating it from use.\n\
1065If omitted, FRAME defaults to the selected frame.\n\
1066A frame may not be deleted if its minibuffer is used by other frames.\n\
1067Normally, you may not delete a frame if all other frames are invisible,\n\
0e662342
GM
1068but if the second optional argument FORCE is non-nil, you may do so.\n\
1069\n\
1070This function runs `delete-frame-hook' before actually deleting the\n\
1071frame. The hook is called with one argument FRAME.")
808c0f20
RS
1072 (frame, force)
1073 Lisp_Object frame, force;
1074{
1075 struct frame *f;
8d2666fe 1076 struct frame *sf = SELECTED_FRAME ();
99b92e64 1077 int minibuffer_selected;
808c0f20
RS
1078
1079 if (EQ (frame, Qnil))
1080 {
8d2666fe 1081 f = sf;
2d80a27a 1082 XSETFRAME (frame, f);
808c0f20
RS
1083 }
1084 else
1085 {
1086 CHECK_FRAME (frame, 0);
1087 f = XFRAME (frame);
1088 }
1089
1090 if (! FRAME_LIVE_P (f))
1091 return Qnil;
1092
83a96b4d
AC
1093 if (NILP (force) && !other_visible_frames (f)
1094#ifdef macintosh
1095 /* Terminal frame deleted before any other visible frames are
1096 created. */
1097 && strcmp (XSTRING (f->name)->data, "F1") != 0
1098#endif
1099 )
808c0f20 1100 error ("Attempt to delete the sole visible or iconified frame");
d5e7c279 1101
00c5fd51
RS
1102#if 0
1103 /* This is a nice idea, but x_connection_closed needs to be able
1104 to delete the last frame, if it is gone. */
7539e11f 1105 if (NILP (XCDR (Vframe_list)))
e9687ee8 1106 error ("Attempt to delete the only frame");
00c5fd51 1107#endif
e9687ee8 1108
ff11dfa1
JB
1109 /* Does this frame have a minibuffer, and is it the surrogate
1110 minibuffer for any other frame? */
fd0c2bd1 1111 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
dc6f92b8 1112 {
ff11dfa1 1113 Lisp_Object frames;
1113d9db 1114
ff11dfa1
JB
1115 for (frames = Vframe_list;
1116 CONSP (frames);
7539e11f 1117 frames = XCDR (frames))
1113d9db 1118 {
7a8cc307 1119 Lisp_Object this;
7539e11f 1120 this = XCAR (frames);
1113d9db 1121
ff11dfa1
JB
1122 if (! EQ (this, frame)
1123 && EQ (frame,
7a8cc307
RS
1124 WINDOW_FRAME (XWINDOW
1125 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
ff11dfa1 1126 error ("Attempt to delete a surrogate minibuffer frame");
1113d9db 1127 }
dc6f92b8
JB
1128 }
1129
0e662342
GM
1130 /* Run `delete-frame-hook'. */
1131 if (!NILP (Vrun_hooks))
1132 {
1133 Lisp_Object args[2];
1134 args[0] = intern ("delete-frame-hook");
1135 args[1] = frame;
1136 Frun_hook_with_args (2, args);
1137 }
1138
99b92e64
RS
1139 minibuffer_selected = EQ (minibuf_window, selected_window);
1140
ff11dfa1 1141 /* Don't let the frame remain selected. */
8d2666fe 1142 if (f == sf)
06537cc8
RS
1143 {
1144 Lisp_Object tail, frame1;
1145
1146 /* Look for another visible frame on the same terminal. */
1147 frame1 = next_frame (frame, Qvisible);
1148
1149 /* If there is none, find *some* other frame. */
1150 if (NILP (frame1) || EQ (frame1, frame))
1151 {
1152 FOR_EACH_FRAME (tail, frame1)
1153 {
1154 if (! EQ (frame, frame1))
1155 break;
1156 }
1157 }
1158
1e8324d9 1159 do_switch_frame (frame1, 0, 1);
79a65b7f 1160 sf = SELECTED_FRAME ();
06537cc8 1161 }
dc6f92b8 1162
ff11dfa1
JB
1163 /* Don't allow minibuf_window to remain on a deleted frame. */
1164 if (EQ (f->minibuffer_window, minibuf_window))
dc6f92b8 1165 {
8d2666fe 1166 Fset_window_buffer (sf->minibuffer_window,
dc6f92b8 1167 XWINDOW (minibuf_window)->buffer);
8d2666fe 1168 minibuf_window = sf->minibuffer_window;
99b92e64
RS
1169
1170 /* If the dying minibuffer window was selected,
1171 select the new one. */
1172 if (minibuffer_selected)
1173 Fselect_window (minibuf_window);
dc6f92b8
JB
1174 }
1175
130adcb7
EZ
1176 /* Don't let echo_area_window to remain on a deleted frame. */
1177 if (EQ (f->minibuffer_window, echo_area_window))
1178 echo_area_window = sf->minibuffer_window;
1179
bb2a0a65
RS
1180 /* Clear any X selections for this frame. */
1181#ifdef HAVE_X_WINDOWS
1182 if (FRAME_X_P (f))
1183 x_clear_frame_selections (f);
1184#endif
1185
18082e2d
GM
1186 /* Free glyphs.
1187 This function must be called before the window tree of the
1188 frame is deleted because windows contain dynamically allocated
1189 memory. */
1190 free_glyphs (f);
1191
4a88b3b0
JB
1192 /* Mark all the windows that used to be on FRAME as deleted, and then
1193 remove the reference to them. */
1194 delete_all_subwindows (XWINDOW (f->root_window));
1195 f->root_window = Qnil;
1196
ff11dfa1 1197 Vframe_list = Fdelq (frame, Vframe_list);
a42e9724 1198 FRAME_SET_VISIBLE (f, 0);
dc6f92b8 1199
60a8823e 1200 if (f->namebuf)
18082e2d 1201 xfree (f->namebuf);
d2bee99e 1202 if (FRAME_INSERT_COST (f))
18082e2d 1203 xfree (FRAME_INSERT_COST (f));
d2bee99e 1204 if (FRAME_DELETEN_COST (f))
18082e2d 1205 xfree (FRAME_DELETEN_COST (f));
d2bee99e 1206 if (FRAME_INSERTN_COST (f))
18082e2d 1207 xfree (FRAME_INSERTN_COST (f));
d2bee99e 1208 if (FRAME_DELETE_COST (f))
18082e2d 1209 xfree (FRAME_DELETE_COST (f));
25734faf 1210 if (FRAME_MESSAGE_BUF (f))
18082e2d 1211 xfree (FRAME_MESSAGE_BUF (f));
d2bee99e 1212
8678b9cc
JB
1213 /* Since some events are handled at the interrupt level, we may get
1214 an event for f at any time; if we zero out the frame's display
1215 now, then we may trip up the event-handling code. Instead, we'll
1216 promise that the display of the frame must be valid until we have
1217 called the window-system-dependent frame destruction routine. */
dbc4e1c1
JB
1218
1219 /* I think this should be done with a hook. */
032d78fe
GV
1220#ifdef HAVE_WINDOW_SYSTEM
1221 if (FRAME_WINDOW_P (f))
8678b9cc 1222 x_destroy_window (f);
d5e7c279
JB
1223#endif
1224
7556890b 1225 f->output_data.nothing = 0;
8678b9cc 1226
ff11dfa1 1227 /* If we've deleted the last_nonminibuf_frame, then try to find
d5e7c279 1228 another one. */
ff11dfa1 1229 if (f == last_nonminibuf_frame)
d5e7c279 1230 {
ff11dfa1 1231 Lisp_Object frames;
1113d9db 1232
ff11dfa1 1233 last_nonminibuf_frame = 0;
d5e7c279 1234
ff11dfa1
JB
1235 for (frames = Vframe_list;
1236 CONSP (frames);
7539e11f 1237 frames = XCDR (frames))
d5e7c279 1238 {
7539e11f 1239 f = XFRAME (XCAR (frames));
ff11dfa1 1240 if (!FRAME_MINIBUF_ONLY_P (f))
d5e7c279 1241 {
ff11dfa1 1242 last_nonminibuf_frame = f;
d5e7c279
JB
1243 break;
1244 }
1245 }
1246 }
dc6f92b8 1247
c4c6d073
KH
1248 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1249 find another one. Prefer minibuffer-only frames, but also notice
1250 frames with other windows. */
c60f3a6a 1251 if (EQ (frame, FRAME_KBOARD (f)->Vdefault_minibuffer_frame))
1113d9db 1252 {
ff11dfa1 1253 Lisp_Object frames;
1113d9db 1254
ff11dfa1 1255 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
ab9f008d 1256 Lisp_Object frame_with_minibuf;
32fda9ba
RS
1257 /* Some frame we found on the same kboard, or nil if there are none. */
1258 Lisp_Object frame_on_same_kboard;
1113d9db 1259
32fda9ba 1260 frame_on_same_kboard = Qnil;
ab9f008d 1261 frame_with_minibuf = Qnil;
32fda9ba 1262
ff11dfa1
JB
1263 for (frames = Vframe_list;
1264 CONSP (frames);
7539e11f 1265 frames = XCDR (frames))
1113d9db 1266 {
ab9f008d 1267 Lisp_Object this;
c4c6d073 1268 struct frame *f1;
1113d9db 1269
7539e11f 1270 this = XCAR (frames);
e35d291d 1271 if (!FRAMEP (this))
1113d9db 1272 abort ();
c4c6d073 1273 f1 = XFRAME (this);
1113d9db 1274
c4c6d073
KH
1275 /* Consider only frames on the same kboard
1276 and only those with minibuffers. */
1277 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1)
1278 && FRAME_HAS_MINIBUF_P (f1))
1113d9db 1279 {
ff11dfa1 1280 frame_with_minibuf = this;
c4c6d073 1281 if (FRAME_MINIBUF_ONLY_P (f1))
1113d9db
JB
1282 break;
1283 }
32fda9ba
RS
1284
1285 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1286 frame_on_same_kboard = this;
1113d9db
JB
1287 }
1288
32fda9ba
RS
1289 if (!NILP (frame_on_same_kboard))
1290 {
1291 /* We know that there must be some frame with a minibuffer out
1292 there. If this were not true, all of the frames present
1293 would have to be minibufferless, which implies that at some
1294 point their minibuffer frames must have been deleted, but
1295 that is prohibited at the top; you can't delete surrogate
1296 minibuffer frames. */
1297 if (NILP (frame_with_minibuf))
1298 abort ();
1113d9db 1299
32fda9ba
RS
1300 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = frame_with_minibuf;
1301 }
1302 else
1303 /* No frames left on this kboard--say no minibuffer either. */
1304 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
1113d9db
JB
1305 }
1306
e681c92a
RS
1307 /* Cause frame titles to update--necessary if we now have just one frame. */
1308 update_mode_lines = 1;
1309
dc6f92b8
JB
1310 return Qnil;
1311}
1312\f
1313/* Return mouse position in character cell units. */
1314
f9898cc6 1315DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
ff11dfa1 1316 "Return a list (FRAME X . Y) giving the current mouse frame and position.\n\
4f90516b
JB
1317The position is given in character cells, where (0, 0) is the\n\
1318upper-left corner.\n\
f9898cc6 1319If Emacs is running on a mouseless terminal or hasn't been programmed\n\
ff11dfa1 1320to read the mouse position, it returns the selected frame for FRAME\n\
beb0bc36 1321and nil for X and Y.\n\
ae2aaa7e
RS
1322If `mouse-position-function' is non-nil, `mouse-position' calls it,\n\
1323passing the normal return value to that function as an argument,\n\
1324and returns whatever that function returns.")
f9898cc6 1325 ()
dc6f92b8 1326{
ff11dfa1 1327 FRAME_PTR f;
dbc4e1c1 1328 Lisp_Object lispy_dummy;
fd2777e0 1329 enum scroll_bar_part party_dummy;
beb0bc36 1330 Lisp_Object x, y, retval;
5384466a 1331 int col, row;
dbc4e1c1 1332 unsigned long long_dummy;
cb2255b3 1333 struct gcpro gcpro1;
dc6f92b8 1334
8d2666fe 1335 f = SELECTED_FRAME ();
c5074d8c
RS
1336 x = y = Qnil;
1337
f443c170 1338#ifdef HAVE_MOUSE
c5074d8c 1339 /* It's okay for the hook to refrain from storing anything. */
f9898cc6 1340 if (mouse_position_hook)
66e827dc 1341 (*mouse_position_hook) (&f, -1,
dbc4e1c1
JB
1342 &lispy_dummy, &party_dummy,
1343 &x, &y,
1344 &long_dummy);
76db7eb4
KH
1345 if (! NILP (x))
1346 {
1347 col = XINT (x);
1348 row = XINT (y);
8126c3b4 1349 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
76db7eb4
KH
1350 XSETINT (x, col);
1351 XSETINT (y, row);
1352 }
f443c170 1353#endif
2d80a27a 1354 XSETFRAME (lispy_dummy, f);
beb0bc36 1355 retval = Fcons (lispy_dummy, Fcons (x, y));
cb2255b3 1356 GCPRO1 (retval);
beb0bc36 1357 if (!NILP (Vmouse_position_function))
cb2255b3
GM
1358 retval = call1 (Vmouse_position_function, retval);
1359 RETURN_UNGCPRO (retval);
dc6f92b8
JB
1360}
1361
152e6c70
RS
1362DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1363 Smouse_pixel_position, 0, 0, 0,
1364 "Return a list (FRAME X . Y) giving the current mouse frame and position.\n\
1365The position is given in pixel units, where (0, 0) is the\n\
1366upper-left corner.\n\
1367If Emacs is running on a mouseless terminal or hasn't been programmed\n\
1368to read the mouse position, it returns the selected frame for FRAME\n\
1369and nil for X and Y.")
1370 ()
1371{
1372 FRAME_PTR f;
1373 Lisp_Object lispy_dummy;
1374 enum scroll_bar_part party_dummy;
1375 Lisp_Object x, y;
152e6c70
RS
1376 unsigned long long_dummy;
1377
8d2666fe 1378 f = SELECTED_FRAME ();
152e6c70
RS
1379 x = y = Qnil;
1380
0c5c1cf7 1381#ifdef HAVE_MOUSE
152e6c70
RS
1382 /* It's okay for the hook to refrain from storing anything. */
1383 if (mouse_position_hook)
66e827dc 1384 (*mouse_position_hook) (&f, -1,
152e6c70
RS
1385 &lispy_dummy, &party_dummy,
1386 &x, &y,
1387 &long_dummy);
0c5c1cf7 1388#endif
2d80a27a 1389 XSETFRAME (lispy_dummy, f);
152e6c70
RS
1390 return Fcons (lispy_dummy, Fcons (x, y));
1391}
1392
dc6f92b8 1393DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1d7cc616 1394 "Move the mouse pointer to the center of character cell (X,Y) in FRAME.\n\
e84ffeec
RS
1395Coordinates are relative to the frame, not a window,\n\
1396so the coordinates of the top left character in the frame\n\
1397may be nonzero due to left-hand scroll bars or the menu bar.\n\
1398\n\
1399This function is a no-op for an X frame that is not visible.\n\
efb57f43
RS
1400If you have just created a frame, you must wait for it to become visible\n\
1401before calling this function on it, like this.\n\
1402 (while (not (frame-visible-p frame)) (sleep-for .5))")
ff11dfa1
JB
1403 (frame, x, y)
1404 Lisp_Object frame, x, y;
dc6f92b8 1405{
ff11dfa1 1406 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8
JB
1407 CHECK_NUMBER (x, 2);
1408 CHECK_NUMBER (y, 1);
1409
dbc4e1c1 1410 /* I think this should be done with a hook. */
032d78fe
GV
1411#ifdef HAVE_WINDOW_SYSTEM
1412 if (FRAME_WINDOW_P (XFRAME (frame)))
d19be8a9 1413 /* Warping the mouse will cause enternotify and focus events. */
d4d76014 1414 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
bb221971 1415#else
be625e00 1416#if defined (MSDOS) && defined (HAVE_MOUSE)
bb221971
RS
1417 if (FRAME_MSDOS_P (XFRAME (frame)))
1418 {
1419 Fselect_frame (frame, Qnil);
1420 mouse_moveto (XINT (x), XINT (y));
1421 }
1422#endif
dc6f92b8
JB
1423#endif
1424
1425 return Qnil;
1426}
152e6c70
RS
1427
1428DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1429 Sset_mouse_pixel_position, 3, 3, 0,
1430 "Move the mouse pointer to pixel position (X,Y) in FRAME.\n\
efb57f43
RS
1431Note, this is a no-op for an X frame that is not visible.\n\
1432If you have just created a frame, you must wait for it to become visible\n\
1433before calling this function on it, like this.\n\
1434 (while (not (frame-visible-p frame)) (sleep-for .5))")
152e6c70
RS
1435 (frame, x, y)
1436 Lisp_Object frame, x, y;
1437{
1438 CHECK_LIVE_FRAME (frame, 0);
1439 CHECK_NUMBER (x, 2);
1440 CHECK_NUMBER (y, 1);
1441
1442 /* I think this should be done with a hook. */
032d78fe
GV
1443#ifdef HAVE_WINDOW_SYSTEM
1444 if (FRAME_WINDOW_P (XFRAME (frame)))
d19be8a9 1445 /* Warping the mouse will cause enternotify and focus events. */
d4d76014 1446 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
bb221971 1447#else
be625e00 1448#if defined (MSDOS) && defined (HAVE_MOUSE)
bb221971
RS
1449 if (FRAME_MSDOS_P (XFRAME (frame)))
1450 {
1451 Fselect_frame (frame, Qnil);
1452 mouse_moveto (XINT (x), XINT (y));
1453 }
1454#endif
152e6c70
RS
1455#endif
1456
1457 return Qnil;
1458}
dc6f92b8 1459\f
98ce1622
RS
1460static void make_frame_visible_1 P_ ((Lisp_Object));
1461
ff11dfa1 1462DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
fc25d15d 1463 0, 1, "",
d19be8a9 1464 "Make the frame FRAME visible (assuming it is an X window).\n\
8693ca83 1465If omitted, FRAME defaults to the currently selected frame.")
ff11dfa1
JB
1466 (frame)
1467 Lisp_Object frame;
dc6f92b8 1468{
1aa66088 1469 if (NILP (frame))
8d2666fe 1470 frame = selected_frame;
1aa66088 1471
ff11dfa1 1472 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8 1473
dbc4e1c1 1474 /* I think this should be done with a hook. */
032d78fe
GV
1475#ifdef HAVE_WINDOW_SYSTEM
1476 if (FRAME_WINDOW_P (XFRAME (frame)))
02ff9dd5
RS
1477 {
1478 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1479 x_make_frame_visible (XFRAME (frame));
1480 }
fd0c2bd1 1481#endif
dc6f92b8 1482
98ce1622
RS
1483 make_frame_visible_1 (XFRAME (frame)->root_window);
1484
d19be8a9 1485 /* Make menu bar update for the Buffers and Frames menus. */
565620a5
RS
1486 windows_or_buffers_changed++;
1487
ff11dfa1 1488 return frame;
dc6f92b8
JB
1489}
1490
98ce1622
RS
1491/* Update the display_time slot of the buffers shown in WINDOW
1492 and all its descendents. */
1493
1494static void
1495make_frame_visible_1 (window)
1496 Lisp_Object window;
1497{
1498 struct window *w;
1499
1500 for (;!NILP (window); window = w->next)
1501 {
1502 w = XWINDOW (window);
1503
1504 if (!NILP (w->buffer))
1505 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1506
1507 if (!NILP (w->vchild))
1508 make_frame_visible_1 (w->vchild);
1509 if (!NILP (w->hchild))
1510 make_frame_visible_1 (w->hchild);
1511 }
1512}
1513
ff11dfa1 1514DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
808c0f20 1515 0, 2, "",
d19be8a9 1516 "Make the frame FRAME invisible (assuming it is an X window).\n\
808c0f20
RS
1517If omitted, FRAME defaults to the currently selected frame.\n\
1518Normally you may not make FRAME invisible if all other frames are invisible,\n\
1519but if the second optional argument FORCE is non-nil, you may do so.")
1520 (frame, force)
1521 Lisp_Object frame, force;
dc6f92b8 1522{
1aa66088 1523 if (NILP (frame))
8d2666fe 1524 frame = selected_frame;
1aa66088 1525
ff11dfa1 1526 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8 1527
808c0f20
RS
1528 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1529 error ("Attempt to make invisible the sole visible or iconified frame");
1530
3d378fdf 1531#if 0 /* This isn't logically necessary, and it can do GC. */
9c394f17 1532 /* Don't let the frame remain selected. */
8d2666fe 1533 if (EQ (frame, selected_frame))
1e8324d9 1534 do_switch_frame (next_frame (frame, Qt), 0, 0)
3d378fdf 1535#endif
9c394f17
RS
1536
1537 /* Don't allow minibuf_window to remain on a deleted frame. */
1538 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1539 {
8d2666fe
GM
1540 struct frame *sf = XFRAME (selected_frame);
1541 Fset_window_buffer (sf->minibuffer_window,
9c394f17 1542 XWINDOW (minibuf_window)->buffer);
8d2666fe 1543 minibuf_window = sf->minibuffer_window;
9c394f17
RS
1544 }
1545
dbc4e1c1 1546 /* I think this should be done with a hook. */
032d78fe
GV
1547#ifdef HAVE_WINDOW_SYSTEM
1548 if (FRAME_WINDOW_P (XFRAME (frame)))
ff11dfa1 1549 x_make_frame_invisible (XFRAME (frame));
fd0c2bd1 1550#endif
dc6f92b8 1551
d19be8a9 1552 /* Make menu bar update for the Buffers and Frames menus. */
565620a5
RS
1553 windows_or_buffers_changed++;
1554
dc6f92b8
JB
1555 return Qnil;
1556}
1557
ff11dfa1 1558DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1aa66088 1559 0, 1, "",
8693ca83
JB
1560 "Make the frame FRAME into an icon.\n\
1561If omitted, FRAME defaults to the currently selected frame.")
ff11dfa1
JB
1562 (frame)
1563 Lisp_Object frame;
dc6f92b8 1564{
1aa66088 1565 if (NILP (frame))
8d2666fe 1566 frame = selected_frame;
1aa66088 1567
ff11dfa1 1568 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8 1569
3d378fdf 1570#if 0 /* This isn't logically necessary, and it can do GC. */
9c394f17 1571 /* Don't let the frame remain selected. */
8d2666fe 1572 if (EQ (frame, selected_frame))
9c394f17 1573 Fhandle_switch_frame (next_frame (frame, Qt), Qnil);
3d378fdf 1574#endif
9c394f17
RS
1575
1576 /* Don't allow minibuf_window to remain on a deleted frame. */
1577 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1578 {
8d2666fe
GM
1579 struct frame *sf = XFRAME (selected_frame);
1580 Fset_window_buffer (sf->minibuffer_window,
9c394f17 1581 XWINDOW (minibuf_window)->buffer);
8d2666fe 1582 minibuf_window = sf->minibuffer_window;
9c394f17
RS
1583 }
1584
dbc4e1c1 1585 /* I think this should be done with a hook. */
032d78fe
GV
1586#ifdef HAVE_WINDOW_SYSTEM
1587 if (FRAME_WINDOW_P (XFRAME (frame)))
ff11dfa1 1588 x_iconify_frame (XFRAME (frame));
fd0c2bd1 1589#endif
dc6f92b8 1590
d19be8a9 1591 /* Make menu bar update for the Buffers and Frames menus. */
565620a5
RS
1592 windows_or_buffers_changed++;
1593
dc6f92b8
JB
1594 return Qnil;
1595}
1596
ff11dfa1 1597DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
dc6f92b8 1598 1, 1, 0,
ff11dfa1
JB
1599 "Return t if FRAME is now \"visible\" (actually in use for display).\n\
1600A frame that is not \"visible\" is not updated and, if it works through\n\
dc6f92b8 1601a window system, it may not show at all.\n\
fd0c2bd1 1602Return the symbol `icon' if frame is visible only as an icon.")
ff11dfa1
JB
1603 (frame)
1604 Lisp_Object frame;
dc6f92b8 1605{
ff11dfa1 1606 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8 1607
5c044f55
RS
1608 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1609
a42e9724 1610 if (FRAME_VISIBLE_P (XFRAME (frame)))
dc6f92b8 1611 return Qt;
a42e9724 1612 if (FRAME_ICONIFIED_P (XFRAME (frame)))
fd0c2bd1 1613 return Qicon;
dc6f92b8
JB
1614 return Qnil;
1615}
1616
ff11dfa1 1617DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
dc6f92b8 1618 0, 0, 0,
ff11dfa1 1619 "Return a list of all frames now \"visible\" (being updated).")
dc6f92b8
JB
1620 ()
1621{
ff11dfa1
JB
1622 Lisp_Object tail, frame;
1623 struct frame *f;
dc6f92b8
JB
1624 Lisp_Object value;
1625
1626 value = Qnil;
7539e11f 1627 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
dc6f92b8 1628 {
7539e11f 1629 frame = XCAR (tail);
e35d291d 1630 if (!FRAMEP (frame))
dc6f92b8 1631 continue;
ff11dfa1 1632 f = XFRAME (frame);
a42e9724 1633 if (FRAME_VISIBLE_P (f))
ff11dfa1 1634 value = Fcons (frame, value);
dc6f92b8
JB
1635 }
1636 return value;
1637}
d5e7c279
JB
1638
1639
e518d5e1 1640DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
dbc4e1c1
JB
1641 "Bring FRAME to the front, so it occludes any frames it overlaps.\n\
1642If FRAME is invisible, make it visible.\n\
828ac693 1643If you don't specify a frame, the selected frame is used.\n\
dbc4e1c1
JB
1644If Emacs is displaying on an ordinary terminal or some other device which\n\
1645doesn't support multiple overlapping frames, this function does nothing.")
1646 (frame)
1647 Lisp_Object frame;
1648{
828ac693 1649 if (NILP (frame))
8d2666fe 1650 frame = selected_frame;
828ac693 1651
dbc4e1c1 1652 CHECK_LIVE_FRAME (frame, 0);
8a981af5
RS
1653
1654 /* Do like the documentation says. */
1655 Fmake_frame_visible (frame);
1656
dbc4e1c1
JB
1657 if (frame_raise_lower_hook)
1658 (*frame_raise_lower_hook) (XFRAME (frame), 1);
1659
1660 return Qnil;
1661}
1662
b49f5578 1663/* Should we have a corresponding function called Flower_Power? */
e518d5e1 1664DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
dbc4e1c1 1665 "Send FRAME to the back, so it is occluded by any frames that overlap it.\n\
828ac693 1666If you don't specify a frame, the selected frame is used.\n\
dbc4e1c1
JB
1667If Emacs is displaying on an ordinary terminal or some other device which\n\
1668doesn't support multiple overlapping frames, this function does nothing.")
1669 (frame)
1670 Lisp_Object frame;
1671{
828ac693 1672 if (NILP (frame))
8d2666fe 1673 frame = selected_frame;
828ac693 1674
dbc4e1c1
JB
1675 CHECK_LIVE_FRAME (frame, 0);
1676
1677 if (frame_raise_lower_hook)
1678 (*frame_raise_lower_hook) (XFRAME (frame), 0);
1679
1680 return Qnil;
1681}
1682
d5e7c279 1683\f
ff11dfa1 1684DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
d5e7c279 1685 1, 2, 0,
ff11dfa1 1686 "Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.\n\
a42e9724
JB
1687In other words, switch-frame events caused by events in FRAME will\n\
1688request a switch to FOCUS-FRAME, and `last-event-frame' will be\n\
1689FOCUS-FRAME after reading an event typed at FRAME.\n\
d5e7c279 1690\n\
a42e9724 1691If FOCUS-FRAME is omitted or nil, any existing redirection is\n\
ff11dfa1 1692cancelled, and the frame again receives its own keystrokes.\n\
d5e7c279 1693\n\
a42e9724
JB
1694Focus redirection is useful for temporarily redirecting keystrokes to\n\
1695a surrogate minibuffer frame when a frame doesn't have its own\n\
1696minibuffer window.\n\
d5e7c279 1697\n\
a42e9724
JB
1698A frame's focus redirection can be changed by select-frame. If frame\n\
1699FOO is selected, and then a different frame BAR is selected, any\n\
1700frames redirecting their focus to FOO are shifted to redirect their\n\
1701focus to BAR. This allows focus redirection to work properly when the\n\
1702user switches from one frame to another using `select-window'.\n\
1703\n\
1704This means that a frame whose focus is redirected to itself is treated\n\
1705differently from a frame whose focus is redirected to nil; the former\n\
1706is affected by select-frame, while the latter is not.\n\
1707\n\
1708The redirection lasts until `redirect-frame-focus' is called to change it.")
ff11dfa1
JB
1709 (frame, focus_frame)
1710 Lisp_Object frame, focus_frame;
d5e7c279 1711{
13144095
JB
1712 /* Note that we don't check for a live frame here. It's reasonable
1713 to redirect the focus of a frame you're about to delete, if you
1714 know what other frame should receive those keystrokes. */
1715 CHECK_FRAME (frame, 0);
f9898cc6 1716
a42e9724 1717 if (! NILP (focus_frame))
ff11dfa1 1718 CHECK_LIVE_FRAME (focus_frame, 1);
d5e7c279 1719
ff11dfa1 1720 XFRAME (frame)->focus_frame = focus_frame;
d5e7c279 1721
ff11dfa1 1722 if (frame_rehighlight_hook)
dc0700f6 1723 (*frame_rehighlight_hook) (XFRAME (frame));
d5e7c279
JB
1724
1725 return Qnil;
1726}
1727
1728
ff11dfa1
JB
1729DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
1730 "Return the frame to which FRAME's keystrokes are currently being sent.\n\
a42e9724 1731This returns nil if FRAME's focus is not redirected.\n\
ff11dfa1
JB
1732See `redirect-frame-focus'.")
1733 (frame)
1734 Lisp_Object frame;
d5e7c279 1735{
ff11dfa1 1736 CHECK_LIVE_FRAME (frame, 0);
a42e9724 1737
ff11dfa1 1738 return FRAME_FOCUS_FRAME (XFRAME (frame));
d5e7c279
JB
1739}
1740
1741
dc6f92b8 1742\f
329ca574
RS
1743/* Return the value of frame parameter PROP in frame FRAME. */
1744
dc6f92b8 1745Lisp_Object
ff11dfa1
JB
1746get_frame_param (frame, prop)
1747 register struct frame *frame;
dc6f92b8
JB
1748 Lisp_Object prop;
1749{
1750 register Lisp_Object tem;
1751
ff11dfa1 1752 tem = Fassq (prop, frame->param_alist);
dc6f92b8
JB
1753 if (EQ (tem, Qnil))
1754 return tem;
1755 return Fcdr (tem);
1756}
1757
329ca574
RS
1758/* Return the buffer-predicate of the selected frame. */
1759
1760Lisp_Object
98ce1622
RS
1761frame_buffer_predicate (frame)
1762 Lisp_Object frame;
329ca574 1763{
98ce1622 1764 return XFRAME (frame)->buffer_predicate;
329ca574
RS
1765}
1766
fa54c6ae
RS
1767/* Return the buffer-list of the selected frame. */
1768
1769Lisp_Object
98ce1622
RS
1770frame_buffer_list (frame)
1771 Lisp_Object frame;
fa54c6ae 1772{
98ce1622 1773 return XFRAME (frame)->buffer_list;
fa54c6ae
RS
1774}
1775
1776/* Set the buffer-list of the selected frame. */
1777
1778void
98ce1622
RS
1779set_frame_buffer_list (frame, list)
1780 Lisp_Object frame, list;
fa54c6ae 1781{
98ce1622 1782 XFRAME (frame)->buffer_list = list;
fa54c6ae
RS
1783}
1784
1785/* Discard BUFFER from the buffer-list of each frame. */
1786
1787void
1788frames_discard_buffer (buffer)
1789 Lisp_Object buffer;
1790{
1791 Lisp_Object frame, tail;
1792
1793 FOR_EACH_FRAME (tail, frame)
1794 {
1795 XFRAME (frame)->buffer_list
1796 = Fdelq (buffer, XFRAME (frame)->buffer_list);
1797 }
1798}
1799
214b3216
RS
1800/* Move BUFFER to the end of the buffer-list of each frame. */
1801
1802void
1803frames_bury_buffer (buffer)
1804 Lisp_Object buffer;
1805{
1806 Lisp_Object frame, tail;
1807
1808 FOR_EACH_FRAME (tail, frame)
1809 {
835c1b36
GM
1810 struct frame *f = XFRAME (frame);
1811 Lisp_Object found;
1812
1813 found = Fmemq (buffer, f->buffer_list);
1814 if (!NILP (found))
1815 f->buffer_list = nconc2 (Fdelq (buffer, f->buffer_list),
1816 Fcons (buffer, Qnil));
214b3216
RS
1817 }
1818}
1819
329ca574
RS
1820/* Modify the alist in *ALISTPTR to associate PROP with VAL.
1821 If the alist already has an element for PROP, we change it. */
1822
dc6f92b8 1823void
fd0c2bd1 1824store_in_alist (alistptr, prop, val)
dc6f92b8 1825 Lisp_Object *alistptr, val;
fd0c2bd1 1826 Lisp_Object prop;
dc6f92b8
JB
1827{
1828 register Lisp_Object tem;
dc6f92b8 1829
dc6f92b8
JB
1830 tem = Fassq (prop, *alistptr);
1831 if (EQ (tem, Qnil))
1832 *alistptr = Fcons (Fcons (prop, val), *alistptr);
1833 else
1834 Fsetcdr (tem, val);
1835}
1836
e5317d61
EZ
1837static int
1838frame_name_fnn_p (str, len)
1839 char *str;
1840 int len;
1841{
1842 if (len > 1 && str[0] == 'F')
1843 {
1844 char *end_ptr;
e5317d61 1845
48970f2f
EZ
1846 strtol (str + 1, &end_ptr, 10);
1847
e5317d61
EZ
1848 if (end_ptr == str + len)
1849 return 1;
1850 }
1851 return 0;
1852}
1853
1854/* Set the name of the terminal frame. Also used by MSDOS frames.
1855 Modeled after x_set_name which is used for WINDOW frames. */
1856
1857void
1858set_term_frame_name (f, name)
1859 struct frame *f;
1860 Lisp_Object name;
1861{
1862 f->explicit_name = ! NILP (name);
1863
1864 /* If NAME is nil, set the name to F<num>. */
1865 if (NILP (name))
1866 {
1867 char namebuf[20];
1868
1869 /* Check for no change needed in this very common case
1870 before we do any consing. */
e34c5c7d 1871 if (frame_name_fnn_p (XSTRING (f->name)->data,
fc932ac6 1872 STRING_BYTES (XSTRING (f->name))))
e5317d61
EZ
1873 return;
1874
1875 terminal_frame_count++;
1876 sprintf (namebuf, "F%d", terminal_frame_count);
1877 name = build_string (namebuf);
1878 }
1879 else
1880 {
1881 CHECK_STRING (name, 0);
1882
1883 /* Don't change the name if it's already NAME. */
1884 if (! NILP (Fstring_equal (name, f->name)))
1885 return;
1886
1887 /* Don't allow the user to set the frame name to F<num>, so it
1888 doesn't clash with the names we generate for terminal frames. */
fc932ac6 1889 if (frame_name_fnn_p (XSTRING (name)->data, STRING_BYTES (XSTRING (name))))
e5317d61
EZ
1890 error ("Frame names of the form F<num> are usurped by Emacs");
1891 }
1892
1893 f->name = name;
1894 update_mode_lines = 1;
1895}
1896
dc6f92b8 1897void
ff11dfa1
JB
1898store_frame_param (f, prop, val)
1899 struct frame *f;
dc6f92b8
JB
1900 Lisp_Object prop, val;
1901{
7eb63b72 1902 register Lisp_Object old_alist_elt;
dc6f92b8 1903
7eb63b72
GM
1904 /* The buffer-alist parameter is stored in a special place and is
1905 not in the alist. */
fa54c6ae
RS
1906 if (EQ (prop, Qbuffer_list))
1907 {
1908 f->buffer_list = val;
1909 return;
1910 }
1911
7eb63b72
GM
1912 /* If PROP is a symbol which is supposed to have frame-local values,
1913 and it is set up based on this frame, switch to the global
1914 binding. That way, we can create or alter the frame-local binding
1915 without messing up the symbol's status. */
1916 if (SYMBOLP (prop))
1917 {
1918 Lisp_Object valcontents;
f5c1dd0d 1919 valcontents = SYMBOL_VALUE (prop);
7eb63b72
GM
1920 if ((BUFFER_LOCAL_VALUEP (valcontents)
1921 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1922 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
1923 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
1924 swap_in_global_binding (prop);
1925 }
1926
1927 /* Update the frame parameter alist. */
1928 old_alist_elt = Fassq (prop, f->param_alist);
1929 if (EQ (old_alist_elt, Qnil))
ff11dfa1 1930 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
dc6f92b8 1931 else
7eb63b72 1932 Fsetcdr (old_alist_elt, val);
bc93c097 1933
7eb63b72
GM
1934 /* Update some other special parameters in their special places
1935 in addition to the alist. */
1936
329ca574
RS
1937 if (EQ (prop, Qbuffer_predicate))
1938 f->buffer_predicate = val;
1939
032d78fe 1940 if (! FRAME_WINDOW_P (f))
e5317d61
EZ
1941 {
1942 if (EQ (prop, Qmenu_bar_lines))
1943 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
1944 else if (EQ (prop, Qname))
1945 set_term_frame_name (f, val);
1946 }
a249de79 1947
e35d291d 1948 if (EQ (prop, Qminibuffer) && WINDOWP (val))
bc93c097
JB
1949 {
1950 if (! MINI_WINDOW_P (XWINDOW (val)))
1951 error ("Surrogate minibuffer windows must be minibuffer windows.");
1952
213bac8a 1953 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
7af7ef38
KH
1954 && !EQ (val, f->minibuffer_window))
1955 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
bc93c097
JB
1956
1957 /* Install the chosen minibuffer window, with proper buffer. */
ff11dfa1 1958 f->minibuffer_window = val;
bc93c097 1959 }
dc6f92b8
JB
1960}
1961
ff11dfa1
JB
1962DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
1963 "Return the parameters-alist of frame FRAME.\n\
dc6f92b8 1964It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.\n\
dc6d9681
JB
1965The meaningful PARMs depend on the kind of frame.\n\
1966If FRAME is omitted, return information on the currently selected frame.")
ff11dfa1
JB
1967 (frame)
1968 Lisp_Object frame;
dc6f92b8
JB
1969{
1970 Lisp_Object alist;
f769f1b2 1971 FRAME_PTR f;
dd10ec4f 1972 int height, width;
57629833 1973 struct gcpro gcpro1;
dc6f92b8 1974
03390a72 1975 if (NILP (frame))
8d2666fe
GM
1976 frame = selected_frame;
1977
1978 CHECK_FRAME (frame, 0);
1979 f = XFRAME (frame);
dc6f92b8 1980
f769f1b2 1981 if (!FRAME_LIVE_P (f))
dc6f92b8
JB
1982 return Qnil;
1983
ff11dfa1 1984 alist = Fcopy_alist (f->param_alist);
57629833
GM
1985 GCPRO1 (alist);
1986
2d764c78 1987 if (!FRAME_WINDOW_P (f))
bb221971 1988 {
4aec4b29
EZ
1989 int fg = FRAME_FOREGROUND_PIXEL (f);
1990 int bg = FRAME_BACKGROUND_PIXEL (f);
e1d0bbc9
EZ
1991 Lisp_Object elt;
1992
1993 /* If the frame's parameter alist says the colors are
1994 unspecified and reversed, take the frame's background pixel
1995 for foreground and vice versa. */
1996 elt = Fassq (Qforeground_color, alist);
70de9f06
EZ
1997 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
1998 {
1999 if (strncmp (XSTRING (XCDR (elt))->data,
2000 unspecified_bg,
2001 XSTRING (XCDR (elt))->size) == 0)
2002 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2003 else if (strncmp (XSTRING (XCDR (elt))->data,
2004 unspecified_fg,
2005 XSTRING (XCDR (elt))->size) == 0)
2006 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2007 }
e1d0bbc9
EZ
2008 else
2009 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2010 elt = Fassq (Qbackground_color, alist);
70de9f06
EZ
2011 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
2012 {
2013 if (strncmp (XSTRING (XCDR (elt))->data,
2014 unspecified_fg,
2015 XSTRING (XCDR (elt))->size) == 0)
2016 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2017 else if (strncmp (XSTRING (XCDR (elt))->data,
2018 unspecified_bg,
2019 XSTRING (XCDR (elt))->size) == 0)
2020 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2021 }
e1d0bbc9
EZ
2022 else
2023 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2d764c78
EZ
2024 store_in_alist (&alist, intern ("font"),
2025 build_string (FRAME_MSDOS_P (f)
2026 ? "ms-dos"
4ec0d3c1 2027 : FRAME_W32_P (f) ? "w32term"
4ec0d3c1 2028 :"tty"));
bb221971 2029 }
fd0c2bd1 2030 store_in_alist (&alist, Qname, f->name);
dd10ec4f
RS
2031 height = (FRAME_NEW_HEIGHT (f) ? FRAME_NEW_HEIGHT (f) : FRAME_HEIGHT (f));
2032 store_in_alist (&alist, Qheight, make_number (height));
2033 width = (FRAME_NEW_WIDTH (f) ? FRAME_NEW_WIDTH (f) : FRAME_WIDTH (f));
2034 store_in_alist (&alist, Qwidth, make_number (width));
f769f1b2 2035 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
fd0c2bd1 2036 store_in_alist (&alist, Qminibuffer,
39acc701 2037 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
f769f1b2
KH
2038 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2039 : FRAME_MINIBUF_WINDOW (f)));
2040 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
03390a72 2041 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
fd0c2bd1 2042
dbc4e1c1 2043 /* I think this should be done with a hook. */
032d78fe
GV
2044#ifdef HAVE_WINDOW_SYSTEM
2045 if (FRAME_WINDOW_P (f))
ff11dfa1 2046 x_report_frame_params (f, &alist);
b6dd20ed 2047 else
fd0c2bd1 2048#endif
16a3738c
KH
2049 {
2050 /* This ought to be correct in f->param_alist for an X frame. */
2051 Lisp_Object lines;
f4e93c40 2052 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
16a3738c
KH
2053 store_in_alist (&alist, Qmenu_bar_lines, lines);
2054 }
57629833
GM
2055
2056 UNGCPRO;
dc6f92b8
JB
2057 return alist;
2058}
2059
8b60f7bc
GM
2060
2061DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2062 "Return FRAME's value for parameter PARAMETER.\n\
2063If FRAME is nil, describe the currently selected frame.")
2064 (frame, parameter)
2065 Lisp_Object frame, parameter;
2066{
2067 struct frame *f;
2068 Lisp_Object value;
2069
2070 if (NILP (frame))
2071 frame = selected_frame;
2072 else
2073 CHECK_FRAME (frame, 0);
2074 CHECK_SYMBOL (parameter, 1);
2075
2076 f = XFRAME (frame);
2077 value = Qnil;
2078
2079 if (FRAME_LIVE_P (f))
2080 {
67d853e6
GM
2081 if (EQ (parameter, Qname))
2082 value = f->name;
6345f6aa
GM
2083#ifdef HAVE_X_WINDOWS
2084 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2085 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2086#endif /* HAVE_X_WINDOWS */
8b60f7bc 2087 else
67d853e6
GM
2088 {
2089 value = Fassq (parameter, f->param_alist);
2090 if (CONSP (value))
5f65b39d 2091 {
5f65b39d
EZ
2092 value = XCDR (value);
2093 /* Fframe_parameters puts the actual fg/bg color names,
2094 even if f->param_alist says otherwise. This is
2095 important when param_alist's notion of colors is
2096 "unspecified". We need to do the same here. */
2097 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2098 {
e1d0bbc9
EZ
2099 char *color_name;
2100 EMACS_INT csz;
2101
2102 if (EQ (parameter, Qbackground_color))
2103 {
2104 color_name = XSTRING (value)->data;
2105 csz = XSTRING (value)->size;
2106 if (strncmp (color_name, unspecified_bg, csz) == 0)
2107 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2108 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2109 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2110 }
2111 else if (EQ (parameter, Qforeground_color))
2112 {
2113 color_name = XSTRING (value)->data;
2114 csz = XSTRING (value)->size;
2115 if (strncmp (color_name, unspecified_fg, csz) == 0)
2116 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2117 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2118 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2119 }
5f65b39d
EZ
2120 }
2121 }
6345f6aa
GM
2122 else if (EQ (parameter, Qdisplay_type)
2123 || EQ (parameter, Qbackground_mode))
2124 /* Avoid consing in frequent cases. */
67d853e6
GM
2125 value = Qnil;
2126 else
2127 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2128 }
8b60f7bc
GM
2129 }
2130
2131 return value;
2132}
2133
2134
ff11dfa1
JB
2135DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2136 Smodify_frame_parameters, 2, 2, 0,
2137 "Modify the parameters of frame FRAME according to ALIST.\n\
e86b5133 2138If FRAME is nil, it defaults to the selected frame.\n\
dc6f92b8
JB
2139ALIST is an alist of parameters to change and their new values.\n\
2140Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.\n\
e80f3932
RS
2141The meaningful PARMs depend on the kind of frame.\n\
2142Undefined PARMs are ignored, but stored in the frame's parameter list\n\
7eb63b72
GM
2143so that `frame-parameters' will return them.\n\
2144\n\
2145The value of frame parameter FOO can also be accessed\n\
2146as a frame-local binding for the variable FOO, if you have\n\
2147enabled such bindings for that variable with `make-variable-frame-local'.")
ff11dfa1
JB
2148 (frame, alist)
2149 Lisp_Object frame, alist;
dc6f92b8 2150{
fd0c2bd1 2151 FRAME_PTR f;
213bac8a 2152 register Lisp_Object tail, prop, val;
3df1fda2
GM
2153 int count = BINDING_STACK_SIZE ();
2154
2155 /* Bind this to t to inhibit initialization of the default face from
2156 X resources in face-set-after-frame-default. If we don't inhibit
2157 this, modifying the `font' frame parameter, for example, while
2158 there is a `default.attributeFont' X resource, won't work,
2159 because `default's font is reset to the value of the X resource
2160 and that resets the `font' frame parameter. */
2161 specbind (Qinhibit_default_face_x_resources, Qt);
dc6f92b8 2162
ff11dfa1 2163 if (EQ (frame, Qnil))
8d2666fe
GM
2164 frame = selected_frame;
2165 CHECK_LIVE_FRAME (frame, 0);
2166 f = XFRAME (frame);
dc6f92b8 2167
dbc4e1c1 2168 /* I think this should be done with a hook. */
032d78fe
GV
2169#ifdef HAVE_WINDOW_SYSTEM
2170 if (FRAME_WINDOW_P (f))
fd0c2bd1 2171 x_set_frame_parameters (f, alist);
329ca574 2172 else
bb221971
RS
2173#endif
2174#ifdef MSDOS
2175 if (FRAME_MSDOS_P (f))
2176 IT_set_frame_parameters (f, alist);
2177 else
329ca574 2178#endif
574a1a90 2179
41d44f1f
RS
2180 {
2181 int length = XINT (Flength (alist));
2182 int i;
2183 Lisp_Object *parms
2184 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2185 Lisp_Object *values
2186 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2187
2188 /* Extract parm names and values into those vectors. */
2189
2190 i = 0;
2191 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2192 {
213bac8a 2193 Lisp_Object elt;
41d44f1f
RS
2194
2195 elt = Fcar (tail);
2196 parms[i] = Fcar (elt);
2197 values[i] = Fcdr (elt);
2198 i++;
2199 }
2200
2201 /* Now process them in reverse of specified order. */
2202 for (i--; i >= 0; i--)
2203 {
2204 prop = parms[i];
2205 val = values[i];
2206 store_frame_param (f, prop, val);
2207 }
2208 }
dc6f92b8 2209
3df1fda2 2210 return unbind_to (count, Qnil);
dc6f92b8
JB
2211}
2212\f
a26a1f95
RS
2213DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2214 0, 1, 0,
2215 "Height in pixels of a line in the font in frame FRAME.\n\
2216If FRAME is omitted, the selected frame is used.\n\
2217For a terminal frame, the value is always 1.")
ff11dfa1
JB
2218 (frame)
2219 Lisp_Object frame;
dc6f92b8 2220{
a26a1f95 2221 struct frame *f;
dc6f92b8 2222
a26a1f95 2223 if (NILP (frame))
8d2666fe
GM
2224 frame = selected_frame;
2225 CHECK_FRAME (frame, 0);
2226 f = XFRAME (frame);
a26a1f95 2227
032d78fe
GV
2228#ifdef HAVE_WINDOW_SYSTEM
2229 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2230 return make_number (x_char_height (f));
2231 else
dc6d9681 2232#endif
a26a1f95
RS
2233 return make_number (1);
2234}
dc6d9681 2235
dc6f92b8 2236
a26a1f95
RS
2237DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2238 0, 1, 0,
2239 "Width in pixels of characters in the font in frame FRAME.\n\
2240If FRAME is omitted, the selected frame is used.\n\
2241The width is the same for all characters, because\n\
2242currently Emacs supports only fixed-width fonts.\n\
2243For a terminal screen, the value is always 1.")
2244 (frame)
2245 Lisp_Object frame;
dc6f92b8 2246{
a26a1f95
RS
2247 struct frame *f;
2248
2249 if (NILP (frame))
8d2666fe
GM
2250 frame = selected_frame;
2251 CHECK_FRAME (frame, 0);
2252 f = XFRAME (frame);
a26a1f95 2253
032d78fe
GV
2254#ifdef HAVE_WINDOW_SYSTEM
2255 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2256 return make_number (x_char_width (f));
2257 else
2258#endif
2259 return make_number (1);
dc6f92b8
JB
2260}
2261
a26a1f95
RS
2262DEFUN ("frame-pixel-height", Fframe_pixel_height,
2263 Sframe_pixel_height, 0, 1, 0,
164a14ef 2264 "Return a FRAME's height in pixels.\n\
07822795
RS
2265This counts only the height available for text lines,\n\
2266not menu bars on window-system Emacs frames.\n\
164a14ef 2267For a terminal frame, the result really gives the height in characters.\n\
a26a1f95
RS
2268If FRAME is omitted, the selected frame is used.")
2269 (frame)
2270 Lisp_Object frame;
dc6f92b8 2271{
a26a1f95
RS
2272 struct frame *f;
2273
2274 if (NILP (frame))
8d2666fe
GM
2275 frame = selected_frame;
2276 CHECK_FRAME (frame, 0);
2277 f = XFRAME (frame);
a26a1f95 2278
032d78fe
GV
2279#ifdef HAVE_WINDOW_SYSTEM
2280 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2281 return make_number (x_pixel_height (f));
2282 else
dc6d9681 2283#endif
a26a1f95
RS
2284 return make_number (FRAME_HEIGHT (f));
2285}
2286
2287DEFUN ("frame-pixel-width", Fframe_pixel_width,
2288 Sframe_pixel_width, 0, 1, 0,
2289 "Return FRAME's width in pixels.\n\
164a14ef 2290For a terminal frame, the result really gives the width in characters.\n\
a26a1f95
RS
2291If FRAME is omitted, the selected frame is used.")
2292 (frame)
2293 Lisp_Object frame;
2294{
2295 struct frame *f;
2296
2297 if (NILP (frame))
8d2666fe
GM
2298 frame = selected_frame;
2299 CHECK_FRAME (frame, 0);
2300 f = XFRAME (frame);
dc6f92b8 2301
032d78fe
GV
2302#ifdef HAVE_WINDOW_SYSTEM
2303 if (FRAME_WINDOW_P (f))
a26a1f95
RS
2304 return make_number (x_pixel_width (f));
2305 else
2306#endif
2307 return make_number (FRAME_WIDTH (f));
2308}
2309\f
ff11dfa1
JB
2310DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2311 "Specify that the frame FRAME has LINES lines.\n\
dc6f92b8 2312Optional third arg non-nil means that redisplay should use LINES lines\n\
ff11dfa1 2313but that the idea of the actual height of the frame should not be changed.")
735eeca3
EN
2314 (frame, lines, pretend)
2315 Lisp_Object frame, lines, pretend;
dc6f92b8 2316{
ff11dfa1 2317 register struct frame *f;
dc6f92b8 2318
735eeca3 2319 CHECK_NUMBER (lines, 0);
ff11dfa1 2320 if (NILP (frame))
8d2666fe
GM
2321 frame = selected_frame;
2322 CHECK_LIVE_FRAME (frame, 0);
2323 f = XFRAME (frame);
dc6f92b8 2324
dbc4e1c1 2325 /* I think this should be done with a hook. */
032d78fe
GV
2326#ifdef HAVE_WINDOW_SYSTEM
2327 if (FRAME_WINDOW_P (f))
dc6f92b8 2328 {
735eeca3
EN
2329 if (XINT (lines) != f->height)
2330 x_set_window_size (f, 1, f->width, XINT (lines));
32347cf4 2331 do_pending_window_change (0);
dc6f92b8
JB
2332 }
2333 else
fd0c2bd1 2334#endif
32347cf4 2335 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
dc6f92b8
JB
2336 return Qnil;
2337}
2338
ff11dfa1
JB
2339DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2340 "Specify that the frame FRAME has COLS columns.\n\
dc6f92b8 2341Optional third arg non-nil means that redisplay should use COLS columns\n\
ff11dfa1
JB
2342but that the idea of the actual width of the frame should not be changed.")
2343 (frame, cols, pretend)
fd0c2bd1 2344 Lisp_Object frame, cols, pretend;
dc6f92b8 2345{
ff11dfa1 2346 register struct frame *f;
dc6f92b8 2347 CHECK_NUMBER (cols, 0);
ff11dfa1 2348 if (NILP (frame))
8d2666fe
GM
2349 frame = selected_frame;
2350 CHECK_LIVE_FRAME (frame, 0);
2351 f = XFRAME (frame);
dc6f92b8 2352
dbc4e1c1 2353 /* I think this should be done with a hook. */
032d78fe
GV
2354#ifdef HAVE_WINDOW_SYSTEM
2355 if (FRAME_WINDOW_P (f))
dc6f92b8 2356 {
ff11dfa1 2357 if (XINT (cols) != f->width)
808c0f20 2358 x_set_window_size (f, 1, XINT (cols), f->height);
32347cf4 2359 do_pending_window_change (0);
dc6f92b8
JB
2360 }
2361 else
fd0c2bd1 2362#endif
32347cf4 2363 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
dc6f92b8
JB
2364 return Qnil;
2365}
2366
ff11dfa1
JB
2367DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2368 "Sets size of FRAME to COLS by ROWS, measured in characters.")
2369 (frame, cols, rows)
2370 Lisp_Object frame, cols, rows;
dc6f92b8 2371{
ff11dfa1 2372 register struct frame *f;
dc6f92b8 2373
ff11dfa1 2374 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8
JB
2375 CHECK_NUMBER (cols, 2);
2376 CHECK_NUMBER (rows, 1);
ff11dfa1 2377 f = XFRAME (frame);
dc6f92b8 2378
dbc4e1c1 2379 /* I think this should be done with a hook. */
032d78fe
GV
2380#ifdef HAVE_WINDOW_SYSTEM
2381 if (FRAME_WINDOW_P (f))
dc6f92b8 2382 {
29824ce2
RS
2383 if (XINT (rows) != f->height || XINT (cols) != f->width
2384 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
808c0f20 2385 x_set_window_size (f, 1, XINT (cols), XINT (rows));
32347cf4 2386 do_pending_window_change (0);
dc6f92b8
JB
2387 }
2388 else
fd0c2bd1 2389#endif
32347cf4 2390 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
dc6f92b8
JB
2391
2392 return Qnil;
2393}
2394
ff11dfa1
JB
2395DEFUN ("set-frame-position", Fset_frame_position,
2396 Sset_frame_position, 3, 3, 0,
2397 "Sets position of FRAME in pixels to XOFFSET by YOFFSET.\n\
60bf8ee4
RS
2398This is actually the position of the upper left corner of the frame.\n\
2399Negative values for XOFFSET or YOFFSET are interpreted relative to\n\
4524cb1c 2400the rightmost or bottommost possible position (that stays within the screen).")
ff11dfa1
JB
2401 (frame, xoffset, yoffset)
2402 Lisp_Object frame, xoffset, yoffset;
dc6f92b8 2403{
ff11dfa1 2404 register struct frame *f;
dc6f92b8 2405
ff11dfa1 2406 CHECK_LIVE_FRAME (frame, 0);
dc6f92b8
JB
2407 CHECK_NUMBER (xoffset, 1);
2408 CHECK_NUMBER (yoffset, 2);
ff11dfa1 2409 f = XFRAME (frame);
dc6f92b8 2410
dbc4e1c1 2411 /* I think this should be done with a hook. */
032d78fe
GV
2412#ifdef HAVE_WINDOW_SYSTEM
2413 if (FRAME_WINDOW_P (f))
c7c70761 2414 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
fd0c2bd1 2415#endif
dc6f92b8
JB
2416
2417 return Qt;
2418}
dc6d9681 2419
dc6f92b8 2420\f
dfcf069d 2421void
ff11dfa1 2422syms_of_frame ()
dc6f92b8 2423{
3df1fda2
GM
2424 Qframep = intern ("framep");
2425 staticpro (&Qframep);
2426 Qframe_live_p = intern ("frame-live-p");
2427 staticpro (&Qframe_live_p);
2428 Qheight = intern ("height");
2429 staticpro (&Qheight);
2430 Qicon = intern ("icon");
2431 staticpro (&Qicon);
2432 Qminibuffer = intern ("minibuffer");
2433 staticpro (&Qminibuffer);
2434 Qmodeline = intern ("modeline");
2435 staticpro (&Qmodeline);
2436 Qname = intern ("name");
2437 staticpro (&Qname);
2438 Qonly = intern ("only");
2439 staticpro (&Qonly);
2440 Qunsplittable = intern ("unsplittable");
2441 staticpro (&Qunsplittable);
2442 Qmenu_bar_lines = intern ("menu-bar-lines");
2443 staticpro (&Qmenu_bar_lines);
2444 Qtool_bar_lines = intern ("tool-bar-lines");
2445 staticpro (&Qtool_bar_lines);
2446 Qwidth = intern ("width");
2447 staticpro (&Qwidth);
2448 Qx = intern ("x");
2449 staticpro (&Qx);
2450 Qw32 = intern ("w32");
2451 staticpro (&Qw32);
2452 Qpc = intern ("pc");
2453 staticpro (&Qpc);
2454 Qmac = intern ("mac");
2455 staticpro (&Qmac);
2456 Qvisible = intern ("visible");
2457 staticpro (&Qvisible);
2458 Qbuffer_predicate = intern ("buffer-predicate");
2459 staticpro (&Qbuffer_predicate);
2460 Qbuffer_list = intern ("buffer-list");
2461 staticpro (&Qbuffer_list);
2462 Qtitle = intern ("title");
2463 staticpro (&Qtitle);
2464 Qdisplay_type = intern ("display-type");
2465 staticpro (&Qdisplay_type);
2466 Qbackground_mode = intern ("background-mode");
2467 staticpro (&Qbackground_mode);
dc6f92b8 2468
3df1fda2
GM
2469 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
2470 "Alist of default values for frame creation.\n\
2471These may be set in your init file, like this:\n\
2472 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))\n\
2473These override values given in window system configuration data,\n\
2474 including X Windows' defaults database.\n\
2475For values specific to the first Emacs frame, see `initial-frame-alist'.\n\
2476For values specific to the separate minibuffer frame, see\n\
2477 `minibuffer-frame-alist'.\n\
2478The `menu-bar-lines' element of the list controls whether new frames\n\
2479 have menu bars; `menu-bar-mode' works by altering this element.");
2480 Vdefault_frame_alist = Qnil;
2481
2482 Qinhibit_default_face_x_resources
2483 = intern ("inhibit-default-face-x-resources");
2484 staticpro (&Qinhibit_default_face_x_resources);
dc6f92b8 2485
ff11dfa1
JB
2486 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
2487 "The initial frame-object, which represents Emacs's stdout.");
dc6f92b8
JB
2488
2489 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
ff11dfa1 2490 "Non-nil if all of emacs is iconified and frame updates are not needed.");
dc6f92b8
JB
2491 Vemacs_iconified = Qnil;
2492
beb0bc36 2493 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
ac7ed642
RS
2494 "If non-nil, function to transform normal value of `mouse-position'.\n\
2495`mouse-position' calls this function, passing its usual return value as\n\
2496argument, and returns whatever this function returns.\n\
2497This abnormal hook exists for the benefit of packages like `xt-mouse.el'\n\
beb0bc36
DL
2498which need to do mouse handling at the Lisp level.");
2499 Vmouse_position_function = Qnil;
2500
c60f3a6a 2501 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
ff11dfa1 2502 "Minibufferless frames use this frame's minibuffer.\n\
f9898cc6 2503\n\
ff11dfa1 2504Emacs cannot create minibufferless frames unless this is set to an\n\
f9898cc6
JB
2505appropriate surrogate.\n\
2506\n\
2507Emacs consults this variable only when creating minibufferless\n\
ff11dfa1 2508frames; once the frame is created, it sticks with its assigned\n\
f9898cc6
JB
2509minibuffer, no matter what this variable is set to. This means that\n\
2510this variable doesn't necessarily say anything meaningful about the\n\
ff11dfa1 2511current set of frames, or where the minibuffer is currently being\n\
20fa27a4
EZ
2512displayed.\n\
2513\n\
2514This variable is local to the current terminal and cannot be buffer-local.");
dc6f92b8 2515
3df1fda2
GM
2516 staticpro (&Vframe_list);
2517
5add3885 2518 defsubr (&Sactive_minibuffer_window);
ff11dfa1 2519 defsubr (&Sframep);
dbc4e1c1 2520 defsubr (&Sframe_live_p);
bb1513c9 2521 defsubr (&Smake_terminal_frame);
0f85737c 2522 defsubr (&Shandle_switch_frame);
1c212787 2523 defsubr (&Signore_event);
ff11dfa1
JB
2524 defsubr (&Sselect_frame);
2525 defsubr (&Sselected_frame);
2526 defsubr (&Swindow_frame);
2527 defsubr (&Sframe_root_window);
d446a856 2528 defsubr (&Sframe_first_window);
ff11dfa1 2529 defsubr (&Sframe_selected_window);
4a7cfafc 2530 defsubr (&Sset_frame_selected_window);
ff11dfa1
JB
2531 defsubr (&Sframe_list);
2532 defsubr (&Snext_frame);
ef2c57ac 2533 defsubr (&Sprevious_frame);
ff11dfa1 2534 defsubr (&Sdelete_frame);
f9898cc6 2535 defsubr (&Smouse_position);
152e6c70 2536 defsubr (&Smouse_pixel_position);
dc6f92b8 2537 defsubr (&Sset_mouse_position);
152e6c70 2538 defsubr (&Sset_mouse_pixel_position);
dc6f92b8 2539#if 0
ff11dfa1
JB
2540 defsubr (&Sframe_configuration);
2541 defsubr (&Srestore_frame_configuration);
dc6f92b8 2542#endif
ff11dfa1
JB
2543 defsubr (&Smake_frame_visible);
2544 defsubr (&Smake_frame_invisible);
2545 defsubr (&Siconify_frame);
2546 defsubr (&Sframe_visible_p);
2547 defsubr (&Svisible_frame_list);
b49f5578
JB
2548 defsubr (&Sraise_frame);
2549 defsubr (&Slower_frame);
ff11dfa1
JB
2550 defsubr (&Sredirect_frame_focus);
2551 defsubr (&Sframe_focus);
2552 defsubr (&Sframe_parameters);
8b60f7bc 2553 defsubr (&Sframe_parameter);
ff11dfa1 2554 defsubr (&Smodify_frame_parameters);
a26a1f95
RS
2555 defsubr (&Sframe_char_height);
2556 defsubr (&Sframe_char_width);
2557 defsubr (&Sframe_pixel_height);
2558 defsubr (&Sframe_pixel_width);
ff11dfa1
JB
2559 defsubr (&Sset_frame_height);
2560 defsubr (&Sset_frame_width);
2561 defsubr (&Sset_frame_size);
2562 defsubr (&Sset_frame_position);
dc6f92b8 2563}
e5d77022 2564
dfcf069d 2565void
2f0b07e0
JB
2566keys_of_frame ()
2567{
0f85737c 2568 initial_define_lispy_key (global_map, "switch-frame", "handle-switch-frame");
d134b17b 2569 initial_define_lispy_key (global_map, "delete-frame", "handle-delete-frame");
1c212787
KH
2570 initial_define_lispy_key (global_map, "iconify-frame", "ignore-event");
2571 initial_define_lispy_key (global_map, "make-frame-visible", "ignore-event");
2f0b07e0 2572}