Don't require xt-mouse.
[emacs.git] / src / frame.c
blob090de96cebd19463040db3dfbabede974a264fbb
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "charset.h"
27 #ifdef HAVE_X_WINDOWS
28 #include "xterm.h"
29 #endif
30 #ifdef WINDOWSNT
31 #include "w32term.h"
32 #endif
33 #ifdef MAC_OS
34 #include "macterm.h"
35 #endif
36 #include "buffer.h"
37 /* These help us bind and responding to switch-frame events. */
38 #include "commands.h"
39 #include "keyboard.h"
40 #include "frame.h"
41 #ifdef HAVE_WINDOW_SYSTEM
42 #include "fontset.h"
43 #endif
44 #include "blockinput.h"
45 #include "termchar.h"
46 #include "termhooks.h"
47 #include "dispextern.h"
48 #include "window.h"
49 #ifdef MSDOS
50 #include "msdos.h"
51 #include "dosfns.h"
52 #endif
55 #ifdef HAVE_WINDOW_SYSTEM
57 /* The name we're using in resource queries. Most often "emacs". */
59 Lisp_Object Vx_resource_name;
61 /* The application class we're using in resource queries.
62 Normally "Emacs". */
64 Lisp_Object Vx_resource_class;
66 #endif
68 Lisp_Object Qframep, Qframe_live_p;
69 Lisp_Object Qicon, Qmodeline;
70 Lisp_Object Qonly;
71 Lisp_Object Qx, Qw32, Qmac, Qpc;
72 Lisp_Object Qvisible;
73 Lisp_Object Qdisplay_type;
74 Lisp_Object Qbackground_mode;
76 Lisp_Object Qx_frame_parameter;
77 Lisp_Object Qx_resource_name;
78 Lisp_Object Qterminal;
79 Lisp_Object Qterminal_live_p;
81 /* Frame parameters (set or reported). */
83 Lisp_Object Qauto_raise, Qauto_lower;
84 Lisp_Object Qborder_color, Qborder_width;
85 Lisp_Object Qcursor_color, Qcursor_type;
86 Lisp_Object Qgeometry; /* Not used */
87 Lisp_Object Qheight, Qwidth;
88 Lisp_Object Qleft, Qright;
89 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
90 Lisp_Object Qinternal_border_width;
91 Lisp_Object Qmouse_color;
92 Lisp_Object Qminibuffer;
93 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
94 Lisp_Object Qvisibility;
95 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
96 Lisp_Object Qscreen_gamma;
97 Lisp_Object Qline_spacing;
98 Lisp_Object Quser_position, Quser_size;
99 Lisp_Object Qwait_for_wm;
100 Lisp_Object Qwindow_id;
101 #ifdef HAVE_X_WINDOWS
102 Lisp_Object Qouter_window_id;
103 #endif
104 Lisp_Object Qparent_id;
105 Lisp_Object Qtitle, Qname;
106 Lisp_Object Qexplicit_name;
107 Lisp_Object Qunsplittable;
108 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
109 Lisp_Object Qleft_fringe, Qright_fringe;
110 Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
111 Lisp_Object Qtty_color_mode;
112 Lisp_Object Qtty, Qtty_type;
113 Lisp_Object Qwindow_system;
115 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
117 Lisp_Object Qinhibit_face_set_after_frame_default;
118 Lisp_Object Qface_set_after_frame_default;
120 Lisp_Object Vterminal_frame;
121 Lisp_Object Vdefault_frame_alist;
122 Lisp_Object Vdefault_frame_scroll_bars;
123 Lisp_Object Vmouse_position_function;
124 Lisp_Object Vmouse_highlight;
125 Lisp_Object Vdelete_frame_functions;
127 int focus_follows_mouse;
129 static void
130 set_menu_bar_lines_1 (window, n)
131 Lisp_Object window;
132 int n;
134 struct window *w = XWINDOW (window);
136 XSETFASTINT (w->last_modified, 0);
137 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
138 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
140 if (INTEGERP (w->orig_top_line))
141 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
142 if (INTEGERP (w->orig_total_lines))
143 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
145 /* Handle just the top child in a vertical split. */
146 if (!NILP (w->vchild))
147 set_menu_bar_lines_1 (w->vchild, n);
149 /* Adjust all children in a horizontal split. */
150 for (window = w->hchild; !NILP (window); window = w->next)
152 w = XWINDOW (window);
153 set_menu_bar_lines_1 (window, n);
157 void
158 set_menu_bar_lines (f, value, oldval)
159 struct frame *f;
160 Lisp_Object value, oldval;
162 int nlines;
163 int olines = FRAME_MENU_BAR_LINES (f);
165 /* Right now, menu bars don't work properly in minibuf-only frames;
166 most of the commands try to apply themselves to the minibuffer
167 frame itself, and get an error because you can't switch buffers
168 in or split the minibuffer window. */
169 if (FRAME_MINIBUF_ONLY_P (f))
170 return;
172 if (INTEGERP (value))
173 nlines = XINT (value);
174 else
175 nlines = 0;
177 if (nlines != olines)
179 windows_or_buffers_changed++;
180 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
181 FRAME_MENU_BAR_LINES (f) = nlines;
182 set_menu_bar_lines_1 (f->root_window, nlines - olines);
183 adjust_glyphs (f);
187 Lisp_Object Vemacs_iconified;
188 Lisp_Object Vframe_list;
190 extern Lisp_Object Vminibuffer_list;
191 extern Lisp_Object get_minibuffer ();
192 extern Lisp_Object Fhandle_switch_frame ();
193 extern Lisp_Object Fredirect_frame_focus ();
194 extern Lisp_Object x_get_focus_frame ();
196 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
197 doc: /* Return non-nil if OBJECT is a frame.
198 Value is t for a termcap frame (a character-only terminal),
199 `x' for an Emacs frame that is really an X window,
200 `w32' for an Emacs frame that is a window on MS-Windows display,
201 `mac' for an Emacs frame on a Macintosh display,
202 `pc' for a direct-write MS-DOS frame.
203 See also `frame-live-p'. */)
204 (object)
205 Lisp_Object object;
207 if (!FRAMEP (object))
208 return Qnil;
209 switch (XFRAME (object)->output_method)
211 case output_initial: /* The initial frame is like a termcap frame. */
212 case output_termcap:
213 return Qt;
214 case output_x_window:
215 return Qx;
216 case output_w32:
217 return Qw32;
218 case output_msdos_raw:
219 return Qpc;
220 case output_mac:
221 return Qmac;
222 default:
223 abort ();
227 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
228 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
229 Value is nil if OBJECT is not a live frame. If object is a live
230 frame, the return value indicates what sort of terminal device it is
231 displayed on. See the documentation of `framep' for possible
232 return values. */)
233 (object)
234 Lisp_Object object;
236 return ((FRAMEP (object)
237 && FRAME_LIVE_P (XFRAME (object)))
238 ? Fframep (object)
239 : Qnil);
242 DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
243 doc: /* The name of the window system that FRAME is displaying through.
244 The value is a symbol---for instance, 'x' for X windows.
245 The value is nil if Emacs is using a text-only terminal.
247 FRAME defaults to the currently selected frame. */)
248 (frame)
249 Lisp_Object frame;
251 Lisp_Object type;
252 if (NILP (frame))
253 frame = selected_frame;
255 type = Fframep (frame);
257 if (NILP (type))
258 wrong_type_argument (Qframep, frame);
260 if (EQ (type, Qt))
261 return Qnil;
262 else
263 return type;
266 struct frame *
267 make_frame (mini_p)
268 int mini_p;
270 Lisp_Object frame;
271 register struct frame *f;
272 register Lisp_Object root_window;
273 register Lisp_Object mini_window;
275 f = allocate_frame ();
276 XSETFRAME (frame, f);
278 f->desired_matrix = 0;
279 f->current_matrix = 0;
280 f->desired_pool = 0;
281 f->current_pool = 0;
282 f->glyphs_initialized_p = 0;
283 f->decode_mode_spec_buffer = 0;
284 f->visible = 0;
285 f->async_visible = 0;
286 f->output_data.nothing = 0;
287 f->iconified = 0;
288 f->async_iconified = 0;
289 f->wants_modeline = 1;
290 f->auto_raise = 0;
291 f->auto_lower = 0;
292 f->no_split = 0;
293 f->garbaged = 1;
294 f->has_minibuffer = mini_p;
295 f->focus_frame = Qnil;
296 f->explicit_name = 0;
297 f->can_have_scroll_bars = 0;
298 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
299 f->param_alist = Qnil;
300 f->scroll_bars = Qnil;
301 f->condemned_scroll_bars = Qnil;
302 f->face_alist = Qnil;
303 f->face_cache = NULL;
304 f->menu_bar_items = Qnil;
305 f->menu_bar_vector = Qnil;
306 f->menu_bar_items_used = 0;
307 f->buffer_predicate = Qnil;
308 f->buffer_list = Qnil;
309 f->buried_buffer_list = Qnil;
310 f->namebuf = 0;
311 f->title = Qnil;
312 f->menu_bar_window = Qnil;
313 f->tool_bar_window = Qnil;
314 f->tool_bar_items = Qnil;
315 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
316 f->n_tool_bar_items = 0;
317 f->left_fringe_width = f->right_fringe_width = 0;
318 f->fringe_cols = 0;
319 f->scroll_bar_actual_width = 0;
320 f->border_width = 0;
321 f->internal_border_width = 0;
322 f->column_width = 1; /* !FRAME_WINDOW_P value */
323 f->line_height = 1; /* !FRAME_WINDOW_P value */
324 f->x_pixels_diff = f->y_pixels_diff = 0;
325 #ifdef HAVE_WINDOW_SYSTEM
326 f->want_fullscreen = FULLSCREEN_NONE;
327 #endif
328 f->size_hint_flags = 0;
329 f->win_gravity = 0;
331 root_window = make_window ();
332 if (mini_p)
334 mini_window = make_window ();
335 XWINDOW (root_window)->next = mini_window;
336 XWINDOW (mini_window)->prev = root_window;
337 XWINDOW (mini_window)->mini_p = Qt;
338 XWINDOW (mini_window)->frame = frame;
339 f->minibuffer_window = mini_window;
341 else
343 mini_window = Qnil;
344 XWINDOW (root_window)->next = Qnil;
345 f->minibuffer_window = Qnil;
348 XWINDOW (root_window)->frame = frame;
350 /* 10 is arbitrary,
351 just so that there is "something there."
352 Correct size will be set up later with change_frame_size. */
354 SET_FRAME_COLS (f, 10);
355 FRAME_LINES (f) = 10;
357 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
358 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
360 if (mini_p)
362 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
363 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
364 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
367 /* Choose a buffer for the frame's root window. */
369 Lisp_Object buf;
371 XWINDOW (root_window)->buffer = Qt;
372 buf = Fcurrent_buffer ();
373 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
374 a space), try to find another one. */
375 if (SREF (Fbuffer_name (buf), 0) == ' ')
376 buf = Fother_buffer (buf, Qnil, Qnil);
378 /* Use set_window_buffer, not Fset_window_buffer, and don't let
379 hooks be run by it. The reason is that the whole frame/window
380 arrangement is not yet fully intialized at this point. Windows
381 don't have the right size, glyph matrices aren't initialized
382 etc. Running Lisp functions at this point surely ends in a
383 SEGV. */
384 set_window_buffer (root_window, buf, 0, 0);
385 f->buffer_list = Fcons (buf, Qnil);
388 if (mini_p)
390 XWINDOW (mini_window)->buffer = Qt;
391 set_window_buffer (mini_window,
392 (NILP (Vminibuffer_list)
393 ? get_minibuffer (0)
394 : Fcar (Vminibuffer_list)),
395 0, 0);
398 f->root_window = root_window;
399 f->selected_window = root_window;
400 /* Make sure this window seems more recently used than
401 a newly-created, never-selected window. */
402 ++window_select_count;
403 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
405 f->default_face_done_p = 0;
407 return f;
410 #ifdef HAVE_WINDOW_SYSTEM
411 /* Make a frame using a separate minibuffer window on another frame.
412 MINI_WINDOW is the minibuffer window to use. nil means use the
413 default (the global minibuffer). */
415 struct frame *
416 make_frame_without_minibuffer (mini_window, kb, display)
417 register Lisp_Object mini_window;
418 KBOARD *kb;
419 Lisp_Object display;
421 register struct frame *f;
422 struct gcpro gcpro1;
424 if (!NILP (mini_window))
425 CHECK_LIVE_WINDOW (mini_window);
427 #ifdef MULTI_KBOARD
428 if (!NILP (mini_window)
429 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
430 error ("Frame and minibuffer must be on the same terminal");
431 #endif
433 /* Make a frame containing just a root window. */
434 f = make_frame (0);
436 if (NILP (mini_window))
438 /* Use default-minibuffer-frame if possible. */
439 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
440 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
442 Lisp_Object frame_dummy;
444 XSETFRAME (frame_dummy, f);
445 GCPRO1 (frame_dummy);
446 /* If there's no minibuffer frame to use, create one. */
447 kb->Vdefault_minibuffer_frame =
448 call1 (intern ("make-initial-minibuffer-frame"), display);
449 UNGCPRO;
452 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
455 f->minibuffer_window = mini_window;
457 /* Make the chosen minibuffer window display the proper minibuffer,
458 unless it is already showing a minibuffer. */
459 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
460 Fset_window_buffer (mini_window,
461 (NILP (Vminibuffer_list)
462 ? get_minibuffer (0)
463 : Fcar (Vminibuffer_list)), Qnil);
464 return f;
467 /* Make a frame containing only a minibuffer window. */
469 struct frame *
470 make_minibuffer_frame ()
472 /* First make a frame containing just a root window, no minibuffer. */
474 register struct frame *f = make_frame (0);
475 register Lisp_Object mini_window;
476 register Lisp_Object frame;
478 XSETFRAME (frame, f);
480 f->auto_raise = 0;
481 f->auto_lower = 0;
482 f->no_split = 1;
483 f->wants_modeline = 0;
484 f->has_minibuffer = 1;
486 /* Now label the root window as also being the minibuffer.
487 Avoid infinite looping on the window chain by marking next pointer
488 as nil. */
490 mini_window = f->minibuffer_window = f->root_window;
491 XWINDOW (mini_window)->mini_p = Qt;
492 XWINDOW (mini_window)->next = Qnil;
493 XWINDOW (mini_window)->prev = Qnil;
494 XWINDOW (mini_window)->frame = frame;
496 /* Put the proper buffer in that window. */
498 Fset_window_buffer (mini_window,
499 (NILP (Vminibuffer_list)
500 ? get_minibuffer (0)
501 : Fcar (Vminibuffer_list)), Qnil);
502 return f;
504 #endif /* HAVE_WINDOW_SYSTEM */
506 /* Construct a frame that refers to a terminal. */
508 static int tty_frame_count;
510 struct frame *
511 make_initial_frame (void)
513 struct frame *f;
514 struct terminal *terminal;
515 Lisp_Object frame;
517 #ifdef MULTI_KBOARD
518 /* Create the initial keyboard. */
519 if (!initial_kboard)
521 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
522 init_kboard (initial_kboard);
523 initial_kboard->next_kboard = all_kboards;
524 all_kboards = initial_kboard;
526 #endif
528 /* The first call must initialize Vframe_list. */
529 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
530 Vframe_list = Qnil;
532 terminal = init_initial_terminal ();
534 f = make_frame (1);
535 XSETFRAME (frame, f);
537 Vframe_list = Fcons (frame, Vframe_list);
539 tty_frame_count = 1;
540 f->name = build_string ("F1");
542 f->visible = 1;
543 f->async_visible = 1;
545 f->output_method = terminal->type;
546 f->terminal = terminal;
547 f->terminal->reference_count++;
548 f->output_data.nothing = 0;
550 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
551 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
553 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
554 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
556 return f;
560 struct frame *
561 make_terminal_frame (struct terminal *terminal)
563 register struct frame *f;
564 Lisp_Object frame;
565 char name[20];
567 if (!terminal->name)
568 error ("Terminal is not live, can't create new frames on it");
570 f = make_frame (1);
572 XSETFRAME (frame, f);
573 Vframe_list = Fcons (frame, Vframe_list);
575 tty_frame_count++;
576 sprintf (name, "F%d", tty_frame_count);
577 f->name = build_string (name);
579 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
580 f->async_visible = 1; /* Don't let visible be cleared later. */
581 #ifdef MSDOS
582 f->output_data.x = &the_only_x_display;
583 if (!inhibit_window_system
584 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
585 || XFRAME (selected_frame)->output_method == output_msdos_raw))
587 f->output_method = output_msdos_raw;
588 /* This initialization of foreground and background pixels is
589 only important for the initial frame created in temacs. If
590 we don't do that, we get black background and foreground in
591 the dumped Emacs because the_only_x_display is a static
592 variable, hence it is born all-zeroes, and zero is the code
593 for the black color. Other frames all inherit their pixels
594 from what's already in the_only_x_display. */
595 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
596 && FRAME_BACKGROUND_PIXEL (f) == 0
597 && FRAME_FOREGROUND_PIXEL (f) == 0)
599 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
600 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
603 else
604 f->output_method = output_termcap;
605 #else
606 #ifdef MAC_OS8
607 make_mac_terminal_frame (f);
608 #else
610 f->output_method = output_termcap;
611 f->terminal = terminal;
612 f->terminal->reference_count++;
613 create_tty_output (f);
615 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
616 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
618 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
619 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
621 /* Set the top frame to the newly created frame. */
622 if (FRAMEP (FRAME_TTY (f)->top_frame)
623 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
624 XFRAME (FRAME_TTY (f)->top_frame)->async_visible = 2; /* obscured */
626 FRAME_TTY (f)->top_frame = frame;
629 #ifdef CANNOT_DUMP
630 FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR;
631 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
632 #endif
633 #endif /* MAC_OS8 */
634 #endif /* MSDOS */
636 if (!noninteractive)
637 init_frame_faces (f);
639 return f;
642 /* Get a suitable value for frame parameter PARAMETER for a newly
643 created frame, based on (1) the user-supplied frame parameter
644 alist SUPPLIED_PARMS, (2) CURRENT_VALUE, and finally, if all else
645 fails, (3) Vdefault_frame_alist. */
647 static Lisp_Object
648 get_future_frame_param (Lisp_Object parameter,
649 Lisp_Object supplied_parms,
650 char *current_value)
652 Lisp_Object result;
654 result = Fassq (parameter, supplied_parms);
655 if (NILP (result))
656 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
657 if (NILP (result) && current_value != NULL)
658 result = build_string (current_value);
659 if (NILP (result))
660 result = Fassq (parameter, Vdefault_frame_alist);
661 if (!NILP (result) && !STRINGP (result))
662 result = XCDR (result);
663 if (NILP (result) || !STRINGP (result))
664 result = Qnil;
666 return result;
669 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
670 1, 1, 0,
671 doc: /* Create an additional terminal frame, possibly on another terminal.
672 This function takes one argument, an alist specifying frame parameters.
674 You can create multiple frames on a single text-only terminal, but
675 only one of them (the selected terminal frame) is actually displayed.
677 In practice, generally you don't need to specify any parameters,
678 except when you want to create a new frame on another terminal.
679 In that case, the `tty' parameter specifies the device file to open,
680 and the `tty-type' parameter specifies the terminal type. Example:
682 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
684 Note that changing the size of one terminal frame automatically
685 affects all frames on the same terminal device. */)
686 (parms)
687 Lisp_Object parms;
689 struct frame *f;
690 struct terminal *t = NULL;
691 Lisp_Object frame, tem;
692 struct frame *sf = SELECTED_FRAME ();
694 #ifdef MSDOS
695 if (sf->output_method != output_msdos_raw
696 && sf->output_method != output_termcap)
697 abort ();
698 #else /* not MSDOS */
700 #if 0 /* #ifdef MAC_OS */
701 /* This can happen for multi-tty when using both terminal frames and
702 Carbon frames. */
703 if (sf->output_method != output_mac)
704 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
705 #else
706 #if 0 /* This should work now! */
707 if (sf->output_method != output_termcap)
708 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
709 #endif
710 #endif
711 #endif /* not MSDOS */
714 Lisp_Object terminal;
716 terminal = Fassq (Qterminal, parms);
717 if (!NILP (terminal))
719 terminal = XCDR (terminal);
720 t = get_terminal (terminal, 1);
724 if (!t)
726 char *name = 0, *type = 0;
727 Lisp_Object tty, tty_type;
729 tty = get_future_frame_param
730 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
731 ? FRAME_TTY (XFRAME (selected_frame))->name
732 : NULL));
733 if (!NILP (tty))
735 name = (char *) alloca (SBYTES (tty) + 1);
736 strncpy (name, SDATA (tty), SBYTES (tty));
737 name[SBYTES (tty)] = 0;
740 tty_type = get_future_frame_param
741 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
742 ? FRAME_TTY (XFRAME (selected_frame))->type
743 : NULL));
744 if (!NILP (tty_type))
746 type = (char *) alloca (SBYTES (tty_type) + 1);
747 strncpy (type, SDATA (tty_type), SBYTES (tty_type));
748 type[SBYTES (tty_type)] = 0;
751 t = init_tty (name, type, 0); /* Errors are not fatal. */
754 f = make_terminal_frame (t);
757 int width, height;
758 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
759 change_frame_size (f, height, width, 0, 0, 0);
762 adjust_glyphs (f);
763 calculate_costs (f);
764 XSETFRAME (frame, f);
765 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
766 Fmodify_frame_parameters (frame, parms);
767 Fmodify_frame_parameters (frame, Fcons (Fcons (Qwindow_system, Qnil), Qnil));
768 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty_type,
769 build_string (t->display_info.tty->type)),
770 Qnil));
771 if (t->display_info.tty->name != NULL)
772 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty,
773 build_string (t->display_info.tty->name)),
774 Qnil));
775 else
776 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty, Qnil), Qnil));
778 /* Make the frame face alist be frame-specific, so that each
779 frame could change its face definitions independently. */
780 f->face_alist = Fcopy_alist (sf->face_alist);
781 /* Simple Fcopy_alist isn't enough, because we need the contents of
782 the vectors which are the CDRs of associations in face_alist to
783 be copied as well. */
784 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
785 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
786 return frame;
790 /* Perform the switch to frame FRAME.
792 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
793 FRAME1 as frame.
795 If TRACK is non-zero and the frame that currently has the focus
796 redirects its focus to the selected frame, redirect that focused
797 frame's focus to FRAME instead.
799 FOR_DELETION non-zero means that the selected frame is being
800 deleted, which includes the possibility that the frame's terminal
801 is dead. */
803 Lisp_Object
804 do_switch_frame (frame, track, for_deletion)
805 Lisp_Object frame;
806 int track, for_deletion;
808 struct frame *sf = SELECTED_FRAME ();
810 /* If FRAME is a switch-frame event, extract the frame we should
811 switch to. */
812 if (CONSP (frame)
813 && EQ (XCAR (frame), Qswitch_frame)
814 && CONSP (XCDR (frame)))
815 frame = XCAR (XCDR (frame));
817 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
818 a switch-frame event to arrive after a frame is no longer live,
819 especially when deleting the initial frame during startup. */
820 CHECK_FRAME (frame);
821 if (! FRAME_LIVE_P (XFRAME (frame)))
822 return Qnil;
824 if (sf == XFRAME (frame))
825 return frame;
827 /* This is too greedy; it causes inappropriate focus redirection
828 that's hard to get rid of. */
829 #if 0
830 /* If a frame's focus has been redirected toward the currently
831 selected frame, we should change the redirection to point to the
832 newly selected frame. This means that if the focus is redirected
833 from a minibufferless frame to a surrogate minibuffer frame, we
834 can use `other-window' to switch between all the frames using
835 that minibuffer frame, and the focus redirection will follow us
836 around. */
837 if (track)
839 Lisp_Object tail;
841 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
843 Lisp_Object focus;
845 if (!FRAMEP (XCAR (tail)))
846 abort ();
848 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
850 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
851 Fredirect_frame_focus (XCAR (tail), frame);
854 #else /* ! 0 */
855 /* Instead, apply it only to the frame we're pointing to. */
856 #ifdef HAVE_WINDOW_SYSTEM
857 if (track && FRAME_WINDOW_P (XFRAME (frame)))
859 Lisp_Object focus, xfocus;
861 xfocus = x_get_focus_frame (XFRAME (frame));
862 if (FRAMEP (xfocus))
864 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
865 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
866 Fredirect_frame_focus (xfocus, frame);
869 #endif /* HAVE_X_WINDOWS */
870 #endif /* ! 0 */
872 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
873 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
875 if (FRAME_TERMCAP_P (XFRAME (selected_frame))
876 && FRAME_TERMCAP_P (XFRAME (frame))
877 && FRAME_TTY (XFRAME (selected_frame)) == FRAME_TTY (XFRAME (frame)))
879 XFRAME (selected_frame)->async_visible = 2; /* obscured */
880 XFRAME (frame)->async_visible = 1;
881 FRAME_TTY (XFRAME (frame))->top_frame = frame;
884 selected_frame = frame;
885 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
886 last_nonminibuf_frame = XFRAME (selected_frame);
888 Fselect_window (XFRAME (frame)->selected_window, Qnil);
890 #ifndef WINDOWSNT
891 /* Make sure to switch the tty color mode to that of the newly
892 selected frame. */
893 sf = SELECTED_FRAME ();
894 if (FRAME_TERMCAP_P (sf))
896 Lisp_Object color_mode_spec, color_mode;
898 color_mode_spec = assq_no_quit (Qtty_color_mode, sf->param_alist);
899 if (CONSP (color_mode_spec))
900 color_mode = XCDR (color_mode_spec);
901 else
902 color_mode = make_number (0);
903 set_tty_color_mode (sf, color_mode);
905 #endif /* !WINDOWSNT */
907 /* We want to make sure that the next event generates a frame-switch
908 event to the appropriate frame. This seems kludgy to me, but
909 before you take it out, make sure that evaluating something like
910 (select-window (frame-root-window (new-frame))) doesn't end up
911 with your typing being interpreted in the new frame instead of
912 the one you're actually typing in. */
913 internal_last_event_frame = Qnil;
915 return frame;
918 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 1, "e",
919 doc: /* Select the frame FRAME.
920 Subsequent editing commands apply to its selected window.
921 The selection of FRAME lasts until the next time the user does
922 something to select a different frame, or until the next time this
923 function is called. If you are using a window system, the previously
924 selected frame may be restored as the selected frame after return to
925 the command loop, because it still may have the window system's input
926 focus. On a text-only terminal, the next redisplay will display FRAME.
928 This function returns FRAME, or nil if FRAME has been deleted. */)
929 (frame)
930 Lisp_Object frame;
932 return do_switch_frame (frame, 1, 0);
936 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
937 doc: /* Handle a switch-frame event EVENT.
938 Switch-frame events are usually bound to this function.
939 A switch-frame event tells Emacs that the window manager has requested
940 that the user's events be directed to the frame mentioned in the event.
941 This function selects the selected window of the frame of EVENT.
943 If EVENT is frame object, handle it as if it were a switch-frame event
944 to that frame. */)
945 (event)
946 Lisp_Object event;
948 /* Preserve prefix arg that the command loop just cleared. */
949 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
950 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
951 return do_switch_frame (event, 0, 0);
954 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
955 doc: /* Return the frame that is now selected. */)
958 return selected_frame;
961 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
962 doc: /* Return the frame object that window WINDOW is on. */)
963 (window)
964 Lisp_Object window;
966 CHECK_LIVE_WINDOW (window);
967 return XWINDOW (window)->frame;
970 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
971 doc: /* Returns the topmost, leftmost window of FRAME.
972 If omitted, FRAME defaults to the currently selected frame. */)
973 (frame)
974 Lisp_Object frame;
976 Lisp_Object w;
978 if (NILP (frame))
979 w = SELECTED_FRAME ()->root_window;
980 else
982 CHECK_LIVE_FRAME (frame);
983 w = XFRAME (frame)->root_window;
985 while (NILP (XWINDOW (w)->buffer))
987 if (! NILP (XWINDOW (w)->hchild))
988 w = XWINDOW (w)->hchild;
989 else if (! NILP (XWINDOW (w)->vchild))
990 w = XWINDOW (w)->vchild;
991 else
992 abort ();
994 return w;
997 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
998 Sactive_minibuffer_window, 0, 0, 0,
999 doc: /* Return the currently active minibuffer window, or nil if none. */)
1002 return minibuf_level ? minibuf_window : Qnil;
1005 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
1006 doc: /* Returns the root-window of FRAME.
1007 If omitted, FRAME defaults to the currently selected frame. */)
1008 (frame)
1009 Lisp_Object frame;
1011 Lisp_Object window;
1013 if (NILP (frame))
1014 window = SELECTED_FRAME ()->root_window;
1015 else
1017 CHECK_LIVE_FRAME (frame);
1018 window = XFRAME (frame)->root_window;
1021 return window;
1024 DEFUN ("frame-selected-window", Fframe_selected_window,
1025 Sframe_selected_window, 0, 1, 0,
1026 doc: /* Return the selected window of frame object FRAME.
1027 If omitted, FRAME defaults to the currently selected frame. */)
1028 (frame)
1029 Lisp_Object frame;
1031 Lisp_Object window;
1033 if (NILP (frame))
1034 window = SELECTED_FRAME ()->selected_window;
1035 else
1037 CHECK_LIVE_FRAME (frame);
1038 window = XFRAME (frame)->selected_window;
1041 return window;
1044 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
1045 Sset_frame_selected_window, 2, 2, 0,
1046 doc: /* Set the selected window of frame object FRAME to WINDOW.
1047 Return WINDOW.
1048 If FRAME is nil, the selected frame is used.
1049 If FRAME is the selected frame, this makes WINDOW the selected window. */)
1050 (frame, window)
1051 Lisp_Object frame, window;
1053 if (NILP (frame))
1054 frame = selected_frame;
1056 CHECK_LIVE_FRAME (frame);
1057 CHECK_LIVE_WINDOW (window);
1059 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
1060 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
1062 if (EQ (frame, selected_frame))
1063 return Fselect_window (window, Qnil);
1065 return XFRAME (frame)->selected_window = window;
1069 DEFUN ("frame-list", Fframe_list, Sframe_list,
1070 0, 0, 0,
1071 doc: /* Return a list of all frames. */)
1074 Lisp_Object frames;
1075 frames = Fcopy_sequence (Vframe_list);
1076 #ifdef HAVE_WINDOW_SYSTEM
1077 if (FRAMEP (tip_frame))
1078 frames = Fdelq (tip_frame, frames);
1079 #endif
1080 return frames;
1083 /* Return the next frame in the frame list after FRAME.
1084 If MINIBUF is nil, exclude minibuffer-only frames.
1085 If MINIBUF is a window, include only its own frame
1086 and any frame now using that window as the minibuffer.
1087 If MINIBUF is `visible', include all visible frames.
1088 If MINIBUF is 0, include all visible and iconified frames.
1089 Otherwise, include all frames. */
1091 static Lisp_Object
1092 next_frame (frame, minibuf)
1093 Lisp_Object frame;
1094 Lisp_Object minibuf;
1096 Lisp_Object tail;
1097 int passed = 0;
1099 /* There must always be at least one frame in Vframe_list. */
1100 if (! CONSP (Vframe_list))
1101 abort ();
1103 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
1104 forever. Forestall that. */
1105 CHECK_LIVE_FRAME (frame);
1107 while (1)
1108 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1110 Lisp_Object f;
1112 f = XCAR (tail);
1114 if (passed
1115 && ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1116 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1117 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1118 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame)))))
1120 /* Decide whether this frame is eligible to be returned. */
1122 /* If we've looped all the way around without finding any
1123 eligible frames, return the original frame. */
1124 if (EQ (f, frame))
1125 return f;
1127 /* Let minibuf decide if this frame is acceptable. */
1128 if (NILP (minibuf))
1130 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1131 return f;
1133 else if (EQ (minibuf, Qvisible))
1135 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1136 if (FRAME_VISIBLE_P (XFRAME (f)))
1137 return f;
1139 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
1141 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1142 if (FRAME_VISIBLE_P (XFRAME (f))
1143 || FRAME_ICONIFIED_P (XFRAME (f)))
1144 return f;
1146 else if (WINDOWP (minibuf))
1148 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1149 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1150 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1151 FRAME_FOCUS_FRAME (XFRAME (f))))
1152 return f;
1154 else
1155 return f;
1158 if (EQ (frame, f))
1159 passed++;
1163 /* Return the previous frame in the frame list before FRAME.
1164 If MINIBUF is nil, exclude minibuffer-only frames.
1165 If MINIBUF is a window, include only its own frame
1166 and any frame now using that window as the minibuffer.
1167 If MINIBUF is `visible', include all visible frames.
1168 If MINIBUF is 0, include all visible and iconified frames.
1169 Otherwise, include all frames. */
1171 static Lisp_Object
1172 prev_frame (frame, minibuf)
1173 Lisp_Object frame;
1174 Lisp_Object minibuf;
1176 Lisp_Object tail;
1177 Lisp_Object prev;
1179 /* There must always be at least one frame in Vframe_list. */
1180 if (! CONSP (Vframe_list))
1181 abort ();
1183 prev = Qnil;
1184 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1186 Lisp_Object f;
1188 f = XCAR (tail);
1189 if (!FRAMEP (f))
1190 abort ();
1192 if (EQ (frame, f) && !NILP (prev))
1193 return prev;
1195 if ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1196 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1197 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1198 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame))))
1200 /* Decide whether this frame is eligible to be returned,
1201 according to minibuf. */
1202 if (NILP (minibuf))
1204 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1205 prev = f;
1207 else if (WINDOWP (minibuf))
1209 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1210 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1211 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1212 FRAME_FOCUS_FRAME (XFRAME (f))))
1213 prev = f;
1215 else if (EQ (minibuf, Qvisible))
1217 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1218 if (FRAME_VISIBLE_P (XFRAME (f)))
1219 prev = f;
1221 else if (XFASTINT (minibuf) == 0)
1223 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1224 if (FRAME_VISIBLE_P (XFRAME (f))
1225 || FRAME_ICONIFIED_P (XFRAME (f)))
1226 prev = f;
1228 else
1229 prev = f;
1233 /* We've scanned the entire list. */
1234 if (NILP (prev))
1235 /* We went through the whole frame list without finding a single
1236 acceptable frame. Return the original frame. */
1237 return frame;
1238 else
1239 /* There were no acceptable frames in the list before FRAME; otherwise,
1240 we would have returned directly from the loop. Since PREV is the last
1241 acceptable frame in the list, return it. */
1242 return prev;
1246 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1247 doc: /* Return the next frame in the frame list after FRAME.
1248 It considers only frames on the same terminal as FRAME.
1249 By default, skip minibuffer-only frames.
1250 If omitted, FRAME defaults to the selected frame.
1251 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1252 If MINIFRAME is a window, include only its own frame
1253 and any frame now using that window as the minibuffer.
1254 If MINIFRAME is `visible', include all visible frames.
1255 If MINIFRAME is 0, include all visible and iconified frames.
1256 Otherwise, include all frames. */)
1257 (frame, miniframe)
1258 Lisp_Object frame, miniframe;
1260 if (NILP (frame))
1261 frame = selected_frame;
1263 CHECK_LIVE_FRAME (frame);
1264 return next_frame (frame, miniframe);
1267 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1268 doc: /* Return the previous frame in the frame list before FRAME.
1269 It considers only frames on the same terminal as FRAME.
1270 By default, skip minibuffer-only frames.
1271 If omitted, FRAME defaults to the selected frame.
1272 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1273 If MINIFRAME is a window, include only its own frame
1274 and any frame now using that window as the minibuffer.
1275 If MINIFRAME is `visible', include all visible frames.
1276 If MINIFRAME is 0, include all visible and iconified frames.
1277 Otherwise, include all frames. */)
1278 (frame, miniframe)
1279 Lisp_Object frame, miniframe;
1281 if (NILP (frame))
1282 frame = selected_frame;
1283 CHECK_LIVE_FRAME (frame);
1284 return prev_frame (frame, miniframe);
1287 /* Return 1 if it is ok to delete frame F;
1288 0 if all frames aside from F are invisible.
1289 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1292 other_visible_frames (f)
1293 FRAME_PTR f;
1295 /* We know the selected frame is visible,
1296 so if F is some other frame, it can't be the sole visible one. */
1297 if (f == SELECTED_FRAME ())
1299 Lisp_Object frames;
1300 int count = 0;
1302 for (frames = Vframe_list;
1303 CONSP (frames);
1304 frames = XCDR (frames))
1306 Lisp_Object this;
1308 this = XCAR (frames);
1309 /* Verify that the frame's window still exists
1310 and we can still talk to it. And note any recent change
1311 in visibility. */
1312 #ifdef HAVE_WINDOW_SYSTEM
1313 if (FRAME_WINDOW_P (XFRAME (this)))
1315 x_sync (XFRAME (this));
1316 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1318 #endif
1320 if (FRAME_VISIBLE_P (XFRAME (this))
1321 || FRAME_ICONIFIED_P (XFRAME (this))
1322 /* Allow deleting the terminal frame when at least
1323 one X frame exists! */
1324 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1325 count++;
1327 return count > 1;
1329 return 1;
1332 /* Error handler for `delete-frame-functions'. */
1333 static Lisp_Object
1334 delete_frame_handler (Lisp_Object arg)
1336 add_to_log ("Error during `delete-frame': %s", arg, Qnil);
1337 return Qnil;
1340 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1341 doc: /* Delete FRAME, permanently eliminating it from use.
1342 If omitted, FRAME defaults to the selected frame.
1343 A frame may not be deleted if its minibuffer is used by other frames.
1344 Normally, you may not delete a frame if all other frames are invisible,
1345 but if the second optional argument FORCE is non-nil, you may do so.
1347 This function runs `delete-frame-functions' before actually deleting the
1348 frame, unless the frame is a tooltip.
1349 The functions are run with one arg, the frame to be deleted. */)
1350 (frame, force)
1351 Lisp_Object frame, force;
1353 struct frame *f;
1354 struct frame *sf = SELECTED_FRAME ();
1355 struct kboard *kb;
1357 int minibuffer_selected;
1359 if (EQ (frame, Qnil))
1361 f = sf;
1362 XSETFRAME (frame, f);
1364 else
1366 CHECK_FRAME (frame);
1367 f = XFRAME (frame);
1370 if (! FRAME_LIVE_P (f))
1371 return Qnil;
1373 if (NILP (force) && !other_visible_frames (f)
1374 #ifdef MAC_OS8
1375 /* Terminal frame deleted before any other visible frames are
1376 created. */
1377 && strcmp (SDATA (f->name), "F1") != 0
1378 #endif
1380 error ("Attempt to delete the sole visible or iconified frame");
1382 #if 0
1383 /* This is a nice idea, but x_connection_closed needs to be able
1384 to delete the last frame, if it is gone. */
1385 if (NILP (XCDR (Vframe_list)))
1386 error ("Attempt to delete the only frame");
1387 #endif
1389 /* Does this frame have a minibuffer, and is it the surrogate
1390 minibuffer for any other frame? */
1391 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1393 Lisp_Object frames;
1395 for (frames = Vframe_list;
1396 CONSP (frames);
1397 frames = XCDR (frames))
1399 Lisp_Object this;
1400 this = XCAR (frames);
1402 if (! EQ (this, frame)
1403 && EQ (frame,
1404 WINDOW_FRAME (XWINDOW
1405 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1406 error ("Attempt to delete a surrogate minibuffer frame");
1410 /* Run `delete-frame-functions' unless frame is a tooltip. */
1411 if (!NILP (Vrun_hooks)
1412 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
1414 Lisp_Object args[2];
1415 struct gcpro gcpro1, gcpro2;
1417 /* Don't let a rogue function in `delete-frame-functions'
1418 prevent the frame deletion. */
1419 GCPRO2 (args[0], args[1]);
1420 args[0] = intern ("delete-frame-functions");
1421 args[1] = frame;
1422 internal_condition_case_2 (Frun_hook_with_args, 2, args,
1423 Qt, delete_frame_handler);
1424 UNGCPRO;
1427 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1428 if (! FRAME_LIVE_P (f))
1429 return Qnil;
1431 minibuffer_selected = EQ (minibuf_window, selected_window);
1433 /* Don't let the frame remain selected. */
1434 if (f == sf)
1436 Lisp_Object tail, frame1;
1438 /* Look for another visible frame on the same terminal. */
1439 frame1 = next_frame (frame, Qvisible);
1441 /* If there is none, find *some* other frame. */
1442 if (NILP (frame1) || EQ (frame1, frame))
1444 FOR_EACH_FRAME (tail, frame1)
1446 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
1447 break;
1451 do_switch_frame (frame1, 0, 1);
1452 sf = SELECTED_FRAME ();
1455 /* Don't allow minibuf_window to remain on a deleted frame. */
1456 if (EQ (f->minibuffer_window, minibuf_window))
1458 Fset_window_buffer (sf->minibuffer_window,
1459 XWINDOW (minibuf_window)->buffer, Qnil);
1460 minibuf_window = sf->minibuffer_window;
1462 /* If the dying minibuffer window was selected,
1463 select the new one. */
1464 if (minibuffer_selected)
1465 Fselect_window (minibuf_window, Qnil);
1468 /* Don't let echo_area_window to remain on a deleted frame. */
1469 if (EQ (f->minibuffer_window, echo_area_window))
1470 echo_area_window = sf->minibuffer_window;
1472 /* Clear any X selections for this frame. */
1473 #ifdef HAVE_X_WINDOWS
1474 if (FRAME_X_P (f))
1475 x_clear_frame_selections (f);
1476 #endif
1477 #ifdef MAC_OS
1478 if (FRAME_MAC_P (f))
1479 x_clear_frame_selections (f);
1480 #endif
1482 /* Free glyphs.
1483 This function must be called before the window tree of the
1484 frame is deleted because windows contain dynamically allocated
1485 memory. */
1486 free_glyphs (f);
1488 /* Mark all the windows that used to be on FRAME as deleted, and then
1489 remove the reference to them. */
1490 delete_all_subwindows (XWINDOW (f->root_window));
1491 f->root_window = Qnil;
1493 Vframe_list = Fdelq (frame, Vframe_list);
1494 FRAME_SET_VISIBLE (f, 0);
1496 if (f->namebuf)
1497 xfree (f->namebuf);
1498 if (f->decode_mode_spec_buffer)
1499 xfree (f->decode_mode_spec_buffer);
1500 if (FRAME_INSERT_COST (f))
1501 xfree (FRAME_INSERT_COST (f));
1502 if (FRAME_DELETEN_COST (f))
1503 xfree (FRAME_DELETEN_COST (f));
1504 if (FRAME_INSERTN_COST (f))
1505 xfree (FRAME_INSERTN_COST (f));
1506 if (FRAME_DELETE_COST (f))
1507 xfree (FRAME_DELETE_COST (f));
1508 if (FRAME_MESSAGE_BUF (f))
1509 xfree (FRAME_MESSAGE_BUF (f));
1511 /* Since some events are handled at the interrupt level, we may get
1512 an event for f at any time; if we zero out the frame's terminal
1513 now, then we may trip up the event-handling code. Instead, we'll
1514 promise that the terminal of the frame must be valid until we
1515 have called the window-system-dependent frame destruction
1516 routine. */
1518 if (FRAME_TERMINAL (f)->delete_frame_hook)
1519 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
1522 struct terminal *terminal = FRAME_TERMINAL (f);
1523 f->output_data.nothing = 0;
1524 f->terminal = 0; /* Now the frame is dead. */
1526 /* If needed, delete the terminal that this frame was on.
1527 (This must be done after the frame is killed.) */
1528 terminal->reference_count--;
1529 if (terminal->reference_count == 0)
1531 kb = NULL;
1532 if (terminal->delete_terminal_hook)
1533 (*terminal->delete_terminal_hook) (terminal);
1534 else
1535 delete_terminal (terminal);
1537 #ifdef MULTI_KBOARD
1538 else
1539 kb = terminal->kboard;
1540 #endif
1543 /* If we've deleted the last_nonminibuf_frame, then try to find
1544 another one. */
1545 if (f == last_nonminibuf_frame)
1547 Lisp_Object frames;
1549 last_nonminibuf_frame = 0;
1551 for (frames = Vframe_list;
1552 CONSP (frames);
1553 frames = XCDR (frames))
1555 f = XFRAME (XCAR (frames));
1556 if (!FRAME_MINIBUF_ONLY_P (f))
1558 last_nonminibuf_frame = f;
1559 break;
1564 /* If there's no other frame on the same kboard, get out of
1565 single-kboard state if we're in it for this kboard. */
1566 if (kb != NULL)
1568 Lisp_Object frames;
1569 /* Some frame we found on the same kboard, or nil if there are none. */
1570 Lisp_Object frame_on_same_kboard;
1572 frame_on_same_kboard = Qnil;
1574 for (frames = Vframe_list;
1575 CONSP (frames);
1576 frames = XCDR (frames))
1578 Lisp_Object this;
1579 struct frame *f1;
1581 this = XCAR (frames);
1582 if (!FRAMEP (this))
1583 abort ();
1584 f1 = XFRAME (this);
1586 if (kb == FRAME_KBOARD (f1))
1587 frame_on_same_kboard = this;
1590 if (NILP (frame_on_same_kboard))
1591 not_single_kboard_state (kb);
1595 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1596 find another one. Prefer minibuffer-only frames, but also notice
1597 frames with other windows. */
1598 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
1600 Lisp_Object frames;
1602 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1603 Lisp_Object frame_with_minibuf;
1604 /* Some frame we found on the same kboard, or nil if there are none. */
1605 Lisp_Object frame_on_same_kboard;
1607 frame_on_same_kboard = Qnil;
1608 frame_with_minibuf = Qnil;
1610 for (frames = Vframe_list;
1611 CONSP (frames);
1612 frames = XCDR (frames))
1614 Lisp_Object this;
1615 struct frame *f1;
1617 this = XCAR (frames);
1618 if (!FRAMEP (this))
1619 abort ();
1620 f1 = XFRAME (this);
1622 /* Consider only frames on the same kboard
1623 and only those with minibuffers. */
1624 if (kb == FRAME_KBOARD (f1)
1625 && FRAME_HAS_MINIBUF_P (f1))
1627 frame_with_minibuf = this;
1628 if (FRAME_MINIBUF_ONLY_P (f1))
1629 break;
1632 if (kb == FRAME_KBOARD (f1))
1633 frame_on_same_kboard = this;
1636 if (!NILP (frame_on_same_kboard))
1638 /* We know that there must be some frame with a minibuffer out
1639 there. If this were not true, all of the frames present
1640 would have to be minibufferless, which implies that at some
1641 point their minibuffer frames must have been deleted, but
1642 that is prohibited at the top; you can't delete surrogate
1643 minibuffer frames. */
1644 if (NILP (frame_with_minibuf))
1645 abort ();
1647 kb->Vdefault_minibuffer_frame = frame_with_minibuf;
1649 else
1650 /* No frames left on this kboard--say no minibuffer either. */
1651 kb->Vdefault_minibuffer_frame = Qnil;
1654 /* Cause frame titles to update--necessary if we now have just one frame. */
1655 update_mode_lines = 1;
1657 return Qnil;
1660 /* Return mouse position in character cell units. */
1662 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1663 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1664 The position is given in character cells, where (0, 0) is the
1665 upper-left corner of the frame, X is the horizontal offset, and Y is
1666 the vertical offset.
1667 If Emacs is running on a mouseless terminal or hasn't been programmed
1668 to read the mouse position, it returns the selected frame for FRAME
1669 and nil for X and Y.
1670 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1671 passing the normal return value to that function as an argument,
1672 and returns whatever that function returns. */)
1675 FRAME_PTR f;
1676 Lisp_Object lispy_dummy;
1677 enum scroll_bar_part party_dummy;
1678 Lisp_Object x, y, retval;
1679 int col, row;
1680 unsigned long long_dummy;
1681 struct gcpro gcpro1;
1683 f = SELECTED_FRAME ();
1684 x = y = Qnil;
1686 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1687 /* It's okay for the hook to refrain from storing anything. */
1688 if (FRAME_TERMINAL (f)->mouse_position_hook)
1689 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1690 &lispy_dummy, &party_dummy,
1691 &x, &y,
1692 &long_dummy);
1693 if (! NILP (x))
1695 col = XINT (x);
1696 row = XINT (y);
1697 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1698 XSETINT (x, col);
1699 XSETINT (y, row);
1701 #endif
1702 XSETFRAME (lispy_dummy, f);
1703 retval = Fcons (lispy_dummy, Fcons (x, y));
1704 GCPRO1 (retval);
1705 if (!NILP (Vmouse_position_function))
1706 retval = call1 (Vmouse_position_function, retval);
1707 RETURN_UNGCPRO (retval);
1710 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1711 Smouse_pixel_position, 0, 0, 0,
1712 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1713 The position is given in pixel units, where (0, 0) is the
1714 upper-left corner of the frame, X is the horizontal offset, and Y is
1715 the vertical offset.
1716 If Emacs is running on a mouseless terminal or hasn't been programmed
1717 to read the mouse position, it returns the selected frame for FRAME
1718 and nil for X and Y. */)
1721 FRAME_PTR f;
1722 Lisp_Object lispy_dummy;
1723 enum scroll_bar_part party_dummy;
1724 Lisp_Object x, y;
1725 unsigned long long_dummy;
1727 f = SELECTED_FRAME ();
1728 x = y = Qnil;
1730 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1731 /* It's okay for the hook to refrain from storing anything. */
1732 if (FRAME_TERMINAL (f)->mouse_position_hook)
1733 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1734 &lispy_dummy, &party_dummy,
1735 &x, &y,
1736 &long_dummy);
1737 #endif
1738 XSETFRAME (lispy_dummy, f);
1739 return Fcons (lispy_dummy, Fcons (x, y));
1742 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1743 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1744 Coordinates are relative to the frame, not a window,
1745 so the coordinates of the top left character in the frame
1746 may be nonzero due to left-hand scroll bars or the menu bar.
1748 The position is given in character cells, where (0, 0) is the
1749 upper-left corner of the frame, X is the horizontal offset, and Y is
1750 the vertical offset.
1752 This function is a no-op for an X frame that is not visible.
1753 If you have just created a frame, you must wait for it to become visible
1754 before calling this function on it, like this.
1755 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1756 (frame, x, y)
1757 Lisp_Object frame, x, y;
1759 CHECK_LIVE_FRAME (frame);
1760 CHECK_NUMBER (x);
1761 CHECK_NUMBER (y);
1763 /* I think this should be done with a hook. */
1764 #ifdef HAVE_WINDOW_SYSTEM
1765 if (FRAME_WINDOW_P (XFRAME (frame)))
1766 /* Warping the mouse will cause enternotify and focus events. */
1767 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1768 #else
1769 #if defined (MSDOS) && defined (HAVE_MOUSE)
1770 if (FRAME_MSDOS_P (XFRAME (frame)))
1772 Fselect_frame (frame);
1773 mouse_moveto (XINT (x), XINT (y));
1775 #else
1776 #ifdef HAVE_GPM
1778 Fselect_frame (frame);
1779 term_mouse_moveto (XINT (x), XINT (y));
1781 #endif
1782 #endif
1783 #endif
1785 return Qnil;
1788 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1789 Sset_mouse_pixel_position, 3, 3, 0,
1790 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1791 The position is given in pixels, where (0, 0) is the upper-left corner
1792 of the frame, X is the horizontal offset, and Y is the vertical offset.
1794 Note, this is a no-op for an X frame that is not visible.
1795 If you have just created a frame, you must wait for it to become visible
1796 before calling this function on it, like this.
1797 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1798 (frame, x, y)
1799 Lisp_Object frame, x, y;
1801 CHECK_LIVE_FRAME (frame);
1802 CHECK_NUMBER (x);
1803 CHECK_NUMBER (y);
1805 /* I think this should be done with a hook. */
1806 #ifdef HAVE_WINDOW_SYSTEM
1807 if (FRAME_WINDOW_P (XFRAME (frame)))
1808 /* Warping the mouse will cause enternotify and focus events. */
1809 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1810 #else
1811 #if defined (MSDOS) && defined (HAVE_MOUSE)
1812 if (FRAME_MSDOS_P (XFRAME (frame)))
1814 Fselect_frame (frame);
1815 mouse_moveto (XINT (x), XINT (y));
1817 #else
1818 #ifdef HAVE_GPM
1820 Fselect_frame (frame);
1821 term_mouse_moveto (XINT (x), XINT (y));
1823 #endif
1824 #endif
1825 #endif
1827 return Qnil;
1830 static void make_frame_visible_1 P_ ((Lisp_Object));
1832 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1833 0, 1, "",
1834 doc: /* Make the frame FRAME visible (assuming it is an X window).
1835 If omitted, FRAME defaults to the currently selected frame. */)
1836 (frame)
1837 Lisp_Object frame;
1839 if (NILP (frame))
1840 frame = selected_frame;
1842 CHECK_LIVE_FRAME (frame);
1844 /* I think this should be done with a hook. */
1845 #ifdef HAVE_WINDOW_SYSTEM
1846 if (FRAME_WINDOW_P (XFRAME (frame)))
1848 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1849 x_make_frame_visible (XFRAME (frame));
1851 #endif
1853 make_frame_visible_1 (XFRAME (frame)->root_window);
1855 /* Make menu bar update for the Buffers and Frames menus. */
1856 windows_or_buffers_changed++;
1858 return frame;
1861 /* Update the display_time slot of the buffers shown in WINDOW
1862 and all its descendents. */
1864 static void
1865 make_frame_visible_1 (window)
1866 Lisp_Object window;
1868 struct window *w;
1870 for (;!NILP (window); window = w->next)
1872 w = XWINDOW (window);
1874 if (!NILP (w->buffer))
1875 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1877 if (!NILP (w->vchild))
1878 make_frame_visible_1 (w->vchild);
1879 if (!NILP (w->hchild))
1880 make_frame_visible_1 (w->hchild);
1884 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1885 0, 2, "",
1886 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1887 If omitted, FRAME defaults to the currently selected frame.
1888 Normally you may not make FRAME invisible if all other frames are invisible,
1889 but if the second optional argument FORCE is non-nil, you may do so. */)
1890 (frame, force)
1891 Lisp_Object frame, force;
1893 if (NILP (frame))
1894 frame = selected_frame;
1896 CHECK_LIVE_FRAME (frame);
1898 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1899 error ("Attempt to make invisible the sole visible or iconified frame");
1901 #if 0 /* This isn't logically necessary, and it can do GC. */
1902 /* Don't let the frame remain selected. */
1903 if (EQ (frame, selected_frame))
1904 do_switch_frame (next_frame (frame, Qt), 0, 0)
1905 #endif
1907 /* Don't allow minibuf_window to remain on a deleted frame. */
1908 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1910 struct frame *sf = XFRAME (selected_frame);
1911 Fset_window_buffer (sf->minibuffer_window,
1912 XWINDOW (minibuf_window)->buffer, Qnil);
1913 minibuf_window = sf->minibuffer_window;
1916 /* I think this should be done with a hook. */
1917 #ifdef HAVE_WINDOW_SYSTEM
1918 if (FRAME_WINDOW_P (XFRAME (frame)))
1919 x_make_frame_invisible (XFRAME (frame));
1920 #endif
1922 /* Make menu bar update for the Buffers and Frames menus. */
1923 windows_or_buffers_changed++;
1925 return Qnil;
1928 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1929 0, 1, "",
1930 doc: /* Make the frame FRAME into an icon.
1931 If omitted, FRAME defaults to the currently selected frame. */)
1932 (frame)
1933 Lisp_Object frame;
1935 if (NILP (frame))
1936 frame = selected_frame;
1938 CHECK_LIVE_FRAME (frame);
1940 #if 0 /* This isn't logically necessary, and it can do GC. */
1941 /* Don't let the frame remain selected. */
1942 if (EQ (frame, selected_frame))
1943 Fhandle_switch_frame (next_frame (frame, Qt));
1944 #endif
1946 /* Don't allow minibuf_window to remain on a deleted frame. */
1947 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1949 struct frame *sf = XFRAME (selected_frame);
1950 Fset_window_buffer (sf->minibuffer_window,
1951 XWINDOW (minibuf_window)->buffer, Qnil);
1952 minibuf_window = sf->minibuffer_window;
1955 /* I think this should be done with a hook. */
1956 #ifdef HAVE_WINDOW_SYSTEM
1957 if (FRAME_WINDOW_P (XFRAME (frame)))
1958 x_iconify_frame (XFRAME (frame));
1959 #endif
1961 /* Make menu bar update for the Buffers and Frames menus. */
1962 windows_or_buffers_changed++;
1964 return Qnil;
1967 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1968 1, 1, 0,
1969 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1970 A frame that is not \"visible\" is not updated and, if it works through
1971 a window system, it may not show at all.
1972 Return the symbol `icon' if frame is visible only as an icon.
1974 On a text-only terminal, all frames are considered visible, whether
1975 they are currently being displayed or not, and this function returns t
1976 for all frames. */)
1977 (frame)
1978 Lisp_Object frame;
1980 CHECK_LIVE_FRAME (frame);
1982 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1984 if (FRAME_VISIBLE_P (XFRAME (frame)))
1985 return Qt;
1986 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1987 return Qicon;
1988 return Qnil;
1991 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1992 0, 0, 0,
1993 doc: /* Return a list of all frames now \"visible\" (being updated). */)
1996 Lisp_Object tail, frame;
1997 struct frame *f;
1998 Lisp_Object value;
2000 value = Qnil;
2001 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
2003 frame = XCAR (tail);
2004 if (!FRAMEP (frame))
2005 continue;
2006 f = XFRAME (frame);
2007 if (FRAME_VISIBLE_P (f))
2008 value = Fcons (frame, value);
2010 return value;
2014 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
2015 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
2016 If FRAME is invisible or iconified, make it visible.
2017 If you don't specify a frame, the selected frame is used.
2018 If Emacs is displaying on an ordinary terminal or some other device which
2019 doesn't support multiple overlapping frames, this function does nothing. */)
2020 (frame)
2021 Lisp_Object frame;
2023 struct frame *f;
2024 if (NILP (frame))
2025 frame = selected_frame;
2027 CHECK_LIVE_FRAME (frame);
2029 f = XFRAME (frame);
2031 /* Do like the documentation says. */
2032 Fmake_frame_visible (frame);
2034 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2035 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
2037 return Qnil;
2040 /* Should we have a corresponding function called Flower_Power? */
2041 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
2042 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
2043 If you don't specify a frame, the selected frame is used.
2044 If Emacs is displaying on an ordinary terminal or some other device which
2045 doesn't support multiple overlapping frames, this function does nothing. */)
2046 (frame)
2047 Lisp_Object frame;
2049 struct frame *f;
2051 if (NILP (frame))
2052 frame = selected_frame;
2054 CHECK_LIVE_FRAME (frame);
2056 f = XFRAME (frame);
2058 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2059 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
2061 return Qnil;
2065 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
2066 1, 2, 0,
2067 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
2068 In other words, switch-frame events caused by events in FRAME will
2069 request a switch to FOCUS-FRAME, and `last-event-frame' will be
2070 FOCUS-FRAME after reading an event typed at FRAME.
2072 If FOCUS-FRAME is omitted or nil, any existing redirection is
2073 cancelled, and the frame again receives its own keystrokes.
2075 Focus redirection is useful for temporarily redirecting keystrokes to
2076 a surrogate minibuffer frame when a frame doesn't have its own
2077 minibuffer window.
2079 A frame's focus redirection can be changed by `select-frame'. If frame
2080 FOO is selected, and then a different frame BAR is selected, any
2081 frames redirecting their focus to FOO are shifted to redirect their
2082 focus to BAR. This allows focus redirection to work properly when the
2083 user switches from one frame to another using `select-window'.
2085 This means that a frame whose focus is redirected to itself is treated
2086 differently from a frame whose focus is redirected to nil; the former
2087 is affected by `select-frame', while the latter is not.
2089 The redirection lasts until `redirect-frame-focus' is called to change it. */)
2090 (frame, focus_frame)
2091 Lisp_Object frame, focus_frame;
2093 struct frame *f;
2095 /* Note that we don't check for a live frame here. It's reasonable
2096 to redirect the focus of a frame you're about to delete, if you
2097 know what other frame should receive those keystrokes. */
2098 CHECK_FRAME (frame);
2100 if (! NILP (focus_frame))
2101 CHECK_LIVE_FRAME (focus_frame);
2103 f = XFRAME (frame);
2105 f->focus_frame = focus_frame;
2107 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
2108 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
2110 return Qnil;
2114 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
2115 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
2116 This returns nil if FRAME's focus is not redirected.
2117 See `redirect-frame-focus'. */)
2118 (frame)
2119 Lisp_Object frame;
2121 CHECK_LIVE_FRAME (frame);
2123 return FRAME_FOCUS_FRAME (XFRAME (frame));
2128 /* Return the value of frame parameter PROP in frame FRAME. */
2130 Lisp_Object
2131 get_frame_param (frame, prop)
2132 register struct frame *frame;
2133 Lisp_Object prop;
2135 register Lisp_Object tem;
2137 tem = Fassq (prop, frame->param_alist);
2138 if (EQ (tem, Qnil))
2139 return tem;
2140 return Fcdr (tem);
2143 /* Return the buffer-predicate of the selected frame. */
2145 Lisp_Object
2146 frame_buffer_predicate (frame)
2147 Lisp_Object frame;
2149 return XFRAME (frame)->buffer_predicate;
2152 /* Return the buffer-list of the selected frame. */
2154 Lisp_Object
2155 frame_buffer_list (frame)
2156 Lisp_Object frame;
2158 return XFRAME (frame)->buffer_list;
2161 /* Set the buffer-list of the selected frame. */
2163 void
2164 set_frame_buffer_list (frame, list)
2165 Lisp_Object frame, list;
2167 XFRAME (frame)->buffer_list = list;
2170 /* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
2172 void
2173 frames_discard_buffer (buffer)
2174 Lisp_Object buffer;
2176 Lisp_Object frame, tail;
2178 FOR_EACH_FRAME (tail, frame)
2180 XFRAME (frame)->buffer_list
2181 = Fdelq (buffer, XFRAME (frame)->buffer_list);
2182 XFRAME (frame)->buried_buffer_list
2183 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
2187 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
2188 If the alist already has an element for PROP, we change it. */
2190 void
2191 store_in_alist (alistptr, prop, val)
2192 Lisp_Object *alistptr, val;
2193 Lisp_Object prop;
2195 register Lisp_Object tem;
2197 tem = Fassq (prop, *alistptr);
2198 if (EQ (tem, Qnil))
2199 *alistptr = Fcons (Fcons (prop, val), *alistptr);
2200 else
2201 Fsetcdr (tem, val);
2204 static int
2205 frame_name_fnn_p (str, len)
2206 char *str;
2207 int len;
2209 if (len > 1 && str[0] == 'F')
2211 char *end_ptr;
2213 strtol (str + 1, &end_ptr, 10);
2215 if (end_ptr == str + len)
2216 return 1;
2218 return 0;
2221 /* Set the name of the terminal frame. Also used by MSDOS frames.
2222 Modeled after x_set_name which is used for WINDOW frames. */
2224 static void
2225 set_term_frame_name (f, name)
2226 struct frame *f;
2227 Lisp_Object name;
2229 f->explicit_name = ! NILP (name);
2231 /* If NAME is nil, set the name to F<num>. */
2232 if (NILP (name))
2234 char namebuf[20];
2236 /* Check for no change needed in this very common case
2237 before we do any consing. */
2238 if (frame_name_fnn_p (SDATA (f->name),
2239 SBYTES (f->name)))
2240 return;
2242 tty_frame_count++;
2243 sprintf (namebuf, "F%d", tty_frame_count);
2244 name = build_string (namebuf);
2246 else
2248 CHECK_STRING (name);
2250 /* Don't change the name if it's already NAME. */
2251 if (! NILP (Fstring_equal (name, f->name)))
2252 return;
2254 /* Don't allow the user to set the frame name to F<num>, so it
2255 doesn't clash with the names we generate for terminal frames. */
2256 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
2257 error ("Frame names of the form F<num> are usurped by Emacs");
2260 f->name = name;
2261 update_mode_lines = 1;
2264 void
2265 store_frame_param (f, prop, val)
2266 struct frame *f;
2267 Lisp_Object prop, val;
2269 register Lisp_Object old_alist_elt;
2271 /* The buffer-list parameters are stored in a special place and not
2272 in the alist. */
2273 if (EQ (prop, Qbuffer_list))
2275 f->buffer_list = val;
2276 return;
2278 if (EQ (prop, Qburied_buffer_list))
2280 f->buried_buffer_list = val;
2281 return;
2284 /* If PROP is a symbol which is supposed to have frame-local values,
2285 and it is set up based on this frame, switch to the global
2286 binding. That way, we can create or alter the frame-local binding
2287 without messing up the symbol's status. */
2288 if (SYMBOLP (prop))
2290 Lisp_Object valcontents;
2291 valcontents = SYMBOL_VALUE (prop);
2292 if ((BUFFER_LOCAL_VALUEP (valcontents))
2293 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2294 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
2295 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2296 swap_in_global_binding (prop);
2299 #ifndef WINDOWSNT
2300 /* The tty color mode needs to be set before the frame's parameter
2301 alist is updated with the new value, because set_tty_color_mode
2302 wants to look at the old mode. */
2303 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode))
2304 set_tty_color_mode (f, val);
2305 #endif
2307 /* Update the frame parameter alist. */
2308 old_alist_elt = Fassq (prop, f->param_alist);
2309 if (EQ (old_alist_elt, Qnil))
2310 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2311 else
2312 Fsetcdr (old_alist_elt, val);
2314 /* Update some other special parameters in their special places
2315 in addition to the alist. */
2317 if (EQ (prop, Qbuffer_predicate))
2318 f->buffer_predicate = val;
2320 if (! FRAME_WINDOW_P (f))
2322 if (EQ (prop, Qmenu_bar_lines))
2323 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2324 else if (EQ (prop, Qname))
2325 set_term_frame_name (f, val);
2328 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2330 if (! MINI_WINDOW_P (XWINDOW (val)))
2331 error ("Surrogate minibuffer windows must be minibuffer windows");
2333 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2334 && !EQ (val, f->minibuffer_window))
2335 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2337 /* Install the chosen minibuffer window, with proper buffer. */
2338 f->minibuffer_window = val;
2342 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2343 doc: /* Return the parameters-alist of frame FRAME.
2344 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2345 The meaningful PARMs depend on the kind of frame.
2346 If FRAME is omitted, return information on the currently selected frame. */)
2347 (frame)
2348 Lisp_Object frame;
2350 Lisp_Object alist;
2351 FRAME_PTR f;
2352 int height, width;
2353 struct gcpro gcpro1;
2355 if (NILP (frame))
2356 frame = selected_frame;
2358 CHECK_FRAME (frame);
2359 f = XFRAME (frame);
2361 if (!FRAME_LIVE_P (f))
2362 return Qnil;
2364 alist = Fcopy_alist (f->param_alist);
2365 GCPRO1 (alist);
2367 if (!FRAME_WINDOW_P (f))
2369 int fg = FRAME_FOREGROUND_PIXEL (f);
2370 int bg = FRAME_BACKGROUND_PIXEL (f);
2371 Lisp_Object elt;
2373 /* If the frame's parameter alist says the colors are
2374 unspecified and reversed, take the frame's background pixel
2375 for foreground and vice versa. */
2376 elt = Fassq (Qforeground_color, alist);
2377 if (CONSP (elt) && STRINGP (XCDR (elt)))
2379 if (strncmp (SDATA (XCDR (elt)),
2380 unspecified_bg,
2381 SCHARS (XCDR (elt))) == 0)
2382 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2383 else if (strncmp (SDATA (XCDR (elt)),
2384 unspecified_fg,
2385 SCHARS (XCDR (elt))) == 0)
2386 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2388 else
2389 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2390 elt = Fassq (Qbackground_color, alist);
2391 if (CONSP (elt) && STRINGP (XCDR (elt)))
2393 if (strncmp (SDATA (XCDR (elt)),
2394 unspecified_fg,
2395 SCHARS (XCDR (elt))) == 0)
2396 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2397 else if (strncmp (SDATA (XCDR (elt)),
2398 unspecified_bg,
2399 SCHARS (XCDR (elt))) == 0)
2400 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2402 else
2403 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2404 store_in_alist (&alist, intern ("font"),
2405 build_string (FRAME_MSDOS_P (f)
2406 ? "ms-dos"
2407 : FRAME_W32_P (f) ? "w32term"
2408 :"tty"));
2410 store_in_alist (&alist, Qname, f->name);
2411 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2412 store_in_alist (&alist, Qheight, make_number (height));
2413 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2414 store_in_alist (&alist, Qwidth, make_number (width));
2415 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2416 store_in_alist (&alist, Qminibuffer,
2417 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2418 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2419 : FRAME_MINIBUF_WINDOW (f)));
2420 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2421 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2422 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
2424 /* I think this should be done with a hook. */
2425 #ifdef HAVE_WINDOW_SYSTEM
2426 if (FRAME_WINDOW_P (f))
2427 x_report_frame_params (f, &alist);
2428 else
2429 #endif
2431 /* This ought to be correct in f->param_alist for an X frame. */
2432 Lisp_Object lines;
2433 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2434 store_in_alist (&alist, Qmenu_bar_lines, lines);
2437 UNGCPRO;
2438 return alist;
2442 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2443 doc: /* Return FRAME's value for parameter PARAMETER.
2444 If FRAME is nil, describe the currently selected frame. */)
2445 (frame, parameter)
2446 Lisp_Object frame, parameter;
2448 struct frame *f;
2449 Lisp_Object value;
2451 if (NILP (frame))
2452 frame = selected_frame;
2453 else
2454 CHECK_FRAME (frame);
2455 CHECK_SYMBOL (parameter);
2457 f = XFRAME (frame);
2458 value = Qnil;
2460 if (FRAME_LIVE_P (f))
2462 /* Avoid consing in frequent cases. */
2463 if (EQ (parameter, Qname))
2464 value = f->name;
2465 #ifdef HAVE_X_WINDOWS
2466 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2467 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2468 #endif /* HAVE_X_WINDOWS */
2469 else if (EQ (parameter, Qbackground_color)
2470 || EQ (parameter, Qforeground_color))
2472 value = Fassq (parameter, f->param_alist);
2473 if (CONSP (value))
2475 value = XCDR (value);
2476 /* Fframe_parameters puts the actual fg/bg color names,
2477 even if f->param_alist says otherwise. This is
2478 important when param_alist's notion of colors is
2479 "unspecified". We need to do the same here. */
2480 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2482 const char *color_name;
2483 EMACS_INT csz;
2485 if (EQ (parameter, Qbackground_color))
2487 color_name = SDATA (value);
2488 csz = SCHARS (value);
2489 if (strncmp (color_name, unspecified_bg, csz) == 0)
2490 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2491 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2492 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2494 else if (EQ (parameter, Qforeground_color))
2496 color_name = SDATA (value);
2497 csz = SCHARS (value);
2498 if (strncmp (color_name, unspecified_fg, csz) == 0)
2499 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2500 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2501 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2505 else
2506 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2508 else if (EQ (parameter, Qdisplay_type)
2509 || EQ (parameter, Qbackground_mode))
2510 value = Fcdr (Fassq (parameter, f->param_alist));
2511 else
2512 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2515 return value;
2519 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2520 Smodify_frame_parameters, 2, 2, 0,
2521 doc: /* Modify the parameters of frame FRAME according to ALIST.
2522 If FRAME is nil, it defaults to the selected frame.
2523 ALIST is an alist of parameters to change and their new values.
2524 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2525 The meaningful PARMs depend on the kind of frame.
2526 Undefined PARMs are ignored, but stored in the frame's parameter list
2527 so that `frame-parameters' will return them.
2529 The value of frame parameter FOO can also be accessed
2530 as a frame-local binding for the variable FOO, if you have
2531 enabled such bindings for that variable with `make-variable-frame-local'. */)
2532 (frame, alist)
2533 Lisp_Object frame, alist;
2535 FRAME_PTR f;
2536 register Lisp_Object tail, prop, val;
2538 if (EQ (frame, Qnil))
2539 frame = selected_frame;
2540 CHECK_LIVE_FRAME (frame);
2541 f = XFRAME (frame);
2543 /* I think this should be done with a hook. */
2544 #ifdef HAVE_WINDOW_SYSTEM
2545 if (FRAME_WINDOW_P (f))
2546 x_set_frame_parameters (f, alist);
2547 else
2548 #endif
2549 #ifdef MSDOS
2550 if (FRAME_MSDOS_P (f))
2551 IT_set_frame_parameters (f, alist);
2552 else
2553 #endif
2556 int length = XINT (Flength (alist));
2557 int i;
2558 Lisp_Object *parms
2559 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2560 Lisp_Object *values
2561 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2563 /* Extract parm names and values into those vectors. */
2565 i = 0;
2566 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2568 Lisp_Object elt;
2570 elt = Fcar (tail);
2571 parms[i] = Fcar (elt);
2572 values[i] = Fcdr (elt);
2573 i++;
2576 /* Now process them in reverse of specified order. */
2577 for (i--; i >= 0; i--)
2579 prop = parms[i];
2580 val = values[i];
2581 store_frame_param (f, prop, val);
2583 /* Changing the background color might change the background
2584 mode, so that we have to load new defface specs.
2585 Call frame-set-background-mode to do that. */
2586 if (EQ (prop, Qbackground_color))
2587 call1 (Qframe_set_background_mode, frame);
2590 return Qnil;
2593 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2594 0, 1, 0,
2595 doc: /* Height in pixels of a line in the font in frame FRAME.
2596 If FRAME is omitted, the selected frame is used.
2597 For a terminal frame, the value is always 1. */)
2598 (frame)
2599 Lisp_Object frame;
2601 struct frame *f;
2603 if (NILP (frame))
2604 frame = selected_frame;
2605 CHECK_FRAME (frame);
2606 f = XFRAME (frame);
2608 #ifdef HAVE_WINDOW_SYSTEM
2609 if (FRAME_WINDOW_P (f))
2610 return make_number (x_char_height (f));
2611 else
2612 #endif
2613 return make_number (1);
2617 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2618 0, 1, 0,
2619 doc: /* Width in pixels of characters in the font in frame FRAME.
2620 If FRAME is omitted, the selected frame is used.
2621 On a graphical screen, the width is the standard width of the default font.
2622 For a terminal screen, the value is always 1. */)
2623 (frame)
2624 Lisp_Object frame;
2626 struct frame *f;
2628 if (NILP (frame))
2629 frame = selected_frame;
2630 CHECK_FRAME (frame);
2631 f = XFRAME (frame);
2633 #ifdef HAVE_WINDOW_SYSTEM
2634 if (FRAME_WINDOW_P (f))
2635 return make_number (x_char_width (f));
2636 else
2637 #endif
2638 return make_number (1);
2641 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2642 Sframe_pixel_height, 0, 1, 0,
2643 doc: /* Return a FRAME's height in pixels.
2644 This counts only the height available for text lines,
2645 not menu bars on window-system Emacs frames.
2646 For a terminal frame, the result really gives the height in characters.
2647 If FRAME is omitted, the selected frame is used. */)
2648 (frame)
2649 Lisp_Object frame;
2651 struct frame *f;
2653 if (NILP (frame))
2654 frame = selected_frame;
2655 CHECK_FRAME (frame);
2656 f = XFRAME (frame);
2658 #ifdef HAVE_WINDOW_SYSTEM
2659 if (FRAME_WINDOW_P (f))
2660 return make_number (x_pixel_height (f));
2661 else
2662 #endif
2663 return make_number (FRAME_LINES (f));
2666 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2667 Sframe_pixel_width, 0, 1, 0,
2668 doc: /* Return FRAME's width in pixels.
2669 For a terminal frame, the result really gives the width in characters.
2670 If FRAME is omitted, the selected frame is used. */)
2671 (frame)
2672 Lisp_Object frame;
2674 struct frame *f;
2676 if (NILP (frame))
2677 frame = selected_frame;
2678 CHECK_FRAME (frame);
2679 f = XFRAME (frame);
2681 #ifdef HAVE_WINDOW_SYSTEM
2682 if (FRAME_WINDOW_P (f))
2683 return make_number (x_pixel_width (f));
2684 else
2685 #endif
2686 return make_number (FRAME_COLS (f));
2689 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2690 doc: /* Specify that the frame FRAME has LINES lines.
2691 Optional third arg non-nil means that redisplay should use LINES lines
2692 but that the idea of the actual height of the frame should not be changed. */)
2693 (frame, lines, pretend)
2694 Lisp_Object frame, lines, pretend;
2696 register struct frame *f;
2698 CHECK_NUMBER (lines);
2699 if (NILP (frame))
2700 frame = selected_frame;
2701 CHECK_LIVE_FRAME (frame);
2702 f = XFRAME (frame);
2704 /* I think this should be done with a hook. */
2705 #ifdef HAVE_WINDOW_SYSTEM
2706 if (FRAME_WINDOW_P (f))
2708 if (XINT (lines) != FRAME_LINES (f))
2709 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2710 do_pending_window_change (0);
2712 else
2713 #endif
2714 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2715 return Qnil;
2718 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2719 doc: /* Specify that the frame FRAME has COLS columns.
2720 Optional third arg non-nil means that redisplay should use COLS columns
2721 but that the idea of the actual width of the frame should not be changed. */)
2722 (frame, cols, pretend)
2723 Lisp_Object frame, cols, pretend;
2725 register struct frame *f;
2726 CHECK_NUMBER (cols);
2727 if (NILP (frame))
2728 frame = selected_frame;
2729 CHECK_LIVE_FRAME (frame);
2730 f = XFRAME (frame);
2732 /* I think this should be done with a hook. */
2733 #ifdef HAVE_WINDOW_SYSTEM
2734 if (FRAME_WINDOW_P (f))
2736 if (XINT (cols) != FRAME_COLS (f))
2737 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2738 do_pending_window_change (0);
2740 else
2741 #endif
2742 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2743 return Qnil;
2746 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2747 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2748 (frame, cols, rows)
2749 Lisp_Object frame, cols, rows;
2751 register struct frame *f;
2753 CHECK_LIVE_FRAME (frame);
2754 CHECK_NUMBER (cols);
2755 CHECK_NUMBER (rows);
2756 f = XFRAME (frame);
2758 /* I think this should be done with a hook. */
2759 #ifdef HAVE_WINDOW_SYSTEM
2760 if (FRAME_WINDOW_P (f))
2762 if (XINT (rows) != FRAME_LINES (f)
2763 || XINT (cols) != FRAME_COLS (f)
2764 || f->new_text_lines || f->new_text_cols)
2765 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2766 do_pending_window_change (0);
2768 else
2769 #endif
2770 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2772 return Qnil;
2775 DEFUN ("set-frame-position", Fset_frame_position,
2776 Sset_frame_position, 3, 3, 0,
2777 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2778 This is actually the position of the upper left corner of the frame.
2779 Negative values for XOFFSET or YOFFSET are interpreted relative to
2780 the rightmost or bottommost possible position (that stays within the screen). */)
2781 (frame, xoffset, yoffset)
2782 Lisp_Object frame, xoffset, yoffset;
2784 register struct frame *f;
2786 CHECK_LIVE_FRAME (frame);
2787 CHECK_NUMBER (xoffset);
2788 CHECK_NUMBER (yoffset);
2789 f = XFRAME (frame);
2791 /* I think this should be done with a hook. */
2792 #ifdef HAVE_WINDOW_SYSTEM
2793 if (FRAME_WINDOW_P (f))
2794 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2795 #endif
2797 return Qt;
2801 /***********************************************************************
2802 Frame Parameters
2803 ***********************************************************************/
2805 /* Connect the frame-parameter names for X frames
2806 to the ways of passing the parameter values to the window system.
2808 The name of a parameter, as a Lisp symbol,
2809 has an `x-frame-parameter' property which is an integer in Lisp
2810 that is an index in this table. */
2812 struct frame_parm_table {
2813 char *name;
2814 Lisp_Object *variable;
2817 static struct frame_parm_table frame_parms[] =
2819 {"auto-raise", &Qauto_raise},
2820 {"auto-lower", &Qauto_lower},
2821 {"background-color", 0},
2822 {"border-color", &Qborder_color},
2823 {"border-width", &Qborder_width},
2824 {"cursor-color", &Qcursor_color},
2825 {"cursor-type", &Qcursor_type},
2826 {"font", 0},
2827 {"foreground-color", 0},
2828 {"icon-name", &Qicon_name},
2829 {"icon-type", &Qicon_type},
2830 {"internal-border-width", &Qinternal_border_width},
2831 {"menu-bar-lines", &Qmenu_bar_lines},
2832 {"mouse-color", &Qmouse_color},
2833 {"name", &Qname},
2834 {"scroll-bar-width", &Qscroll_bar_width},
2835 {"title", &Qtitle},
2836 {"unsplittable", &Qunsplittable},
2837 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2838 {"visibility", &Qvisibility},
2839 {"tool-bar-lines", &Qtool_bar_lines},
2840 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2841 {"scroll-bar-background", &Qscroll_bar_background},
2842 {"screen-gamma", &Qscreen_gamma},
2843 {"line-spacing", &Qline_spacing},
2844 {"left-fringe", &Qleft_fringe},
2845 {"right-fringe", &Qright_fringe},
2846 {"wait-for-wm", &Qwait_for_wm},
2847 {"fullscreen", &Qfullscreen},
2850 #ifdef HAVE_WINDOW_SYSTEM
2852 extern Lisp_Object Qbox;
2853 extern Lisp_Object Qtop;
2855 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2856 wanted positions of the WM window (not Emacs window).
2857 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2858 window (FRAME_X_WINDOW).
2861 void
2862 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2863 struct frame *f;
2864 int *width;
2865 int *height;
2866 int *top_pos;
2867 int *left_pos;
2869 int newwidth = FRAME_COLS (f);
2870 int newheight = FRAME_LINES (f);
2872 *top_pos = f->top_pos;
2873 *left_pos = f->left_pos;
2875 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2877 int ph;
2879 ph = FRAME_X_DISPLAY_INFO (f)->height;
2880 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2881 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2882 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2883 *top_pos = 0;
2886 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2888 int pw;
2890 pw = FRAME_X_DISPLAY_INFO (f)->width;
2891 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2892 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2893 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2894 *left_pos = 0;
2897 *width = newwidth;
2898 *height = newheight;
2902 /* Change the parameters of frame F as specified by ALIST.
2903 If a parameter is not specially recognized, do nothing special;
2904 otherwise call the `x_set_...' function for that parameter.
2905 Except for certain geometry properties, always call store_frame_param
2906 to store the new value in the parameter alist. */
2908 void
2909 x_set_frame_parameters (f, alist)
2910 FRAME_PTR f;
2911 Lisp_Object alist;
2913 Lisp_Object tail;
2915 /* If both of these parameters are present, it's more efficient to
2916 set them both at once. So we wait until we've looked at the
2917 entire list before we set them. */
2918 int width, height;
2920 /* Same here. */
2921 Lisp_Object left, top;
2923 /* Same with these. */
2924 Lisp_Object icon_left, icon_top;
2926 /* Record in these vectors all the parms specified. */
2927 Lisp_Object *parms;
2928 Lisp_Object *values;
2929 int i, p;
2930 int left_no_change = 0, top_no_change = 0;
2931 int icon_left_no_change = 0, icon_top_no_change = 0;
2932 int fullscreen_is_being_set = 0;
2934 struct gcpro gcpro1, gcpro2;
2936 i = 0;
2937 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2938 i++;
2940 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2941 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2943 /* Extract parm names and values into those vectors. */
2945 i = 0;
2946 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2948 Lisp_Object elt;
2950 elt = Fcar (tail);
2951 parms[i] = Fcar (elt);
2952 values[i] = Fcdr (elt);
2953 i++;
2955 /* TAIL and ALIST are not used again below here. */
2956 alist = tail = Qnil;
2958 GCPRO2 (*parms, *values);
2959 gcpro1.nvars = i;
2960 gcpro2.nvars = i;
2962 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2963 because their values appear in VALUES and strings are not valid. */
2964 top = left = Qunbound;
2965 icon_left = icon_top = Qunbound;
2967 /* Provide default values for HEIGHT and WIDTH. */
2968 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2969 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2971 /* Process foreground_color and background_color before anything else.
2972 They are independent of other properties, but other properties (e.g.,
2973 cursor_color) are dependent upon them. */
2974 /* Process default font as well, since fringe widths depends on it. */
2975 /* Also, process fullscreen, width and height depend upon that */
2976 for (p = 0; p < i; p++)
2978 Lisp_Object prop, val;
2980 prop = parms[p];
2981 val = values[p];
2982 if (EQ (prop, Qforeground_color)
2983 || EQ (prop, Qbackground_color)
2984 || EQ (prop, Qfont)
2985 || EQ (prop, Qfullscreen))
2987 register Lisp_Object param_index, old_value;
2988 int count = SPECPDL_INDEX ();
2990 old_value = get_frame_param (f, prop);
2991 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
2993 if (NILP (Fequal (val, old_value)))
2995 /* For :font attributes, the frame_parm_handler
2996 x_set_font calls `face-set-after-frame-default'.
2997 Unless we bind inhibit-face-set-after-frame-default
2998 here, this would reset the :font attribute that we
2999 just applied to the default value for new faces. */
3000 specbind (Qinhibit_face_set_after_frame_default, Qt);
3002 store_frame_param (f, prop, val);
3004 param_index = Fget (prop, Qx_frame_parameter);
3005 if (NATNUMP (param_index)
3006 && (XFASTINT (param_index)
3007 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3008 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3009 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3010 unbind_to (count, Qnil);
3015 /* Now process them in reverse of specified order. */
3016 for (i--; i >= 0; i--)
3018 Lisp_Object prop, val;
3020 prop = parms[i];
3021 val = values[i];
3023 if (EQ (prop, Qwidth) && NATNUMP (val))
3024 width = XFASTINT (val);
3025 else if (EQ (prop, Qheight) && NATNUMP (val))
3026 height = XFASTINT (val);
3027 else if (EQ (prop, Qtop))
3028 top = val;
3029 else if (EQ (prop, Qleft))
3030 left = val;
3031 else if (EQ (prop, Qicon_top))
3032 icon_top = val;
3033 else if (EQ (prop, Qicon_left))
3034 icon_left = val;
3035 else if (EQ (prop, Qforeground_color)
3036 || EQ (prop, Qbackground_color)
3037 || EQ (prop, Qfont)
3038 || EQ (prop, Qfullscreen))
3039 /* Processed above. */
3040 continue;
3041 else
3043 register Lisp_Object param_index, old_value;
3045 old_value = get_frame_param (f, prop);
3047 store_frame_param (f, prop, val);
3049 param_index = Fget (prop, Qx_frame_parameter);
3050 if (NATNUMP (param_index)
3051 && (XFASTINT (param_index)
3052 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3053 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3054 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3058 /* Don't die if just one of these was set. */
3059 if (EQ (left, Qunbound))
3061 left_no_change = 1;
3062 if (f->left_pos < 0)
3063 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
3064 else
3065 XSETINT (left, f->left_pos);
3067 if (EQ (top, Qunbound))
3069 top_no_change = 1;
3070 if (f->top_pos < 0)
3071 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
3072 else
3073 XSETINT (top, f->top_pos);
3076 /* If one of the icon positions was not set, preserve or default it. */
3077 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3079 icon_left_no_change = 1;
3080 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3081 if (NILP (icon_left))
3082 XSETINT (icon_left, 0);
3084 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3086 icon_top_no_change = 1;
3087 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3088 if (NILP (icon_top))
3089 XSETINT (icon_top, 0);
3092 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3094 /* If the frame is visible already and the fullscreen parameter is
3095 being set, it is too late to set WM manager hints to specify
3096 size and position.
3097 Here we first get the width, height and position that applies to
3098 fullscreen. We then move the frame to the appropriate
3099 position. Resize of the frame is taken care of in the code after
3100 this if-statement. */
3101 int new_left, new_top;
3103 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
3104 if (new_top != f->top_pos || new_left != f->left_pos)
3105 x_set_offset (f, new_left, new_top, 1);
3108 /* Don't set these parameters unless they've been explicitly
3109 specified. The window might be mapped or resized while we're in
3110 this function, and we don't want to override that unless the lisp
3111 code has asked for it.
3113 Don't set these parameters unless they actually differ from the
3114 window's current parameters; the window may not actually exist
3115 yet. */
3117 Lisp_Object frame;
3119 check_frame_size (f, &height, &width);
3121 XSETFRAME (frame, f);
3123 if (width != FRAME_COLS (f)
3124 || height != FRAME_LINES (f)
3125 || f->new_text_lines || f->new_text_cols)
3126 Fset_frame_size (frame, make_number (width), make_number (height));
3128 if ((!NILP (left) || !NILP (top))
3129 && ! (left_no_change && top_no_change)
3130 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3131 && NUMBERP (top) && XINT (top) == f->top_pos))
3133 int leftpos = 0;
3134 int toppos = 0;
3136 /* Record the signs. */
3137 f->size_hint_flags &= ~ (XNegative | YNegative);
3138 if (EQ (left, Qminus))
3139 f->size_hint_flags |= XNegative;
3140 else if (INTEGERP (left))
3142 leftpos = XINT (left);
3143 if (leftpos < 0)
3144 f->size_hint_flags |= XNegative;
3146 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3147 && CONSP (XCDR (left))
3148 && INTEGERP (XCAR (XCDR (left))))
3150 leftpos = - XINT (XCAR (XCDR (left)));
3151 f->size_hint_flags |= XNegative;
3153 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3154 && CONSP (XCDR (left))
3155 && INTEGERP (XCAR (XCDR (left))))
3157 leftpos = XINT (XCAR (XCDR (left)));
3160 if (EQ (top, Qminus))
3161 f->size_hint_flags |= YNegative;
3162 else if (INTEGERP (top))
3164 toppos = XINT (top);
3165 if (toppos < 0)
3166 f->size_hint_flags |= YNegative;
3168 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3169 && CONSP (XCDR (top))
3170 && INTEGERP (XCAR (XCDR (top))))
3172 toppos = - XINT (XCAR (XCDR (top)));
3173 f->size_hint_flags |= YNegative;
3175 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3176 && CONSP (XCDR (top))
3177 && INTEGERP (XCAR (XCDR (top))))
3179 toppos = XINT (XCAR (XCDR (top)));
3183 /* Store the numeric value of the position. */
3184 f->top_pos = toppos;
3185 f->left_pos = leftpos;
3187 f->win_gravity = NorthWestGravity;
3189 /* Actually set that position, and convert to absolute. */
3190 x_set_offset (f, leftpos, toppos, -1);
3193 if ((!NILP (icon_left) || !NILP (icon_top))
3194 && ! (icon_left_no_change && icon_top_no_change))
3195 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3198 UNGCPRO;
3202 /* Insert a description of internally-recorded parameters of frame X
3203 into the parameter alist *ALISTPTR that is to be given to the user.
3204 Only parameters that are specific to the X window system
3205 and whose values are not correctly recorded in the frame's
3206 param_alist need to be considered here. */
3208 void
3209 x_report_frame_params (f, alistptr)
3210 struct frame *f;
3211 Lisp_Object *alistptr;
3213 char buf[16];
3214 Lisp_Object tem;
3216 /* Represent negative positions (off the top or left screen edge)
3217 in a way that Fmodify_frame_parameters will understand correctly. */
3218 XSETINT (tem, f->left_pos);
3219 if (f->left_pos >= 0)
3220 store_in_alist (alistptr, Qleft, tem);
3221 else
3222 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3224 XSETINT (tem, f->top_pos);
3225 if (f->top_pos >= 0)
3226 store_in_alist (alistptr, Qtop, tem);
3227 else
3228 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3230 store_in_alist (alistptr, Qborder_width,
3231 make_number (f->border_width));
3232 store_in_alist (alistptr, Qinternal_border_width,
3233 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
3234 store_in_alist (alistptr, Qleft_fringe,
3235 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
3236 store_in_alist (alistptr, Qright_fringe,
3237 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
3238 store_in_alist (alistptr, Qscroll_bar_width,
3239 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3240 ? make_number (0)
3241 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3242 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3243 /* nil means "use default width"
3244 for non-toolkit scroll bar.
3245 ruler-mode.el depends on this. */
3246 : Qnil));
3247 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3248 store_in_alist (alistptr, Qwindow_id,
3249 build_string (buf));
3250 #ifdef HAVE_X_WINDOWS
3251 #ifdef USE_X_TOOLKIT
3252 /* Tooltip frame may not have this widget. */
3253 if (FRAME_X_OUTPUT (f)->widget)
3254 #endif
3255 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3256 store_in_alist (alistptr, Qouter_window_id,
3257 build_string (buf));
3258 #endif
3259 store_in_alist (alistptr, Qicon_name, f->icon_name);
3260 FRAME_SAMPLE_VISIBILITY (f);
3261 store_in_alist (alistptr, Qvisibility,
3262 (FRAME_VISIBLE_P (f) ? Qt
3263 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3264 store_in_alist (alistptr, Qdisplay,
3265 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3267 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3268 tem = Qnil;
3269 else
3270 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
3271 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
3272 store_in_alist (alistptr, Qparent_id, tem);
3276 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3277 the previous value of that parameter, NEW_VALUE is the new value. */
3279 void
3280 x_set_fullscreen (f, new_value, old_value)
3281 struct frame *f;
3282 Lisp_Object new_value, old_value;
3284 if (NILP (new_value))
3285 f->want_fullscreen = FULLSCREEN_NONE;
3286 else if (EQ (new_value, Qfullboth))
3287 f->want_fullscreen = FULLSCREEN_BOTH;
3288 else if (EQ (new_value, Qfullwidth))
3289 f->want_fullscreen = FULLSCREEN_WIDTH;
3290 else if (EQ (new_value, Qfullheight))
3291 f->want_fullscreen = FULLSCREEN_HEIGHT;
3293 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
3294 FRAME_TERMINAL (f)->fullscreen_hook (f);
3298 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3299 the previous value of that parameter, NEW_VALUE is the new value. */
3301 void
3302 x_set_line_spacing (f, new_value, old_value)
3303 struct frame *f;
3304 Lisp_Object new_value, old_value;
3306 if (NILP (new_value))
3307 f->extra_line_spacing = 0;
3308 else if (NATNUMP (new_value))
3309 f->extra_line_spacing = XFASTINT (new_value);
3310 else
3311 signal_error ("Invalid line-spacing", new_value);
3312 if (FRAME_VISIBLE_P (f))
3313 redraw_frame (f);
3317 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3318 the previous value of that parameter, NEW_VALUE is the new value. */
3320 void
3321 x_set_screen_gamma (f, new_value, old_value)
3322 struct frame *f;
3323 Lisp_Object new_value, old_value;
3325 Lisp_Object bgcolor;
3327 if (NILP (new_value))
3328 f->gamma = 0;
3329 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3330 /* The value 0.4545 is the normal viewing gamma. */
3331 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3332 else
3333 signal_error ("Invalid screen-gamma", new_value);
3335 /* Apply the new gamma value to the frame background. */
3336 bgcolor = Fassq (Qbackground_color, f->param_alist);
3337 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3339 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3340 if (NATNUMP (index)
3341 && (XFASTINT (index)
3342 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3343 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3344 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3345 (f, bgcolor, Qnil);
3348 Fclear_face_cache (Qnil);
3352 void
3353 x_set_font (f, arg, oldval)
3354 struct frame *f;
3355 Lisp_Object arg, oldval;
3357 Lisp_Object result;
3358 Lisp_Object fontset_name;
3359 Lisp_Object frame;
3360 int old_fontset = FRAME_FONTSET(f);
3362 CHECK_STRING (arg);
3364 fontset_name = Fquery_fontset (arg, Qnil);
3366 BLOCK_INPUT;
3367 result = (STRINGP (fontset_name)
3368 ? x_new_fontset (f, SDATA (fontset_name))
3369 : x_new_font (f, SDATA (arg)));
3370 UNBLOCK_INPUT;
3372 if (EQ (result, Qnil))
3373 error ("Font `%s' is not defined", SDATA (arg));
3374 else if (EQ (result, Qt))
3375 error ("The characters of the given font have varying widths");
3376 else if (STRINGP (result))
3378 set_default_ascii_font (result);
3379 if (STRINGP (fontset_name))
3381 /* Fontset names are built from ASCII font names, so the
3382 names may be equal despite there was a change. */
3383 if (old_fontset == FRAME_FONTSET (f))
3384 return;
3386 else if (!NILP (Fequal (result, oldval)))
3387 return;
3389 /* Recalculate toolbar height. */
3390 f->n_tool_bar_rows = 0;
3391 /* Ensure we redraw it. */
3392 clear_current_matrices (f);
3394 store_frame_param (f, Qfont, result);
3395 recompute_basic_faces (f);
3397 else
3398 abort ();
3400 do_pending_window_change (0);
3402 /* Don't call `face-set-after-frame-default' when faces haven't been
3403 initialized yet. This is the case when called from
3404 Fx_create_frame. In that case, the X widget or window doesn't
3405 exist either, and we can end up in x_report_frame_params with a
3406 null widget which gives a segfault. */
3407 if (FRAME_FACE_CACHE (f))
3409 XSETFRAME (frame, f);
3410 call1 (Qface_set_after_frame_default, frame);
3415 void
3416 x_set_fringe_width (f, new_value, old_value)
3417 struct frame *f;
3418 Lisp_Object new_value, old_value;
3420 compute_fringe_widths (f, 1);
3423 void
3424 x_set_border_width (f, arg, oldval)
3425 struct frame *f;
3426 Lisp_Object arg, oldval;
3428 CHECK_NUMBER (arg);
3430 if (XINT (arg) == f->border_width)
3431 return;
3433 if (FRAME_X_WINDOW (f) != 0)
3434 error ("Cannot change the border width of a frame");
3436 f->border_width = XINT (arg);
3439 void
3440 x_set_internal_border_width (f, arg, oldval)
3441 struct frame *f;
3442 Lisp_Object arg, oldval;
3444 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3446 CHECK_NUMBER (arg);
3447 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3448 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3449 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3451 #ifdef USE_X_TOOLKIT
3452 if (FRAME_X_OUTPUT (f)->edit_widget)
3453 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3454 #endif
3456 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3457 return;
3459 if (FRAME_X_WINDOW (f) != 0)
3461 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3462 SET_FRAME_GARBAGED (f);
3463 do_pending_window_change (0);
3465 else
3466 SET_FRAME_GARBAGED (f);
3469 void
3470 x_set_visibility (f, value, oldval)
3471 struct frame *f;
3472 Lisp_Object value, oldval;
3474 Lisp_Object frame;
3475 XSETFRAME (frame, f);
3477 if (NILP (value))
3478 Fmake_frame_invisible (frame, Qt);
3479 else if (EQ (value, Qicon))
3480 Ficonify_frame (frame);
3481 else
3482 Fmake_frame_visible (frame);
3485 void
3486 x_set_autoraise (f, arg, oldval)
3487 struct frame *f;
3488 Lisp_Object arg, oldval;
3490 f->auto_raise = !EQ (Qnil, arg);
3493 void
3494 x_set_autolower (f, arg, oldval)
3495 struct frame *f;
3496 Lisp_Object arg, oldval;
3498 f->auto_lower = !EQ (Qnil, arg);
3501 void
3502 x_set_unsplittable (f, arg, oldval)
3503 struct frame *f;
3504 Lisp_Object arg, oldval;
3506 f->no_split = !NILP (arg);
3509 void
3510 x_set_vertical_scroll_bars (f, arg, oldval)
3511 struct frame *f;
3512 Lisp_Object arg, oldval;
3514 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3515 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3516 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3517 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3519 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3520 = (NILP (arg)
3521 ? vertical_scroll_bar_none
3522 : EQ (Qleft, arg)
3523 ? vertical_scroll_bar_left
3524 : EQ (Qright, arg)
3525 ? vertical_scroll_bar_right
3526 : EQ (Qleft, Vdefault_frame_scroll_bars)
3527 ? vertical_scroll_bar_left
3528 : EQ (Qright, Vdefault_frame_scroll_bars)
3529 ? vertical_scroll_bar_right
3530 : vertical_scroll_bar_none);
3532 /* We set this parameter before creating the X window for the
3533 frame, so we can get the geometry right from the start.
3534 However, if the window hasn't been created yet, we shouldn't
3535 call x_set_window_size. */
3536 if (FRAME_X_WINDOW (f))
3537 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3538 do_pending_window_change (0);
3542 void
3543 x_set_scroll_bar_width (f, arg, oldval)
3544 struct frame *f;
3545 Lisp_Object arg, oldval;
3547 int wid = FRAME_COLUMN_WIDTH (f);
3549 if (NILP (arg))
3551 x_set_scroll_bar_default_width (f);
3553 if (FRAME_X_WINDOW (f))
3554 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3555 do_pending_window_change (0);
3557 else if (INTEGERP (arg) && XINT (arg) > 0
3558 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3560 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3561 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3563 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3564 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3565 if (FRAME_X_WINDOW (f))
3566 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3567 do_pending_window_change (0);
3570 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3571 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3572 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3577 /* Return non-nil if frame F wants a bitmap icon. */
3579 Lisp_Object
3580 x_icon_type (f)
3581 FRAME_PTR f;
3583 Lisp_Object tem;
3585 tem = assq_no_quit (Qicon_type, f->param_alist);
3586 if (CONSP (tem))
3587 return XCDR (tem);
3588 else
3589 return Qnil;
3593 /* Subroutines of creating an X frame. */
3595 /* Make sure that Vx_resource_name is set to a reasonable value.
3596 Fix it up, or set it to `emacs' if it is too hopeless. */
3598 void
3599 validate_x_resource_name ()
3601 int len = 0;
3602 /* Number of valid characters in the resource name. */
3603 int good_count = 0;
3604 /* Number of invalid characters in the resource name. */
3605 int bad_count = 0;
3606 Lisp_Object new;
3607 int i;
3609 if (!STRINGP (Vx_resource_class))
3610 Vx_resource_class = build_string (EMACS_CLASS);
3612 if (STRINGP (Vx_resource_name))
3614 unsigned char *p = SDATA (Vx_resource_name);
3615 int i;
3617 len = SBYTES (Vx_resource_name);
3619 /* Only letters, digits, - and _ are valid in resource names.
3620 Count the valid characters and count the invalid ones. */
3621 for (i = 0; i < len; i++)
3623 int c = p[i];
3624 if (! ((c >= 'a' && c <= 'z')
3625 || (c >= 'A' && c <= 'Z')
3626 || (c >= '0' && c <= '9')
3627 || c == '-' || c == '_'))
3628 bad_count++;
3629 else
3630 good_count++;
3633 else
3634 /* Not a string => completely invalid. */
3635 bad_count = 5, good_count = 0;
3637 /* If name is valid already, return. */
3638 if (bad_count == 0)
3639 return;
3641 /* If name is entirely invalid, or nearly so, use `emacs'. */
3642 if (good_count == 0
3643 || (good_count == 1 && bad_count > 0))
3645 Vx_resource_name = build_string ("emacs");
3646 return;
3649 /* Name is partly valid. Copy it and replace the invalid characters
3650 with underscores. */
3652 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3654 for (i = 0; i < len; i++)
3656 int c = SREF (new, i);
3657 if (! ((c >= 'a' && c <= 'z')
3658 || (c >= 'A' && c <= 'Z')
3659 || (c >= '0' && c <= '9')
3660 || c == '-' || c == '_'))
3661 SSET (new, i, '_');
3666 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3667 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3670 /* Get specified attribute from resource database RDB.
3671 See Fx_get_resource below for other parameters. */
3673 static Lisp_Object
3674 xrdb_get_resource (rdb, attribute, class, component, subclass)
3675 XrmDatabase rdb;
3676 Lisp_Object attribute, class, component, subclass;
3678 register char *value;
3679 char *name_key;
3680 char *class_key;
3682 CHECK_STRING (attribute);
3683 CHECK_STRING (class);
3685 if (!NILP (component))
3686 CHECK_STRING (component);
3687 if (!NILP (subclass))
3688 CHECK_STRING (subclass);
3689 if (NILP (component) != NILP (subclass))
3690 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3692 validate_x_resource_name ();
3694 /* Allocate space for the components, the dots which separate them,
3695 and the final '\0'. Make them big enough for the worst case. */
3696 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3697 + (STRINGP (component)
3698 ? SBYTES (component) : 0)
3699 + SBYTES (attribute)
3700 + 3);
3702 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3703 + SBYTES (class)
3704 + (STRINGP (subclass)
3705 ? SBYTES (subclass) : 0)
3706 + 3);
3708 /* Start with emacs.FRAMENAME for the name (the specific one)
3709 and with `Emacs' for the class key (the general one). */
3710 strcpy (name_key, SDATA (Vx_resource_name));
3711 strcpy (class_key, SDATA (Vx_resource_class));
3713 strcat (class_key, ".");
3714 strcat (class_key, SDATA (class));
3716 if (!NILP (component))
3718 strcat (class_key, ".");
3719 strcat (class_key, SDATA (subclass));
3721 strcat (name_key, ".");
3722 strcat (name_key, SDATA (component));
3725 strcat (name_key, ".");
3726 strcat (name_key, SDATA (attribute));
3728 value = x_get_string_resource (rdb, name_key, class_key);
3730 if (value != (char *) 0)
3731 return build_string (value);
3732 else
3733 return Qnil;
3737 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3738 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3739 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3740 class, where INSTANCE is the name under which Emacs was invoked, or
3741 the name specified by the `-name' or `-rn' command-line arguments.
3743 The optional arguments COMPONENT and SUBCLASS add to the key and the
3744 class, respectively. You must specify both of them or neither.
3745 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3746 and the class is `Emacs.CLASS.SUBCLASS'. */)
3747 (attribute, class, component, subclass)
3748 Lisp_Object attribute, class, component, subclass;
3750 #ifdef HAVE_X_WINDOWS
3751 check_x ();
3752 #endif
3754 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3755 attribute, class, component, subclass);
3758 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3760 Lisp_Object
3761 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3762 Display_Info *dpyinfo;
3763 Lisp_Object attribute, class, component, subclass;
3765 return xrdb_get_resource (dpyinfo->xrdb,
3766 attribute, class, component, subclass);
3769 /* Used when C code wants a resource value. */
3771 char *
3772 x_get_resource_string (attribute, class)
3773 char *attribute, *class;
3775 char *name_key;
3776 char *class_key;
3777 struct frame *sf = SELECTED_FRAME ();
3779 /* Allocate space for the components, the dots which separate them,
3780 and the final '\0'. */
3781 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3782 + strlen (attribute) + 2);
3783 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3784 + strlen (class) + 2);
3786 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3787 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3789 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3790 name_key, class_key);
3794 /* Return the value of parameter PARAM.
3796 First search ALIST, then Vdefault_frame_alist, then the X defaults
3797 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3799 Convert the resource to the type specified by desired_type.
3801 If no default is specified, return Qunbound. If you call
3802 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3803 and don't let it get stored in any Lisp-visible variables! */
3805 Lisp_Object
3806 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3807 Display_Info *dpyinfo;
3808 Lisp_Object alist, param;
3809 char *attribute;
3810 char *class;
3811 enum resource_types type;
3813 register Lisp_Object tem;
3815 tem = Fassq (param, alist);
3817 if (!NILP (tem))
3819 /* If we find this parm in ALIST, clear it out
3820 so that it won't be "left over" at the end. */
3821 #ifndef WINDOWSNT /* w32fns.c has not yet been changed to cope with this. */
3822 Lisp_Object tail;
3823 XSETCAR (tem, Qnil);
3824 /* In case the parameter appears more than once in the alist,
3825 clear it out. */
3826 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3827 if (CONSP (XCAR (tail))
3828 && EQ (XCAR (XCAR (tail)), param))
3829 XSETCAR (XCAR (tail), Qnil);
3830 #endif
3832 else
3833 tem = Fassq (param, Vdefault_frame_alist);
3835 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3836 look in the X resources. */
3837 if (EQ (tem, Qnil))
3839 if (attribute)
3841 tem = display_x_get_resource (dpyinfo,
3842 build_string (attribute),
3843 build_string (class),
3844 Qnil, Qnil);
3846 if (NILP (tem))
3847 return Qunbound;
3849 switch (type)
3851 case RES_TYPE_NUMBER:
3852 return make_number (atoi (SDATA (tem)));
3854 case RES_TYPE_FLOAT:
3855 return make_float (atof (SDATA (tem)));
3857 case RES_TYPE_BOOLEAN:
3858 tem = Fdowncase (tem);
3859 if (!strcmp (SDATA (tem), "on")
3860 || !strcmp (SDATA (tem), "true"))
3861 return Qt;
3862 else
3863 return Qnil;
3865 case RES_TYPE_STRING:
3866 return tem;
3868 case RES_TYPE_SYMBOL:
3869 /* As a special case, we map the values `true' and `on'
3870 to Qt, and `false' and `off' to Qnil. */
3872 Lisp_Object lower;
3873 lower = Fdowncase (tem);
3874 if (!strcmp (SDATA (lower), "on")
3875 || !strcmp (SDATA (lower), "true"))
3876 return Qt;
3877 else if (!strcmp (SDATA (lower), "off")
3878 || !strcmp (SDATA (lower), "false"))
3879 return Qnil;
3880 else
3881 return Fintern (tem, Qnil);
3884 default:
3885 abort ();
3888 else
3889 return Qunbound;
3891 return Fcdr (tem);
3894 Lisp_Object
3895 x_frame_get_arg (f, alist, param, attribute, class, type)
3896 struct frame *f;
3897 Lisp_Object alist, param;
3898 char *attribute;
3899 char *class;
3900 enum resource_types type;
3902 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
3903 alist, param, attribute, class, type);
3906 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
3908 Lisp_Object
3909 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
3910 struct frame *f;
3911 Lisp_Object alist, param;
3912 char *attribute;
3913 char *class;
3914 enum resource_types type;
3916 Lisp_Object value;
3918 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
3919 attribute, class, type);
3920 if (! NILP (value) && ! EQ (value, Qunbound))
3921 store_frame_param (f, param, value);
3923 return value;
3927 /* Record in frame F the specified or default value according to ALIST
3928 of the parameter named PROP (a Lisp symbol).
3929 If no value is specified for PROP, look for an X default for XPROP
3930 on the frame named NAME.
3931 If that is not found either, use the value DEFLT. */
3933 Lisp_Object
3934 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3935 struct frame *f;
3936 Lisp_Object alist;
3937 Lisp_Object prop;
3938 Lisp_Object deflt;
3939 char *xprop;
3940 char *xclass;
3941 enum resource_types type;
3943 Lisp_Object tem;
3945 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
3946 if (EQ (tem, Qunbound))
3947 tem = deflt;
3948 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3949 return tem;
3955 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3956 doc: /* Parse an X-style geometry string STRING.
3957 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
3958 The properties returned may include `top', `left', `height', and `width'.
3959 The value of `left' or `top' may be an integer,
3960 or a list (+ N) meaning N pixels relative to top/left corner,
3961 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
3962 (string)
3963 Lisp_Object string;
3965 int geometry, x, y;
3966 unsigned int width, height;
3967 Lisp_Object result;
3969 CHECK_STRING (string);
3971 geometry = XParseGeometry ((char *) SDATA (string),
3972 &x, &y, &width, &height);
3974 #if 0
3975 if (!!(geometry & XValue) != !!(geometry & YValue))
3976 error ("Must specify both x and y position, or neither");
3977 #endif
3979 result = Qnil;
3980 if (geometry & XValue)
3982 Lisp_Object element;
3984 if (x >= 0 && (geometry & XNegative))
3985 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3986 else if (x < 0 && ! (geometry & XNegative))
3987 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3988 else
3989 element = Fcons (Qleft, make_number (x));
3990 result = Fcons (element, result);
3993 if (geometry & YValue)
3995 Lisp_Object element;
3997 if (y >= 0 && (geometry & YNegative))
3998 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3999 else if (y < 0 && ! (geometry & YNegative))
4000 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4001 else
4002 element = Fcons (Qtop, make_number (y));
4003 result = Fcons (element, result);
4006 if (geometry & WidthValue)
4007 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4008 if (geometry & HeightValue)
4009 result = Fcons (Fcons (Qheight, make_number (height)), result);
4011 return result;
4014 /* Calculate the desired size and position of frame F.
4015 Return the flags saying which aspects were specified.
4017 Also set the win_gravity and size_hint_flags of F.
4019 Adjust height for toolbar if TOOLBAR_P is 1.
4021 This function does not make the coordinates positive. */
4023 #define DEFAULT_ROWS 40
4024 #define DEFAULT_COLS 80
4027 x_figure_window_size (f, parms, toolbar_p)
4028 struct frame *f;
4029 Lisp_Object parms;
4030 int toolbar_p;
4032 register Lisp_Object tem0, tem1, tem2;
4033 long window_prompting = 0;
4034 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4036 /* Default values if we fall through.
4037 Actually, if that happens we should get
4038 window manager prompting. */
4039 SET_FRAME_COLS (f, DEFAULT_COLS);
4040 FRAME_LINES (f) = DEFAULT_ROWS;
4041 /* Window managers expect that if program-specified
4042 positions are not (0,0), they're intentional, not defaults. */
4043 f->top_pos = 0;
4044 f->left_pos = 0;
4046 /* Ensure that old new_text_cols and new_text_lines will not override the
4047 values set here. */
4048 /* ++KFS: This was specific to W32, but seems ok for all platforms */
4049 f->new_text_cols = f->new_text_lines = 0;
4051 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4052 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4053 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4054 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4056 if (!EQ (tem0, Qunbound))
4058 CHECK_NUMBER (tem0);
4059 FRAME_LINES (f) = XINT (tem0);
4061 if (!EQ (tem1, Qunbound))
4063 CHECK_NUMBER (tem1);
4064 SET_FRAME_COLS (f, XINT (tem1));
4066 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4067 window_prompting |= USSize;
4068 else
4069 window_prompting |= PSize;
4072 f->scroll_bar_actual_width
4073 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
4075 /* This used to be done _before_ calling x_figure_window_size, but
4076 since the height is reset here, this was really a no-op. I
4077 assume that moving it here does what Gerd intended (although he
4078 no longer can remember what that was... ++KFS, 2003-03-25. */
4080 /* Add the tool-bar height to the initial frame height so that the
4081 user gets a text display area of the size he specified with -g or
4082 via .Xdefaults. Later changes of the tool-bar height don't
4083 change the frame size. This is done so that users can create
4084 tall Emacs frames without having to guess how tall the tool-bar
4085 will get. */
4086 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4088 int margin, relief, bar_height;
4090 relief = (tool_bar_button_relief >= 0
4091 ? tool_bar_button_relief
4092 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4094 if (INTEGERP (Vtool_bar_button_margin)
4095 && XINT (Vtool_bar_button_margin) > 0)
4096 margin = XFASTINT (Vtool_bar_button_margin);
4097 else if (CONSP (Vtool_bar_button_margin)
4098 && INTEGERP (XCDR (Vtool_bar_button_margin))
4099 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4100 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4101 else
4102 margin = 0;
4104 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4105 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
4108 compute_fringe_widths (f, 0);
4110 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4111 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
4113 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4114 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4115 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4116 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4118 if (EQ (tem0, Qminus))
4120 f->top_pos = 0;
4121 window_prompting |= YNegative;
4123 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4124 && CONSP (XCDR (tem0))
4125 && INTEGERP (XCAR (XCDR (tem0))))
4127 f->top_pos = - XINT (XCAR (XCDR (tem0)));
4128 window_prompting |= YNegative;
4130 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4131 && CONSP (XCDR (tem0))
4132 && INTEGERP (XCAR (XCDR (tem0))))
4134 f->top_pos = XINT (XCAR (XCDR (tem0)));
4136 else if (EQ (tem0, Qunbound))
4137 f->top_pos = 0;
4138 else
4140 CHECK_NUMBER (tem0);
4141 f->top_pos = XINT (tem0);
4142 if (f->top_pos < 0)
4143 window_prompting |= YNegative;
4146 if (EQ (tem1, Qminus))
4148 f->left_pos = 0;
4149 window_prompting |= XNegative;
4151 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4152 && CONSP (XCDR (tem1))
4153 && INTEGERP (XCAR (XCDR (tem1))))
4155 f->left_pos = - XINT (XCAR (XCDR (tem1)));
4156 window_prompting |= XNegative;
4158 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4159 && CONSP (XCDR (tem1))
4160 && INTEGERP (XCAR (XCDR (tem1))))
4162 f->left_pos = XINT (XCAR (XCDR (tem1)));
4164 else if (EQ (tem1, Qunbound))
4165 f->left_pos = 0;
4166 else
4168 CHECK_NUMBER (tem1);
4169 f->left_pos = XINT (tem1);
4170 if (f->left_pos < 0)
4171 window_prompting |= XNegative;
4174 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4175 window_prompting |= USPosition;
4176 else
4177 window_prompting |= PPosition;
4180 if (f->want_fullscreen != FULLSCREEN_NONE)
4182 int left, top;
4183 int width, height;
4185 /* It takes both for some WM:s to place it where we want */
4186 window_prompting = USPosition | PPosition;
4187 x_fullscreen_adjust (f, &width, &height, &top, &left);
4188 FRAME_COLS (f) = width;
4189 FRAME_LINES (f) = height;
4190 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4191 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4192 f->left_pos = left;
4193 f->top_pos = top;
4196 if (window_prompting & XNegative)
4198 if (window_prompting & YNegative)
4199 f->win_gravity = SouthEastGravity;
4200 else
4201 f->win_gravity = NorthEastGravity;
4203 else
4205 if (window_prompting & YNegative)
4206 f->win_gravity = SouthWestGravity;
4207 else
4208 f->win_gravity = NorthWestGravity;
4211 f->size_hint_flags = window_prompting;
4213 return window_prompting;
4218 #endif /* HAVE_WINDOW_SYSTEM */
4222 /***********************************************************************
4223 Initialization
4224 ***********************************************************************/
4226 void
4227 syms_of_frame ()
4229 Qframep = intern ("framep");
4230 staticpro (&Qframep);
4231 Qframe_live_p = intern ("frame-live-p");
4232 staticpro (&Qframe_live_p);
4233 Qexplicit_name = intern ("explicit-name");
4234 staticpro (&Qexplicit_name);
4235 Qheight = intern ("height");
4236 staticpro (&Qheight);
4237 Qicon = intern ("icon");
4238 staticpro (&Qicon);
4239 Qminibuffer = intern ("minibuffer");
4240 staticpro (&Qminibuffer);
4241 Qmodeline = intern ("modeline");
4242 staticpro (&Qmodeline);
4243 Qonly = intern ("only");
4244 staticpro (&Qonly);
4245 Qwidth = intern ("width");
4246 staticpro (&Qwidth);
4247 Qgeometry = intern ("geometry");
4248 staticpro (&Qgeometry);
4249 Qicon_left = intern ("icon-left");
4250 staticpro (&Qicon_left);
4251 Qicon_top = intern ("icon-top");
4252 staticpro (&Qicon_top);
4253 Qleft = intern ("left");
4254 staticpro (&Qleft);
4255 Qright = intern ("right");
4256 staticpro (&Qright);
4257 Quser_position = intern ("user-position");
4258 staticpro (&Quser_position);
4259 Quser_size = intern ("user-size");
4260 staticpro (&Quser_size);
4261 Qwindow_id = intern ("window-id");
4262 staticpro (&Qwindow_id);
4263 #ifdef HAVE_X_WINDOWS
4264 Qouter_window_id = intern ("outer-window-id");
4265 staticpro (&Qouter_window_id);
4266 #endif
4267 Qparent_id = intern ("parent-id");
4268 staticpro (&Qparent_id);
4269 Qx = intern ("x");
4270 staticpro (&Qx);
4271 Qw32 = intern ("w32");
4272 staticpro (&Qw32);
4273 Qpc = intern ("pc");
4274 staticpro (&Qpc);
4275 Qmac = intern ("mac");
4276 staticpro (&Qmac);
4277 Qvisible = intern ("visible");
4278 staticpro (&Qvisible);
4279 Qbuffer_predicate = intern ("buffer-predicate");
4280 staticpro (&Qbuffer_predicate);
4281 Qbuffer_list = intern ("buffer-list");
4282 staticpro (&Qbuffer_list);
4283 Qburied_buffer_list = intern ("buried-buffer-list");
4284 staticpro (&Qburied_buffer_list);
4285 Qdisplay_type = intern ("display-type");
4286 staticpro (&Qdisplay_type);
4287 Qbackground_mode = intern ("background-mode");
4288 staticpro (&Qbackground_mode);
4289 Qtty_color_mode = intern ("tty-color-mode");
4290 staticpro (&Qtty_color_mode);
4291 Qtty = intern ("tty");
4292 staticpro (&Qtty);
4293 Qtty_type = intern ("tty-type");
4294 staticpro (&Qtty_type);
4295 Qwindow_system = intern ("window-system");
4296 staticpro (&Qwindow_system);
4298 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4299 staticpro (&Qface_set_after_frame_default);
4301 Qinhibit_face_set_after_frame_default
4302 = intern ("inhibit-face-set-after-frame-default");
4303 staticpro (&Qinhibit_face_set_after_frame_default);
4305 Qfullwidth = intern ("fullwidth");
4306 staticpro (&Qfullwidth);
4307 Qfullheight = intern ("fullheight");
4308 staticpro (&Qfullheight);
4309 Qfullboth = intern ("fullboth");
4310 staticpro (&Qfullboth);
4311 Qx_resource_name = intern ("x-resource-name");
4312 staticpro (&Qx_resource_name);
4314 Qx_frame_parameter = intern ("x-frame-parameter");
4315 staticpro (&Qx_frame_parameter);
4317 Qterminal = intern ("terminal");
4318 staticpro (&Qterminal);
4319 Qterminal_live_p = intern ("terminal-live-p");
4320 staticpro (&Qterminal_live_p);
4323 int i;
4325 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4327 Lisp_Object v = intern (frame_parms[i].name);
4328 if (frame_parms[i].variable)
4330 *frame_parms[i].variable = v;
4331 staticpro (frame_parms[i].variable);
4333 Fput (v, Qx_frame_parameter, make_number (i));
4337 #ifdef HAVE_WINDOW_SYSTEM
4338 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4339 doc: /* The name Emacs uses to look up X resources.
4340 `x-get-resource' uses this as the first component of the instance name
4341 when requesting resource values.
4342 Emacs initially sets `x-resource-name' to the name under which Emacs
4343 was invoked, or to the value specified with the `-name' or `-rn'
4344 switches, if present.
4346 It may be useful to bind this variable locally around a call
4347 to `x-get-resource'. See also the variable `x-resource-class'. */);
4348 Vx_resource_name = Qnil;
4350 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4351 doc: /* The class Emacs uses to look up X resources.
4352 `x-get-resource' uses this as the first component of the instance class
4353 when requesting resource values.
4355 Emacs initially sets `x-resource-class' to "Emacs".
4357 Setting this variable permanently is not a reasonable thing to do,
4358 but binding this variable locally around a call to `x-get-resource'
4359 is a reasonable practice. See also the variable `x-resource-name'. */);
4360 Vx_resource_class = build_string (EMACS_CLASS);
4361 #endif
4363 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4364 doc: /* Alist of default values for frame creation.
4365 These may be set in your init file, like this:
4366 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4367 These override values given in window system configuration data,
4368 including X Windows' defaults database.
4369 For values specific to the first Emacs frame, see `initial-frame-alist'.
4370 For window-system specific values, see `window-system-default-frame-alist'.
4371 For values specific to the separate minibuffer frame, see
4372 `minibuffer-frame-alist'.
4373 The `menu-bar-lines' element of the list controls whether new frames
4374 have menu bars; `menu-bar-mode' works by altering this element.
4375 Setting this variable does not affect existing frames, only new ones. */);
4376 Vdefault_frame_alist = Qnil;
4378 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4379 doc: /* Default position of scroll bars on this window-system. */);
4380 #ifdef HAVE_WINDOW_SYSTEM
4381 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4382 /* MS-Windows has scroll bars on the right by default. */
4383 Vdefault_frame_scroll_bars = Qright;
4384 #else
4385 Vdefault_frame_scroll_bars = Qleft;
4386 #endif
4387 #else
4388 Vdefault_frame_scroll_bars = Qnil;
4389 #endif
4391 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4392 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4394 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
4395 doc: /* Non-nil if all of Emacs is iconified and frame updates are not needed. */);
4396 Vemacs_iconified = Qnil;
4398 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4399 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4400 `mouse-position' calls this function, passing its usual return value as
4401 argument, and returns whatever this function returns.
4402 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4403 which need to do mouse handling at the Lisp level. */);
4404 Vmouse_position_function = Qnil;
4406 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4407 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4408 If the value is an integer, highlighting is only shown after moving the
4409 mouse, while keyboard input turns off the highlight even when the mouse
4410 is over the clickable text. However, the mouse shape still indicates
4411 when the mouse is over clickable text. */);
4412 Vmouse_highlight = Qt;
4414 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4415 doc: /* Functions to be run before deleting a frame.
4416 The functions are run with one arg, the frame to be deleted.
4417 See `delete-frame'.
4419 Note that functions in this list may be called twice on the same
4420 frame. In the second invocation, the frame is already deleted, and
4421 the function should do nothing. (You can use `frame-live-p' to check
4422 for this.) This wrinkle happens when an earlier function in
4423 `delete-frame-functions' (indirectly) calls delete-frame
4424 recursively. */);
4425 Vdelete_frame_functions = Qnil;
4427 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4428 doc: /* Minibufferless frames use this frame's minibuffer.
4430 Emacs cannot create minibufferless frames unless this is set to an
4431 appropriate surrogate.
4433 Emacs consults this variable only when creating minibufferless
4434 frames; once the frame is created, it sticks with its assigned
4435 minibuffer, no matter what this variable is set to. This means that
4436 this variable doesn't necessarily say anything meaningful about the
4437 current set of frames, or where the minibuffer is currently being
4438 displayed.
4440 This variable is local to the current terminal and cannot be buffer-local. */);
4442 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4443 doc: /* Non-nil if window system changes focus when you move the mouse.
4444 You should set this variable to tell Emacs how your window manager
4445 handles focus, since there is no way in general for Emacs to find out
4446 automatically. */);
4447 #ifdef HAVE_WINDOW_SYSTEM
4448 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4449 focus_follows_mouse = 0;
4450 #else
4451 focus_follows_mouse = 1;
4452 #endif
4453 #else
4454 focus_follows_mouse = 0;
4455 #endif
4457 staticpro (&Vframe_list);
4459 defsubr (&Sactive_minibuffer_window);
4460 defsubr (&Sframep);
4461 defsubr (&Sframe_live_p);
4462 defsubr (&Swindow_system);
4463 defsubr (&Smake_terminal_frame);
4464 defsubr (&Shandle_switch_frame);
4465 defsubr (&Sselect_frame);
4466 defsubr (&Sselected_frame);
4467 defsubr (&Swindow_frame);
4468 defsubr (&Sframe_root_window);
4469 defsubr (&Sframe_first_window);
4470 defsubr (&Sframe_selected_window);
4471 defsubr (&Sset_frame_selected_window);
4472 defsubr (&Sframe_list);
4473 defsubr (&Snext_frame);
4474 defsubr (&Sprevious_frame);
4475 defsubr (&Sdelete_frame);
4476 defsubr (&Smouse_position);
4477 defsubr (&Smouse_pixel_position);
4478 defsubr (&Sset_mouse_position);
4479 defsubr (&Sset_mouse_pixel_position);
4480 #if 0
4481 defsubr (&Sframe_configuration);
4482 defsubr (&Srestore_frame_configuration);
4483 #endif
4484 defsubr (&Smake_frame_visible);
4485 defsubr (&Smake_frame_invisible);
4486 defsubr (&Siconify_frame);
4487 defsubr (&Sframe_visible_p);
4488 defsubr (&Svisible_frame_list);
4489 defsubr (&Sraise_frame);
4490 defsubr (&Slower_frame);
4491 defsubr (&Sredirect_frame_focus);
4492 defsubr (&Sframe_focus);
4493 defsubr (&Sframe_parameters);
4494 defsubr (&Sframe_parameter);
4495 defsubr (&Smodify_frame_parameters);
4496 defsubr (&Sframe_char_height);
4497 defsubr (&Sframe_char_width);
4498 defsubr (&Sframe_pixel_height);
4499 defsubr (&Sframe_pixel_width);
4500 defsubr (&Sset_frame_height);
4501 defsubr (&Sset_frame_width);
4502 defsubr (&Sset_frame_size);
4503 defsubr (&Sset_frame_position);
4505 #ifdef HAVE_WINDOW_SYSTEM
4506 defsubr (&Sx_get_resource);
4507 defsubr (&Sx_parse_geometry);
4508 #endif
4512 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4513 (do not change this comment) */