(mm-inline-media-tests): Add
[emacs.git] / src / frame.c
blobad71eb76f3887c49abd83d6ec274e91c0711b3e8
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000 Free Software Foundation.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <config.h>
23 #include <stdio.h>
24 #include "lisp.h"
25 #include "charset.h"
26 #ifdef HAVE_X_WINDOWS
27 #include "xterm.h"
28 #endif
29 #ifdef WINDOWSNT
30 #include "w32term.h"
31 #endif
32 #ifdef macintosh
33 #include "macterm.h"
34 #endif
35 #include "buffer.h"
36 /* These help us bind and responding to switch-frame events. */
37 #include "commands.h"
38 #include "keyboard.h"
39 #include "frame.h"
40 #ifdef HAVE_WINDOW_SYSTEM
41 #include "fontset.h"
42 #endif
43 #include "termhooks.h"
44 #include "dispextern.h"
45 #include "window.h"
46 #ifdef MSDOS
47 #include "msdos.h"
48 #include "dosfns.h"
49 #endif
51 Lisp_Object Qframep;
52 Lisp_Object Qframe_live_p;
53 Lisp_Object Qheight;
54 Lisp_Object Qicon;
55 Lisp_Object Qminibuffer;
56 Lisp_Object Qmodeline;
57 Lisp_Object Qname;
58 Lisp_Object Qonly;
59 Lisp_Object Qunsplittable;
60 Lisp_Object Qmenu_bar_lines;
61 Lisp_Object Qtool_bar_lines;
62 Lisp_Object Qwidth;
63 Lisp_Object Qx;
64 Lisp_Object Qw32;
65 Lisp_Object Qw32_console;
66 Lisp_Object Qpc;
67 Lisp_Object Qmac;
68 Lisp_Object Qvisible;
69 Lisp_Object Qbuffer_predicate;
70 Lisp_Object Qbuffer_list;
71 Lisp_Object Qtitle;
72 Lisp_Object Qdisplay_type;
73 Lisp_Object Qbackground_mode;
74 Lisp_Object Qinhibit_default_face_x_resources;
76 Lisp_Object Vterminal_frame;
77 Lisp_Object Vdefault_frame_alist;
78 Lisp_Object Vmouse_position_function;
80 static void
81 set_menu_bar_lines_1 (window, n)
82 Lisp_Object window;
83 int n;
85 struct window *w = XWINDOW (window);
87 XSETFASTINT (w->last_modified, 0);
88 XSETFASTINT (w->top, XFASTINT (w->top) + n);
89 XSETFASTINT (w->height, XFASTINT (w->height) - n);
91 if (INTEGERP (w->orig_top))
92 XSETFASTINT (w->orig_top, XFASTINT (w->orig_top) + n);
93 if (INTEGERP (w->orig_height))
94 XSETFASTINT (w->orig_height, XFASTINT (w->orig_height) - n);
96 /* Handle just the top child in a vertical split. */
97 if (!NILP (w->vchild))
98 set_menu_bar_lines_1 (w->vchild, n);
100 /* Adjust all children in a horizontal split. */
101 for (window = w->hchild; !NILP (window); window = w->next)
103 w = XWINDOW (window);
104 set_menu_bar_lines_1 (window, n);
108 void
109 set_menu_bar_lines (f, value, oldval)
110 struct frame *f;
111 Lisp_Object value, oldval;
113 int nlines;
114 int olines = FRAME_MENU_BAR_LINES (f);
116 /* Right now, menu bars don't work properly in minibuf-only frames;
117 most of the commands try to apply themselves to the minibuffer
118 frame itself, and get an error because you can't switch buffers
119 in or split the minibuffer window. */
120 if (FRAME_MINIBUF_ONLY_P (f))
121 return;
123 if (INTEGERP (value))
124 nlines = XINT (value);
125 else
126 nlines = 0;
128 if (nlines != olines)
130 windows_or_buffers_changed++;
131 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
132 FRAME_MENU_BAR_LINES (f) = nlines;
133 set_menu_bar_lines_1 (f->root_window, nlines - olines);
134 adjust_glyphs (f);
138 Lisp_Object Vemacs_iconified;
139 Lisp_Object Vframe_list;
141 struct x_output tty_display;
143 extern Lisp_Object Vminibuffer_list;
144 extern Lisp_Object get_minibuffer ();
145 extern Lisp_Object Fhandle_switch_frame ();
146 extern Lisp_Object Fredirect_frame_focus ();
147 extern Lisp_Object x_get_focus_frame ();
149 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
150 "Return non-nil if OBJECT is a frame.\n\
151 Value is t for a termcap frame (a character-only terminal),\n\
152 `x' for an Emacs frame that is really an X window,\n\
153 `w32' for an Emacs frame that is a window on MS-Windows display,\n\
154 `mac' for an Emacs frame on a Macintosh display,\n\
155 `pc' for a direct-write MS-DOS frame.\n\
156 See also `frame-live-p'.")
157 (object)
158 Lisp_Object object;
160 if (!FRAMEP (object))
161 return Qnil;
162 switch (XFRAME (object)->output_method)
164 case output_termcap:
165 return Qt;
166 case output_x_window:
167 return Qx;
168 case output_w32:
169 return Qw32;
170 case output_w32_console:
171 return Qw32_console;
172 case output_msdos_raw:
173 return Qpc;
174 case output_mac:
175 return Qmac;
176 default:
177 abort ();
181 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
182 "Return non-nil if OBJECT is a frame which has not been deleted.\n\
183 Value is nil if OBJECT is not a live frame. If object is a live\n\
184 frame, the return value indicates what sort of output device it is\n\
185 displayed on. Value is t for a termcap frame (a character-only\n\
186 terminal), `x' for an Emacs frame being displayed in an X window.")
187 (object)
188 Lisp_Object object;
190 return ((FRAMEP (object)
191 && FRAME_LIVE_P (XFRAME (object)))
192 ? Fframep (object)
193 : Qnil);
196 struct frame *
197 make_frame (mini_p)
198 int mini_p;
200 Lisp_Object frame;
201 register struct frame *f;
202 register Lisp_Object root_window;
203 register Lisp_Object mini_window;
204 register struct Lisp_Vector *vec;
205 int i;
207 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct frame));
208 for (i = 0; i < VECSIZE (struct frame); i++)
209 XSETFASTINT (vec->contents[i], 0);
210 vec->size = VECSIZE (struct frame);
211 f = (struct frame *)vec;
212 XSETFRAME (frame, f);
214 f->desired_matrix = 0;
215 f->current_matrix = 0;
216 f->desired_pool = 0;
217 f->current_pool = 0;
218 f->glyphs_initialized_p = 0;
219 f->decode_mode_spec_buffer = 0;
220 f->visible = 0;
221 f->async_visible = 0;
222 f->output_data.nothing = 0;
223 f->iconified = 0;
224 f->async_iconified = 0;
225 f->wants_modeline = 1;
226 f->auto_raise = 0;
227 f->auto_lower = 0;
228 f->no_split = 0;
229 f->garbaged = 1;
230 f->has_minibuffer = mini_p;
231 f->focus_frame = Qnil;
232 f->explicit_name = 0;
233 f->can_have_scroll_bars = 0;
234 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
235 f->param_alist = Qnil;
236 f->scroll_bars = Qnil;
237 f->condemned_scroll_bars = Qnil;
238 f->face_alist = Qnil;
239 f->face_cache = NULL;
240 f->menu_bar_items = Qnil;
241 f->menu_bar_vector = Qnil;
242 f->menu_bar_items_used = 0;
243 f->buffer_predicate = Qnil;
244 f->buffer_list = Qnil;
245 #ifdef MULTI_KBOARD
246 f->kboard = initial_kboard;
247 #endif
248 f->namebuf = 0;
249 f->title = Qnil;
250 f->menu_bar_window = Qnil;
251 f->tool_bar_window = Qnil;
252 f->tool_bar_items = Qnil;
253 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
254 f->n_tool_bar_items = 0;
256 root_window = make_window ();
257 if (mini_p)
259 mini_window = make_window ();
260 XWINDOW (root_window)->next = mini_window;
261 XWINDOW (mini_window)->prev = root_window;
262 XWINDOW (mini_window)->mini_p = Qt;
263 XWINDOW (mini_window)->frame = frame;
264 f->minibuffer_window = mini_window;
266 else
268 mini_window = Qnil;
269 XWINDOW (root_window)->next = Qnil;
270 f->minibuffer_window = Qnil;
273 XWINDOW (root_window)->frame = frame;
275 /* 10 is arbitrary,
276 just so that there is "something there."
277 Correct size will be set up later with change_frame_size. */
279 SET_FRAME_WIDTH (f, 10);
280 f->height = 10;
282 XSETFASTINT (XWINDOW (root_window)->width, 10);
283 XSETFASTINT (XWINDOW (root_window)->height, (mini_p ? 9 : 10));
285 if (mini_p)
287 XSETFASTINT (XWINDOW (mini_window)->width, 10);
288 XSETFASTINT (XWINDOW (mini_window)->top, 9);
289 XSETFASTINT (XWINDOW (mini_window)->height, 1);
292 /* Choose a buffer for the frame's root window. */
294 Lisp_Object buf;
296 XWINDOW (root_window)->buffer = Qt;
297 buf = Fcurrent_buffer ();
298 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
299 a space), try to find another one. */
300 if (XSTRING (Fbuffer_name (buf))->data[0] == ' ')
301 buf = Fother_buffer (buf, Qnil, Qnil);
303 /* Use set_window_buffer, not Fset_window_buffer, and don't let
304 hooks be run by it. The reason is that the whole frame/window
305 arrangement is not yet fully intialized at this point. Windows
306 don't have the right size, glyph matrices aren't initialized
307 etc. Running Lisp functions at this point surely ends in a
308 SEGV. */
309 set_window_buffer (root_window, buf, 0);
310 f->buffer_list = Fcons (buf, Qnil);
313 if (mini_p)
315 XWINDOW (mini_window)->buffer = Qt;
316 set_window_buffer (mini_window,
317 (NILP (Vminibuffer_list)
318 ? get_minibuffer (0)
319 : Fcar (Vminibuffer_list)),
323 f->root_window = root_window;
324 f->selected_window = root_window;
325 /* Make sure this window seems more recently used than
326 a newly-created, never-selected window. */
327 XSETFASTINT (XWINDOW (f->selected_window)->use_time, ++window_select_count);
329 return f;
332 #ifdef HAVE_WINDOW_SYSTEM
333 /* Make a frame using a separate minibuffer window on another frame.
334 MINI_WINDOW is the minibuffer window to use. nil means use the
335 default (the global minibuffer). */
337 struct frame *
338 make_frame_without_minibuffer (mini_window, kb, display)
339 register Lisp_Object mini_window;
340 KBOARD *kb;
341 Lisp_Object display;
343 register struct frame *f;
344 struct gcpro gcpro1;
346 if (!NILP (mini_window))
347 CHECK_LIVE_WINDOW (mini_window, 0);
349 #ifdef MULTI_KBOARD
350 if (!NILP (mini_window)
351 && XFRAME (XWINDOW (mini_window)->frame)->kboard != kb)
352 error ("frame and minibuffer must be on the same display");
353 #endif
355 /* Make a frame containing just a root window. */
356 f = make_frame (0);
358 if (NILP (mini_window))
360 /* Use default-minibuffer-frame if possible. */
361 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
362 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
364 Lisp_Object frame_dummy;
366 XSETFRAME (frame_dummy, f);
367 GCPRO1 (frame_dummy);
368 /* If there's no minibuffer frame to use, create one. */
369 kb->Vdefault_minibuffer_frame =
370 call1 (intern ("make-initial-minibuffer-frame"), display);
371 UNGCPRO;
374 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
377 f->minibuffer_window = mini_window;
379 /* Make the chosen minibuffer window display the proper minibuffer,
380 unless it is already showing a minibuffer. */
381 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
382 Fset_window_buffer (mini_window,
383 (NILP (Vminibuffer_list)
384 ? get_minibuffer (0)
385 : Fcar (Vminibuffer_list)));
386 return f;
389 /* Make a frame containing only a minibuffer window. */
391 struct frame *
392 make_minibuffer_frame ()
394 /* First make a frame containing just a root window, no minibuffer. */
396 register struct frame *f = make_frame (0);
397 register Lisp_Object mini_window;
398 register Lisp_Object frame;
400 XSETFRAME (frame, f);
402 f->auto_raise = 0;
403 f->auto_lower = 0;
404 f->no_split = 1;
405 f->wants_modeline = 0;
406 f->has_minibuffer = 1;
408 /* Now label the root window as also being the minibuffer.
409 Avoid infinite looping on the window chain by marking next pointer
410 as nil. */
412 mini_window = f->minibuffer_window = f->root_window;
413 XWINDOW (mini_window)->mini_p = Qt;
414 XWINDOW (mini_window)->next = Qnil;
415 XWINDOW (mini_window)->prev = Qnil;
416 XWINDOW (mini_window)->frame = frame;
418 /* Put the proper buffer in that window. */
420 Fset_window_buffer (mini_window,
421 (NILP (Vminibuffer_list)
422 ? get_minibuffer (0)
423 : Fcar (Vminibuffer_list)));
424 return f;
426 #endif /* HAVE_WINDOW_SYSTEM */
428 /* Construct a frame that refers to the terminal (stdin and stdout). */
430 static int terminal_frame_count;
432 struct frame *
433 make_terminal_frame ()
435 register struct frame *f;
436 Lisp_Object frame;
437 char name[20];
439 #ifdef MULTI_KBOARD
440 if (!initial_kboard)
442 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
443 init_kboard (initial_kboard);
444 initial_kboard->next_kboard = all_kboards;
445 all_kboards = initial_kboard;
447 #endif
449 /* The first call must initialize Vframe_list. */
450 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
451 Vframe_list = Qnil;
453 f = make_frame (1);
455 XSETFRAME (frame, f);
456 Vframe_list = Fcons (frame, Vframe_list);
458 terminal_frame_count++;
459 sprintf (name, "F%d", terminal_frame_count);
460 f->name = build_string (name);
462 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
463 f->async_visible = 1; /* Don't let visible be cleared later. */
464 #ifdef MSDOS
465 f->output_data.x = &the_only_x_display;
466 if (!inhibit_window_system
467 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
468 || XFRAME (selected_frame)->output_method == output_msdos_raw))
470 f->output_method = output_msdos_raw;
471 /* This initialization of foreground and background pixels is
472 only important for the initial frame created in temacs. If
473 we don't do that, we get black background and foreground in
474 the dumped Emacs because the_only_x_display is a static
475 variable, hence it is born all-zeroes, and zero is the code
476 for the black color. Other frames all inherit their pixels
477 from what's already in the_only_x_display. */
478 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
479 && f->output_data.x->background_pixel == 0
480 && f->output_data.x->foreground_pixel == 0)
482 f->output_data.x->background_pixel = FACE_TTY_DEFAULT_BG_COLOR;
483 f->output_data.x->foreground_pixel = FACE_TTY_DEFAULT_FG_COLOR;
486 else
487 f->output_method = output_termcap;
488 #else
489 #ifdef WINDOWSNT
490 f->output_method = output_w32_console;
491 f->output_data.x = &tty_display;
492 #else
493 #ifdef macintosh
494 make_mac_terminal_frame (f);
495 #else
496 f->output_data.x = &tty_display;
497 #endif /* macintosh */
498 #endif /* WINDOWSNT */
499 #endif /* MSDOS */
501 if (!noninteractive)
502 init_frame_faces (f);
504 return f;
507 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
508 1, 1, 0, "Create an additional terminal frame.\n\
509 You can create multiple frames on a text-only terminal in this way.\n\
510 Only the selected terminal frame is actually displayed.\n\
511 This function takes one argument, an alist specifying frame parameters.\n\
512 In practice, generally you don't need to specify any parameters.\n\
513 Note that changing the size of one terminal frame automatically affects all.")
514 (parms)
515 Lisp_Object parms;
517 struct frame *f;
518 Lisp_Object frame, tem;
519 struct frame *sf = SELECTED_FRAME ();
521 #ifdef MSDOS
522 if (sf->output_method != output_msdos_raw
523 && sf->output_method != output_termcap)
524 abort ();
525 #else /* not MSDOS */
527 #ifdef macintosh
528 if (sf->output_method != output_mac)
529 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
530 #else
531 if (sf->output_method != output_termcap)
532 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
533 #endif
534 #endif /* not MSDOS */
536 f = make_terminal_frame ();
538 change_frame_size (f, FRAME_HEIGHT (sf),
539 FRAME_WIDTH (sf), 0, 0, 0);
540 adjust_glyphs (f);
541 calculate_costs (f);
542 XSETFRAME (frame, f);
543 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
544 Fmodify_frame_parameters (frame, parms);
546 /* Make the frame face alist be frame-specific, so that each
547 frame could change its face definitions independently. */
548 f->face_alist = Fcopy_alist (sf->face_alist);
549 /* Simple Fcopy_alist isn't enough, because we need the contents of
550 the vectors which are the CDRs of associations in face_alist to
551 be copied as well. */
552 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
553 XCDR (XCAR (tem)) = Fcopy_sequence (XCDR (XCAR (tem)));
554 return frame;
557 Lisp_Object
558 do_switch_frame (frame, no_enter, track)
559 Lisp_Object frame, no_enter;
560 int track;
562 struct frame *sf = SELECTED_FRAME ();
564 /* If FRAME is a switch-frame event, extract the frame we should
565 switch to. */
566 if (CONSP (frame)
567 && EQ (XCAR (frame), Qswitch_frame)
568 && CONSP (XCDR (frame)))
569 frame = XCAR (XCDR (frame));
571 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
572 a switch-frame event to arrive after a frame is no longer live,
573 especially when deleting the initial frame during startup. */
574 CHECK_FRAME (frame, 0);
575 if (! FRAME_LIVE_P (XFRAME (frame)))
576 return Qnil;
578 if (sf == XFRAME (frame))
579 return frame;
581 /* This is too greedy; it causes inappropriate focus redirection
582 that's hard to get rid of. */
583 #if 0
584 /* If a frame's focus has been redirected toward the currently
585 selected frame, we should change the redirection to point to the
586 newly selected frame. This means that if the focus is redirected
587 from a minibufferless frame to a surrogate minibuffer frame, we
588 can use `other-window' to switch between all the frames using
589 that minibuffer frame, and the focus redirection will follow us
590 around. */
591 if (track)
593 Lisp_Object tail;
595 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
597 Lisp_Object focus;
599 if (!FRAMEP (XCAR (tail)))
600 abort ();
602 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
604 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
605 Fredirect_frame_focus (XCAR (tail), frame);
608 #else /* ! 0 */
609 /* Instead, apply it only to the frame we're pointing to. */
610 #ifdef HAVE_WINDOW_SYSTEM
611 if (track && (FRAME_WINDOW_P (XFRAME (frame))))
613 Lisp_Object focus, xfocus;
615 xfocus = x_get_focus_frame (XFRAME (frame));
616 if (FRAMEP (xfocus))
618 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
619 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
620 Fredirect_frame_focus (xfocus, frame);
623 #endif /* HAVE_X_WINDOWS */
624 #endif /* ! 0 */
626 selected_frame = frame;
627 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
628 last_nonminibuf_frame = XFRAME (selected_frame);
630 Fselect_window (XFRAME (frame)->selected_window);
632 /* We want to make sure that the next event generates a frame-switch
633 event to the appropriate frame. This seems kludgy to me, but
634 before you take it out, make sure that evaluating something like
635 (select-window (frame-root-window (new-frame))) doesn't end up
636 with your typing being interpreted in the new frame instead of
637 the one you're actually typing in. */
638 internal_last_event_frame = Qnil;
640 return frame;
643 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
644 "Select the frame FRAME.\n\
645 Subsequent editing commands apply to its selected window.\n\
646 The selection of FRAME lasts until the next time the user does\n\
647 something to select a different frame, or until the next time this\n\
648 function is called.")
649 (frame, no_enter)
650 Lisp_Object frame, no_enter;
652 return do_switch_frame (frame, no_enter, 1);
656 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 2, "e",
657 "Handle a switch-frame event EVENT.\n\
658 Switch-frame events are usually bound to this function.\n\
659 A switch-frame event tells Emacs that the window manager has requested\n\
660 that the user's events be directed to the frame mentioned in the event.\n\
661 This function selects the selected window of the frame of EVENT.\n\
663 If EVENT is frame object, handle it as if it were a switch-frame event\n\
664 to that frame.")
665 (event, no_enter)
666 Lisp_Object event, no_enter;
668 /* Preserve prefix arg that the command loop just cleared. */
669 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
670 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
671 return do_switch_frame (event, no_enter, 0);
674 DEFUN ("ignore-event", Fignore_event, Signore_event, 0, 0, "",
675 "Do nothing, but preserve any prefix argument already specified.\n\
676 This is a suitable binding for iconify-frame and make-frame-visible.")
679 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
680 return Qnil;
683 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
684 "Return the frame that is now selected.")
687 return selected_frame;
690 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
691 "Return the frame object that window WINDOW is on.")
692 (window)
693 Lisp_Object window;
695 CHECK_LIVE_WINDOW (window, 0);
696 return XWINDOW (window)->frame;
699 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
700 "Returns the topmost, leftmost window of FRAME.\n\
701 If omitted, FRAME defaults to the currently selected frame.")
702 (frame)
703 Lisp_Object frame;
705 Lisp_Object w;
707 if (NILP (frame))
708 w = SELECTED_FRAME ()->root_window;
709 else
711 CHECK_LIVE_FRAME (frame, 0);
712 w = XFRAME (frame)->root_window;
714 while (NILP (XWINDOW (w)->buffer))
716 if (! NILP (XWINDOW (w)->hchild))
717 w = XWINDOW (w)->hchild;
718 else if (! NILP (XWINDOW (w)->vchild))
719 w = XWINDOW (w)->vchild;
720 else
721 abort ();
723 return w;
726 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
727 Sactive_minibuffer_window, 0, 0, 0,
728 "Return the currently active minibuffer window, or nil if none.")
731 return minibuf_level ? minibuf_window : Qnil;
734 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
735 "Returns the root-window of FRAME.\n\
736 If omitted, FRAME defaults to the currently selected frame.")
737 (frame)
738 Lisp_Object frame;
740 Lisp_Object window;
742 if (NILP (frame))
743 window = SELECTED_FRAME ()->root_window;
744 else
746 CHECK_LIVE_FRAME (frame, 0);
747 window = XFRAME (frame)->root_window;
750 return window;
753 DEFUN ("frame-selected-window", Fframe_selected_window,
754 Sframe_selected_window, 0, 1, 0,
755 "Return the selected window of frame object FRAME.\n\
756 If omitted, FRAME defaults to the currently selected frame.")
757 (frame)
758 Lisp_Object frame;
760 Lisp_Object window;
762 if (NILP (frame))
763 window = SELECTED_FRAME ()->selected_window;
764 else
766 CHECK_LIVE_FRAME (frame, 0);
767 window = XFRAME (frame)->selected_window;
770 return window;
773 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
774 Sset_frame_selected_window, 2, 2, 0,
775 "Set the selected window of frame object FRAME to WINDOW.\n\
776 If FRAME is nil, the selected frame is used.\n\
777 If FRAME is the selected frame, this makes WINDOW the selected window.")
778 (frame, window)
779 Lisp_Object frame, window;
781 if (NILP (frame))
782 frame = selected_frame;
784 CHECK_LIVE_FRAME (frame, 0);
785 CHECK_LIVE_WINDOW (window, 1);
787 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
788 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
790 if (EQ (frame, selected_frame))
791 return Fselect_window (window);
793 return XFRAME (frame)->selected_window = window;
796 DEFUN ("frame-list", Fframe_list, Sframe_list,
797 0, 0, 0,
798 "Return a list of all frames.")
801 return Fcopy_sequence (Vframe_list);
804 /* Return the next frame in the frame list after FRAME.
805 If MINIBUF is nil, exclude minibuffer-only frames.
806 If MINIBUF is a window, include only its own frame
807 and any frame now using that window as the minibuffer.
808 If MINIBUF is `visible', include all visible frames.
809 If MINIBUF is 0, include all visible and iconified frames.
810 Otherwise, include all frames. */
812 Lisp_Object
813 next_frame (frame, minibuf)
814 Lisp_Object frame;
815 Lisp_Object minibuf;
817 Lisp_Object tail;
818 int passed = 0;
820 /* There must always be at least one frame in Vframe_list. */
821 if (! CONSP (Vframe_list))
822 abort ();
824 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
825 forever. Forestall that. */
826 CHECK_LIVE_FRAME (frame, 0);
828 while (1)
829 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
831 Lisp_Object f;
833 f = XCAR (tail);
835 if (passed
836 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
838 /* Decide whether this frame is eligible to be returned. */
840 /* If we've looped all the way around without finding any
841 eligible frames, return the original frame. */
842 if (EQ (f, frame))
843 return f;
845 /* Let minibuf decide if this frame is acceptable. */
846 if (NILP (minibuf))
848 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
849 return f;
851 else if (EQ (minibuf, Qvisible))
853 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
854 if (FRAME_VISIBLE_P (XFRAME (f)))
855 return f;
857 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
859 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
860 if (FRAME_VISIBLE_P (XFRAME (f))
861 || FRAME_ICONIFIED_P (XFRAME (f)))
862 return f;
864 else if (WINDOWP (minibuf))
866 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
867 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
868 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
869 FRAME_FOCUS_FRAME (XFRAME (f))))
870 return f;
872 else
873 return f;
876 if (EQ (frame, f))
877 passed++;
881 /* Return the previous frame in the frame list before FRAME.
882 If MINIBUF is nil, exclude minibuffer-only frames.
883 If MINIBUF is a window, include only its own frame
884 and any frame now using that window as the minibuffer.
885 If MINIBUF is `visible', include all visible frames.
886 If MINIBUF is 0, include all visible and iconified frames.
887 Otherwise, include all frames. */
889 Lisp_Object
890 prev_frame (frame, minibuf)
891 Lisp_Object frame;
892 Lisp_Object minibuf;
894 Lisp_Object tail;
895 Lisp_Object prev;
897 /* There must always be at least one frame in Vframe_list. */
898 if (! CONSP (Vframe_list))
899 abort ();
901 prev = Qnil;
902 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
904 Lisp_Object f;
906 f = XCAR (tail);
907 if (!FRAMEP (f))
908 abort ();
910 if (EQ (frame, f) && !NILP (prev))
911 return prev;
913 if (FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
915 /* Decide whether this frame is eligible to be returned,
916 according to minibuf. */
917 if (NILP (minibuf))
919 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
920 prev = f;
922 else if (WINDOWP (minibuf))
924 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
925 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
926 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
927 FRAME_FOCUS_FRAME (XFRAME (f))))
928 prev = f;
930 else if (EQ (minibuf, Qvisible))
932 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
933 if (FRAME_VISIBLE_P (XFRAME (f)))
934 prev = f;
936 else if (XFASTINT (minibuf) == 0)
938 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
939 if (FRAME_VISIBLE_P (XFRAME (f))
940 || FRAME_ICONIFIED_P (XFRAME (f)))
941 prev = f;
943 else
944 prev = f;
948 /* We've scanned the entire list. */
949 if (NILP (prev))
950 /* We went through the whole frame list without finding a single
951 acceptable frame. Return the original frame. */
952 return frame;
953 else
954 /* There were no acceptable frames in the list before FRAME; otherwise,
955 we would have returned directly from the loop. Since PREV is the last
956 acceptable frame in the list, return it. */
957 return prev;
961 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
962 "Return the next frame in the frame list after FRAME.\n\
963 It considers only frames on the same terminal as FRAME.\n\
964 By default, skip minibuffer-only frames.\n\
965 If omitted, FRAME defaults to the selected frame.\n\
966 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.\n\
967 If MINIFRAME is a window, include only its own frame\n\
968 and any frame now using that window as the minibuffer.\n\
969 If MINIFRAME is `visible', include all visible frames.\n\
970 If MINIFRAME is 0, include all visible and iconified frames.\n\
971 Otherwise, include all frames.")
972 (frame, miniframe)
973 Lisp_Object frame, miniframe;
975 if (NILP (frame))
976 frame = selected_frame;
978 CHECK_LIVE_FRAME (frame, 0);
979 return next_frame (frame, miniframe);
982 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
983 "Return the previous frame in the frame list before FRAME.\n\
984 It considers only frames on the same terminal as FRAME.\n\
985 By default, skip minibuffer-only frames.\n\
986 If omitted, FRAME defaults to the selected frame.\n\
987 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.\n\
988 If MINIFRAME is a window, include only its own frame\n\
989 and any frame now using that window as the minibuffer.\n\
990 If MINIFRAME is `visible', include all visible frames.\n\
991 If MINIFRAME is 0, include all visible and iconified frames.\n\
992 Otherwise, include all frames.")
993 (frame, miniframe)
994 Lisp_Object frame, miniframe;
996 if (NILP (frame))
997 frame = selected_frame;
998 CHECK_LIVE_FRAME (frame, 0);
999 return prev_frame (frame, miniframe);
1002 /* Return 1 if it is ok to delete frame F;
1003 0 if all frames aside from F are invisible.
1004 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1007 other_visible_frames (f)
1008 FRAME_PTR f;
1010 /* We know the selected frame is visible,
1011 so if F is some other frame, it can't be the sole visible one. */
1012 if (f == SELECTED_FRAME ())
1014 Lisp_Object frames;
1015 int count = 0;
1017 for (frames = Vframe_list;
1018 CONSP (frames);
1019 frames = XCDR (frames))
1021 Lisp_Object this;
1023 this = XCAR (frames);
1024 /* Verify that the frame's window still exists
1025 and we can still talk to it. And note any recent change
1026 in visibility. */
1027 #ifdef HAVE_WINDOW_SYSTEM
1028 if (FRAME_WINDOW_P (XFRAME (this)))
1030 x_sync (XFRAME (this));
1031 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1033 #endif
1035 if (FRAME_VISIBLE_P (XFRAME (this))
1036 || FRAME_ICONIFIED_P (XFRAME (this))
1037 /* Allow deleting the terminal frame when at least
1038 one X frame exists! */
1039 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1040 count++;
1042 return count > 1;
1044 return 1;
1047 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1048 "Delete FRAME, permanently eliminating it from use.\n\
1049 If omitted, FRAME defaults to the selected frame.\n\
1050 A frame may not be deleted if its minibuffer is used by other frames.\n\
1051 Normally, you may not delete a frame if all other frames are invisible,\n\
1052 but if the second optional argument FORCE is non-nil, you may do so.\n\
1054 This function runs `delete-frame-hook' before actually deleting the\n\
1055 frame. The hook is called with one argument FRAME.")
1056 (frame, force)
1057 Lisp_Object frame, force;
1059 struct frame *f;
1060 struct frame *sf = SELECTED_FRAME ();
1061 int minibuffer_selected;
1063 if (EQ (frame, Qnil))
1065 f = sf;
1066 XSETFRAME (frame, f);
1068 else
1070 CHECK_FRAME (frame, 0);
1071 f = XFRAME (frame);
1074 if (! FRAME_LIVE_P (f))
1075 return Qnil;
1077 if (NILP (force) && !other_visible_frames (f))
1078 error ("Attempt to delete the sole visible or iconified frame");
1080 #if 0
1081 /* This is a nice idea, but x_connection_closed needs to be able
1082 to delete the last frame, if it is gone. */
1083 if (NILP (XCDR (Vframe_list)))
1084 error ("Attempt to delete the only frame");
1085 #endif
1087 /* Does this frame have a minibuffer, and is it the surrogate
1088 minibuffer for any other frame? */
1089 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1091 Lisp_Object frames;
1093 for (frames = Vframe_list;
1094 CONSP (frames);
1095 frames = XCDR (frames))
1097 Lisp_Object this;
1098 this = XCAR (frames);
1100 if (! EQ (this, frame)
1101 && EQ (frame,
1102 WINDOW_FRAME (XWINDOW
1103 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1104 error ("Attempt to delete a surrogate minibuffer frame");
1108 /* Run `delete-frame-hook'. */
1109 if (!NILP (Vrun_hooks))
1111 Lisp_Object args[2];
1112 args[0] = intern ("delete-frame-hook");
1113 args[1] = frame;
1114 Frun_hook_with_args (2, args);
1117 minibuffer_selected = EQ (minibuf_window, selected_window);
1119 /* Don't let the frame remain selected. */
1120 if (f == sf)
1122 Lisp_Object tail, frame1;
1124 /* Look for another visible frame on the same terminal. */
1125 frame1 = next_frame (frame, Qvisible);
1127 /* If there is none, find *some* other frame. */
1128 if (NILP (frame1) || EQ (frame1, frame))
1130 FOR_EACH_FRAME (tail, frame1)
1132 if (! EQ (frame, frame1))
1133 break;
1137 do_switch_frame (frame1, Qnil, 0);
1138 sf = SELECTED_FRAME ();
1141 /* Don't allow minibuf_window to remain on a deleted frame. */
1142 if (EQ (f->minibuffer_window, minibuf_window))
1144 Fset_window_buffer (sf->minibuffer_window,
1145 XWINDOW (minibuf_window)->buffer);
1146 minibuf_window = sf->minibuffer_window;
1148 /* If the dying minibuffer window was selected,
1149 select the new one. */
1150 if (minibuffer_selected)
1151 Fselect_window (minibuf_window);
1154 /* Don't let echo_area_window to remain on a deleted frame. */
1155 if (EQ (f->minibuffer_window, echo_area_window))
1156 echo_area_window = sf->minibuffer_window;
1158 /* Clear any X selections for this frame. */
1159 #ifdef HAVE_X_WINDOWS
1160 if (FRAME_X_P (f))
1161 x_clear_frame_selections (f);
1162 #endif
1164 /* Free glyphs.
1165 This function must be called before the window tree of the
1166 frame is deleted because windows contain dynamically allocated
1167 memory. */
1168 free_glyphs (f);
1170 /* Mark all the windows that used to be on FRAME as deleted, and then
1171 remove the reference to them. */
1172 delete_all_subwindows (XWINDOW (f->root_window));
1173 f->root_window = Qnil;
1175 Vframe_list = Fdelq (frame, Vframe_list);
1176 FRAME_SET_VISIBLE (f, 0);
1178 if (f->namebuf)
1179 xfree (f->namebuf);
1180 if (FRAME_INSERT_COST (f))
1181 xfree (FRAME_INSERT_COST (f));
1182 if (FRAME_DELETEN_COST (f))
1183 xfree (FRAME_DELETEN_COST (f));
1184 if (FRAME_INSERTN_COST (f))
1185 xfree (FRAME_INSERTN_COST (f));
1186 if (FRAME_DELETE_COST (f))
1187 xfree (FRAME_DELETE_COST (f));
1188 if (FRAME_MESSAGE_BUF (f))
1189 xfree (FRAME_MESSAGE_BUF (f));
1191 /* Since some events are handled at the interrupt level, we may get
1192 an event for f at any time; if we zero out the frame's display
1193 now, then we may trip up the event-handling code. Instead, we'll
1194 promise that the display of the frame must be valid until we have
1195 called the window-system-dependent frame destruction routine. */
1197 /* I think this should be done with a hook. */
1198 #ifdef HAVE_WINDOW_SYSTEM
1199 if (FRAME_WINDOW_P (f))
1200 x_destroy_window (f);
1201 #endif
1203 f->output_data.nothing = 0;
1205 /* If we've deleted the last_nonminibuf_frame, then try to find
1206 another one. */
1207 if (f == last_nonminibuf_frame)
1209 Lisp_Object frames;
1211 last_nonminibuf_frame = 0;
1213 for (frames = Vframe_list;
1214 CONSP (frames);
1215 frames = XCDR (frames))
1217 f = XFRAME (XCAR (frames));
1218 if (!FRAME_MINIBUF_ONLY_P (f))
1220 last_nonminibuf_frame = f;
1221 break;
1226 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1227 find another one. Prefer minibuffer-only frames, but also notice
1228 frames with other windows. */
1229 if (EQ (frame, FRAME_KBOARD (f)->Vdefault_minibuffer_frame))
1231 Lisp_Object frames;
1233 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1234 Lisp_Object frame_with_minibuf;
1235 /* Some frame we found on the same kboard, or nil if there are none. */
1236 Lisp_Object frame_on_same_kboard;
1238 frame_on_same_kboard = Qnil;
1239 frame_with_minibuf = Qnil;
1241 for (frames = Vframe_list;
1242 CONSP (frames);
1243 frames = XCDR (frames))
1245 Lisp_Object this;
1246 struct frame *f1;
1248 this = XCAR (frames);
1249 if (!FRAMEP (this))
1250 abort ();
1251 f1 = XFRAME (this);
1253 /* Consider only frames on the same kboard
1254 and only those with minibuffers. */
1255 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1)
1256 && FRAME_HAS_MINIBUF_P (f1))
1258 frame_with_minibuf = this;
1259 if (FRAME_MINIBUF_ONLY_P (f1))
1260 break;
1263 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1264 frame_on_same_kboard = this;
1267 if (!NILP (frame_on_same_kboard))
1269 /* We know that there must be some frame with a minibuffer out
1270 there. If this were not true, all of the frames present
1271 would have to be minibufferless, which implies that at some
1272 point their minibuffer frames must have been deleted, but
1273 that is prohibited at the top; you can't delete surrogate
1274 minibuffer frames. */
1275 if (NILP (frame_with_minibuf))
1276 abort ();
1278 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = frame_with_minibuf;
1280 else
1281 /* No frames left on this kboard--say no minibuffer either. */
1282 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
1285 /* Cause frame titles to update--necessary if we now have just one frame. */
1286 update_mode_lines = 1;
1288 return Qnil;
1291 /* Return mouse position in character cell units. */
1293 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1294 "Return a list (FRAME X . Y) giving the current mouse frame and position.\n\
1295 The position is given in character cells, where (0, 0) is the\n\
1296 upper-left corner.\n\
1297 If Emacs is running on a mouseless terminal or hasn't been programmed\n\
1298 to read the mouse position, it returns the selected frame for FRAME\n\
1299 and nil for X and Y.\n\
1300 Runs the abnormal hook `mouse-position-function' with the normal return\n\
1301 value as argument.")
1304 FRAME_PTR f;
1305 Lisp_Object lispy_dummy;
1306 enum scroll_bar_part party_dummy;
1307 Lisp_Object x, y, retval;
1308 int col, row;
1309 unsigned long long_dummy;
1310 struct gcpro gcpro1;
1312 f = SELECTED_FRAME ();
1313 x = y = Qnil;
1315 #ifdef HAVE_MOUSE
1316 /* It's okay for the hook to refrain from storing anything. */
1317 if (mouse_position_hook)
1318 (*mouse_position_hook) (&f, -1,
1319 &lispy_dummy, &party_dummy,
1320 &x, &y,
1321 &long_dummy);
1322 if (! NILP (x))
1324 col = XINT (x);
1325 row = XINT (y);
1326 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1327 XSETINT (x, col);
1328 XSETINT (y, row);
1330 #endif
1331 XSETFRAME (lispy_dummy, f);
1332 retval = Fcons (lispy_dummy, Fcons (x, y));
1333 GCPRO1 (retval);
1334 if (!NILP (Vmouse_position_function))
1335 retval = call1 (Vmouse_position_function, retval);
1336 RETURN_UNGCPRO (retval);
1339 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1340 Smouse_pixel_position, 0, 0, 0,
1341 "Return a list (FRAME X . Y) giving the current mouse frame and position.\n\
1342 The position is given in pixel units, where (0, 0) is the\n\
1343 upper-left corner.\n\
1344 If Emacs is running on a mouseless terminal or hasn't been programmed\n\
1345 to read the mouse position, it returns the selected frame for FRAME\n\
1346 and nil for X and Y.")
1349 FRAME_PTR f;
1350 Lisp_Object lispy_dummy;
1351 enum scroll_bar_part party_dummy;
1352 Lisp_Object x, y;
1353 unsigned long long_dummy;
1355 f = SELECTED_FRAME ();
1356 x = y = Qnil;
1358 #ifdef HAVE_MOUSE
1359 /* It's okay for the hook to refrain from storing anything. */
1360 if (mouse_position_hook)
1361 (*mouse_position_hook) (&f, -1,
1362 &lispy_dummy, &party_dummy,
1363 &x, &y,
1364 &long_dummy);
1365 #endif
1366 XSETFRAME (lispy_dummy, f);
1367 return Fcons (lispy_dummy, Fcons (x, y));
1370 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1371 "Move the mouse pointer to the center of character cell (X,Y) in FRAME.\n\
1372 Coordinates are relative to the frame, not a window,\n\
1373 so the coordinates of the top left character in the frame\n\
1374 may be nonzero due to left-hand scroll bars or the menu bar.\n\
1376 This function is a no-op for an X frame that is not visible.\n\
1377 If you have just created a frame, you must wait for it to become visible\n\
1378 before calling this function on it, like this.\n\
1379 (while (not (frame-visible-p frame)) (sleep-for .5))")
1380 (frame, x, y)
1381 Lisp_Object frame, x, y;
1383 CHECK_LIVE_FRAME (frame, 0);
1384 CHECK_NUMBER (x, 2);
1385 CHECK_NUMBER (y, 1);
1387 /* I think this should be done with a hook. */
1388 #ifdef HAVE_WINDOW_SYSTEM
1389 if (FRAME_WINDOW_P (XFRAME (frame)))
1390 /* Warping the mouse will cause enternotify and focus events. */
1391 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1392 #else
1393 #if defined (MSDOS) && defined (HAVE_MOUSE)
1394 if (FRAME_MSDOS_P (XFRAME (frame)))
1396 Fselect_frame (frame, Qnil);
1397 mouse_moveto (XINT (x), XINT (y));
1399 #endif
1400 #endif
1402 return Qnil;
1405 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1406 Sset_mouse_pixel_position, 3, 3, 0,
1407 "Move the mouse pointer to pixel position (X,Y) in FRAME.\n\
1408 Note, this is a no-op for an X frame that is not visible.\n\
1409 If you have just created a frame, you must wait for it to become visible\n\
1410 before calling this function on it, like this.\n\
1411 (while (not (frame-visible-p frame)) (sleep-for .5))")
1412 (frame, x, y)
1413 Lisp_Object frame, x, y;
1415 CHECK_LIVE_FRAME (frame, 0);
1416 CHECK_NUMBER (x, 2);
1417 CHECK_NUMBER (y, 1);
1419 /* I think this should be done with a hook. */
1420 #ifdef HAVE_WINDOW_SYSTEM
1421 if (FRAME_WINDOW_P (XFRAME (frame)))
1422 /* Warping the mouse will cause enternotify and focus events. */
1423 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1424 #else
1425 #if defined (MSDOS) && defined (HAVE_MOUSE)
1426 if (FRAME_MSDOS_P (XFRAME (frame)))
1428 Fselect_frame (frame, Qnil);
1429 mouse_moveto (XINT (x), XINT (y));
1431 #endif
1432 #endif
1434 return Qnil;
1437 static void make_frame_visible_1 P_ ((Lisp_Object));
1439 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1440 0, 1, "",
1441 "Make the frame FRAME visible (assuming it is an X-window).\n\
1442 If omitted, FRAME defaults to the currently selected frame.")
1443 (frame)
1444 Lisp_Object frame;
1446 if (NILP (frame))
1447 frame = selected_frame;
1449 CHECK_LIVE_FRAME (frame, 0);
1451 /* I think this should be done with a hook. */
1452 #ifdef HAVE_WINDOW_SYSTEM
1453 if (FRAME_WINDOW_P (XFRAME (frame)))
1455 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1456 x_make_frame_visible (XFRAME (frame));
1458 #endif
1460 make_frame_visible_1 (XFRAME (frame)->root_window);
1462 /* Make menu bar update for the Buffers and Frams menus. */
1463 windows_or_buffers_changed++;
1465 return frame;
1468 /* Update the display_time slot of the buffers shown in WINDOW
1469 and all its descendents. */
1471 static void
1472 make_frame_visible_1 (window)
1473 Lisp_Object window;
1475 struct window *w;
1477 for (;!NILP (window); window = w->next)
1479 w = XWINDOW (window);
1481 if (!NILP (w->buffer))
1482 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1484 if (!NILP (w->vchild))
1485 make_frame_visible_1 (w->vchild);
1486 if (!NILP (w->hchild))
1487 make_frame_visible_1 (w->hchild);
1491 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1492 0, 2, "",
1493 "Make the frame FRAME invisible (assuming it is an X-window).\n\
1494 If omitted, FRAME defaults to the currently selected frame.\n\
1495 Normally you may not make FRAME invisible if all other frames are invisible,\n\
1496 but if the second optional argument FORCE is non-nil, you may do so.")
1497 (frame, force)
1498 Lisp_Object frame, force;
1500 if (NILP (frame))
1501 frame = selected_frame;
1503 CHECK_LIVE_FRAME (frame, 0);
1505 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1506 error ("Attempt to make invisible the sole visible or iconified frame");
1508 #if 0 /* This isn't logically necessary, and it can do GC. */
1509 /* Don't let the frame remain selected. */
1510 if (EQ (frame, selected_frame))
1511 do_switch_frame (next_frame (frame, Qt), Qnil, 0)
1512 #endif
1514 /* Don't allow minibuf_window to remain on a deleted frame. */
1515 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1517 struct frame *sf = XFRAME (selected_frame);
1518 Fset_window_buffer (sf->minibuffer_window,
1519 XWINDOW (minibuf_window)->buffer);
1520 minibuf_window = sf->minibuffer_window;
1523 /* I think this should be done with a hook. */
1524 #ifdef HAVE_WINDOW_SYSTEM
1525 if (FRAME_WINDOW_P (XFRAME (frame)))
1526 x_make_frame_invisible (XFRAME (frame));
1527 #endif
1529 /* Make menu bar update for the Buffers and Frams menus. */
1530 windows_or_buffers_changed++;
1532 return Qnil;
1535 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1536 0, 1, "",
1537 "Make the frame FRAME into an icon.\n\
1538 If omitted, FRAME defaults to the currently selected frame.")
1539 (frame)
1540 Lisp_Object frame;
1542 if (NILP (frame))
1543 frame = selected_frame;
1545 CHECK_LIVE_FRAME (frame, 0);
1547 #if 0 /* This isn't logically necessary, and it can do GC. */
1548 /* Don't let the frame remain selected. */
1549 if (EQ (frame, selected_frame))
1550 Fhandle_switch_frame (next_frame (frame, Qt), Qnil);
1551 #endif
1553 /* Don't allow minibuf_window to remain on a deleted frame. */
1554 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1556 struct frame *sf = XFRAME (selected_frame);
1557 Fset_window_buffer (sf->minibuffer_window,
1558 XWINDOW (minibuf_window)->buffer);
1559 minibuf_window = sf->minibuffer_window;
1562 /* I think this should be done with a hook. */
1563 #ifdef HAVE_WINDOW_SYSTEM
1564 if (FRAME_WINDOW_P (XFRAME (frame)))
1565 x_iconify_frame (XFRAME (frame));
1566 #endif
1568 /* Make menu bar update for the Buffers and Frams menus. */
1569 windows_or_buffers_changed++;
1571 return Qnil;
1574 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1575 1, 1, 0,
1576 "Return t if FRAME is now \"visible\" (actually in use for display).\n\
1577 A frame that is not \"visible\" is not updated and, if it works through\n\
1578 a window system, it may not show at all.\n\
1579 Return the symbol `icon' if frame is visible only as an icon.")
1580 (frame)
1581 Lisp_Object frame;
1583 CHECK_LIVE_FRAME (frame, 0);
1585 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1587 if (FRAME_VISIBLE_P (XFRAME (frame)))
1588 return Qt;
1589 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1590 return Qicon;
1591 return Qnil;
1594 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1595 0, 0, 0,
1596 "Return a list of all frames now \"visible\" (being updated).")
1599 Lisp_Object tail, frame;
1600 struct frame *f;
1601 Lisp_Object value;
1603 value = Qnil;
1604 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1606 frame = XCAR (tail);
1607 if (!FRAMEP (frame))
1608 continue;
1609 f = XFRAME (frame);
1610 if (FRAME_VISIBLE_P (f))
1611 value = Fcons (frame, value);
1613 return value;
1617 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
1618 "Bring FRAME to the front, so it occludes any frames it overlaps.\n\
1619 If FRAME is invisible, make it visible.\n\
1620 If you don't specify a frame, the selected frame is used.\n\
1621 If Emacs is displaying on an ordinary terminal or some other device which\n\
1622 doesn't support multiple overlapping frames, this function does nothing.")
1623 (frame)
1624 Lisp_Object frame;
1626 if (NILP (frame))
1627 frame = selected_frame;
1629 CHECK_LIVE_FRAME (frame, 0);
1631 /* Do like the documentation says. */
1632 Fmake_frame_visible (frame);
1634 if (frame_raise_lower_hook)
1635 (*frame_raise_lower_hook) (XFRAME (frame), 1);
1637 return Qnil;
1640 /* Should we have a corresponding function called Flower_Power? */
1641 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
1642 "Send FRAME to the back, so it is occluded by any frames that overlap it.\n\
1643 If you don't specify a frame, the selected frame is used.\n\
1644 If Emacs is displaying on an ordinary terminal or some other device which\n\
1645 doesn't support multiple overlapping frames, this function does nothing.")
1646 (frame)
1647 Lisp_Object frame;
1649 if (NILP (frame))
1650 frame = selected_frame;
1652 CHECK_LIVE_FRAME (frame, 0);
1654 if (frame_raise_lower_hook)
1655 (*frame_raise_lower_hook) (XFRAME (frame), 0);
1657 return Qnil;
1661 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
1662 1, 2, 0,
1663 "Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.\n\
1664 In other words, switch-frame events caused by events in FRAME will\n\
1665 request a switch to FOCUS-FRAME, and `last-event-frame' will be\n\
1666 FOCUS-FRAME after reading an event typed at FRAME.\n\
1668 If FOCUS-FRAME is omitted or nil, any existing redirection is\n\
1669 cancelled, and the frame again receives its own keystrokes.\n\
1671 Focus redirection is useful for temporarily redirecting keystrokes to\n\
1672 a surrogate minibuffer frame when a frame doesn't have its own\n\
1673 minibuffer window.\n\
1675 A frame's focus redirection can be changed by select-frame. If frame\n\
1676 FOO is selected, and then a different frame BAR is selected, any\n\
1677 frames redirecting their focus to FOO are shifted to redirect their\n\
1678 focus to BAR. This allows focus redirection to work properly when the\n\
1679 user switches from one frame to another using `select-window'.\n\
1681 This means that a frame whose focus is redirected to itself is treated\n\
1682 differently from a frame whose focus is redirected to nil; the former\n\
1683 is affected by select-frame, while the latter is not.\n\
1685 The redirection lasts until `redirect-frame-focus' is called to change it.")
1686 (frame, focus_frame)
1687 Lisp_Object frame, focus_frame;
1689 /* Note that we don't check for a live frame here. It's reasonable
1690 to redirect the focus of a frame you're about to delete, if you
1691 know what other frame should receive those keystrokes. */
1692 CHECK_FRAME (frame, 0);
1694 if (! NILP (focus_frame))
1695 CHECK_LIVE_FRAME (focus_frame, 1);
1697 XFRAME (frame)->focus_frame = focus_frame;
1699 if (frame_rehighlight_hook)
1700 (*frame_rehighlight_hook) (XFRAME (frame));
1702 return Qnil;
1706 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
1707 "Return the frame to which FRAME's keystrokes are currently being sent.\n\
1708 This returns nil if FRAME's focus is not redirected.\n\
1709 See `redirect-frame-focus'.")
1710 (frame)
1711 Lisp_Object frame;
1713 CHECK_LIVE_FRAME (frame, 0);
1715 return FRAME_FOCUS_FRAME (XFRAME (frame));
1720 /* Return the value of frame parameter PROP in frame FRAME. */
1722 Lisp_Object
1723 get_frame_param (frame, prop)
1724 register struct frame *frame;
1725 Lisp_Object prop;
1727 register Lisp_Object tem;
1729 tem = Fassq (prop, frame->param_alist);
1730 if (EQ (tem, Qnil))
1731 return tem;
1732 return Fcdr (tem);
1735 /* Return the buffer-predicate of the selected frame. */
1737 Lisp_Object
1738 frame_buffer_predicate (frame)
1739 Lisp_Object frame;
1741 return XFRAME (frame)->buffer_predicate;
1744 /* Return the buffer-list of the selected frame. */
1746 Lisp_Object
1747 frame_buffer_list (frame)
1748 Lisp_Object frame;
1750 return XFRAME (frame)->buffer_list;
1753 /* Set the buffer-list of the selected frame. */
1755 void
1756 set_frame_buffer_list (frame, list)
1757 Lisp_Object frame, list;
1759 XFRAME (frame)->buffer_list = list;
1762 /* Discard BUFFER from the buffer-list of each frame. */
1764 void
1765 frames_discard_buffer (buffer)
1766 Lisp_Object buffer;
1768 Lisp_Object frame, tail;
1770 FOR_EACH_FRAME (tail, frame)
1772 XFRAME (frame)->buffer_list
1773 = Fdelq (buffer, XFRAME (frame)->buffer_list);
1777 /* Move BUFFER to the end of the buffer-list of each frame. */
1779 void
1780 frames_bury_buffer (buffer)
1781 Lisp_Object buffer;
1783 Lisp_Object frame, tail;
1785 FOR_EACH_FRAME (tail, frame)
1787 struct frame *f = XFRAME (frame);
1788 Lisp_Object found;
1790 found = Fmemq (buffer, f->buffer_list);
1791 if (!NILP (found))
1792 f->buffer_list = nconc2 (Fdelq (buffer, f->buffer_list),
1793 Fcons (buffer, Qnil));
1797 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
1798 If the alist already has an element for PROP, we change it. */
1800 void
1801 store_in_alist (alistptr, prop, val)
1802 Lisp_Object *alistptr, val;
1803 Lisp_Object prop;
1805 register Lisp_Object tem;
1807 tem = Fassq (prop, *alistptr);
1808 if (EQ (tem, Qnil))
1809 *alistptr = Fcons (Fcons (prop, val), *alistptr);
1810 else
1811 Fsetcdr (tem, val);
1814 static int
1815 frame_name_fnn_p (str, len)
1816 char *str;
1817 int len;
1819 if (len > 1 && str[0] == 'F')
1821 char *end_ptr;
1823 strtol (str + 1, &end_ptr, 10);
1825 if (end_ptr == str + len)
1826 return 1;
1828 return 0;
1831 /* Set the name of the terminal frame. Also used by MSDOS frames.
1832 Modeled after x_set_name which is used for WINDOW frames. */
1834 void
1835 set_term_frame_name (f, name)
1836 struct frame *f;
1837 Lisp_Object name;
1839 f->explicit_name = ! NILP (name);
1841 /* If NAME is nil, set the name to F<num>. */
1842 if (NILP (name))
1844 char namebuf[20];
1846 /* Check for no change needed in this very common case
1847 before we do any consing. */
1848 if (frame_name_fnn_p (XSTRING (f->name)->data,
1849 STRING_BYTES (XSTRING (f->name))))
1850 return;
1852 terminal_frame_count++;
1853 sprintf (namebuf, "F%d", terminal_frame_count);
1854 name = build_string (namebuf);
1856 else
1858 CHECK_STRING (name, 0);
1860 /* Don't change the name if it's already NAME. */
1861 if (! NILP (Fstring_equal (name, f->name)))
1862 return;
1864 /* Don't allow the user to set the frame name to F<num>, so it
1865 doesn't clash with the names we generate for terminal frames. */
1866 if (frame_name_fnn_p (XSTRING (name)->data, STRING_BYTES (XSTRING (name))))
1867 error ("Frame names of the form F<num> are usurped by Emacs");
1870 f->name = name;
1871 update_mode_lines = 1;
1874 void
1875 store_frame_param (f, prop, val)
1876 struct frame *f;
1877 Lisp_Object prop, val;
1879 register Lisp_Object old_alist_elt;
1881 /* The buffer-alist parameter is stored in a special place and is
1882 not in the alist. */
1883 if (EQ (prop, Qbuffer_list))
1885 f->buffer_list = val;
1886 return;
1889 /* If PROP is a symbol which is supposed to have frame-local values,
1890 and it is set up based on this frame, switch to the global
1891 binding. That way, we can create or alter the frame-local binding
1892 without messing up the symbol's status. */
1893 if (SYMBOLP (prop))
1895 Lisp_Object valcontents;
1896 valcontents = XSYMBOL (prop)->value;
1897 if ((BUFFER_LOCAL_VALUEP (valcontents)
1898 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1899 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
1900 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
1901 swap_in_global_binding (prop);
1904 /* Update the frame parameter alist. */
1905 old_alist_elt = Fassq (prop, f->param_alist);
1906 if (EQ (old_alist_elt, Qnil))
1907 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
1908 else
1909 Fsetcdr (old_alist_elt, val);
1911 /* Update some other special parameters in their special places
1912 in addition to the alist. */
1914 if (EQ (prop, Qbuffer_predicate))
1915 f->buffer_predicate = val;
1917 if (! FRAME_WINDOW_P (f))
1919 if (EQ (prop, Qmenu_bar_lines))
1920 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
1921 else if (EQ (prop, Qname))
1922 set_term_frame_name (f, val);
1925 if (EQ (prop, Qminibuffer) && WINDOWP (val))
1927 if (! MINI_WINDOW_P (XWINDOW (val)))
1928 error ("Surrogate minibuffer windows must be minibuffer windows.");
1930 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
1931 && !EQ (val, f->minibuffer_window))
1932 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
1934 /* Install the chosen minibuffer window, with proper buffer. */
1935 f->minibuffer_window = val;
1939 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
1940 "Return the parameters-alist of frame FRAME.\n\
1941 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.\n\
1942 The meaningful PARMs depend on the kind of frame.\n\
1943 If FRAME is omitted, return information on the currently selected frame.")
1944 (frame)
1945 Lisp_Object frame;
1947 Lisp_Object alist;
1948 FRAME_PTR f;
1949 int height, width;
1950 struct gcpro gcpro1;
1952 if (EQ (frame, Qnil))
1953 frame = selected_frame;
1955 CHECK_FRAME (frame, 0);
1956 f = XFRAME (frame);
1958 if (!FRAME_LIVE_P (f))
1959 return Qnil;
1961 alist = Fcopy_alist (f->param_alist);
1962 GCPRO1 (alist);
1964 if (!FRAME_WINDOW_P (f))
1966 int fg = FRAME_FOREGROUND_PIXEL (f);
1967 int bg = FRAME_BACKGROUND_PIXEL (f);
1968 Lisp_Object elt;
1970 /* If the frame's parameter alist says the colors are
1971 unspecified and reversed, take the frame's background pixel
1972 for foreground and vice versa. */
1973 elt = Fassq (Qforeground_color, alist);
1974 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
1976 if (strncmp (XSTRING (XCDR (elt))->data,
1977 unspecified_bg,
1978 XSTRING (XCDR (elt))->size) == 0)
1979 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
1980 else if (strncmp (XSTRING (XCDR (elt))->data,
1981 unspecified_fg,
1982 XSTRING (XCDR (elt))->size) == 0)
1983 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
1985 else
1986 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
1987 elt = Fassq (Qbackground_color, alist);
1988 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
1990 if (strncmp (XSTRING (XCDR (elt))->data,
1991 unspecified_fg,
1992 XSTRING (XCDR (elt))->size) == 0)
1993 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
1994 else if (strncmp (XSTRING (XCDR (elt))->data,
1995 unspecified_bg,
1996 XSTRING (XCDR (elt))->size) == 0)
1997 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
1999 else
2000 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2001 store_in_alist (&alist, intern ("font"),
2002 build_string (FRAME_MSDOS_P (f)
2003 ? "ms-dos"
2004 : FRAME_W32_P (f) ? "w32term"
2005 : FRAME_W32_CONSOLE_P (f) ? "w32console"
2006 :"tty"));
2008 store_in_alist (&alist, Qname, f->name);
2009 height = (FRAME_NEW_HEIGHT (f) ? FRAME_NEW_HEIGHT (f) : FRAME_HEIGHT (f));
2010 store_in_alist (&alist, Qheight, make_number (height));
2011 width = (FRAME_NEW_WIDTH (f) ? FRAME_NEW_WIDTH (f) : FRAME_WIDTH (f));
2012 store_in_alist (&alist, Qwidth, make_number (width));
2013 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2014 store_in_alist (&alist, Qminibuffer,
2015 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2016 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2017 : FRAME_MINIBUF_WINDOW (f)));
2018 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2019 store_in_alist (&alist, Qbuffer_list,
2020 frame_buffer_list (selected_frame));
2022 /* I think this should be done with a hook. */
2023 #ifdef HAVE_WINDOW_SYSTEM
2024 if (FRAME_WINDOW_P (f))
2025 x_report_frame_params (f, &alist);
2026 else
2027 #endif
2029 /* This ought to be correct in f->param_alist for an X frame. */
2030 Lisp_Object lines;
2031 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2032 store_in_alist (&alist, Qmenu_bar_lines, lines);
2035 UNGCPRO;
2036 return alist;
2040 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2041 "Return FRAME's value for parameter PARAMETER.\n\
2042 If FRAME is nil, describe the currently selected frame.")
2043 (frame, parameter)
2044 Lisp_Object frame, parameter;
2046 struct frame *f;
2047 Lisp_Object value;
2049 if (NILP (frame))
2050 frame = selected_frame;
2051 else
2052 CHECK_FRAME (frame, 0);
2053 CHECK_SYMBOL (parameter, 1);
2055 f = XFRAME (frame);
2056 value = Qnil;
2058 if (FRAME_LIVE_P (f))
2060 if (EQ (parameter, Qname))
2061 value = f->name;
2062 #ifdef HAVE_X_WINDOWS
2063 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2064 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2065 #endif /* HAVE_X_WINDOWS */
2066 else
2068 value = Fassq (parameter, f->param_alist);
2069 if (CONSP (value))
2071 value = XCDR (value);
2072 /* Fframe_parameters puts the actual fg/bg color names,
2073 even if f->param_alist says otherwise. This is
2074 important when param_alist's notion of colors is
2075 "unspecified". We need to do the same here. */
2076 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2078 char *color_name;
2079 EMACS_INT csz;
2081 if (EQ (parameter, Qbackground_color))
2083 color_name = XSTRING (value)->data;
2084 csz = XSTRING (value)->size;
2085 if (strncmp (color_name, unspecified_bg, csz) == 0)
2086 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2087 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2088 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2090 else if (EQ (parameter, Qforeground_color))
2092 color_name = XSTRING (value)->data;
2093 csz = XSTRING (value)->size;
2094 if (strncmp (color_name, unspecified_fg, csz) == 0)
2095 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2096 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2097 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2101 else if (EQ (parameter, Qdisplay_type)
2102 || EQ (parameter, Qbackground_mode))
2103 /* Avoid consing in frequent cases. */
2104 value = Qnil;
2105 else
2106 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2110 return value;
2114 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2115 Smodify_frame_parameters, 2, 2, 0,
2116 "Modify the parameters of frame FRAME according to ALIST.\n\
2117 ALIST is an alist of parameters to change and their new values.\n\
2118 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.\n\
2119 The meaningful PARMs depend on the kind of frame.\n\
2120 Undefined PARMs are ignored, but stored in the frame's parameter list\n\
2121 so that `frame-parameters' will return them.\n\
2123 The value of frame parameter FOO can also be accessed\n\
2124 as a frame-local binding for the variable FOO, if you have\n\
2125 enabled such bindings for that variable with `make-variable-frame-local'.")
2126 (frame, alist)
2127 Lisp_Object frame, alist;
2129 FRAME_PTR f;
2130 register Lisp_Object tail, prop, val;
2131 int count = BINDING_STACK_SIZE ();
2133 /* Bind this to t to inhibit initialization of the default face from
2134 X resources in face-set-after-frame-default. If we don't inhibit
2135 this, modifying the `font' frame parameter, for example, while
2136 there is a `default.attributeFont' X resource, won't work,
2137 because `default's font is reset to the value of the X resource
2138 and that resets the `font' frame parameter. */
2139 specbind (Qinhibit_default_face_x_resources, Qt);
2141 if (EQ (frame, Qnil))
2142 frame = selected_frame;
2143 CHECK_LIVE_FRAME (frame, 0);
2144 f = XFRAME (frame);
2146 /* I think this should be done with a hook. */
2147 #ifdef HAVE_WINDOW_SYSTEM
2148 if (FRAME_WINDOW_P (f))
2149 x_set_frame_parameters (f, alist);
2150 else
2151 #endif
2152 #ifdef MSDOS
2153 if (FRAME_MSDOS_P (f))
2154 IT_set_frame_parameters (f, alist);
2155 else
2156 #endif
2159 int length = XINT (Flength (alist));
2160 int i;
2161 Lisp_Object *parms
2162 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2163 Lisp_Object *values
2164 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2166 /* Extract parm names and values into those vectors. */
2168 i = 0;
2169 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2171 Lisp_Object elt;
2173 elt = Fcar (tail);
2174 parms[i] = Fcar (elt);
2175 values[i] = Fcdr (elt);
2176 i++;
2179 /* Now process them in reverse of specified order. */
2180 for (i--; i >= 0; i--)
2182 prop = parms[i];
2183 val = values[i];
2184 store_frame_param (f, prop, val);
2188 return unbind_to (count, Qnil);
2191 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2192 0, 1, 0,
2193 "Height in pixels of a line in the font in frame FRAME.\n\
2194 If FRAME is omitted, the selected frame is used.\n\
2195 For a terminal frame, the value is always 1.")
2196 (frame)
2197 Lisp_Object frame;
2199 struct frame *f;
2201 if (NILP (frame))
2202 frame = selected_frame;
2203 CHECK_FRAME (frame, 0);
2204 f = XFRAME (frame);
2206 #ifdef HAVE_WINDOW_SYSTEM
2207 if (FRAME_WINDOW_P (f))
2208 return make_number (x_char_height (f));
2209 else
2210 #endif
2211 return make_number (1);
2215 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2216 0, 1, 0,
2217 "Width in pixels of characters in the font in frame FRAME.\n\
2218 If FRAME is omitted, the selected frame is used.\n\
2219 The width is the same for all characters, because\n\
2220 currently Emacs supports only fixed-width fonts.\n\
2221 For a terminal screen, the value is always 1.")
2222 (frame)
2223 Lisp_Object frame;
2225 struct frame *f;
2227 if (NILP (frame))
2228 frame = selected_frame;
2229 CHECK_FRAME (frame, 0);
2230 f = XFRAME (frame);
2232 #ifdef HAVE_WINDOW_SYSTEM
2233 if (FRAME_WINDOW_P (f))
2234 return make_number (x_char_width (f));
2235 else
2236 #endif
2237 return make_number (1);
2240 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2241 Sframe_pixel_height, 0, 1, 0,
2242 "Return a FRAME's height in pixels.\n\
2243 This counts only the height available for text lines,\n\
2244 not menu bars on window-system Emacs frames.\n\
2245 For a terminal frame, the result really gives the height in characters.\n\
2246 If FRAME is omitted, the selected frame is used.")
2247 (frame)
2248 Lisp_Object frame;
2250 struct frame *f;
2252 if (NILP (frame))
2253 frame = selected_frame;
2254 CHECK_FRAME (frame, 0);
2255 f = XFRAME (frame);
2257 #ifdef HAVE_WINDOW_SYSTEM
2258 if (FRAME_WINDOW_P (f))
2259 return make_number (x_pixel_height (f));
2260 else
2261 #endif
2262 return make_number (FRAME_HEIGHT (f));
2265 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2266 Sframe_pixel_width, 0, 1, 0,
2267 "Return FRAME's width in pixels.\n\
2268 For a terminal frame, the result really gives the width in characters.\n\
2269 If FRAME is omitted, the selected frame is used.")
2270 (frame)
2271 Lisp_Object frame;
2273 struct frame *f;
2275 if (NILP (frame))
2276 frame = selected_frame;
2277 CHECK_FRAME (frame, 0);
2278 f = XFRAME (frame);
2280 #ifdef HAVE_WINDOW_SYSTEM
2281 if (FRAME_WINDOW_P (f))
2282 return make_number (x_pixel_width (f));
2283 else
2284 #endif
2285 return make_number (FRAME_WIDTH (f));
2288 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2289 "Specify that the frame FRAME has LINES lines.\n\
2290 Optional third arg non-nil means that redisplay should use LINES lines\n\
2291 but that the idea of the actual height of the frame should not be changed.")
2292 (frame, lines, pretend)
2293 Lisp_Object frame, lines, pretend;
2295 register struct frame *f;
2297 CHECK_NUMBER (lines, 0);
2298 if (NILP (frame))
2299 frame = selected_frame;
2300 CHECK_LIVE_FRAME (frame, 0);
2301 f = XFRAME (frame);
2303 /* I think this should be done with a hook. */
2304 #ifdef HAVE_WINDOW_SYSTEM
2305 if (FRAME_WINDOW_P (f))
2307 if (XINT (lines) != f->height)
2308 x_set_window_size (f, 1, f->width, XINT (lines));
2309 do_pending_window_change (0);
2311 else
2312 #endif
2313 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2314 return Qnil;
2317 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2318 "Specify that the frame FRAME has COLS columns.\n\
2319 Optional third arg non-nil means that redisplay should use COLS columns\n\
2320 but that the idea of the actual width of the frame should not be changed.")
2321 (frame, cols, pretend)
2322 Lisp_Object frame, cols, pretend;
2324 register struct frame *f;
2325 CHECK_NUMBER (cols, 0);
2326 if (NILP (frame))
2327 frame = selected_frame;
2328 CHECK_LIVE_FRAME (frame, 0);
2329 f = XFRAME (frame);
2331 /* I think this should be done with a hook. */
2332 #ifdef HAVE_WINDOW_SYSTEM
2333 if (FRAME_WINDOW_P (f))
2335 if (XINT (cols) != f->width)
2336 x_set_window_size (f, 1, XINT (cols), f->height);
2337 do_pending_window_change (0);
2339 else
2340 #endif
2341 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2342 return Qnil;
2345 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2346 "Sets size of FRAME to COLS by ROWS, measured in characters.")
2347 (frame, cols, rows)
2348 Lisp_Object frame, cols, rows;
2350 register struct frame *f;
2352 CHECK_LIVE_FRAME (frame, 0);
2353 CHECK_NUMBER (cols, 2);
2354 CHECK_NUMBER (rows, 1);
2355 f = XFRAME (frame);
2357 /* I think this should be done with a hook. */
2358 #ifdef HAVE_WINDOW_SYSTEM
2359 if (FRAME_WINDOW_P (f))
2361 if (XINT (rows) != f->height || XINT (cols) != f->width
2362 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
2363 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2364 do_pending_window_change (0);
2366 else
2367 #endif
2368 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2370 return Qnil;
2373 DEFUN ("set-frame-position", Fset_frame_position,
2374 Sset_frame_position, 3, 3, 0,
2375 "Sets position of FRAME in pixels to XOFFSET by YOFFSET.\n\
2376 This is actually the position of the upper left corner of the frame.\n\
2377 Negative values for XOFFSET or YOFFSET are interpreted relative to\n\
2378 the rightmost or bottommost possible position (that stays within the screen).")
2379 (frame, xoffset, yoffset)
2380 Lisp_Object frame, xoffset, yoffset;
2382 register struct frame *f;
2384 CHECK_LIVE_FRAME (frame, 0);
2385 CHECK_NUMBER (xoffset, 1);
2386 CHECK_NUMBER (yoffset, 2);
2387 f = XFRAME (frame);
2389 /* I think this should be done with a hook. */
2390 #ifdef HAVE_WINDOW_SYSTEM
2391 if (FRAME_WINDOW_P (f))
2392 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2393 #endif
2395 return Qt;
2399 void
2400 syms_of_frame ()
2402 Qframep = intern ("framep");
2403 staticpro (&Qframep);
2404 Qframe_live_p = intern ("frame-live-p");
2405 staticpro (&Qframe_live_p);
2406 Qheight = intern ("height");
2407 staticpro (&Qheight);
2408 Qicon = intern ("icon");
2409 staticpro (&Qicon);
2410 Qminibuffer = intern ("minibuffer");
2411 staticpro (&Qminibuffer);
2412 Qmodeline = intern ("modeline");
2413 staticpro (&Qmodeline);
2414 Qname = intern ("name");
2415 staticpro (&Qname);
2416 Qonly = intern ("only");
2417 staticpro (&Qonly);
2418 Qunsplittable = intern ("unsplittable");
2419 staticpro (&Qunsplittable);
2420 Qmenu_bar_lines = intern ("menu-bar-lines");
2421 staticpro (&Qmenu_bar_lines);
2422 Qtool_bar_lines = intern ("tool-bar-lines");
2423 staticpro (&Qtool_bar_lines);
2424 Qwidth = intern ("width");
2425 staticpro (&Qwidth);
2426 Qx = intern ("x");
2427 staticpro (&Qx);
2428 Qw32 = intern ("w32");
2429 staticpro (&Qw32);
2430 Qw32_console = intern ("w32-console");
2431 staticpro (&Qw32_console);
2432 Qpc = intern ("pc");
2433 staticpro (&Qpc);
2434 Qmac = intern ("mac");
2435 staticpro (&Qmac);
2436 Qvisible = intern ("visible");
2437 staticpro (&Qvisible);
2438 Qbuffer_predicate = intern ("buffer-predicate");
2439 staticpro (&Qbuffer_predicate);
2440 Qbuffer_list = intern ("buffer-list");
2441 staticpro (&Qbuffer_list);
2442 Qtitle = intern ("title");
2443 staticpro (&Qtitle);
2444 Qdisplay_type = intern ("display-type");
2445 staticpro (&Qdisplay_type);
2446 Qbackground_mode = intern ("background-mode");
2447 staticpro (&Qbackground_mode);
2449 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
2450 "Alist of default values for frame creation.\n\
2451 These may be set in your init file, like this:\n\
2452 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))\n\
2453 These override values given in window system configuration data,\n\
2454 including X Windows' defaults database.\n\
2455 For values specific to the first Emacs frame, see `initial-frame-alist'.\n\
2456 For values specific to the separate minibuffer frame, see\n\
2457 `minibuffer-frame-alist'.\n\
2458 The `menu-bar-lines' element of the list controls whether new frames\n\
2459 have menu bars; `menu-bar-mode' works by altering this element.");
2460 Vdefault_frame_alist = Qnil;
2462 Qinhibit_default_face_x_resources
2463 = intern ("inhibit-default-face-x-resources");
2464 staticpro (&Qinhibit_default_face_x_resources);
2466 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
2467 "The initial frame-object, which represents Emacs's stdout.");
2469 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
2470 "Non-nil if all of emacs is iconified and frame updates are not needed.");
2471 Vemacs_iconified = Qnil;
2473 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
2474 "If non-nil, function applied to the normal result of `mouse-position'.\n\
2475 This abnormal hook exists for the benefit of packages like XTerm-mouse\n\
2476 which need to do mouse handling at the Lisp level.");
2477 Vmouse_position_function = Qnil;
2479 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
2480 "Minibufferless frames use this frame's minibuffer.\n\
2482 Emacs cannot create minibufferless frames unless this is set to an\n\
2483 appropriate surrogate.\n\
2485 Emacs consults this variable only when creating minibufferless\n\
2486 frames; once the frame is created, it sticks with its assigned\n\
2487 minibuffer, no matter what this variable is set to. This means that\n\
2488 this variable doesn't necessarily say anything meaningful about the\n\
2489 current set of frames, or where the minibuffer is currently being\n\
2490 displayed.");
2492 staticpro (&Vframe_list);
2494 defsubr (&Sactive_minibuffer_window);
2495 defsubr (&Sframep);
2496 defsubr (&Sframe_live_p);
2497 defsubr (&Smake_terminal_frame);
2498 defsubr (&Shandle_switch_frame);
2499 defsubr (&Signore_event);
2500 defsubr (&Sselect_frame);
2501 defsubr (&Sselected_frame);
2502 defsubr (&Swindow_frame);
2503 defsubr (&Sframe_root_window);
2504 defsubr (&Sframe_first_window);
2505 defsubr (&Sframe_selected_window);
2506 defsubr (&Sset_frame_selected_window);
2507 defsubr (&Sframe_list);
2508 defsubr (&Snext_frame);
2509 defsubr (&Sprevious_frame);
2510 defsubr (&Sdelete_frame);
2511 defsubr (&Smouse_position);
2512 defsubr (&Smouse_pixel_position);
2513 defsubr (&Sset_mouse_position);
2514 defsubr (&Sset_mouse_pixel_position);
2515 #if 0
2516 defsubr (&Sframe_configuration);
2517 defsubr (&Srestore_frame_configuration);
2518 #endif
2519 defsubr (&Smake_frame_visible);
2520 defsubr (&Smake_frame_invisible);
2521 defsubr (&Siconify_frame);
2522 defsubr (&Sframe_visible_p);
2523 defsubr (&Svisible_frame_list);
2524 defsubr (&Sraise_frame);
2525 defsubr (&Slower_frame);
2526 defsubr (&Sredirect_frame_focus);
2527 defsubr (&Sframe_focus);
2528 defsubr (&Sframe_parameters);
2529 defsubr (&Sframe_parameter);
2530 defsubr (&Smodify_frame_parameters);
2531 defsubr (&Sframe_char_height);
2532 defsubr (&Sframe_char_width);
2533 defsubr (&Sframe_pixel_height);
2534 defsubr (&Sframe_pixel_width);
2535 defsubr (&Sset_frame_height);
2536 defsubr (&Sset_frame_width);
2537 defsubr (&Sset_frame_size);
2538 defsubr (&Sset_frame_position);
2541 void
2542 keys_of_frame ()
2544 initial_define_lispy_key (global_map, "switch-frame", "handle-switch-frame");
2545 initial_define_lispy_key (global_map, "delete-frame", "handle-delete-frame");
2546 initial_define_lispy_key (global_map, "iconify-frame", "ignore-event");
2547 initial_define_lispy_key (global_map, "make-frame-visible", "ignore-event");