(browse-url-text-xterm): Unquote browse-url-text-browser.
[emacs.git] / src / frame.c
blobb163be53f770482333ce8fd68683c313f69313f1
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007, 2008 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 "character.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 #ifdef USE_FONT_BACKEND
58 #include "font.h"
59 #endif /* USE_FONT_BACKEND */
61 /* The name we're using in resource queries. Most often "emacs". */
63 Lisp_Object Vx_resource_name;
65 /* The application class we're using in resource queries.
66 Normally "Emacs". */
68 Lisp_Object Vx_resource_class;
70 #endif
72 Lisp_Object Qframep, Qframe_live_p;
73 Lisp_Object Qicon, Qmodeline;
74 Lisp_Object Qonly;
75 Lisp_Object Qx, Qw32, Qmac, Qpc;
76 Lisp_Object Qvisible;
77 Lisp_Object Qdisplay_type;
78 Lisp_Object Qbackground_mode;
79 Lisp_Object Qnoelisp;
81 Lisp_Object Qx_frame_parameter;
82 Lisp_Object Qx_resource_name;
83 Lisp_Object Qterminal;
84 Lisp_Object Qterminal_live_p;
86 /* Frame parameters (set or reported). */
88 Lisp_Object Qauto_raise, Qauto_lower;
89 Lisp_Object Qborder_color, Qborder_width;
90 Lisp_Object Qcursor_color, Qcursor_type;
91 Lisp_Object Qgeometry; /* Not used */
92 Lisp_Object Qheight, Qwidth;
93 Lisp_Object Qleft, Qright;
94 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
95 Lisp_Object Qinternal_border_width;
96 Lisp_Object Qmouse_color;
97 Lisp_Object Qminibuffer;
98 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
99 Lisp_Object Qvisibility;
100 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
101 Lisp_Object Qscreen_gamma;
102 Lisp_Object Qline_spacing;
103 Lisp_Object Quser_position, Quser_size;
104 Lisp_Object Qwait_for_wm;
105 Lisp_Object Qwindow_id;
106 #ifdef HAVE_X_WINDOWS
107 Lisp_Object Qouter_window_id;
108 #endif
109 Lisp_Object Qparent_id;
110 Lisp_Object Qtitle, Qname;
111 Lisp_Object Qexplicit_name;
112 Lisp_Object Qunsplittable;
113 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
114 Lisp_Object Qleft_fringe, Qright_fringe;
115 Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
116 Lisp_Object Qtty_color_mode;
117 Lisp_Object Qtty, Qtty_type;
119 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
120 #ifdef USE_FONT_BACKEND
121 Lisp_Object Qfont_backend;
122 #endif /* USE_FONT_BACKEND */
124 Lisp_Object Qinhibit_face_set_after_frame_default;
125 Lisp_Object Qface_set_after_frame_default;
127 Lisp_Object Vterminal_frame;
128 Lisp_Object Vdefault_frame_alist;
129 Lisp_Object Vdefault_frame_scroll_bars;
130 Lisp_Object Vmouse_position_function;
131 Lisp_Object Vmouse_highlight;
132 Lisp_Object Vdelete_frame_functions;
134 int focus_follows_mouse;
136 static void
137 set_menu_bar_lines_1 (window, n)
138 Lisp_Object window;
139 int n;
141 struct window *w = XWINDOW (window);
143 XSETFASTINT (w->last_modified, 0);
144 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
145 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
147 if (INTEGERP (w->orig_top_line))
148 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
149 if (INTEGERP (w->orig_total_lines))
150 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
152 /* Handle just the top child in a vertical split. */
153 if (!NILP (w->vchild))
154 set_menu_bar_lines_1 (w->vchild, n);
156 /* Adjust all children in a horizontal split. */
157 for (window = w->hchild; !NILP (window); window = w->next)
159 w = XWINDOW (window);
160 set_menu_bar_lines_1 (window, n);
164 void
165 set_menu_bar_lines (f, value, oldval)
166 struct frame *f;
167 Lisp_Object value, oldval;
169 int nlines;
170 int olines = FRAME_MENU_BAR_LINES (f);
172 /* Right now, menu bars don't work properly in minibuf-only frames;
173 most of the commands try to apply themselves to the minibuffer
174 frame itself, and get an error because you can't switch buffers
175 in or split the minibuffer window. */
176 if (FRAME_MINIBUF_ONLY_P (f))
177 return;
179 if (INTEGERP (value))
180 nlines = XINT (value);
181 else
182 nlines = 0;
184 if (nlines != olines)
186 windows_or_buffers_changed++;
187 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
188 FRAME_MENU_BAR_LINES (f) = nlines;
189 set_menu_bar_lines_1 (f->root_window, nlines - olines);
190 adjust_glyphs (f);
194 Lisp_Object Vemacs_iconified;
195 Lisp_Object Vframe_list;
197 extern Lisp_Object Vminibuffer_list;
198 extern Lisp_Object get_minibuffer ();
199 extern Lisp_Object Fhandle_switch_frame ();
200 extern Lisp_Object Fredirect_frame_focus ();
201 extern Lisp_Object x_get_focus_frame ();
203 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
204 doc: /* Return non-nil if OBJECT is a frame.
205 Value is t for a termcap frame (a character-only terminal),
206 `x' for an Emacs frame that is really an X window,
207 `w32' for an Emacs frame that is a window on MS-Windows display,
208 `mac' for an Emacs frame on a Macintosh display,
209 `pc' for a direct-write MS-DOS frame.
210 See also `frame-live-p'. */)
211 (object)
212 Lisp_Object object;
214 if (!FRAMEP (object))
215 return Qnil;
216 switch (XFRAME (object)->output_method)
218 case output_initial: /* The initial frame is like a termcap frame. */
219 case output_termcap:
220 return Qt;
221 case output_x_window:
222 return Qx;
223 case output_w32:
224 return Qw32;
225 case output_msdos_raw:
226 return Qpc;
227 case output_mac:
228 return Qmac;
229 default:
230 abort ();
234 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
235 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
236 Value is nil if OBJECT is not a live frame. If object is a live
237 frame, the return value indicates what sort of terminal device it is
238 displayed on. See the documentation of `framep' for possible
239 return values. */)
240 (object)
241 Lisp_Object object;
243 return ((FRAMEP (object)
244 && FRAME_LIVE_P (XFRAME (object)))
245 ? Fframep (object)
246 : Qnil);
249 DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
250 doc: /* The name of the window system that FRAME is displaying through.
251 The value is a symbol---for instance, 'x' for X windows.
252 The value is nil if Emacs is using a text-only terminal.
254 FRAME defaults to the currently selected frame. */)
255 (frame)
256 Lisp_Object frame;
258 Lisp_Object type;
259 if (NILP (frame))
260 frame = selected_frame;
262 type = Fframep (frame);
264 if (NILP (type))
265 wrong_type_argument (Qframep, frame);
267 if (EQ (type, Qt))
268 return Qnil;
269 else
270 return type;
273 struct frame *
274 make_frame (mini_p)
275 int mini_p;
277 Lisp_Object frame;
278 register struct frame *f;
279 register Lisp_Object root_window;
280 register Lisp_Object mini_window;
282 f = allocate_frame ();
283 XSETFRAME (frame, f);
285 f->desired_matrix = 0;
286 f->current_matrix = 0;
287 f->desired_pool = 0;
288 f->current_pool = 0;
289 f->glyphs_initialized_p = 0;
290 f->decode_mode_spec_buffer = 0;
291 f->visible = 0;
292 f->async_visible = 0;
293 f->output_data.nothing = 0;
294 f->iconified = 0;
295 f->async_iconified = 0;
296 f->wants_modeline = 1;
297 f->auto_raise = 0;
298 f->auto_lower = 0;
299 f->no_split = 0;
300 f->garbaged = 1;
301 f->has_minibuffer = mini_p;
302 f->focus_frame = Qnil;
303 f->explicit_name = 0;
304 f->can_have_scroll_bars = 0;
305 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
306 f->param_alist = Qnil;
307 f->scroll_bars = Qnil;
308 f->condemned_scroll_bars = Qnil;
309 f->face_alist = Qnil;
310 f->face_cache = NULL;
311 f->menu_bar_items = Qnil;
312 f->menu_bar_vector = Qnil;
313 f->menu_bar_items_used = 0;
314 f->buffer_predicate = Qnil;
315 f->buffer_list = Qnil;
316 f->buried_buffer_list = Qnil;
317 f->namebuf = 0;
318 f->title = Qnil;
319 f->menu_bar_window = Qnil;
320 f->tool_bar_window = Qnil;
321 f->tool_bar_items = Qnil;
322 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
323 f->n_tool_bar_items = 0;
324 f->left_fringe_width = f->right_fringe_width = 0;
325 f->fringe_cols = 0;
326 f->scroll_bar_actual_width = 0;
327 f->border_width = 0;
328 f->internal_border_width = 0;
329 f->column_width = 1; /* !FRAME_WINDOW_P value */
330 f->line_height = 1; /* !FRAME_WINDOW_P value */
331 f->x_pixels_diff = f->y_pixels_diff = 0;
332 #ifdef HAVE_WINDOW_SYSTEM
333 f->want_fullscreen = FULLSCREEN_NONE;
334 #endif
335 f->size_hint_flags = 0;
336 f->win_gravity = 0;
337 #ifdef USE_FONT_BACKEND
338 f->font_driver_list = NULL;
339 f->font_data_list = NULL;
340 #endif /* USE_FONT_BACKEND */
342 root_window = make_window ();
343 if (mini_p)
345 mini_window = make_window ();
346 XWINDOW (root_window)->next = mini_window;
347 XWINDOW (mini_window)->prev = root_window;
348 XWINDOW (mini_window)->mini_p = Qt;
349 XWINDOW (mini_window)->frame = frame;
350 f->minibuffer_window = mini_window;
352 else
354 mini_window = Qnil;
355 XWINDOW (root_window)->next = Qnil;
356 f->minibuffer_window = Qnil;
359 XWINDOW (root_window)->frame = frame;
361 /* 10 is arbitrary,
362 just so that there is "something there."
363 Correct size will be set up later with change_frame_size. */
365 SET_FRAME_COLS (f, 10);
366 FRAME_LINES (f) = 10;
368 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
369 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
371 if (mini_p)
373 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
374 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
375 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
378 /* Choose a buffer for the frame's root window. */
380 Lisp_Object buf;
382 XWINDOW (root_window)->buffer = Qt;
383 buf = Fcurrent_buffer ();
384 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
385 a space), try to find another one. */
386 if (SREF (Fbuffer_name (buf), 0) == ' ')
387 buf = Fother_buffer (buf, Qnil, Qnil);
389 /* Use set_window_buffer, not Fset_window_buffer, and don't let
390 hooks be run by it. The reason is that the whole frame/window
391 arrangement is not yet fully intialized at this point. Windows
392 don't have the right size, glyph matrices aren't initialized
393 etc. Running Lisp functions at this point surely ends in a
394 SEGV. */
395 set_window_buffer (root_window, buf, 0, 0);
396 f->buffer_list = Fcons (buf, Qnil);
399 if (mini_p)
401 XWINDOW (mini_window)->buffer = Qt;
402 set_window_buffer (mini_window,
403 (NILP (Vminibuffer_list)
404 ? get_minibuffer (0)
405 : Fcar (Vminibuffer_list)),
406 0, 0);
409 f->root_window = root_window;
410 f->selected_window = root_window;
411 /* Make sure this window seems more recently used than
412 a newly-created, never-selected window. */
413 ++window_select_count;
414 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
416 f->default_face_done_p = 0;
418 return f;
421 #ifdef HAVE_WINDOW_SYSTEM
422 /* Make a frame using a separate minibuffer window on another frame.
423 MINI_WINDOW is the minibuffer window to use. nil means use the
424 default (the global minibuffer). */
426 struct frame *
427 make_frame_without_minibuffer (mini_window, kb, display)
428 register Lisp_Object mini_window;
429 KBOARD *kb;
430 Lisp_Object display;
432 register struct frame *f;
433 struct gcpro gcpro1;
435 if (!NILP (mini_window))
436 CHECK_LIVE_WINDOW (mini_window);
438 #ifdef MULTI_KBOARD
439 if (!NILP (mini_window)
440 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
441 error ("Frame and minibuffer must be on the same terminal");
442 #endif
444 /* Make a frame containing just a root window. */
445 f = make_frame (0);
447 if (NILP (mini_window))
449 /* Use default-minibuffer-frame if possible. */
450 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
451 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
453 Lisp_Object frame_dummy;
455 XSETFRAME (frame_dummy, f);
456 GCPRO1 (frame_dummy);
457 /* If there's no minibuffer frame to use, create one. */
458 kb->Vdefault_minibuffer_frame =
459 call1 (intern ("make-initial-minibuffer-frame"), display);
460 UNGCPRO;
463 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
466 f->minibuffer_window = mini_window;
468 /* Make the chosen minibuffer window display the proper minibuffer,
469 unless it is already showing a minibuffer. */
470 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
471 Fset_window_buffer (mini_window,
472 (NILP (Vminibuffer_list)
473 ? get_minibuffer (0)
474 : Fcar (Vminibuffer_list)), Qnil);
475 return f;
478 /* Make a frame containing only a minibuffer window. */
480 struct frame *
481 make_minibuffer_frame ()
483 /* First make a frame containing just a root window, no minibuffer. */
485 register struct frame *f = make_frame (0);
486 register Lisp_Object mini_window;
487 register Lisp_Object frame;
489 XSETFRAME (frame, f);
491 f->auto_raise = 0;
492 f->auto_lower = 0;
493 f->no_split = 1;
494 f->wants_modeline = 0;
495 f->has_minibuffer = 1;
497 /* Now label the root window as also being the minibuffer.
498 Avoid infinite looping on the window chain by marking next pointer
499 as nil. */
501 mini_window = f->minibuffer_window = f->root_window;
502 XWINDOW (mini_window)->mini_p = Qt;
503 XWINDOW (mini_window)->next = Qnil;
504 XWINDOW (mini_window)->prev = Qnil;
505 XWINDOW (mini_window)->frame = frame;
507 /* Put the proper buffer in that window. */
509 Fset_window_buffer (mini_window,
510 (NILP (Vminibuffer_list)
511 ? get_minibuffer (0)
512 : Fcar (Vminibuffer_list)), Qnil);
513 return f;
515 #endif /* HAVE_WINDOW_SYSTEM */
517 /* Construct a frame that refers to a terminal. */
519 static int tty_frame_count;
521 struct frame *
522 make_initial_frame (void)
524 struct frame *f;
525 struct terminal *terminal;
526 Lisp_Object frame;
528 eassert (initial_kboard);
530 /* The first call must initialize Vframe_list. */
531 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
532 Vframe_list = Qnil;
534 terminal = init_initial_terminal ();
536 f = make_frame (1);
537 XSETFRAME (frame, f);
539 Vframe_list = Fcons (frame, Vframe_list);
541 tty_frame_count = 1;
542 f->name = build_string ("F1");
544 f->visible = 1;
545 f->async_visible = 1;
547 f->output_method = terminal->type;
548 f->terminal = terminal;
549 f->terminal->reference_count++;
550 f->output_data.nothing = 0;
552 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
553 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
555 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
556 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
558 return f;
562 struct frame *
563 make_terminal_frame (struct terminal *terminal)
565 register struct frame *f;
566 Lisp_Object frame;
567 char name[20];
569 if (!terminal->name)
570 error ("Terminal is not live, can't create new frames on it");
572 f = make_frame (1);
574 XSETFRAME (frame, f);
575 Vframe_list = Fcons (frame, Vframe_list);
577 tty_frame_count++;
578 sprintf (name, "F%d", tty_frame_count);
579 f->name = build_string (name);
581 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
582 f->async_visible = 1; /* Don't let visible be cleared later. */
583 #ifdef MSDOS
584 f->output_data.x = &the_only_x_display;
585 if (!inhibit_window_system
586 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
587 || XFRAME (selected_frame)->output_method == output_msdos_raw))
589 f->output_method = output_msdos_raw;
590 /* This initialization of foreground and background pixels is
591 only important for the initial frame created in temacs. If
592 we don't do that, we get black background and foreground in
593 the dumped Emacs because the_only_x_display is a static
594 variable, hence it is born all-zeroes, and zero is the code
595 for the black color. Other frames all inherit their pixels
596 from what's already in the_only_x_display. */
597 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
598 && FRAME_BACKGROUND_PIXEL (f) == 0
599 && FRAME_FOREGROUND_PIXEL (f) == 0)
601 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
602 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
605 else
606 f->output_method = output_termcap;
607 #else
609 f->output_method = output_termcap;
610 f->terminal = terminal;
611 f->terminal->reference_count++;
612 create_tty_output (f);
614 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
615 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
617 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
618 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
620 /* Set the top frame to the newly created frame. */
621 if (FRAMEP (FRAME_TTY (f)->top_frame)
622 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
623 XFRAME (FRAME_TTY (f)->top_frame)->async_visible = 2; /* obscured */
625 FRAME_TTY (f)->top_frame = frame;
628 #ifdef CANNOT_DUMP
629 FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR;
630 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
631 #endif
632 #endif /* MSDOS */
634 if (!noninteractive)
635 init_frame_faces (f);
637 return f;
640 /* Get a suitable value for frame parameter PARAMETER for a newly
641 created frame, based on (1) the user-supplied frame parameter
642 alist SUPPLIED_PARMS, (2) CURRENT_VALUE, and finally, if all else
643 fails, (3) Vdefault_frame_alist. */
645 static Lisp_Object
646 get_future_frame_param (Lisp_Object parameter,
647 Lisp_Object supplied_parms,
648 char *current_value)
650 Lisp_Object result;
652 result = Fassq (parameter, supplied_parms);
653 if (NILP (result))
654 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
655 if (NILP (result) && current_value != NULL)
656 result = build_string (current_value);
657 if (NILP (result))
658 result = Fassq (parameter, Vdefault_frame_alist);
659 if (!NILP (result) && !STRINGP (result))
660 result = XCDR (result);
661 if (NILP (result) || !STRINGP (result))
662 result = Qnil;
664 return result;
667 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
668 1, 1, 0,
669 doc: /* Create an additional terminal frame, possibly on another terminal.
670 This function takes one argument, an alist specifying frame parameters.
672 You can create multiple frames on a single text-only terminal, but
673 only one of them (the selected terminal frame) is actually displayed.
675 In practice, generally you don't need to specify any parameters,
676 except when you want to create a new frame on another terminal.
677 In that case, the `tty' parameter specifies the device file to open,
678 and the `tty-type' parameter specifies the terminal type. Example:
680 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
682 Note that changing the size of one terminal frame automatically
683 affects all frames on the same terminal device. */)
684 (parms)
685 Lisp_Object parms;
687 struct frame *f;
688 struct terminal *t = NULL;
689 Lisp_Object frame, tem;
690 struct frame *sf = SELECTED_FRAME ();
692 #ifdef MSDOS
693 if (sf->output_method != output_msdos_raw
694 && sf->output_method != output_termcap)
695 abort ();
696 #else /* not MSDOS */
698 #if 0
699 /* This can happen for multi-tty when using both terminal frames and
700 Carbon frames. */
701 if (sf->output_method != output_mac)
702 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
703 #else
704 #if 0 /* This should work now! */
705 if (sf->output_method != output_termcap)
706 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
707 #endif
708 #endif
709 #endif /* not MSDOS */
712 Lisp_Object terminal;
714 terminal = Fassq (Qterminal, parms);
715 if (!NILP (terminal))
717 terminal = XCDR (terminal);
718 t = get_terminal (terminal, 1);
722 if (!t)
724 char *name = 0, *type = 0;
725 Lisp_Object tty, tty_type;
727 tty = get_future_frame_param
728 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
729 ? FRAME_TTY (XFRAME (selected_frame))->name
730 : NULL));
731 if (!NILP (tty))
733 name = (char *) alloca (SBYTES (tty) + 1);
734 strncpy (name, SDATA (tty), SBYTES (tty));
735 name[SBYTES (tty)] = 0;
738 tty_type = get_future_frame_param
739 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
740 ? FRAME_TTY (XFRAME (selected_frame))->type
741 : NULL));
742 if (!NILP (tty_type))
744 type = (char *) alloca (SBYTES (tty_type) + 1);
745 strncpy (type, SDATA (tty_type), SBYTES (tty_type));
746 type[SBYTES (tty_type)] = 0;
749 t = init_tty (name, type, 0); /* Errors are not fatal. */
752 f = make_terminal_frame (t);
755 int width, height;
756 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
757 change_frame_size (f, height, width, 0, 0, 0);
760 adjust_glyphs (f);
761 calculate_costs (f);
762 XSETFRAME (frame, f);
763 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
764 Fmodify_frame_parameters (frame, parms);
765 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty_type,
766 build_string (t->display_info.tty->type)),
767 Qnil));
768 if (t->display_info.tty->name != NULL)
769 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty,
770 build_string (t->display_info.tty->name)),
771 Qnil));
772 else
773 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty, Qnil), Qnil));
775 /* Make the frame face alist be frame-specific, so that each
776 frame could change its face definitions independently. */
777 f->face_alist = Fcopy_alist (sf->face_alist);
778 /* Simple Fcopy_alist isn't enough, because we need the contents of
779 the vectors which are the CDRs of associations in face_alist to
780 be copied as well. */
781 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
782 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
783 return frame;
787 /* Perform the switch to frame FRAME.
789 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
790 FRAME1 as frame.
792 If TRACK is non-zero and the frame that currently has the focus
793 redirects its focus to the selected frame, redirect that focused
794 frame's focus to FRAME instead.
796 FOR_DELETION non-zero means that the selected frame is being
797 deleted, which includes the possibility that the frame's terminal
798 is dead. */
800 Lisp_Object
801 do_switch_frame (frame, track, for_deletion)
802 Lisp_Object frame;
803 int track, for_deletion;
805 struct frame *sf = SELECTED_FRAME ();
807 /* If FRAME is a switch-frame event, extract the frame we should
808 switch to. */
809 if (CONSP (frame)
810 && EQ (XCAR (frame), Qswitch_frame)
811 && CONSP (XCDR (frame)))
812 frame = XCAR (XCDR (frame));
814 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
815 a switch-frame event to arrive after a frame is no longer live,
816 especially when deleting the initial frame during startup. */
817 CHECK_FRAME (frame);
818 if (! FRAME_LIVE_P (XFRAME (frame)))
819 return Qnil;
821 if (sf == XFRAME (frame))
822 return frame;
824 /* This is too greedy; it causes inappropriate focus redirection
825 that's hard to get rid of. */
826 #if 0
827 /* If a frame's focus has been redirected toward the currently
828 selected frame, we should change the redirection to point to the
829 newly selected frame. This means that if the focus is redirected
830 from a minibufferless frame to a surrogate minibuffer frame, we
831 can use `other-window' to switch between all the frames using
832 that minibuffer frame, and the focus redirection will follow us
833 around. */
834 if (track)
836 Lisp_Object tail;
838 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
840 Lisp_Object focus;
842 if (!FRAMEP (XCAR (tail)))
843 abort ();
845 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
847 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
848 Fredirect_frame_focus (XCAR (tail), frame);
851 #else /* ! 0 */
852 /* Instead, apply it only to the frame we're pointing to. */
853 #ifdef HAVE_WINDOW_SYSTEM
854 if (track && FRAME_WINDOW_P (XFRAME (frame)))
856 Lisp_Object focus, xfocus;
858 xfocus = x_get_focus_frame (XFRAME (frame));
859 if (FRAMEP (xfocus))
861 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
862 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
863 Fredirect_frame_focus (xfocus, frame);
866 #endif /* HAVE_X_WINDOWS */
867 #endif /* ! 0 */
869 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
870 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
872 if (FRAME_TERMCAP_P (XFRAME (selected_frame))
873 && FRAME_TERMCAP_P (XFRAME (frame))
874 && FRAME_TTY (XFRAME (selected_frame)) == FRAME_TTY (XFRAME (frame)))
876 XFRAME (selected_frame)->async_visible = 2; /* obscured */
877 XFRAME (frame)->async_visible = 1;
878 FRAME_TTY (XFRAME (frame))->top_frame = frame;
881 selected_frame = frame;
882 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
883 last_nonminibuf_frame = XFRAME (selected_frame);
885 Fselect_window (XFRAME (frame)->selected_window, Qnil);
887 #ifndef WINDOWSNT
888 /* Make sure to switch the tty color mode to that of the newly
889 selected frame. */
890 sf = SELECTED_FRAME ();
891 if (FRAME_TERMCAP_P (sf))
893 Lisp_Object color_mode_spec, color_mode;
895 color_mode_spec = assq_no_quit (Qtty_color_mode, sf->param_alist);
896 if (CONSP (color_mode_spec))
897 color_mode = XCDR (color_mode_spec);
898 else
899 color_mode = make_number (0);
900 set_tty_color_mode (sf, color_mode);
902 #endif /* !WINDOWSNT */
904 /* We want to make sure that the next event generates a frame-switch
905 event to the appropriate frame. This seems kludgy to me, but
906 before you take it out, make sure that evaluating something like
907 (select-window (frame-root-window (new-frame))) doesn't end up
908 with your typing being interpreted in the new frame instead of
909 the one you're actually typing in. */
910 internal_last_event_frame = Qnil;
912 return frame;
915 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 1, "e",
916 doc: /* Select the frame FRAME.
917 Subsequent editing commands apply to its selected window.
918 The selection of FRAME lasts until the next time the user does
919 something to select a different frame, or until the next time this
920 function is called. If you are using a window system, the previously
921 selected frame may be restored as the selected frame after return to
922 the command loop, because it still may have the window system's input
923 focus. On a text-only terminal, the next redisplay will display FRAME.
925 This function returns FRAME, or nil if FRAME has been deleted. */)
926 (frame)
927 Lisp_Object frame;
929 return do_switch_frame (frame, 1, 0);
933 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
934 doc: /* Handle a switch-frame event EVENT.
935 Switch-frame events are usually bound to this function.
936 A switch-frame event tells Emacs that the window manager has requested
937 that the user's events be directed to the frame mentioned in the event.
938 This function selects the selected window of the frame of EVENT.
940 If EVENT is frame object, handle it as if it were a switch-frame event
941 to that frame. */)
942 (event)
943 Lisp_Object event;
945 /* Preserve prefix arg that the command loop just cleared. */
946 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
947 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
948 return do_switch_frame (event, 0, 0);
951 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
952 doc: /* Return the frame that is now selected. */)
955 return selected_frame;
958 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
959 doc: /* Return the frame object that window WINDOW is on. */)
960 (window)
961 Lisp_Object window;
963 CHECK_LIVE_WINDOW (window);
964 return XWINDOW (window)->frame;
967 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
968 doc: /* Returns the topmost, leftmost window of FRAME.
969 If omitted, FRAME defaults to the currently selected frame. */)
970 (frame)
971 Lisp_Object frame;
973 Lisp_Object w;
975 if (NILP (frame))
976 w = SELECTED_FRAME ()->root_window;
977 else
979 CHECK_LIVE_FRAME (frame);
980 w = XFRAME (frame)->root_window;
982 while (NILP (XWINDOW (w)->buffer))
984 if (! NILP (XWINDOW (w)->hchild))
985 w = XWINDOW (w)->hchild;
986 else if (! NILP (XWINDOW (w)->vchild))
987 w = XWINDOW (w)->vchild;
988 else
989 abort ();
991 return w;
994 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
995 Sactive_minibuffer_window, 0, 0, 0,
996 doc: /* Return the currently active minibuffer window, or nil if none. */)
999 return minibuf_level ? minibuf_window : Qnil;
1002 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
1003 doc: /* Returns the root-window of FRAME.
1004 If omitted, FRAME defaults to the currently selected frame. */)
1005 (frame)
1006 Lisp_Object frame;
1008 Lisp_Object window;
1010 if (NILP (frame))
1011 window = SELECTED_FRAME ()->root_window;
1012 else
1014 CHECK_LIVE_FRAME (frame);
1015 window = XFRAME (frame)->root_window;
1018 return window;
1021 DEFUN ("frame-selected-window", Fframe_selected_window,
1022 Sframe_selected_window, 0, 1, 0,
1023 doc: /* Return the selected window of frame object FRAME.
1024 If omitted, FRAME defaults to the currently selected frame. */)
1025 (frame)
1026 Lisp_Object frame;
1028 Lisp_Object window;
1030 if (NILP (frame))
1031 window = SELECTED_FRAME ()->selected_window;
1032 else
1034 CHECK_LIVE_FRAME (frame);
1035 window = XFRAME (frame)->selected_window;
1038 return window;
1041 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
1042 Sset_frame_selected_window, 2, 2, 0,
1043 doc: /* Set the selected window of frame object FRAME to WINDOW.
1044 Return WINDOW.
1045 If FRAME is nil, the selected frame is used.
1046 If FRAME is the selected frame, this makes WINDOW the selected window. */)
1047 (frame, window)
1048 Lisp_Object frame, window;
1050 if (NILP (frame))
1051 frame = selected_frame;
1053 CHECK_LIVE_FRAME (frame);
1054 CHECK_LIVE_WINDOW (window);
1056 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
1057 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
1059 if (EQ (frame, selected_frame))
1060 return Fselect_window (window, Qnil);
1062 return XFRAME (frame)->selected_window = window;
1066 DEFUN ("frame-list", Fframe_list, Sframe_list,
1067 0, 0, 0,
1068 doc: /* Return a list of all frames. */)
1071 Lisp_Object frames;
1072 frames = Fcopy_sequence (Vframe_list);
1073 #ifdef HAVE_WINDOW_SYSTEM
1074 if (FRAMEP (tip_frame))
1075 frames = Fdelq (tip_frame, frames);
1076 #endif
1077 return frames;
1080 /* Return the next frame in the frame list after FRAME.
1081 If MINIBUF is nil, exclude minibuffer-only frames.
1082 If MINIBUF is a window, include only its own frame
1083 and any frame now using that window as the minibuffer.
1084 If MINIBUF is `visible', include all visible frames.
1085 If MINIBUF is 0, include all visible and iconified frames.
1086 Otherwise, include all frames. */
1088 static Lisp_Object
1089 next_frame (frame, minibuf)
1090 Lisp_Object frame;
1091 Lisp_Object minibuf;
1093 Lisp_Object tail;
1094 int passed = 0;
1096 /* There must always be at least one frame in Vframe_list. */
1097 if (! CONSP (Vframe_list))
1098 abort ();
1100 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
1101 forever. Forestall that. */
1102 CHECK_LIVE_FRAME (frame);
1104 while (1)
1105 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1107 Lisp_Object f;
1109 f = XCAR (tail);
1111 if (passed
1112 && ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1113 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1114 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1115 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame)))))
1117 /* Decide whether this frame is eligible to be returned. */
1119 /* If we've looped all the way around without finding any
1120 eligible frames, return the original frame. */
1121 if (EQ (f, frame))
1122 return f;
1124 /* Let minibuf decide if this frame is acceptable. */
1125 if (NILP (minibuf))
1127 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1128 return f;
1130 else if (EQ (minibuf, Qvisible))
1132 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1133 if (FRAME_VISIBLE_P (XFRAME (f)))
1134 return f;
1136 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
1138 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1139 if (FRAME_VISIBLE_P (XFRAME (f))
1140 || FRAME_ICONIFIED_P (XFRAME (f)))
1141 return f;
1143 else if (WINDOWP (minibuf))
1145 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1146 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1147 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1148 FRAME_FOCUS_FRAME (XFRAME (f))))
1149 return f;
1151 else
1152 return f;
1155 if (EQ (frame, f))
1156 passed++;
1160 /* Return the previous frame in the frame list before FRAME.
1161 If MINIBUF is nil, exclude minibuffer-only frames.
1162 If MINIBUF is a window, include only its own frame
1163 and any frame now using that window as the minibuffer.
1164 If MINIBUF is `visible', include all visible frames.
1165 If MINIBUF is 0, include all visible and iconified frames.
1166 Otherwise, include all frames. */
1168 static Lisp_Object
1169 prev_frame (frame, minibuf)
1170 Lisp_Object frame;
1171 Lisp_Object minibuf;
1173 Lisp_Object tail;
1174 Lisp_Object prev;
1176 /* There must always be at least one frame in Vframe_list. */
1177 if (! CONSP (Vframe_list))
1178 abort ();
1180 prev = Qnil;
1181 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1183 Lisp_Object f;
1185 f = XCAR (tail);
1186 if (!FRAMEP (f))
1187 abort ();
1189 if (EQ (frame, f) && !NILP (prev))
1190 return prev;
1192 if ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1193 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1194 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1195 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame))))
1197 /* Decide whether this frame is eligible to be returned,
1198 according to minibuf. */
1199 if (NILP (minibuf))
1201 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1202 prev = f;
1204 else if (WINDOWP (minibuf))
1206 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1207 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1208 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1209 FRAME_FOCUS_FRAME (XFRAME (f))))
1210 prev = f;
1212 else if (EQ (minibuf, Qvisible))
1214 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1215 if (FRAME_VISIBLE_P (XFRAME (f)))
1216 prev = f;
1218 else if (XFASTINT (minibuf) == 0)
1220 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1221 if (FRAME_VISIBLE_P (XFRAME (f))
1222 || FRAME_ICONIFIED_P (XFRAME (f)))
1223 prev = f;
1225 else
1226 prev = f;
1230 /* We've scanned the entire list. */
1231 if (NILP (prev))
1232 /* We went through the whole frame list without finding a single
1233 acceptable frame. Return the original frame. */
1234 return frame;
1235 else
1236 /* There were no acceptable frames in the list before FRAME; otherwise,
1237 we would have returned directly from the loop. Since PREV is the last
1238 acceptable frame in the list, return it. */
1239 return prev;
1243 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1244 doc: /* Return the next frame in the frame list after FRAME.
1245 It considers only frames on the same terminal as FRAME.
1246 By default, skip minibuffer-only frames.
1247 If omitted, FRAME defaults to the selected frame.
1248 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1249 If MINIFRAME is a window, include only its own frame
1250 and any frame now using that window as the minibuffer.
1251 If MINIFRAME is `visible', include all visible frames.
1252 If MINIFRAME is 0, include all visible and iconified frames.
1253 Otherwise, include all frames. */)
1254 (frame, miniframe)
1255 Lisp_Object frame, miniframe;
1257 if (NILP (frame))
1258 frame = selected_frame;
1260 CHECK_LIVE_FRAME (frame);
1261 return next_frame (frame, miniframe);
1264 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1265 doc: /* Return the previous frame in the frame list before FRAME.
1266 It considers only frames on the same terminal as FRAME.
1267 By default, skip minibuffer-only frames.
1268 If omitted, FRAME defaults to the selected frame.
1269 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1270 If MINIFRAME is a window, include only its own frame
1271 and any frame now using that window as the minibuffer.
1272 If MINIFRAME is `visible', include all visible frames.
1273 If MINIFRAME is 0, include all visible and iconified frames.
1274 Otherwise, include all frames. */)
1275 (frame, miniframe)
1276 Lisp_Object frame, miniframe;
1278 if (NILP (frame))
1279 frame = selected_frame;
1280 CHECK_LIVE_FRAME (frame);
1281 return prev_frame (frame, miniframe);
1284 /* Return 1 if it is ok to delete frame F;
1285 0 if all frames aside from F are invisible.
1286 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1289 other_visible_frames (f)
1290 FRAME_PTR f;
1292 /* We know the selected frame is visible,
1293 so if F is some other frame, it can't be the sole visible one. */
1294 if (f == SELECTED_FRAME ())
1296 Lisp_Object frames;
1297 int count = 0;
1299 for (frames = Vframe_list;
1300 CONSP (frames);
1301 frames = XCDR (frames))
1303 Lisp_Object this;
1305 this = XCAR (frames);
1306 /* Verify that the frame's window still exists
1307 and we can still talk to it. And note any recent change
1308 in visibility. */
1309 #ifdef HAVE_WINDOW_SYSTEM
1310 if (FRAME_WINDOW_P (XFRAME (this)))
1312 x_sync (XFRAME (this));
1313 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1315 #endif
1317 if (FRAME_VISIBLE_P (XFRAME (this))
1318 || FRAME_ICONIFIED_P (XFRAME (this))
1319 /* Allow deleting the terminal frame when at least
1320 one X frame exists! */
1321 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1322 count++;
1324 return count > 1;
1326 return 1;
1329 /* Error handler for `delete-frame-functions'. */
1330 static Lisp_Object
1331 delete_frame_handler (Lisp_Object arg)
1333 add_to_log ("Error during `delete-frame': %s", arg, Qnil);
1334 return Qnil;
1337 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1338 doc: /* Delete FRAME, permanently eliminating it from use.
1339 If omitted, FRAME defaults to the selected frame.
1340 A frame may not be deleted if its minibuffer is used by other frames.
1341 Normally, you may not delete a frame if all other frames are invisible,
1342 but if the second optional argument FORCE is non-nil, you may do so.
1344 This function runs `delete-frame-functions' before actually deleting the
1345 frame, unless the frame is a tooltip.
1346 The functions are run with one arg, the frame to be deleted.
1347 But FORCE inhibits this too. */)
1348 /* FORCE is non-nil when handling a disconnected terminal. */
1349 (frame, force)
1350 Lisp_Object frame, force;
1352 struct frame *f;
1353 struct frame *sf = SELECTED_FRAME ();
1354 struct kboard *kb;
1356 int minibuffer_selected;
1358 if (EQ (frame, Qnil))
1360 f = sf;
1361 XSETFRAME (frame, f);
1363 else
1365 CHECK_FRAME (frame);
1366 f = XFRAME (frame);
1369 if (! FRAME_LIVE_P (f))
1370 return Qnil;
1372 if (NILP (force) && !other_visible_frames (f))
1373 error ("Attempt to delete the sole visible or iconified frame");
1375 #if 0
1376 /* This is a nice idea, but x_connection_closed needs to be able
1377 to delete the last frame, if it is gone. */
1378 if (NILP (XCDR (Vframe_list)))
1379 error ("Attempt to delete the only frame");
1380 #endif
1382 /* Does this frame have a minibuffer, and is it the surrogate
1383 minibuffer for any other frame? */
1384 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1386 Lisp_Object frames;
1388 for (frames = Vframe_list;
1389 CONSP (frames);
1390 frames = XCDR (frames))
1392 Lisp_Object this;
1393 this = XCAR (frames);
1395 if (! EQ (this, frame)
1396 && EQ (frame,
1397 WINDOW_FRAME (XWINDOW
1398 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1400 /* If we MUST delete this frame, delete the other first. */
1401 if (!NILP (force))
1402 Fdelete_frame (this, force);
1403 else
1404 error ("Attempt to delete a surrogate minibuffer frame");
1409 /* Run `delete-frame-functions'
1410 unless FORCE is `noelisp' or frame is a tooltip.
1411 FORCE is set to `noelisp' when handling a disconnect from the terminal,
1412 so we don't dare call Lisp code. */
1413 if (!NILP (Vrun_hooks) && !EQ (force, Qnoelisp)
1414 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
1416 Lisp_Object args[2];
1417 struct gcpro gcpro1, gcpro2;
1419 /* Don't let a rogue function in `delete-frame-functions'
1420 prevent the frame deletion. */
1421 GCPRO2 (args[0], args[1]);
1422 args[0] = intern ("delete-frame-functions");
1423 args[1] = frame;
1424 internal_condition_case_2 (Frun_hook_with_args, 2, args,
1425 Qt, delete_frame_handler);
1426 UNGCPRO;
1429 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1430 if (! FRAME_LIVE_P (f))
1431 return Qnil;
1433 /* At this point, we are committed to deleting the frame.
1434 There is no more chance for errors to prevent it. */
1436 minibuffer_selected = EQ (minibuf_window, selected_window);
1438 /* Don't let the frame remain selected. */
1439 if (f == sf)
1441 Lisp_Object tail, frame1;
1443 /* Look for another visible frame on the same terminal. */
1444 frame1 = next_frame (frame, Qvisible);
1446 /* If there is none, find *some* other frame. */
1447 if (NILP (frame1) || EQ (frame1, frame))
1449 FOR_EACH_FRAME (tail, frame1)
1451 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
1452 break;
1456 do_switch_frame (frame1, 0, 1);
1457 sf = SELECTED_FRAME ();
1460 /* Don't allow minibuf_window to remain on a deleted frame. */
1461 if (EQ (f->minibuffer_window, minibuf_window))
1463 Fset_window_buffer (sf->minibuffer_window,
1464 XWINDOW (minibuf_window)->buffer, Qnil);
1465 minibuf_window = sf->minibuffer_window;
1467 /* If the dying minibuffer window was selected,
1468 select the new one. */
1469 if (minibuffer_selected)
1470 Fselect_window (minibuf_window, Qnil);
1473 /* Don't let echo_area_window to remain on a deleted frame. */
1474 if (EQ (f->minibuffer_window, echo_area_window))
1475 echo_area_window = sf->minibuffer_window;
1477 /* Clear any X selections for this frame. */
1478 #ifdef HAVE_X_WINDOWS
1479 if (FRAME_X_P (f))
1480 x_clear_frame_selections (f);
1481 #endif
1482 #ifdef MAC_OS
1483 if (FRAME_MAC_P (f))
1484 x_clear_frame_selections (f);
1485 #endif
1487 /* Free glyphs.
1488 This function must be called before the window tree of the
1489 frame is deleted because windows contain dynamically allocated
1490 memory. */
1491 free_glyphs (f);
1493 #ifdef USE_FONT_BACKEND
1494 /* Give chance to each font driver to free a frame specific data. */
1495 font_update_drivers (f, Qnil);
1496 #endif /* USE_FONT_BACKEND */
1498 /* Mark all the windows that used to be on FRAME as deleted, and then
1499 remove the reference to them. */
1500 delete_all_subwindows (XWINDOW (f->root_window));
1501 f->root_window = Qnil;
1503 Vframe_list = Fdelq (frame, Vframe_list);
1504 FRAME_SET_VISIBLE (f, 0);
1506 if (f->namebuf)
1507 xfree (f->namebuf);
1508 if (f->decode_mode_spec_buffer)
1509 xfree (f->decode_mode_spec_buffer);
1510 if (FRAME_INSERT_COST (f))
1511 xfree (FRAME_INSERT_COST (f));
1512 if (FRAME_DELETEN_COST (f))
1513 xfree (FRAME_DELETEN_COST (f));
1514 if (FRAME_INSERTN_COST (f))
1515 xfree (FRAME_INSERTN_COST (f));
1516 if (FRAME_DELETE_COST (f))
1517 xfree (FRAME_DELETE_COST (f));
1518 if (FRAME_MESSAGE_BUF (f))
1519 xfree (FRAME_MESSAGE_BUF (f));
1521 /* Since some events are handled at the interrupt level, we may get
1522 an event for f at any time; if we zero out the frame's terminal
1523 now, then we may trip up the event-handling code. Instead, we'll
1524 promise that the terminal of the frame must be valid until we
1525 have called the window-system-dependent frame destruction
1526 routine. */
1528 if (FRAME_TERMINAL (f)->delete_frame_hook)
1529 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
1532 struct terminal *terminal = FRAME_TERMINAL (f);
1533 f->output_data.nothing = 0;
1534 f->terminal = 0; /* Now the frame is dead. */
1536 /* If needed, delete the terminal that this frame was on.
1537 (This must be done after the frame is killed.) */
1538 terminal->reference_count--;
1539 if (terminal->reference_count == 0)
1541 Lisp_Object tmp;
1542 XSETTERMINAL (tmp, terminal);
1544 kb = NULL;
1545 Fdelete_terminal (tmp, NILP (force) ? Qt : force);
1547 #ifdef MULTI_KBOARD
1548 else
1549 kb = terminal->kboard;
1550 #endif
1553 /* If we've deleted the last_nonminibuf_frame, then try to find
1554 another one. */
1555 if (f == last_nonminibuf_frame)
1557 Lisp_Object frames;
1559 last_nonminibuf_frame = 0;
1561 for (frames = Vframe_list;
1562 CONSP (frames);
1563 frames = XCDR (frames))
1565 f = XFRAME (XCAR (frames));
1566 if (!FRAME_MINIBUF_ONLY_P (f))
1568 last_nonminibuf_frame = f;
1569 break;
1574 /* If there's no other frame on the same kboard, get out of
1575 single-kboard state if we're in it for this kboard. */
1576 if (kb != NULL)
1578 Lisp_Object frames;
1579 /* Some frame we found on the same kboard, or nil if there are none. */
1580 Lisp_Object frame_on_same_kboard;
1582 frame_on_same_kboard = Qnil;
1584 for (frames = Vframe_list;
1585 CONSP (frames);
1586 frames = XCDR (frames))
1588 Lisp_Object this;
1589 struct frame *f1;
1591 this = XCAR (frames);
1592 if (!FRAMEP (this))
1593 abort ();
1594 f1 = XFRAME (this);
1596 if (kb == FRAME_KBOARD (f1))
1597 frame_on_same_kboard = this;
1600 if (NILP (frame_on_same_kboard))
1601 not_single_kboard_state (kb);
1605 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1606 find another one. Prefer minibuffer-only frames, but also notice
1607 frames with other windows. */
1608 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
1610 Lisp_Object frames;
1612 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1613 Lisp_Object frame_with_minibuf;
1614 /* Some frame we found on the same kboard, or nil if there are none. */
1615 Lisp_Object frame_on_same_kboard;
1617 frame_on_same_kboard = Qnil;
1618 frame_with_minibuf = Qnil;
1620 for (frames = Vframe_list;
1621 CONSP (frames);
1622 frames = XCDR (frames))
1624 Lisp_Object this;
1625 struct frame *f1;
1627 this = XCAR (frames);
1628 if (!FRAMEP (this))
1629 abort ();
1630 f1 = XFRAME (this);
1632 /* Consider only frames on the same kboard
1633 and only those with minibuffers. */
1634 if (kb == FRAME_KBOARD (f1)
1635 && FRAME_HAS_MINIBUF_P (f1))
1637 frame_with_minibuf = this;
1638 if (FRAME_MINIBUF_ONLY_P (f1))
1639 break;
1642 if (kb == FRAME_KBOARD (f1))
1643 frame_on_same_kboard = this;
1646 if (!NILP (frame_on_same_kboard))
1648 /* We know that there must be some frame with a minibuffer out
1649 there. If this were not true, all of the frames present
1650 would have to be minibufferless, which implies that at some
1651 point their minibuffer frames must have been deleted, but
1652 that is prohibited at the top; you can't delete surrogate
1653 minibuffer frames. */
1654 if (NILP (frame_with_minibuf))
1655 abort ();
1657 kb->Vdefault_minibuffer_frame = frame_with_minibuf;
1659 else
1660 /* No frames left on this kboard--say no minibuffer either. */
1661 kb->Vdefault_minibuffer_frame = Qnil;
1664 /* Cause frame titles to update--necessary if we now have just one frame. */
1665 update_mode_lines = 1;
1667 return Qnil;
1670 /* Return mouse position in character cell units. */
1672 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1673 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1674 The position is given in character cells, where (0, 0) is the
1675 upper-left corner of the frame, X is the horizontal offset, and Y is
1676 the vertical offset.
1677 If Emacs is running on a mouseless terminal or hasn't been programmed
1678 to read the mouse position, it returns the selected frame for FRAME
1679 and nil for X and Y.
1680 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1681 passing the normal return value to that function as an argument,
1682 and returns whatever that function returns. */)
1685 FRAME_PTR f;
1686 Lisp_Object lispy_dummy;
1687 enum scroll_bar_part party_dummy;
1688 Lisp_Object x, y, retval;
1689 int col, row;
1690 unsigned long long_dummy;
1691 struct gcpro gcpro1;
1693 f = SELECTED_FRAME ();
1694 x = y = Qnil;
1696 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1697 /* It's okay for the hook to refrain from storing anything. */
1698 if (FRAME_TERMINAL (f)->mouse_position_hook)
1699 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1700 &lispy_dummy, &party_dummy,
1701 &x, &y,
1702 &long_dummy);
1703 if (! NILP (x))
1705 col = XINT (x);
1706 row = XINT (y);
1707 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1708 XSETINT (x, col);
1709 XSETINT (y, row);
1711 #endif
1712 XSETFRAME (lispy_dummy, f);
1713 retval = Fcons (lispy_dummy, Fcons (x, y));
1714 GCPRO1 (retval);
1715 if (!NILP (Vmouse_position_function))
1716 retval = call1 (Vmouse_position_function, retval);
1717 RETURN_UNGCPRO (retval);
1720 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1721 Smouse_pixel_position, 0, 0, 0,
1722 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1723 The position is given in pixel units, where (0, 0) is the
1724 upper-left corner of the frame, X is the horizontal offset, and Y is
1725 the vertical offset.
1726 If Emacs is running on a mouseless terminal or hasn't been programmed
1727 to read the mouse position, it returns the selected frame for FRAME
1728 and nil for X and Y. */)
1731 FRAME_PTR f;
1732 Lisp_Object lispy_dummy;
1733 enum scroll_bar_part party_dummy;
1734 Lisp_Object x, y;
1735 unsigned long long_dummy;
1737 f = SELECTED_FRAME ();
1738 x = y = Qnil;
1740 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1741 /* It's okay for the hook to refrain from storing anything. */
1742 if (FRAME_TERMINAL (f)->mouse_position_hook)
1743 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1744 &lispy_dummy, &party_dummy,
1745 &x, &y,
1746 &long_dummy);
1747 #endif
1748 XSETFRAME (lispy_dummy, f);
1749 return Fcons (lispy_dummy, Fcons (x, y));
1752 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1753 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1754 Coordinates are relative to the frame, not a window,
1755 so the coordinates of the top left character in the frame
1756 may be nonzero due to left-hand scroll bars or the menu bar.
1758 The position is given in character cells, where (0, 0) is the
1759 upper-left corner of the frame, X is the horizontal offset, and Y is
1760 the vertical offset.
1762 This function is a no-op for an X frame that is not visible.
1763 If you have just created a frame, you must wait for it to become visible
1764 before calling this function on it, like this.
1765 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1766 (frame, x, y)
1767 Lisp_Object frame, x, y;
1769 CHECK_LIVE_FRAME (frame);
1770 CHECK_NUMBER (x);
1771 CHECK_NUMBER (y);
1773 /* I think this should be done with a hook. */
1774 #ifdef HAVE_WINDOW_SYSTEM
1775 if (FRAME_WINDOW_P (XFRAME (frame)))
1776 /* Warping the mouse will cause enternotify and focus events. */
1777 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1778 #else
1779 #if defined (MSDOS) && defined (HAVE_MOUSE)
1780 if (FRAME_MSDOS_P (XFRAME (frame)))
1782 Fselect_frame (frame);
1783 mouse_moveto (XINT (x), XINT (y));
1785 #else
1786 #ifdef HAVE_GPM
1788 Fselect_frame (frame);
1789 term_mouse_moveto (XINT (x), XINT (y));
1791 #endif
1792 #endif
1793 #endif
1795 return Qnil;
1798 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1799 Sset_mouse_pixel_position, 3, 3, 0,
1800 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1801 The position is given in pixels, where (0, 0) is the upper-left corner
1802 of the frame, X is the horizontal offset, and Y is the vertical offset.
1804 Note, this is a no-op for an X frame that is not visible.
1805 If you have just created a frame, you must wait for it to become visible
1806 before calling this function on it, like this.
1807 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1808 (frame, x, y)
1809 Lisp_Object frame, x, y;
1811 CHECK_LIVE_FRAME (frame);
1812 CHECK_NUMBER (x);
1813 CHECK_NUMBER (y);
1815 /* I think this should be done with a hook. */
1816 #ifdef HAVE_WINDOW_SYSTEM
1817 if (FRAME_WINDOW_P (XFRAME (frame)))
1818 /* Warping the mouse will cause enternotify and focus events. */
1819 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1820 #else
1821 #if defined (MSDOS) && defined (HAVE_MOUSE)
1822 if (FRAME_MSDOS_P (XFRAME (frame)))
1824 Fselect_frame (frame);
1825 mouse_moveto (XINT (x), XINT (y));
1827 #else
1828 #ifdef HAVE_GPM
1830 Fselect_frame (frame);
1831 term_mouse_moveto (XINT (x), XINT (y));
1833 #endif
1834 #endif
1835 #endif
1837 return Qnil;
1840 static void make_frame_visible_1 P_ ((Lisp_Object));
1842 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1843 0, 1, "",
1844 doc: /* Make the frame FRAME visible (assuming it is an X window).
1845 If omitted, FRAME defaults to the currently selected frame. */)
1846 (frame)
1847 Lisp_Object frame;
1849 if (NILP (frame))
1850 frame = selected_frame;
1852 CHECK_LIVE_FRAME (frame);
1854 /* I think this should be done with a hook. */
1855 #ifdef HAVE_WINDOW_SYSTEM
1856 if (FRAME_WINDOW_P (XFRAME (frame)))
1858 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1859 x_make_frame_visible (XFRAME (frame));
1861 #endif
1863 make_frame_visible_1 (XFRAME (frame)->root_window);
1865 /* Make menu bar update for the Buffers and Frames menus. */
1866 windows_or_buffers_changed++;
1868 return frame;
1871 /* Update the display_time slot of the buffers shown in WINDOW
1872 and all its descendents. */
1874 static void
1875 make_frame_visible_1 (window)
1876 Lisp_Object window;
1878 struct window *w;
1880 for (;!NILP (window); window = w->next)
1882 w = XWINDOW (window);
1884 if (!NILP (w->buffer))
1885 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1887 if (!NILP (w->vchild))
1888 make_frame_visible_1 (w->vchild);
1889 if (!NILP (w->hchild))
1890 make_frame_visible_1 (w->hchild);
1894 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1895 0, 2, "",
1896 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1897 If omitted, FRAME defaults to the currently selected frame.
1898 Normally you may not make FRAME invisible if all other frames are invisible,
1899 but if the second optional argument FORCE is non-nil, you may do so. */)
1900 (frame, force)
1901 Lisp_Object frame, force;
1903 if (NILP (frame))
1904 frame = selected_frame;
1906 CHECK_LIVE_FRAME (frame);
1908 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1909 error ("Attempt to make invisible the sole visible or iconified frame");
1911 #if 0 /* This isn't logically necessary, and it can do GC. */
1912 /* Don't let the frame remain selected. */
1913 if (EQ (frame, selected_frame))
1914 do_switch_frame (next_frame (frame, Qt), 0, 0)
1915 #endif
1917 /* Don't allow minibuf_window to remain on a deleted frame. */
1918 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1920 struct frame *sf = XFRAME (selected_frame);
1921 Fset_window_buffer (sf->minibuffer_window,
1922 XWINDOW (minibuf_window)->buffer, Qnil);
1923 minibuf_window = sf->minibuffer_window;
1926 /* I think this should be done with a hook. */
1927 #ifdef HAVE_WINDOW_SYSTEM
1928 if (FRAME_WINDOW_P (XFRAME (frame)))
1929 x_make_frame_invisible (XFRAME (frame));
1930 #endif
1932 /* Make menu bar update for the Buffers and Frames menus. */
1933 windows_or_buffers_changed++;
1935 return Qnil;
1938 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1939 0, 1, "",
1940 doc: /* Make the frame FRAME into an icon.
1941 If omitted, FRAME defaults to the currently selected frame. */)
1942 (frame)
1943 Lisp_Object frame;
1945 if (NILP (frame))
1946 frame = selected_frame;
1948 CHECK_LIVE_FRAME (frame);
1950 #if 0 /* This isn't logically necessary, and it can do GC. */
1951 /* Don't let the frame remain selected. */
1952 if (EQ (frame, selected_frame))
1953 Fhandle_switch_frame (next_frame (frame, Qt));
1954 #endif
1956 /* Don't allow minibuf_window to remain on a deleted frame. */
1957 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1959 struct frame *sf = XFRAME (selected_frame);
1960 Fset_window_buffer (sf->minibuffer_window,
1961 XWINDOW (minibuf_window)->buffer, Qnil);
1962 minibuf_window = sf->minibuffer_window;
1965 /* I think this should be done with a hook. */
1966 #ifdef HAVE_WINDOW_SYSTEM
1967 if (FRAME_WINDOW_P (XFRAME (frame)))
1968 x_iconify_frame (XFRAME (frame));
1969 #endif
1971 /* Make menu bar update for the Buffers and Frames menus. */
1972 windows_or_buffers_changed++;
1974 return Qnil;
1977 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1978 1, 1, 0,
1979 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1980 A frame that is not \"visible\" is not updated and, if it works through
1981 a window system, it may not show at all.
1982 Return the symbol `icon' if frame is visible only as an icon.
1984 On a text-only terminal, all frames are considered visible, whether
1985 they are currently being displayed or not, and this function returns t
1986 for all frames. */)
1987 (frame)
1988 Lisp_Object frame;
1990 CHECK_LIVE_FRAME (frame);
1992 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1994 if (FRAME_VISIBLE_P (XFRAME (frame)))
1995 return Qt;
1996 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1997 return Qicon;
1998 return Qnil;
2001 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
2002 0, 0, 0,
2003 doc: /* Return a list of all frames now \"visible\" (being updated). */)
2006 Lisp_Object tail, frame;
2007 struct frame *f;
2008 Lisp_Object value;
2010 value = Qnil;
2011 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
2013 frame = XCAR (tail);
2014 if (!FRAMEP (frame))
2015 continue;
2016 f = XFRAME (frame);
2017 if (FRAME_VISIBLE_P (f))
2018 value = Fcons (frame, value);
2020 return value;
2024 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
2025 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
2026 If FRAME is invisible or iconified, make it visible.
2027 If you don't specify a frame, the selected frame is used.
2028 If Emacs is displaying on an ordinary terminal or some other device which
2029 doesn't support multiple overlapping frames, this function does nothing. */)
2030 (frame)
2031 Lisp_Object frame;
2033 struct frame *f;
2034 if (NILP (frame))
2035 frame = selected_frame;
2037 CHECK_LIVE_FRAME (frame);
2039 f = XFRAME (frame);
2041 /* Do like the documentation says. */
2042 Fmake_frame_visible (frame);
2044 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2045 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
2047 return Qnil;
2050 /* Should we have a corresponding function called Flower_Power? */
2051 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
2052 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
2053 If you don't specify a frame, the selected frame is used.
2054 If Emacs is displaying on an ordinary terminal or some other device which
2055 doesn't support multiple overlapping frames, this function does nothing. */)
2056 (frame)
2057 Lisp_Object frame;
2059 struct frame *f;
2061 if (NILP (frame))
2062 frame = selected_frame;
2064 CHECK_LIVE_FRAME (frame);
2066 f = XFRAME (frame);
2068 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2069 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
2071 return Qnil;
2075 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
2076 1, 2, 0,
2077 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
2078 In other words, switch-frame events caused by events in FRAME will
2079 request a switch to FOCUS-FRAME, and `last-event-frame' will be
2080 FOCUS-FRAME after reading an event typed at FRAME.
2082 If FOCUS-FRAME is omitted or nil, any existing redirection is
2083 cancelled, and the frame again receives its own keystrokes.
2085 Focus redirection is useful for temporarily redirecting keystrokes to
2086 a surrogate minibuffer frame when a frame doesn't have its own
2087 minibuffer window.
2089 A frame's focus redirection can be changed by `select-frame'. If frame
2090 FOO is selected, and then a different frame BAR is selected, any
2091 frames redirecting their focus to FOO are shifted to redirect their
2092 focus to BAR. This allows focus redirection to work properly when the
2093 user switches from one frame to another using `select-window'.
2095 This means that a frame whose focus is redirected to itself is treated
2096 differently from a frame whose focus is redirected to nil; the former
2097 is affected by `select-frame', while the latter is not.
2099 The redirection lasts until `redirect-frame-focus' is called to change it. */)
2100 (frame, focus_frame)
2101 Lisp_Object frame, focus_frame;
2103 struct frame *f;
2105 /* Note that we don't check for a live frame here. It's reasonable
2106 to redirect the focus of a frame you're about to delete, if you
2107 know what other frame should receive those keystrokes. */
2108 CHECK_FRAME (frame);
2110 if (! NILP (focus_frame))
2111 CHECK_LIVE_FRAME (focus_frame);
2113 f = XFRAME (frame);
2115 f->focus_frame = focus_frame;
2117 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
2118 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
2120 return Qnil;
2124 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
2125 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
2126 This returns nil if FRAME's focus is not redirected.
2127 See `redirect-frame-focus'. */)
2128 (frame)
2129 Lisp_Object frame;
2131 CHECK_LIVE_FRAME (frame);
2133 return FRAME_FOCUS_FRAME (XFRAME (frame));
2138 /* Return the value of frame parameter PROP in frame FRAME. */
2140 Lisp_Object
2141 get_frame_param (frame, prop)
2142 register struct frame *frame;
2143 Lisp_Object prop;
2145 register Lisp_Object tem;
2147 tem = Fassq (prop, frame->param_alist);
2148 if (EQ (tem, Qnil))
2149 return tem;
2150 return Fcdr (tem);
2153 /* Return the buffer-predicate of the selected frame. */
2155 Lisp_Object
2156 frame_buffer_predicate (frame)
2157 Lisp_Object frame;
2159 return XFRAME (frame)->buffer_predicate;
2162 /* Return the buffer-list of the selected frame. */
2164 Lisp_Object
2165 frame_buffer_list (frame)
2166 Lisp_Object frame;
2168 return XFRAME (frame)->buffer_list;
2171 /* Set the buffer-list of the selected frame. */
2173 void
2174 set_frame_buffer_list (frame, list)
2175 Lisp_Object frame, list;
2177 XFRAME (frame)->buffer_list = list;
2180 /* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
2182 void
2183 frames_discard_buffer (buffer)
2184 Lisp_Object buffer;
2186 Lisp_Object frame, tail;
2188 FOR_EACH_FRAME (tail, frame)
2190 XFRAME (frame)->buffer_list
2191 = Fdelq (buffer, XFRAME (frame)->buffer_list);
2192 XFRAME (frame)->buried_buffer_list
2193 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
2197 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
2198 If the alist already has an element for PROP, we change it. */
2200 void
2201 store_in_alist (alistptr, prop, val)
2202 Lisp_Object *alistptr, val;
2203 Lisp_Object prop;
2205 register Lisp_Object tem;
2207 tem = Fassq (prop, *alistptr);
2208 if (EQ (tem, Qnil))
2209 *alistptr = Fcons (Fcons (prop, val), *alistptr);
2210 else
2211 Fsetcdr (tem, val);
2214 static int
2215 frame_name_fnn_p (str, len)
2216 char *str;
2217 EMACS_INT len;
2219 if (len > 1 && str[0] == 'F')
2221 char *end_ptr;
2223 strtol (str + 1, &end_ptr, 10);
2225 if (end_ptr == str + len)
2226 return 1;
2228 return 0;
2231 /* Set the name of the terminal frame. Also used by MSDOS frames.
2232 Modeled after x_set_name which is used for WINDOW frames. */
2234 static void
2235 set_term_frame_name (f, name)
2236 struct frame *f;
2237 Lisp_Object name;
2239 f->explicit_name = ! NILP (name);
2241 /* If NAME is nil, set the name to F<num>. */
2242 if (NILP (name))
2244 char namebuf[20];
2246 /* Check for no change needed in this very common case
2247 before we do any consing. */
2248 if (frame_name_fnn_p (SDATA (f->name),
2249 SBYTES (f->name)))
2250 return;
2252 tty_frame_count++;
2253 sprintf (namebuf, "F%d", tty_frame_count);
2254 name = build_string (namebuf);
2256 else
2258 CHECK_STRING (name);
2260 /* Don't change the name if it's already NAME. */
2261 if (! NILP (Fstring_equal (name, f->name)))
2262 return;
2264 /* Don't allow the user to set the frame name to F<num>, so it
2265 doesn't clash with the names we generate for terminal frames. */
2266 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
2267 error ("Frame names of the form F<num> are usurped by Emacs");
2270 f->name = name;
2271 update_mode_lines = 1;
2274 void
2275 store_frame_param (f, prop, val)
2276 struct frame *f;
2277 Lisp_Object prop, val;
2279 register Lisp_Object old_alist_elt;
2281 /* The buffer-list parameters are stored in a special place and not
2282 in the alist. */
2283 if (EQ (prop, Qbuffer_list))
2285 f->buffer_list = val;
2286 return;
2288 if (EQ (prop, Qburied_buffer_list))
2290 f->buried_buffer_list = val;
2291 return;
2294 /* If PROP is a symbol which is supposed to have frame-local values,
2295 and it is set up based on this frame, switch to the global
2296 binding. That way, we can create or alter the frame-local binding
2297 without messing up the symbol's status. */
2298 if (SYMBOLP (prop))
2300 Lisp_Object valcontents;
2301 valcontents = SYMBOL_VALUE (prop);
2302 if ((BUFFER_LOCAL_VALUEP (valcontents))
2303 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2304 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
2305 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2306 swap_in_global_binding (prop);
2309 #ifndef WINDOWSNT
2310 /* The tty color mode needs to be set before the frame's parameter
2311 alist is updated with the new value, because set_tty_color_mode
2312 wants to look at the old mode. */
2313 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode))
2314 set_tty_color_mode (f, val);
2315 #endif
2317 /* Update the frame parameter alist. */
2318 old_alist_elt = Fassq (prop, f->param_alist);
2319 if (EQ (old_alist_elt, Qnil))
2320 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2321 else
2322 Fsetcdr (old_alist_elt, val);
2324 /* Update some other special parameters in their special places
2325 in addition to the alist. */
2327 if (EQ (prop, Qbuffer_predicate))
2328 f->buffer_predicate = val;
2330 if (! FRAME_WINDOW_P (f))
2332 if (EQ (prop, Qmenu_bar_lines))
2333 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2334 else if (EQ (prop, Qname))
2335 set_term_frame_name (f, val);
2338 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2340 if (! MINI_WINDOW_P (XWINDOW (val)))
2341 error ("Surrogate minibuffer windows must be minibuffer windows");
2343 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2344 && !EQ (val, f->minibuffer_window))
2345 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2347 /* Install the chosen minibuffer window, with proper buffer. */
2348 f->minibuffer_window = val;
2352 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2353 doc: /* Return the parameters-alist of frame FRAME.
2354 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2355 The meaningful PARMs depend on the kind of frame.
2356 If FRAME is omitted, return information on the currently selected frame. */)
2357 (frame)
2358 Lisp_Object frame;
2360 Lisp_Object alist;
2361 FRAME_PTR f;
2362 int height, width;
2363 struct gcpro gcpro1;
2365 if (NILP (frame))
2366 frame = selected_frame;
2368 CHECK_FRAME (frame);
2369 f = XFRAME (frame);
2371 if (!FRAME_LIVE_P (f))
2372 return Qnil;
2374 alist = Fcopy_alist (f->param_alist);
2375 GCPRO1 (alist);
2377 if (!FRAME_WINDOW_P (f))
2379 int fg = FRAME_FOREGROUND_PIXEL (f);
2380 int bg = FRAME_BACKGROUND_PIXEL (f);
2381 Lisp_Object elt;
2383 /* If the frame's parameter alist says the colors are
2384 unspecified and reversed, take the frame's background pixel
2385 for foreground and vice versa. */
2386 elt = Fassq (Qforeground_color, alist);
2387 if (CONSP (elt) && STRINGP (XCDR (elt)))
2389 if (strncmp (SDATA (XCDR (elt)),
2390 unspecified_bg,
2391 SCHARS (XCDR (elt))) == 0)
2392 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2393 else if (strncmp (SDATA (XCDR (elt)),
2394 unspecified_fg,
2395 SCHARS (XCDR (elt))) == 0)
2396 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2398 else
2399 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2400 elt = Fassq (Qbackground_color, alist);
2401 if (CONSP (elt) && STRINGP (XCDR (elt)))
2403 if (strncmp (SDATA (XCDR (elt)),
2404 unspecified_fg,
2405 SCHARS (XCDR (elt))) == 0)
2406 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2407 else if (strncmp (SDATA (XCDR (elt)),
2408 unspecified_bg,
2409 SCHARS (XCDR (elt))) == 0)
2410 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2412 else
2413 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2414 store_in_alist (&alist, intern ("font"),
2415 build_string (FRAME_MSDOS_P (f)
2416 ? "ms-dos"
2417 : FRAME_W32_P (f) ? "w32term"
2418 :"tty"));
2420 store_in_alist (&alist, Qname, f->name);
2421 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2422 store_in_alist (&alist, Qheight, make_number (height));
2423 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2424 store_in_alist (&alist, Qwidth, make_number (width));
2425 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2426 store_in_alist (&alist, Qminibuffer,
2427 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2428 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2429 : FRAME_MINIBUF_WINDOW (f)));
2430 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2431 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2432 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
2434 /* I think this should be done with a hook. */
2435 #ifdef HAVE_WINDOW_SYSTEM
2436 if (FRAME_WINDOW_P (f))
2437 x_report_frame_params (f, &alist);
2438 else
2439 #endif
2441 /* This ought to be correct in f->param_alist for an X frame. */
2442 Lisp_Object lines;
2443 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2444 store_in_alist (&alist, Qmenu_bar_lines, lines);
2447 UNGCPRO;
2448 return alist;
2452 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2453 doc: /* Return FRAME's value for parameter PARAMETER.
2454 If FRAME is nil, describe the currently selected frame. */)
2455 (frame, parameter)
2456 Lisp_Object frame, parameter;
2458 struct frame *f;
2459 Lisp_Object value;
2461 if (NILP (frame))
2462 frame = selected_frame;
2463 else
2464 CHECK_FRAME (frame);
2465 CHECK_SYMBOL (parameter);
2467 f = XFRAME (frame);
2468 value = Qnil;
2470 if (FRAME_LIVE_P (f))
2472 /* Avoid consing in frequent cases. */
2473 if (EQ (parameter, Qname))
2474 value = f->name;
2475 #ifdef HAVE_X_WINDOWS
2476 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2477 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2478 #endif /* HAVE_X_WINDOWS */
2479 else if (EQ (parameter, Qbackground_color)
2480 || EQ (parameter, Qforeground_color))
2482 value = Fassq (parameter, f->param_alist);
2483 if (CONSP (value))
2485 value = XCDR (value);
2486 /* Fframe_parameters puts the actual fg/bg color names,
2487 even if f->param_alist says otherwise. This is
2488 important when param_alist's notion of colors is
2489 "unspecified". We need to do the same here. */
2490 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2492 const char *color_name;
2493 EMACS_INT csz;
2495 if (EQ (parameter, Qbackground_color))
2497 color_name = SDATA (value);
2498 csz = SCHARS (value);
2499 if (strncmp (color_name, unspecified_bg, csz) == 0)
2500 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2501 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2502 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2504 else if (EQ (parameter, Qforeground_color))
2506 color_name = SDATA (value);
2507 csz = SCHARS (value);
2508 if (strncmp (color_name, unspecified_fg, csz) == 0)
2509 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2510 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2511 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2515 else
2516 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2518 else if (EQ (parameter, Qdisplay_type)
2519 || EQ (parameter, Qbackground_mode))
2520 value = Fcdr (Fassq (parameter, f->param_alist));
2521 else
2522 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2525 return value;
2529 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2530 Smodify_frame_parameters, 2, 2, 0,
2531 doc: /* Modify the parameters of frame FRAME according to ALIST.
2532 If FRAME is nil, it defaults to the selected frame.
2533 ALIST is an alist of parameters to change and their new values.
2534 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2535 The meaningful PARMs depend on the kind of frame.
2536 Undefined PARMs are ignored, but stored in the frame's parameter list
2537 so that `frame-parameters' will return them.
2539 The value of frame parameter FOO can also be accessed
2540 as a frame-local binding for the variable FOO, if you have
2541 enabled such bindings for that variable with `make-variable-frame-local'. */)
2542 (frame, alist)
2543 Lisp_Object frame, alist;
2545 FRAME_PTR f;
2546 register Lisp_Object tail, prop, val;
2548 if (EQ (frame, Qnil))
2549 frame = selected_frame;
2550 CHECK_LIVE_FRAME (frame);
2551 f = XFRAME (frame);
2553 /* I think this should be done with a hook. */
2554 #ifdef HAVE_WINDOW_SYSTEM
2555 if (FRAME_WINDOW_P (f))
2556 x_set_frame_parameters (f, alist);
2557 else
2558 #endif
2559 #ifdef MSDOS
2560 if (FRAME_MSDOS_P (f))
2561 IT_set_frame_parameters (f, alist);
2562 else
2563 #endif
2566 int length = XINT (Flength (alist));
2567 int i;
2568 Lisp_Object *parms
2569 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2570 Lisp_Object *values
2571 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2573 /* Extract parm names and values into those vectors. */
2575 i = 0;
2576 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2578 Lisp_Object elt;
2580 elt = Fcar (tail);
2581 parms[i] = Fcar (elt);
2582 values[i] = Fcdr (elt);
2583 i++;
2586 /* Now process them in reverse of specified order. */
2587 for (i--; i >= 0; i--)
2589 prop = parms[i];
2590 val = values[i];
2591 store_frame_param (f, prop, val);
2593 /* Changing the background color might change the background
2594 mode, so that we have to load new defface specs.
2595 Call frame-set-background-mode to do that. */
2596 if (EQ (prop, Qbackground_color))
2597 call1 (Qframe_set_background_mode, frame);
2600 return Qnil;
2603 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2604 0, 1, 0,
2605 doc: /* Height in pixels of a line in the font in frame FRAME.
2606 If FRAME is omitted, the selected frame is used.
2607 For a terminal frame, the value is always 1. */)
2608 (frame)
2609 Lisp_Object frame;
2611 struct frame *f;
2613 if (NILP (frame))
2614 frame = selected_frame;
2615 CHECK_FRAME (frame);
2616 f = XFRAME (frame);
2618 #ifdef HAVE_WINDOW_SYSTEM
2619 if (FRAME_WINDOW_P (f))
2620 return make_number (x_char_height (f));
2621 else
2622 #endif
2623 return make_number (1);
2627 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2628 0, 1, 0,
2629 doc: /* Width in pixels of characters in the font in frame FRAME.
2630 If FRAME is omitted, the selected frame is used.
2631 On a graphical screen, the width is the standard width of the default font.
2632 For a terminal screen, the value is always 1. */)
2633 (frame)
2634 Lisp_Object frame;
2636 struct frame *f;
2638 if (NILP (frame))
2639 frame = selected_frame;
2640 CHECK_FRAME (frame);
2641 f = XFRAME (frame);
2643 #ifdef HAVE_WINDOW_SYSTEM
2644 if (FRAME_WINDOW_P (f))
2645 return make_number (x_char_width (f));
2646 else
2647 #endif
2648 return make_number (1);
2651 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2652 Sframe_pixel_height, 0, 1, 0,
2653 doc: /* Return a FRAME's height in pixels.
2654 This counts only the height available for text lines,
2655 not menu bars on window-system Emacs frames.
2656 For a terminal frame, the result really gives the height in characters.
2657 If FRAME is omitted, the selected frame is used. */)
2658 (frame)
2659 Lisp_Object frame;
2661 struct frame *f;
2663 if (NILP (frame))
2664 frame = selected_frame;
2665 CHECK_FRAME (frame);
2666 f = XFRAME (frame);
2668 #ifdef HAVE_WINDOW_SYSTEM
2669 if (FRAME_WINDOW_P (f))
2670 return make_number (x_pixel_height (f));
2671 else
2672 #endif
2673 return make_number (FRAME_LINES (f));
2676 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2677 Sframe_pixel_width, 0, 1, 0,
2678 doc: /* Return FRAME's width in pixels.
2679 For a terminal frame, the result really gives the width in characters.
2680 If FRAME is omitted, the selected frame is used. */)
2681 (frame)
2682 Lisp_Object frame;
2684 struct frame *f;
2686 if (NILP (frame))
2687 frame = selected_frame;
2688 CHECK_FRAME (frame);
2689 f = XFRAME (frame);
2691 #ifdef HAVE_WINDOW_SYSTEM
2692 if (FRAME_WINDOW_P (f))
2693 return make_number (x_pixel_width (f));
2694 else
2695 #endif
2696 return make_number (FRAME_COLS (f));
2699 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2700 doc: /* Specify that the frame FRAME has LINES lines.
2701 Optional third arg non-nil means that redisplay should use LINES lines
2702 but that the idea of the actual height of the frame should not be changed. */)
2703 (frame, lines, pretend)
2704 Lisp_Object frame, lines, pretend;
2706 register struct frame *f;
2708 CHECK_NUMBER (lines);
2709 if (NILP (frame))
2710 frame = selected_frame;
2711 CHECK_LIVE_FRAME (frame);
2712 f = XFRAME (frame);
2714 /* I think this should be done with a hook. */
2715 #ifdef HAVE_WINDOW_SYSTEM
2716 if (FRAME_WINDOW_P (f))
2718 if (XINT (lines) != FRAME_LINES (f))
2719 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2720 do_pending_window_change (0);
2722 else
2723 #endif
2724 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2725 return Qnil;
2728 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2729 doc: /* Specify that the frame FRAME has COLS columns.
2730 Optional third arg non-nil means that redisplay should use COLS columns
2731 but that the idea of the actual width of the frame should not be changed. */)
2732 (frame, cols, pretend)
2733 Lisp_Object frame, cols, pretend;
2735 register struct frame *f;
2736 CHECK_NUMBER (cols);
2737 if (NILP (frame))
2738 frame = selected_frame;
2739 CHECK_LIVE_FRAME (frame);
2740 f = XFRAME (frame);
2742 /* I think this should be done with a hook. */
2743 #ifdef HAVE_WINDOW_SYSTEM
2744 if (FRAME_WINDOW_P (f))
2746 if (XINT (cols) != FRAME_COLS (f))
2747 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2748 do_pending_window_change (0);
2750 else
2751 #endif
2752 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2753 return Qnil;
2756 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2757 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2758 (frame, cols, rows)
2759 Lisp_Object frame, cols, rows;
2761 register struct frame *f;
2763 CHECK_LIVE_FRAME (frame);
2764 CHECK_NUMBER (cols);
2765 CHECK_NUMBER (rows);
2766 f = XFRAME (frame);
2768 /* I think this should be done with a hook. */
2769 #ifdef HAVE_WINDOW_SYSTEM
2770 if (FRAME_WINDOW_P (f))
2772 if (XINT (rows) != FRAME_LINES (f)
2773 || XINT (cols) != FRAME_COLS (f)
2774 || f->new_text_lines || f->new_text_cols)
2775 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2776 do_pending_window_change (0);
2778 else
2779 #endif
2780 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2782 return Qnil;
2785 DEFUN ("set-frame-position", Fset_frame_position,
2786 Sset_frame_position, 3, 3, 0,
2787 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2788 This is actually the position of the upper left corner of the frame.
2789 Negative values for XOFFSET or YOFFSET are interpreted relative to
2790 the rightmost or bottommost possible position (that stays within the screen). */)
2791 (frame, xoffset, yoffset)
2792 Lisp_Object frame, xoffset, yoffset;
2794 register struct frame *f;
2796 CHECK_LIVE_FRAME (frame);
2797 CHECK_NUMBER (xoffset);
2798 CHECK_NUMBER (yoffset);
2799 f = XFRAME (frame);
2801 /* I think this should be done with a hook. */
2802 #ifdef HAVE_WINDOW_SYSTEM
2803 if (FRAME_WINDOW_P (f))
2804 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2805 #endif
2807 return Qt;
2811 /***********************************************************************
2812 Frame Parameters
2813 ***********************************************************************/
2815 /* Connect the frame-parameter names for X frames
2816 to the ways of passing the parameter values to the window system.
2818 The name of a parameter, as a Lisp symbol,
2819 has an `x-frame-parameter' property which is an integer in Lisp
2820 that is an index in this table. */
2822 struct frame_parm_table {
2823 char *name;
2824 Lisp_Object *variable;
2827 static struct frame_parm_table frame_parms[] =
2829 {"auto-raise", &Qauto_raise},
2830 {"auto-lower", &Qauto_lower},
2831 {"background-color", 0},
2832 {"border-color", &Qborder_color},
2833 {"border-width", &Qborder_width},
2834 {"cursor-color", &Qcursor_color},
2835 {"cursor-type", &Qcursor_type},
2836 {"font", 0},
2837 {"foreground-color", 0},
2838 {"icon-name", &Qicon_name},
2839 {"icon-type", &Qicon_type},
2840 {"internal-border-width", &Qinternal_border_width},
2841 {"menu-bar-lines", &Qmenu_bar_lines},
2842 {"mouse-color", &Qmouse_color},
2843 {"name", &Qname},
2844 {"scroll-bar-width", &Qscroll_bar_width},
2845 {"title", &Qtitle},
2846 {"unsplittable", &Qunsplittable},
2847 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2848 {"visibility", &Qvisibility},
2849 {"tool-bar-lines", &Qtool_bar_lines},
2850 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2851 {"scroll-bar-background", &Qscroll_bar_background},
2852 {"screen-gamma", &Qscreen_gamma},
2853 {"line-spacing", &Qline_spacing},
2854 {"left-fringe", &Qleft_fringe},
2855 {"right-fringe", &Qright_fringe},
2856 {"wait-for-wm", &Qwait_for_wm},
2857 {"fullscreen", &Qfullscreen},
2858 #ifdef USE_FONT_BACKEND
2859 {"font-backend", &Qfont_backend}
2860 #endif /* USE_FONT_BACKEND */
2863 #ifdef HAVE_WINDOW_SYSTEM
2865 extern Lisp_Object Qbox;
2866 extern Lisp_Object Qtop;
2868 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2869 wanted positions of the WM window (not Emacs window).
2870 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2871 window (FRAME_X_WINDOW).
2874 void
2875 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2876 struct frame *f;
2877 int *width;
2878 int *height;
2879 int *top_pos;
2880 int *left_pos;
2882 int newwidth = FRAME_COLS (f);
2883 int newheight = FRAME_LINES (f);
2885 *top_pos = f->top_pos;
2886 *left_pos = f->left_pos;
2888 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2890 int ph;
2892 ph = FRAME_X_DISPLAY_INFO (f)->height;
2893 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2894 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2895 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2896 *top_pos = 0;
2899 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2901 int pw;
2903 pw = FRAME_X_DISPLAY_INFO (f)->width;
2904 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2905 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2906 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2907 *left_pos = 0;
2910 *width = newwidth;
2911 *height = newheight;
2915 /* Change the parameters of frame F as specified by ALIST.
2916 If a parameter is not specially recognized, do nothing special;
2917 otherwise call the `x_set_...' function for that parameter.
2918 Except for certain geometry properties, always call store_frame_param
2919 to store the new value in the parameter alist. */
2921 void
2922 x_set_frame_parameters (f, alist)
2923 FRAME_PTR f;
2924 Lisp_Object alist;
2926 Lisp_Object tail;
2928 /* If both of these parameters are present, it's more efficient to
2929 set them both at once. So we wait until we've looked at the
2930 entire list before we set them. */
2931 int width, height;
2933 /* Same here. */
2934 Lisp_Object left, top;
2936 /* Same with these. */
2937 Lisp_Object icon_left, icon_top;
2939 /* Record in these vectors all the parms specified. */
2940 Lisp_Object *parms;
2941 Lisp_Object *values;
2942 int i, p;
2943 int left_no_change = 0, top_no_change = 0;
2944 int icon_left_no_change = 0, icon_top_no_change = 0;
2945 int fullscreen_is_being_set = 0;
2947 struct gcpro gcpro1, gcpro2;
2949 i = 0;
2950 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2951 i++;
2953 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2954 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2956 /* Extract parm names and values into those vectors. */
2958 i = 0;
2959 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2961 Lisp_Object elt;
2963 elt = Fcar (tail);
2964 parms[i] = Fcar (elt);
2965 values[i] = Fcdr (elt);
2966 i++;
2968 /* TAIL and ALIST are not used again below here. */
2969 alist = tail = Qnil;
2971 GCPRO2 (*parms, *values);
2972 gcpro1.nvars = i;
2973 gcpro2.nvars = i;
2975 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2976 because their values appear in VALUES and strings are not valid. */
2977 top = left = Qunbound;
2978 icon_left = icon_top = Qunbound;
2980 /* Provide default values for HEIGHT and WIDTH. */
2981 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2982 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2984 /* Process foreground_color and background_color before anything else.
2985 They are independent of other properties, but other properties (e.g.,
2986 cursor_color) are dependent upon them. */
2987 /* Process default font as well, since fringe widths depends on it. */
2988 /* Also, process fullscreen, width and height depend upon that */
2989 for (p = 0; p < i; p++)
2991 Lisp_Object prop, val;
2993 prop = parms[p];
2994 val = values[p];
2995 if (EQ (prop, Qforeground_color)
2996 || EQ (prop, Qbackground_color)
2997 || EQ (prop, Qfont)
2998 || EQ (prop, Qfullscreen))
3000 register Lisp_Object param_index, old_value;
3001 int count = SPECPDL_INDEX ();
3003 old_value = get_frame_param (f, prop);
3004 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
3006 if (NILP (Fequal (val, old_value)))
3008 /* For :font attributes, the frame_parm_handler
3009 x_set_font calls `face-set-after-frame-default'.
3010 Unless we bind inhibit-face-set-after-frame-default
3011 here, this would reset the :font attribute that we
3012 just applied to the default value for new faces. */
3013 specbind (Qinhibit_face_set_after_frame_default, Qt);
3015 store_frame_param (f, prop, val);
3017 param_index = Fget (prop, Qx_frame_parameter);
3018 if (NATNUMP (param_index)
3019 && (XFASTINT (param_index)
3020 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3021 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3022 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3023 unbind_to (count, Qnil);
3028 /* Now process them in reverse of specified order. */
3029 for (i--; i >= 0; i--)
3031 Lisp_Object prop, val;
3033 prop = parms[i];
3034 val = values[i];
3036 if (EQ (prop, Qwidth) && NATNUMP (val))
3037 width = XFASTINT (val);
3038 else if (EQ (prop, Qheight) && NATNUMP (val))
3039 height = XFASTINT (val);
3040 else if (EQ (prop, Qtop))
3041 top = val;
3042 else if (EQ (prop, Qleft))
3043 left = val;
3044 else if (EQ (prop, Qicon_top))
3045 icon_top = val;
3046 else if (EQ (prop, Qicon_left))
3047 icon_left = val;
3048 else if (EQ (prop, Qforeground_color)
3049 || EQ (prop, Qbackground_color)
3050 || EQ (prop, Qfont)
3051 || EQ (prop, Qfullscreen))
3052 /* Processed above. */
3053 continue;
3054 else
3056 register Lisp_Object param_index, old_value;
3058 old_value = get_frame_param (f, prop);
3060 store_frame_param (f, prop, val);
3062 param_index = Fget (prop, Qx_frame_parameter);
3063 if (NATNUMP (param_index)
3064 && (XFASTINT (param_index)
3065 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3066 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3067 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3071 /* Don't die if just one of these was set. */
3072 if (EQ (left, Qunbound))
3074 left_no_change = 1;
3075 if (f->left_pos < 0)
3076 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
3077 else
3078 XSETINT (left, f->left_pos);
3080 if (EQ (top, Qunbound))
3082 top_no_change = 1;
3083 if (f->top_pos < 0)
3084 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
3085 else
3086 XSETINT (top, f->top_pos);
3089 /* If one of the icon positions was not set, preserve or default it. */
3090 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3092 icon_left_no_change = 1;
3093 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3094 if (NILP (icon_left))
3095 XSETINT (icon_left, 0);
3097 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3099 icon_top_no_change = 1;
3100 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3101 if (NILP (icon_top))
3102 XSETINT (icon_top, 0);
3105 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3107 /* If the frame is visible already and the fullscreen parameter is
3108 being set, it is too late to set WM manager hints to specify
3109 size and position.
3110 Here we first get the width, height and position that applies to
3111 fullscreen. We then move the frame to the appropriate
3112 position. Resize of the frame is taken care of in the code after
3113 this if-statement. */
3114 int new_left, new_top;
3116 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
3117 if (new_top != f->top_pos || new_left != f->left_pos)
3118 x_set_offset (f, new_left, new_top, 1);
3121 /* Don't set these parameters unless they've been explicitly
3122 specified. The window might be mapped or resized while we're in
3123 this function, and we don't want to override that unless the lisp
3124 code has asked for it.
3126 Don't set these parameters unless they actually differ from the
3127 window's current parameters; the window may not actually exist
3128 yet. */
3130 Lisp_Object frame;
3132 check_frame_size (f, &height, &width);
3134 XSETFRAME (frame, f);
3136 if (width != FRAME_COLS (f)
3137 || height != FRAME_LINES (f)
3138 || f->new_text_lines || f->new_text_cols)
3139 Fset_frame_size (frame, make_number (width), make_number (height));
3141 if ((!NILP (left) || !NILP (top))
3142 && ! (left_no_change && top_no_change)
3143 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3144 && NUMBERP (top) && XINT (top) == f->top_pos))
3146 int leftpos = 0;
3147 int toppos = 0;
3149 /* Record the signs. */
3150 f->size_hint_flags &= ~ (XNegative | YNegative);
3151 if (EQ (left, Qminus))
3152 f->size_hint_flags |= XNegative;
3153 else if (INTEGERP (left))
3155 leftpos = XINT (left);
3156 if (leftpos < 0)
3157 f->size_hint_flags |= XNegative;
3159 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3160 && CONSP (XCDR (left))
3161 && INTEGERP (XCAR (XCDR (left))))
3163 leftpos = - XINT (XCAR (XCDR (left)));
3164 f->size_hint_flags |= XNegative;
3166 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3167 && CONSP (XCDR (left))
3168 && INTEGERP (XCAR (XCDR (left))))
3170 leftpos = XINT (XCAR (XCDR (left)));
3173 if (EQ (top, Qminus))
3174 f->size_hint_flags |= YNegative;
3175 else if (INTEGERP (top))
3177 toppos = XINT (top);
3178 if (toppos < 0)
3179 f->size_hint_flags |= YNegative;
3181 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3182 && CONSP (XCDR (top))
3183 && INTEGERP (XCAR (XCDR (top))))
3185 toppos = - XINT (XCAR (XCDR (top)));
3186 f->size_hint_flags |= YNegative;
3188 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3189 && CONSP (XCDR (top))
3190 && INTEGERP (XCAR (XCDR (top))))
3192 toppos = XINT (XCAR (XCDR (top)));
3196 /* Store the numeric value of the position. */
3197 f->top_pos = toppos;
3198 f->left_pos = leftpos;
3200 f->win_gravity = NorthWestGravity;
3202 /* Actually set that position, and convert to absolute. */
3203 x_set_offset (f, leftpos, toppos, -1);
3206 if ((!NILP (icon_left) || !NILP (icon_top))
3207 && ! (icon_left_no_change && icon_top_no_change))
3208 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3211 UNGCPRO;
3215 /* Insert a description of internally-recorded parameters of frame X
3216 into the parameter alist *ALISTPTR that is to be given to the user.
3217 Only parameters that are specific to the X window system
3218 and whose values are not correctly recorded in the frame's
3219 param_alist need to be considered here. */
3221 void
3222 x_report_frame_params (f, alistptr)
3223 struct frame *f;
3224 Lisp_Object *alistptr;
3226 char buf[16];
3227 Lisp_Object tem;
3229 /* Represent negative positions (off the top or left screen edge)
3230 in a way that Fmodify_frame_parameters will understand correctly. */
3231 XSETINT (tem, f->left_pos);
3232 if (f->left_pos >= 0)
3233 store_in_alist (alistptr, Qleft, tem);
3234 else
3235 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3237 XSETINT (tem, f->top_pos);
3238 if (f->top_pos >= 0)
3239 store_in_alist (alistptr, Qtop, tem);
3240 else
3241 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3243 store_in_alist (alistptr, Qborder_width,
3244 make_number (f->border_width));
3245 store_in_alist (alistptr, Qinternal_border_width,
3246 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
3247 store_in_alist (alistptr, Qleft_fringe,
3248 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
3249 store_in_alist (alistptr, Qright_fringe,
3250 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
3251 store_in_alist (alistptr, Qscroll_bar_width,
3252 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3253 ? make_number (0)
3254 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3255 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3256 /* nil means "use default width"
3257 for non-toolkit scroll bar.
3258 ruler-mode.el depends on this. */
3259 : Qnil));
3260 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3261 store_in_alist (alistptr, Qwindow_id,
3262 build_string (buf));
3263 #ifdef HAVE_X_WINDOWS
3264 #ifdef USE_X_TOOLKIT
3265 /* Tooltip frame may not have this widget. */
3266 if (FRAME_X_OUTPUT (f)->widget)
3267 #endif
3268 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3269 store_in_alist (alistptr, Qouter_window_id,
3270 build_string (buf));
3271 #endif
3272 store_in_alist (alistptr, Qicon_name, f->icon_name);
3273 FRAME_SAMPLE_VISIBILITY (f);
3274 store_in_alist (alistptr, Qvisibility,
3275 (FRAME_VISIBLE_P (f) ? Qt
3276 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3277 store_in_alist (alistptr, Qdisplay,
3278 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3280 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3281 tem = Qnil;
3282 else
3283 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
3284 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
3285 store_in_alist (alistptr, Qparent_id, tem);
3289 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3290 the previous value of that parameter, NEW_VALUE is the new value. */
3292 void
3293 x_set_fullscreen (f, new_value, old_value)
3294 struct frame *f;
3295 Lisp_Object new_value, old_value;
3297 if (NILP (new_value))
3298 f->want_fullscreen = FULLSCREEN_NONE;
3299 else if (EQ (new_value, Qfullboth))
3300 f->want_fullscreen = FULLSCREEN_BOTH;
3301 else if (EQ (new_value, Qfullwidth))
3302 f->want_fullscreen = FULLSCREEN_WIDTH;
3303 else if (EQ (new_value, Qfullheight))
3304 f->want_fullscreen = FULLSCREEN_HEIGHT;
3306 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
3307 FRAME_TERMINAL (f)->fullscreen_hook (f);
3311 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3312 the previous value of that parameter, NEW_VALUE is the new value. */
3314 void
3315 x_set_line_spacing (f, new_value, old_value)
3316 struct frame *f;
3317 Lisp_Object new_value, old_value;
3319 if (NILP (new_value))
3320 f->extra_line_spacing = 0;
3321 else if (NATNUMP (new_value))
3322 f->extra_line_spacing = XFASTINT (new_value);
3323 else
3324 signal_error ("Invalid line-spacing", new_value);
3325 if (FRAME_VISIBLE_P (f))
3326 redraw_frame (f);
3330 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3331 the previous value of that parameter, NEW_VALUE is the new value. */
3333 void
3334 x_set_screen_gamma (f, new_value, old_value)
3335 struct frame *f;
3336 Lisp_Object new_value, old_value;
3338 Lisp_Object bgcolor;
3340 if (NILP (new_value))
3341 f->gamma = 0;
3342 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3343 /* The value 0.4545 is the normal viewing gamma. */
3344 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3345 else
3346 signal_error ("Invalid screen-gamma", new_value);
3348 /* Apply the new gamma value to the frame background. */
3349 bgcolor = Fassq (Qbackground_color, f->param_alist);
3350 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3352 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3353 if (NATNUMP (index)
3354 && (XFASTINT (index)
3355 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3356 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3357 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3358 (f, bgcolor, Qnil);
3361 Fclear_face_cache (Qnil);
3365 void
3366 x_set_font (f, arg, oldval)
3367 struct frame *f;
3368 Lisp_Object arg, oldval;
3370 Lisp_Object result;
3371 Lisp_Object fontset_name;
3372 Lisp_Object frame;
3373 int old_fontset = FRAME_FONTSET(f);
3375 #ifdef USE_FONT_BACKEND
3376 if (enable_font_backend)
3378 int fontset = -1;
3379 Lisp_Object font_object;
3381 /* ARG is a fontset name, a font name, or a font object.
3382 In the last case, this function never fail. */
3383 if (STRINGP (arg))
3385 fontset = fs_query_fontset (arg, 0);
3386 if (fontset < 0)
3387 font_object = font_open_by_name (f, SDATA (arg));
3388 else if (fontset > 0)
3390 Lisp_Object ascii_font = fontset_ascii (fontset);
3392 font_object = font_open_by_name (f, SDATA (ascii_font));
3395 else
3396 font_object = arg;
3398 if (fontset < 0 && ! NILP (font_object))
3399 fontset = new_fontset_from_font (font_object);
3401 if (fontset == 0)
3402 /* Refuse the default fontset. */
3403 result = Qt;
3404 else if (NILP (font_object))
3405 result = Qnil;
3406 else
3407 result = x_new_fontset2 (f, fontset, font_object);
3409 else
3411 #endif /* USE_FONT_BACKEND */
3412 CHECK_STRING (arg);
3414 fontset_name = Fquery_fontset (arg, Qnil);
3416 BLOCK_INPUT;
3417 result = (STRINGP (fontset_name)
3418 ? x_new_fontset (f, fontset_name)
3419 : x_new_fontset (f, arg));
3420 UNBLOCK_INPUT;
3421 #ifdef USE_FONT_BACKEND
3423 #endif
3425 if (EQ (result, Qnil))
3426 error ("Font `%s' is not defined", SDATA (arg));
3427 else if (EQ (result, Qt))
3428 error ("The default fontset can't be used for a frame font");
3429 else if (STRINGP (result))
3431 set_default_ascii_font (result);
3432 if (STRINGP (fontset_name))
3434 /* Fontset names are built from ASCII font names, so the
3435 names may be equal despite there was a change. */
3436 if (old_fontset == FRAME_FONTSET (f))
3437 return;
3439 store_frame_param (f, Qfont, result);
3441 if (!NILP (Fequal (result, oldval)))
3442 return;
3444 /* Recalculate toolbar height. */
3445 f->n_tool_bar_rows = 0;
3446 /* Ensure we redraw it. */
3447 clear_current_matrices (f);
3449 recompute_basic_faces (f);
3451 else
3452 abort ();
3454 do_pending_window_change (0);
3456 /* Don't call `face-set-after-frame-default' when faces haven't been
3457 initialized yet. This is the case when called from
3458 Fx_create_frame. In that case, the X widget or window doesn't
3459 exist either, and we can end up in x_report_frame_params with a
3460 null widget which gives a segfault. */
3461 if (FRAME_FACE_CACHE (f))
3463 XSETFRAME (frame, f);
3464 call1 (Qface_set_after_frame_default, frame);
3469 #ifdef USE_FONT_BACKEND
3470 void
3471 x_set_font_backend (f, new_value, old_value)
3472 struct frame *f;
3473 Lisp_Object new_value, old_value;
3475 if (! NILP (new_value)
3476 && !CONSP (new_value))
3478 char *p0, *p1;
3480 CHECK_STRING (new_value);
3481 p0 = p1 = SDATA (new_value);
3482 new_value = Qnil;
3483 while (*p0)
3485 while (*p1 && *p1 != ',') p1++;
3486 if (p0 < p1)
3487 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3488 new_value);
3489 if (*p1)
3490 p1++;
3491 p0 = p1;
3493 new_value = Fnreverse (new_value);
3496 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3497 return;
3499 if (FRAME_FONT_OBJECT (f))
3500 free_all_realized_faces (Qnil);
3502 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
3503 if (NILP (new_value))
3505 if (NILP (old_value))
3506 error ("No font backend available");
3507 font_update_drivers (f, old_value);
3508 error ("None of specified font backends are available");
3510 store_frame_param (f, Qfont_backend, new_value);
3512 if (FRAME_FONT_OBJECT (f))
3514 Lisp_Object frame;
3516 XSETFRAME (frame, f);
3517 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3518 ++face_change_count;
3519 ++windows_or_buffers_changed;
3522 #endif /* USE_FONT_BACKEND */
3525 void
3526 x_set_fringe_width (f, new_value, old_value)
3527 struct frame *f;
3528 Lisp_Object new_value, old_value;
3530 compute_fringe_widths (f, 1);
3533 void
3534 x_set_border_width (f, arg, oldval)
3535 struct frame *f;
3536 Lisp_Object arg, oldval;
3538 CHECK_NUMBER (arg);
3540 if (XINT (arg) == f->border_width)
3541 return;
3543 if (FRAME_X_WINDOW (f) != 0)
3544 error ("Cannot change the border width of a frame");
3546 f->border_width = XINT (arg);
3549 void
3550 x_set_internal_border_width (f, arg, oldval)
3551 struct frame *f;
3552 Lisp_Object arg, oldval;
3554 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3556 CHECK_NUMBER (arg);
3557 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3558 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3559 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3561 #ifdef USE_X_TOOLKIT
3562 if (FRAME_X_OUTPUT (f)->edit_widget)
3563 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3564 #endif
3566 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3567 return;
3569 if (FRAME_X_WINDOW (f) != 0)
3571 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3572 SET_FRAME_GARBAGED (f);
3573 do_pending_window_change (0);
3575 else
3576 SET_FRAME_GARBAGED (f);
3579 void
3580 x_set_visibility (f, value, oldval)
3581 struct frame *f;
3582 Lisp_Object value, oldval;
3584 Lisp_Object frame;
3585 XSETFRAME (frame, f);
3587 if (NILP (value))
3588 Fmake_frame_invisible (frame, Qt);
3589 else if (EQ (value, Qicon))
3590 Ficonify_frame (frame);
3591 else
3592 Fmake_frame_visible (frame);
3595 void
3596 x_set_autoraise (f, arg, oldval)
3597 struct frame *f;
3598 Lisp_Object arg, oldval;
3600 f->auto_raise = !EQ (Qnil, arg);
3603 void
3604 x_set_autolower (f, arg, oldval)
3605 struct frame *f;
3606 Lisp_Object arg, oldval;
3608 f->auto_lower = !EQ (Qnil, arg);
3611 void
3612 x_set_unsplittable (f, arg, oldval)
3613 struct frame *f;
3614 Lisp_Object arg, oldval;
3616 f->no_split = !NILP (arg);
3619 void
3620 x_set_vertical_scroll_bars (f, arg, oldval)
3621 struct frame *f;
3622 Lisp_Object arg, oldval;
3624 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3625 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3626 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3627 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3629 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3630 = (NILP (arg)
3631 ? vertical_scroll_bar_none
3632 : EQ (Qleft, arg)
3633 ? vertical_scroll_bar_left
3634 : EQ (Qright, arg)
3635 ? vertical_scroll_bar_right
3636 : EQ (Qleft, Vdefault_frame_scroll_bars)
3637 ? vertical_scroll_bar_left
3638 : EQ (Qright, Vdefault_frame_scroll_bars)
3639 ? vertical_scroll_bar_right
3640 : vertical_scroll_bar_none);
3642 /* We set this parameter before creating the X window for the
3643 frame, so we can get the geometry right from the start.
3644 However, if the window hasn't been created yet, we shouldn't
3645 call x_set_window_size. */
3646 if (FRAME_X_WINDOW (f))
3647 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3648 do_pending_window_change (0);
3652 void
3653 x_set_scroll_bar_width (f, arg, oldval)
3654 struct frame *f;
3655 Lisp_Object arg, oldval;
3657 int wid = FRAME_COLUMN_WIDTH (f);
3659 if (NILP (arg))
3661 x_set_scroll_bar_default_width (f);
3663 if (FRAME_X_WINDOW (f))
3664 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3665 do_pending_window_change (0);
3667 else if (INTEGERP (arg) && XINT (arg) > 0
3668 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3670 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3671 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3673 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3674 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3675 if (FRAME_X_WINDOW (f))
3676 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3677 do_pending_window_change (0);
3680 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3681 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3682 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3687 /* Return non-nil if frame F wants a bitmap icon. */
3689 Lisp_Object
3690 x_icon_type (f)
3691 FRAME_PTR f;
3693 Lisp_Object tem;
3695 tem = assq_no_quit (Qicon_type, f->param_alist);
3696 if (CONSP (tem))
3697 return XCDR (tem);
3698 else
3699 return Qnil;
3703 /* Subroutines of creating an X frame. */
3705 /* Make sure that Vx_resource_name is set to a reasonable value.
3706 Fix it up, or set it to `emacs' if it is too hopeless. */
3708 void
3709 validate_x_resource_name ()
3711 int len = 0;
3712 /* Number of valid characters in the resource name. */
3713 int good_count = 0;
3714 /* Number of invalid characters in the resource name. */
3715 int bad_count = 0;
3716 Lisp_Object new;
3717 int i;
3719 if (!STRINGP (Vx_resource_class))
3720 Vx_resource_class = build_string (EMACS_CLASS);
3722 if (STRINGP (Vx_resource_name))
3724 unsigned char *p = SDATA (Vx_resource_name);
3725 int i;
3727 len = SBYTES (Vx_resource_name);
3729 /* Only letters, digits, - and _ are valid in resource names.
3730 Count the valid characters and count the invalid ones. */
3731 for (i = 0; i < len; i++)
3733 int c = p[i];
3734 if (! ((c >= 'a' && c <= 'z')
3735 || (c >= 'A' && c <= 'Z')
3736 || (c >= '0' && c <= '9')
3737 || c == '-' || c == '_'))
3738 bad_count++;
3739 else
3740 good_count++;
3743 else
3744 /* Not a string => completely invalid. */
3745 bad_count = 5, good_count = 0;
3747 /* If name is valid already, return. */
3748 if (bad_count == 0)
3749 return;
3751 /* If name is entirely invalid, or nearly so, use `emacs'. */
3752 if (good_count == 0
3753 || (good_count == 1 && bad_count > 0))
3755 Vx_resource_name = build_string ("emacs");
3756 return;
3759 /* Name is partly valid. Copy it and replace the invalid characters
3760 with underscores. */
3762 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3764 for (i = 0; i < len; i++)
3766 int c = SREF (new, i);
3767 if (! ((c >= 'a' && c <= 'z')
3768 || (c >= 'A' && c <= 'Z')
3769 || (c >= '0' && c <= '9')
3770 || c == '-' || c == '_'))
3771 SSET (new, i, '_');
3776 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3777 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3780 /* Get specified attribute from resource database RDB.
3781 See Fx_get_resource below for other parameters. */
3783 static Lisp_Object
3784 xrdb_get_resource (rdb, attribute, class, component, subclass)
3785 XrmDatabase rdb;
3786 Lisp_Object attribute, class, component, subclass;
3788 register char *value;
3789 char *name_key;
3790 char *class_key;
3792 CHECK_STRING (attribute);
3793 CHECK_STRING (class);
3795 if (!NILP (component))
3796 CHECK_STRING (component);
3797 if (!NILP (subclass))
3798 CHECK_STRING (subclass);
3799 if (NILP (component) != NILP (subclass))
3800 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3802 validate_x_resource_name ();
3804 /* Allocate space for the components, the dots which separate them,
3805 and the final '\0'. Make them big enough for the worst case. */
3806 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3807 + (STRINGP (component)
3808 ? SBYTES (component) : 0)
3809 + SBYTES (attribute)
3810 + 3);
3812 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3813 + SBYTES (class)
3814 + (STRINGP (subclass)
3815 ? SBYTES (subclass) : 0)
3816 + 3);
3818 /* Start with emacs.FRAMENAME for the name (the specific one)
3819 and with `Emacs' for the class key (the general one). */
3820 strcpy (name_key, SDATA (Vx_resource_name));
3821 strcpy (class_key, SDATA (Vx_resource_class));
3823 strcat (class_key, ".");
3824 strcat (class_key, SDATA (class));
3826 if (!NILP (component))
3828 strcat (class_key, ".");
3829 strcat (class_key, SDATA (subclass));
3831 strcat (name_key, ".");
3832 strcat (name_key, SDATA (component));
3835 strcat (name_key, ".");
3836 strcat (name_key, SDATA (attribute));
3838 value = x_get_string_resource (rdb, name_key, class_key);
3840 if (value != (char *) 0)
3841 return build_string (value);
3842 else
3843 return Qnil;
3847 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3848 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3849 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3850 class, where INSTANCE is the name under which Emacs was invoked, or
3851 the name specified by the `-name' or `-rn' command-line arguments.
3853 The optional arguments COMPONENT and SUBCLASS add to the key and the
3854 class, respectively. You must specify both of them or neither.
3855 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3856 and the class is `Emacs.CLASS.SUBCLASS'. */)
3857 (attribute, class, component, subclass)
3858 Lisp_Object attribute, class, component, subclass;
3860 #ifdef HAVE_X_WINDOWS
3861 check_x ();
3862 #endif
3864 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3865 attribute, class, component, subclass);
3868 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3870 Lisp_Object
3871 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3872 Display_Info *dpyinfo;
3873 Lisp_Object attribute, class, component, subclass;
3875 return xrdb_get_resource (dpyinfo->xrdb,
3876 attribute, class, component, subclass);
3879 /* Used when C code wants a resource value. */
3881 char *
3882 x_get_resource_string (attribute, class)
3883 char *attribute, *class;
3885 char *name_key;
3886 char *class_key;
3887 struct frame *sf = SELECTED_FRAME ();
3889 /* Allocate space for the components, the dots which separate them,
3890 and the final '\0'. */
3891 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3892 + strlen (attribute) + 2);
3893 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3894 + strlen (class) + 2);
3896 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3897 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3899 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3900 name_key, class_key);
3904 /* Return the value of parameter PARAM.
3906 First search ALIST, then Vdefault_frame_alist, then the X defaults
3907 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3909 Convert the resource to the type specified by desired_type.
3911 If no default is specified, return Qunbound. If you call
3912 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3913 and don't let it get stored in any Lisp-visible variables! */
3915 Lisp_Object
3916 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3917 Display_Info *dpyinfo;
3918 Lisp_Object alist, param;
3919 char *attribute;
3920 char *class;
3921 enum resource_types type;
3923 register Lisp_Object tem;
3925 tem = Fassq (param, alist);
3927 if (!NILP (tem))
3929 /* If we find this parm in ALIST, clear it out
3930 so that it won't be "left over" at the end. */
3931 #ifndef WINDOWSNT /* w32fns.c has not yet been changed to cope with this. */
3932 Lisp_Object tail;
3933 XSETCAR (tem, Qnil);
3934 /* In case the parameter appears more than once in the alist,
3935 clear it out. */
3936 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3937 if (CONSP (XCAR (tail))
3938 && EQ (XCAR (XCAR (tail)), param))
3939 XSETCAR (XCAR (tail), Qnil);
3940 #endif
3942 else
3943 tem = Fassq (param, Vdefault_frame_alist);
3945 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3946 look in the X resources. */
3947 if (EQ (tem, Qnil))
3949 if (attribute)
3951 tem = display_x_get_resource (dpyinfo,
3952 build_string (attribute),
3953 build_string (class),
3954 Qnil, Qnil);
3956 if (NILP (tem))
3957 return Qunbound;
3959 switch (type)
3961 case RES_TYPE_NUMBER:
3962 return make_number (atoi (SDATA (tem)));
3964 case RES_TYPE_FLOAT:
3965 return make_float (atof (SDATA (tem)));
3967 case RES_TYPE_BOOLEAN:
3968 tem = Fdowncase (tem);
3969 if (!strcmp (SDATA (tem), "on")
3970 || !strcmp (SDATA (tem), "true"))
3971 return Qt;
3972 else
3973 return Qnil;
3975 case RES_TYPE_STRING:
3976 return tem;
3978 case RES_TYPE_SYMBOL:
3979 /* As a special case, we map the values `true' and `on'
3980 to Qt, and `false' and `off' to Qnil. */
3982 Lisp_Object lower;
3983 lower = Fdowncase (tem);
3984 if (!strcmp (SDATA (lower), "on")
3985 || !strcmp (SDATA (lower), "true"))
3986 return Qt;
3987 else if (!strcmp (SDATA (lower), "off")
3988 || !strcmp (SDATA (lower), "false"))
3989 return Qnil;
3990 else
3991 return Fintern (tem, Qnil);
3994 default:
3995 abort ();
3998 else
3999 return Qunbound;
4001 return Fcdr (tem);
4004 Lisp_Object
4005 x_frame_get_arg (f, alist, param, attribute, class, type)
4006 struct frame *f;
4007 Lisp_Object alist, param;
4008 char *attribute;
4009 char *class;
4010 enum resource_types type;
4012 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
4013 alist, param, attribute, class, type);
4016 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
4018 Lisp_Object
4019 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
4020 struct frame *f;
4021 Lisp_Object alist, param;
4022 char *attribute;
4023 char *class;
4024 enum resource_types type;
4026 Lisp_Object value;
4028 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
4029 attribute, class, type);
4030 if (! NILP (value) && ! EQ (value, Qunbound))
4031 store_frame_param (f, param, value);
4033 return value;
4037 /* Record in frame F the specified or default value according to ALIST
4038 of the parameter named PROP (a Lisp symbol).
4039 If no value is specified for PROP, look for an X default for XPROP
4040 on the frame named NAME.
4041 If that is not found either, use the value DEFLT. */
4043 Lisp_Object
4044 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
4045 struct frame *f;
4046 Lisp_Object alist;
4047 Lisp_Object prop;
4048 Lisp_Object deflt;
4049 char *xprop;
4050 char *xclass;
4051 enum resource_types type;
4053 Lisp_Object tem;
4055 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4056 if (EQ (tem, Qunbound))
4057 tem = deflt;
4058 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
4059 return tem;
4065 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4066 doc: /* Parse an X-style geometry string STRING.
4067 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4068 The properties returned may include `top', `left', `height', and `width'.
4069 The value of `left' or `top' may be an integer,
4070 or a list (+ N) meaning N pixels relative to top/left corner,
4071 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
4072 (string)
4073 Lisp_Object string;
4075 int geometry, x, y;
4076 unsigned int width, height;
4077 Lisp_Object result;
4079 CHECK_STRING (string);
4081 geometry = XParseGeometry ((char *) SDATA (string),
4082 &x, &y, &width, &height);
4084 #if 0
4085 if (!!(geometry & XValue) != !!(geometry & YValue))
4086 error ("Must specify both x and y position, or neither");
4087 #endif
4089 result = Qnil;
4090 if (geometry & XValue)
4092 Lisp_Object element;
4094 if (x >= 0 && (geometry & XNegative))
4095 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
4096 else if (x < 0 && ! (geometry & XNegative))
4097 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
4098 else
4099 element = Fcons (Qleft, make_number (x));
4100 result = Fcons (element, result);
4103 if (geometry & YValue)
4105 Lisp_Object element;
4107 if (y >= 0 && (geometry & YNegative))
4108 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
4109 else if (y < 0 && ! (geometry & YNegative))
4110 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4111 else
4112 element = Fcons (Qtop, make_number (y));
4113 result = Fcons (element, result);
4116 if (geometry & WidthValue)
4117 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4118 if (geometry & HeightValue)
4119 result = Fcons (Fcons (Qheight, make_number (height)), result);
4121 return result;
4124 /* Calculate the desired size and position of frame F.
4125 Return the flags saying which aspects were specified.
4127 Also set the win_gravity and size_hint_flags of F.
4129 Adjust height for toolbar if TOOLBAR_P is 1.
4131 This function does not make the coordinates positive. */
4133 #define DEFAULT_ROWS 40
4134 #define DEFAULT_COLS 80
4137 x_figure_window_size (f, parms, toolbar_p)
4138 struct frame *f;
4139 Lisp_Object parms;
4140 int toolbar_p;
4142 register Lisp_Object tem0, tem1, tem2;
4143 long window_prompting = 0;
4144 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4146 /* Default values if we fall through.
4147 Actually, if that happens we should get
4148 window manager prompting. */
4149 SET_FRAME_COLS (f, DEFAULT_COLS);
4150 FRAME_LINES (f) = DEFAULT_ROWS;
4151 /* Window managers expect that if program-specified
4152 positions are not (0,0), they're intentional, not defaults. */
4153 f->top_pos = 0;
4154 f->left_pos = 0;
4156 /* Ensure that old new_text_cols and new_text_lines will not override the
4157 values set here. */
4158 /* ++KFS: This was specific to W32, but seems ok for all platforms */
4159 f->new_text_cols = f->new_text_lines = 0;
4161 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4162 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4163 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4164 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4166 if (!EQ (tem0, Qunbound))
4168 CHECK_NUMBER (tem0);
4169 FRAME_LINES (f) = XINT (tem0);
4171 if (!EQ (tem1, Qunbound))
4173 CHECK_NUMBER (tem1);
4174 SET_FRAME_COLS (f, XINT (tem1));
4176 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4177 window_prompting |= USSize;
4178 else
4179 window_prompting |= PSize;
4182 f->scroll_bar_actual_width
4183 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
4185 /* This used to be done _before_ calling x_figure_window_size, but
4186 since the height is reset here, this was really a no-op. I
4187 assume that moving it here does what Gerd intended (although he
4188 no longer can remember what that was... ++KFS, 2003-03-25. */
4190 /* Add the tool-bar height to the initial frame height so that the
4191 user gets a text display area of the size he specified with -g or
4192 via .Xdefaults. Later changes of the tool-bar height don't
4193 change the frame size. This is done so that users can create
4194 tall Emacs frames without having to guess how tall the tool-bar
4195 will get. */
4196 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4198 int margin, relief, bar_height;
4200 relief = (tool_bar_button_relief >= 0
4201 ? tool_bar_button_relief
4202 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4204 if (INTEGERP (Vtool_bar_button_margin)
4205 && XINT (Vtool_bar_button_margin) > 0)
4206 margin = XFASTINT (Vtool_bar_button_margin);
4207 else if (CONSP (Vtool_bar_button_margin)
4208 && INTEGERP (XCDR (Vtool_bar_button_margin))
4209 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4210 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4211 else
4212 margin = 0;
4214 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4215 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
4218 compute_fringe_widths (f, 0);
4220 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4221 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
4223 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4224 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4225 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4226 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4228 if (EQ (tem0, Qminus))
4230 f->top_pos = 0;
4231 window_prompting |= YNegative;
4233 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4234 && CONSP (XCDR (tem0))
4235 && INTEGERP (XCAR (XCDR (tem0))))
4237 f->top_pos = - XINT (XCAR (XCDR (tem0)));
4238 window_prompting |= YNegative;
4240 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4241 && CONSP (XCDR (tem0))
4242 && INTEGERP (XCAR (XCDR (tem0))))
4244 f->top_pos = XINT (XCAR (XCDR (tem0)));
4246 else if (EQ (tem0, Qunbound))
4247 f->top_pos = 0;
4248 else
4250 CHECK_NUMBER (tem0);
4251 f->top_pos = XINT (tem0);
4252 if (f->top_pos < 0)
4253 window_prompting |= YNegative;
4256 if (EQ (tem1, Qminus))
4258 f->left_pos = 0;
4259 window_prompting |= XNegative;
4261 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4262 && CONSP (XCDR (tem1))
4263 && INTEGERP (XCAR (XCDR (tem1))))
4265 f->left_pos = - XINT (XCAR (XCDR (tem1)));
4266 window_prompting |= XNegative;
4268 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4269 && CONSP (XCDR (tem1))
4270 && INTEGERP (XCAR (XCDR (tem1))))
4272 f->left_pos = XINT (XCAR (XCDR (tem1)));
4274 else if (EQ (tem1, Qunbound))
4275 f->left_pos = 0;
4276 else
4278 CHECK_NUMBER (tem1);
4279 f->left_pos = XINT (tem1);
4280 if (f->left_pos < 0)
4281 window_prompting |= XNegative;
4284 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4285 window_prompting |= USPosition;
4286 else
4287 window_prompting |= PPosition;
4290 if (f->want_fullscreen != FULLSCREEN_NONE)
4292 int left, top;
4293 int width, height;
4295 /* It takes both for some WM:s to place it where we want */
4296 window_prompting |= USPosition | PPosition;
4297 x_fullscreen_adjust (f, &width, &height, &top, &left);
4298 FRAME_COLS (f) = width;
4299 FRAME_LINES (f) = height;
4300 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4301 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4302 f->left_pos = left;
4303 f->top_pos = top;
4306 if (window_prompting & XNegative)
4308 if (window_prompting & YNegative)
4309 f->win_gravity = SouthEastGravity;
4310 else
4311 f->win_gravity = NorthEastGravity;
4313 else
4315 if (window_prompting & YNegative)
4316 f->win_gravity = SouthWestGravity;
4317 else
4318 f->win_gravity = NorthWestGravity;
4321 f->size_hint_flags = window_prompting;
4323 return window_prompting;
4328 #endif /* HAVE_WINDOW_SYSTEM */
4332 /***********************************************************************
4333 Initialization
4334 ***********************************************************************/
4336 void
4337 syms_of_frame ()
4339 Qframep = intern ("framep");
4340 staticpro (&Qframep);
4341 Qframe_live_p = intern ("frame-live-p");
4342 staticpro (&Qframe_live_p);
4343 Qexplicit_name = intern ("explicit-name");
4344 staticpro (&Qexplicit_name);
4345 Qheight = intern ("height");
4346 staticpro (&Qheight);
4347 Qicon = intern ("icon");
4348 staticpro (&Qicon);
4349 Qminibuffer = intern ("minibuffer");
4350 staticpro (&Qminibuffer);
4351 Qmodeline = intern ("modeline");
4352 staticpro (&Qmodeline);
4353 Qonly = intern ("only");
4354 staticpro (&Qonly);
4355 Qwidth = intern ("width");
4356 staticpro (&Qwidth);
4357 Qgeometry = intern ("geometry");
4358 staticpro (&Qgeometry);
4359 Qicon_left = intern ("icon-left");
4360 staticpro (&Qicon_left);
4361 Qicon_top = intern ("icon-top");
4362 staticpro (&Qicon_top);
4363 Qleft = intern ("left");
4364 staticpro (&Qleft);
4365 Qright = intern ("right");
4366 staticpro (&Qright);
4367 Quser_position = intern ("user-position");
4368 staticpro (&Quser_position);
4369 Quser_size = intern ("user-size");
4370 staticpro (&Quser_size);
4371 Qwindow_id = intern ("window-id");
4372 staticpro (&Qwindow_id);
4373 #ifdef HAVE_X_WINDOWS
4374 Qouter_window_id = intern ("outer-window-id");
4375 staticpro (&Qouter_window_id);
4376 #endif
4377 Qparent_id = intern ("parent-id");
4378 staticpro (&Qparent_id);
4379 Qx = intern ("x");
4380 staticpro (&Qx);
4381 Qw32 = intern ("w32");
4382 staticpro (&Qw32);
4383 Qpc = intern ("pc");
4384 staticpro (&Qpc);
4385 Qmac = intern ("mac");
4386 staticpro (&Qmac);
4387 Qvisible = intern ("visible");
4388 staticpro (&Qvisible);
4389 Qbuffer_predicate = intern ("buffer-predicate");
4390 staticpro (&Qbuffer_predicate);
4391 Qbuffer_list = intern ("buffer-list");
4392 staticpro (&Qbuffer_list);
4393 Qburied_buffer_list = intern ("buried-buffer-list");
4394 staticpro (&Qburied_buffer_list);
4395 Qdisplay_type = intern ("display-type");
4396 staticpro (&Qdisplay_type);
4397 Qbackground_mode = intern ("background-mode");
4398 staticpro (&Qbackground_mode);
4399 Qnoelisp = intern ("noelisp");
4400 staticpro (&Qnoelisp);
4401 Qtty_color_mode = intern ("tty-color-mode");
4402 staticpro (&Qtty_color_mode);
4403 Qtty = intern ("tty");
4404 staticpro (&Qtty);
4405 Qtty_type = intern ("tty-type");
4406 staticpro (&Qtty_type);
4408 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4409 staticpro (&Qface_set_after_frame_default);
4411 Qinhibit_face_set_after_frame_default
4412 = intern ("inhibit-face-set-after-frame-default");
4413 staticpro (&Qinhibit_face_set_after_frame_default);
4415 Qfullwidth = intern ("fullwidth");
4416 staticpro (&Qfullwidth);
4417 Qfullheight = intern ("fullheight");
4418 staticpro (&Qfullheight);
4419 Qfullboth = intern ("fullboth");
4420 staticpro (&Qfullboth);
4421 Qx_resource_name = intern ("x-resource-name");
4422 staticpro (&Qx_resource_name);
4424 Qx_frame_parameter = intern ("x-frame-parameter");
4425 staticpro (&Qx_frame_parameter);
4427 Qterminal = intern ("terminal");
4428 staticpro (&Qterminal);
4429 Qterminal_live_p = intern ("terminal-live-p");
4430 staticpro (&Qterminal_live_p);
4433 int i;
4435 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4437 Lisp_Object v = intern (frame_parms[i].name);
4438 if (frame_parms[i].variable)
4440 *frame_parms[i].variable = v;
4441 staticpro (frame_parms[i].variable);
4443 Fput (v, Qx_frame_parameter, make_number (i));
4447 #ifdef HAVE_WINDOW_SYSTEM
4448 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4449 doc: /* The name Emacs uses to look up X resources.
4450 `x-get-resource' uses this as the first component of the instance name
4451 when requesting resource values.
4452 Emacs initially sets `x-resource-name' to the name under which Emacs
4453 was invoked, or to the value specified with the `-name' or `-rn'
4454 switches, if present.
4456 It may be useful to bind this variable locally around a call
4457 to `x-get-resource'. See also the variable `x-resource-class'. */);
4458 Vx_resource_name = Qnil;
4460 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4461 doc: /* The class Emacs uses to look up X resources.
4462 `x-get-resource' uses this as the first component of the instance class
4463 when requesting resource values.
4465 Emacs initially sets `x-resource-class' to "Emacs".
4467 Setting this variable permanently is not a reasonable thing to do,
4468 but binding this variable locally around a call to `x-get-resource'
4469 is a reasonable practice. See also the variable `x-resource-name'. */);
4470 Vx_resource_class = build_string (EMACS_CLASS);
4471 #endif
4473 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4474 doc: /* Alist of default values for frame creation.
4475 These may be set in your init file, like this:
4476 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4477 These override values given in window system configuration data,
4478 including X Windows' defaults database.
4479 For values specific to the first Emacs frame, see `initial-frame-alist'.
4480 For window-system specific values, see `window-system-default-frame-alist'.
4481 For values specific to the separate minibuffer frame, see
4482 `minibuffer-frame-alist'.
4483 The `menu-bar-lines' element of the list controls whether new frames
4484 have menu bars; `menu-bar-mode' works by altering this element.
4485 Setting this variable does not affect existing frames, only new ones. */);
4486 Vdefault_frame_alist = Qnil;
4488 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4489 doc: /* Default position of scroll bars on this window-system. */);
4490 #ifdef HAVE_WINDOW_SYSTEM
4491 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4492 /* MS-Windows has scroll bars on the right by default. */
4493 Vdefault_frame_scroll_bars = Qright;
4494 #else
4495 Vdefault_frame_scroll_bars = Qleft;
4496 #endif
4497 #else
4498 Vdefault_frame_scroll_bars = Qnil;
4499 #endif
4501 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4502 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4504 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
4505 doc: /* Non-nil if all of Emacs is iconified and frame updates are not needed. */);
4506 Vemacs_iconified = Qnil;
4508 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4509 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4510 `mouse-position' calls this function, passing its usual return value as
4511 argument, and returns whatever this function returns.
4512 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4513 which need to do mouse handling at the Lisp level. */);
4514 Vmouse_position_function = Qnil;
4516 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4517 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4518 If the value is an integer, highlighting is only shown after moving the
4519 mouse, while keyboard input turns off the highlight even when the mouse
4520 is over the clickable text. However, the mouse shape still indicates
4521 when the mouse is over clickable text. */);
4522 Vmouse_highlight = Qt;
4524 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4525 doc: /* Functions to be run before deleting a frame.
4526 The functions are run with one arg, the frame to be deleted.
4527 See `delete-frame'.
4529 Note that functions in this list may be called twice on the same
4530 frame. In the second invocation, the frame is already deleted, and
4531 the function should do nothing. (You can use `frame-live-p' to check
4532 for this.) This wrinkle happens when an earlier function in
4533 `delete-frame-functions' (indirectly) calls `delete-frame'
4534 recursively. */);
4535 Vdelete_frame_functions = Qnil;
4537 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4538 doc: /* Minibufferless frames use this frame's minibuffer.
4540 Emacs cannot create minibufferless frames unless this is set to an
4541 appropriate surrogate.
4543 Emacs consults this variable only when creating minibufferless
4544 frames; once the frame is created, it sticks with its assigned
4545 minibuffer, no matter what this variable is set to. This means that
4546 this variable doesn't necessarily say anything meaningful about the
4547 current set of frames, or where the minibuffer is currently being
4548 displayed.
4550 This variable is local to the current terminal and cannot be buffer-local. */);
4552 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4553 doc: /* Non-nil if window system changes focus when you move the mouse.
4554 You should set this variable to tell Emacs how your window manager
4555 handles focus, since there is no way in general for Emacs to find out
4556 automatically. */);
4557 #ifdef HAVE_WINDOW_SYSTEM
4558 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4559 focus_follows_mouse = 0;
4560 #else
4561 focus_follows_mouse = 1;
4562 #endif
4563 #else
4564 focus_follows_mouse = 0;
4565 #endif
4567 staticpro (&Vframe_list);
4569 defsubr (&Sactive_minibuffer_window);
4570 defsubr (&Sframep);
4571 defsubr (&Sframe_live_p);
4572 defsubr (&Swindow_system);
4573 defsubr (&Smake_terminal_frame);
4574 defsubr (&Shandle_switch_frame);
4575 defsubr (&Sselect_frame);
4576 defsubr (&Sselected_frame);
4577 defsubr (&Swindow_frame);
4578 defsubr (&Sframe_root_window);
4579 defsubr (&Sframe_first_window);
4580 defsubr (&Sframe_selected_window);
4581 defsubr (&Sset_frame_selected_window);
4582 defsubr (&Sframe_list);
4583 defsubr (&Snext_frame);
4584 defsubr (&Sprevious_frame);
4585 defsubr (&Sdelete_frame);
4586 defsubr (&Smouse_position);
4587 defsubr (&Smouse_pixel_position);
4588 defsubr (&Sset_mouse_position);
4589 defsubr (&Sset_mouse_pixel_position);
4590 #if 0
4591 defsubr (&Sframe_configuration);
4592 defsubr (&Srestore_frame_configuration);
4593 #endif
4594 defsubr (&Smake_frame_visible);
4595 defsubr (&Smake_frame_invisible);
4596 defsubr (&Siconify_frame);
4597 defsubr (&Sframe_visible_p);
4598 defsubr (&Svisible_frame_list);
4599 defsubr (&Sraise_frame);
4600 defsubr (&Slower_frame);
4601 defsubr (&Sredirect_frame_focus);
4602 defsubr (&Sframe_focus);
4603 defsubr (&Sframe_parameters);
4604 defsubr (&Sframe_parameter);
4605 defsubr (&Smodify_frame_parameters);
4606 defsubr (&Sframe_char_height);
4607 defsubr (&Sframe_char_width);
4608 defsubr (&Sframe_pixel_height);
4609 defsubr (&Sframe_pixel_width);
4610 defsubr (&Sset_frame_height);
4611 defsubr (&Sset_frame_width);
4612 defsubr (&Sset_frame_size);
4613 defsubr (&Sset_frame_position);
4615 #ifdef HAVE_WINDOW_SYSTEM
4616 defsubr (&Sx_get_resource);
4617 defsubr (&Sx_parse_geometry);
4618 #endif
4622 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4623 (do not change this comment) */