* doc/lispref/frames.texi (Multiple Terminals): Document
[emacs.git] / src / frame.c
blob2d01c6fecaa3ef394ae61183361cbc408bb3d937
1 /* Generic frame functions.
3 Copyright (C) 1993-1995, 1997, 1999-2014 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 of the License, or
10 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #include <stdio.h>
23 #include <errno.h>
24 #include <limits.h>
26 #include <c-ctype.h>
28 #include "lisp.h"
29 #include "character.h"
31 #ifdef HAVE_WINDOW_SYSTEM
32 #include TERM_HEADER
33 #endif /* HAVE_WINDOW_SYSTEM */
35 #include "buffer.h"
36 /* These help us bind and responding to switch-frame events. */
37 #include "commands.h"
38 #include "keyboard.h"
39 #include "frame.h"
40 #include "blockinput.h"
41 #include "termchar.h"
42 #include "termhooks.h"
43 #include "dispextern.h"
44 #include "window.h"
45 #include "font.h"
46 #ifdef HAVE_WINDOW_SYSTEM
47 #include "fontset.h"
48 #endif
49 #ifdef MSDOS
50 #include "msdos.h"
51 #include "dosfns.h"
52 #endif
54 #ifdef HAVE_NS
55 Lisp_Object Qns_parse_geometry;
56 #endif
58 Lisp_Object Qframep, Qframe_live_p;
59 Lisp_Object Qicon, Qmodeline;
60 Lisp_Object Qonly, Qnone;
61 Lisp_Object Qx, Qw32, Qpc, Qns;
62 Lisp_Object Qvisible;
63 Lisp_Object Qdisplay_type;
64 static Lisp_Object Qbackground_mode;
65 Lisp_Object Qnoelisp;
67 static Lisp_Object Qx_frame_parameter;
68 Lisp_Object Qx_resource_name;
69 Lisp_Object Qterminal;
71 /* Frame parameters (set or reported). */
73 Lisp_Object Qauto_raise, Qauto_lower;
74 Lisp_Object Qborder_color, Qborder_width;
75 Lisp_Object Qcursor_color, Qcursor_type;
76 Lisp_Object Qheight, Qwidth;
77 Lisp_Object Qleft, Qright;
78 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
79 Lisp_Object Qtooltip;
80 Lisp_Object Qinternal_border_width;
81 Lisp_Object Qright_divider_width, Qbottom_divider_width;
82 Lisp_Object Qmouse_color;
83 Lisp_Object Qminibuffer;
84 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
85 Lisp_Object Qvisibility;
86 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
87 Lisp_Object Qscreen_gamma;
88 Lisp_Object Qline_spacing;
89 static Lisp_Object Quser_position, Quser_size;
90 Lisp_Object Qwait_for_wm;
91 static Lisp_Object Qwindow_id;
92 #ifdef HAVE_X_WINDOWS
93 static Lisp_Object Qouter_window_id;
94 #endif
95 Lisp_Object Qparent_id;
96 Lisp_Object Qtitle, Qname;
97 static Lisp_Object Qexplicit_name;
98 Lisp_Object Qunsplittable;
99 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines, Qtool_bar_position;
100 Lisp_Object Qleft_fringe, Qright_fringe;
101 Lisp_Object Qbuffer_predicate;
102 static Lisp_Object Qbuffer_list, Qburied_buffer_list;
103 Lisp_Object Qtty_color_mode;
104 Lisp_Object Qtty, Qtty_type;
106 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth, Qmaximized;
107 Lisp_Object Qsticky;
108 Lisp_Object Qfont_backend;
109 Lisp_Object Qalpha;
111 Lisp_Object Qface_set_after_frame_default;
113 static Lisp_Object Qfocus_in_hook;
114 static Lisp_Object Qfocus_out_hook;
115 static Lisp_Object Qdelete_frame_functions;
117 static Lisp_Object Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource;
119 /* The currently selected frame. */
121 Lisp_Object selected_frame;
123 /* A frame which is not just a mini-buffer, or NULL if there are no such
124 frames. This is usually the most recent such frame that was selected. */
126 static struct frame *last_nonminibuf_frame;
128 /* Nonzero means there is at least one garbaged frame. */
130 bool frame_garbaged;
132 #ifdef HAVE_WINDOW_SYSTEM
133 static void x_report_frame_params (struct frame *, Lisp_Object *);
134 #endif
136 /* These setters are used only in this file, so they can be private. */
137 static void
138 fset_buffer_predicate (struct frame *f, Lisp_Object val)
140 f->buffer_predicate = val;
142 static void
143 fset_minibuffer_window (struct frame *f, Lisp_Object val)
145 f->minibuffer_window = val;
148 struct frame *
149 decode_live_frame (register Lisp_Object frame)
151 if (NILP (frame))
152 frame = selected_frame;
153 CHECK_LIVE_FRAME (frame);
154 return XFRAME (frame);
157 struct frame *
158 decode_any_frame (register Lisp_Object frame)
160 if (NILP (frame))
161 frame = selected_frame;
162 CHECK_FRAME (frame);
163 return XFRAME (frame);
166 bool
167 window_system_available (struct frame *f)
169 if (f)
170 return FRAME_WINDOW_P (f) || FRAME_MSDOS_P (f);
171 else
172 #ifdef HAVE_WINDOW_SYSTEM
173 return x_display_list != NULL;
174 #else
175 return 0;
176 #endif
179 struct frame *
180 decode_window_system_frame (Lisp_Object frame)
182 struct frame *f = decode_live_frame (frame);
184 if (!window_system_available (f))
185 error ("Window system frame should be used");
186 return f;
189 void
190 check_window_system (struct frame *f)
192 if (!window_system_available (f))
193 error (f ? "Window system frame should be used"
194 : "Window system is not in use or not initialized");
197 static void
198 set_menu_bar_lines_1 (Lisp_Object window, int n)
200 struct window *w = XWINDOW (window);
201 struct frame *f = XFRAME (WINDOW_FRAME (w));
203 w->top_line += n;
204 w->pixel_top += n * FRAME_LINE_HEIGHT (f);
205 w->total_lines -= n;
206 w->pixel_height -= n * FRAME_LINE_HEIGHT (f);
208 /* Handle just the top child in a vertical split. */
209 if (WINDOW_VERTICAL_COMBINATION_P (w))
210 set_menu_bar_lines_1 (w->contents, n);
211 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
212 /* Adjust all children in a horizontal split. */
213 for (window = w->contents; !NILP (window); window = w->next)
215 w = XWINDOW (window);
216 set_menu_bar_lines_1 (window, n);
220 void
221 set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
223 int nlines;
224 int olines = FRAME_MENU_BAR_LINES (f);
226 /* Right now, menu bars don't work properly in minibuf-only frames;
227 most of the commands try to apply themselves to the minibuffer
228 frame itself, and get an error because you can't switch buffers
229 in or split the minibuffer window. */
230 if (FRAME_MINIBUF_ONLY_P (f))
231 return;
233 if (TYPE_RANGED_INTEGERP (int, value))
234 nlines = XINT (value);
235 else
236 nlines = 0;
238 if (nlines != olines)
240 windows_or_buffers_changed = 14;
241 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
242 FRAME_MENU_BAR_LINES (f) = nlines;
243 FRAME_MENU_BAR_HEIGHT (f) = nlines * FRAME_LINE_HEIGHT (f);
244 set_menu_bar_lines_1 (f->root_window, nlines - olines);
245 adjust_frame_glyphs (f);
249 Lisp_Object Vframe_list;
252 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
253 doc: /* Return non-nil if OBJECT is a frame.
254 Value is:
255 t for a termcap frame (a character-only terminal),
256 'x' for an Emacs frame that is really an X window,
257 'w32' for an Emacs frame that is a window on MS-Windows display,
258 'ns' for an Emacs frame on a GNUstep or Macintosh Cocoa display,
259 'pc' for a direct-write MS-DOS frame.
260 See also `frame-live-p'. */)
261 (Lisp_Object object)
263 if (!FRAMEP (object))
264 return Qnil;
265 switch (XFRAME (object)->output_method)
267 case output_initial: /* The initial frame is like a termcap frame. */
268 case output_termcap:
269 return Qt;
270 case output_x_window:
271 return Qx;
272 case output_w32:
273 return Qw32;
274 case output_msdos_raw:
275 return Qpc;
276 case output_ns:
277 return Qns;
278 default:
279 emacs_abort ();
283 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
284 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
285 Value is nil if OBJECT is not a live frame. If object is a live
286 frame, the return value indicates what sort of terminal device it is
287 displayed on. See the documentation of `framep' for possible
288 return values. */)
289 (Lisp_Object object)
291 return ((FRAMEP (object)
292 && FRAME_LIVE_P (XFRAME (object)))
293 ? Fframep (object)
294 : Qnil);
297 DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
298 doc: /* The name of the window system that FRAME is displaying through.
299 The value is a symbol:
300 nil for a termcap frame (a character-only terminal),
301 'x' for an Emacs frame that is really an X window,
302 'w32' for an Emacs frame that is a window on MS-Windows display,
303 'ns' for an Emacs frame on a GNUstep or Macintosh Cocoa display,
304 'pc' for a direct-write MS-DOS frame.
306 FRAME defaults to the currently selected frame.
308 Use of this function as a predicate is deprecated. Instead,
309 use `display-graphic-p' or any of the other `display-*-p'
310 predicates which report frame's specific UI-related capabilities. */)
311 (Lisp_Object frame)
313 Lisp_Object type;
314 if (NILP (frame))
315 frame = selected_frame;
317 type = Fframep (frame);
319 if (NILP (type))
320 wrong_type_argument (Qframep, frame);
322 if (EQ (type, Qt))
323 return Qnil;
324 else
325 return type;
328 struct frame *
329 make_frame (bool mini_p)
331 Lisp_Object frame;
332 register struct frame *f;
333 register struct window *rw, *mw;
334 register Lisp_Object root_window;
335 register Lisp_Object mini_window;
337 f = allocate_frame ();
338 XSETFRAME (frame, f);
340 /* Initialize Lisp data. Note that allocate_frame initializes all
341 Lisp data to nil, so do it only for slots which should not be nil. */
342 fset_tool_bar_position (f, Qtop);
344 /* Initialize non-Lisp data. Note that allocate_frame zeroes out all
345 non-Lisp data, so do it only for slots which should not be zero.
346 To avoid subtle bugs and for the sake of readability, it's better to
347 initialize enum members explicitly even if their values are zero. */
348 f->wants_modeline = true;
349 f->redisplay = true;
350 f->garbaged = true;
351 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
352 f->column_width = 1; /* !FRAME_WINDOW_P value. */
353 f->line_height = 1; /* !FRAME_WINDOW_P value. */
354 #ifdef HAVE_WINDOW_SYSTEM
355 f->want_fullscreen = FULLSCREEN_NONE;
356 #endif
358 root_window = make_window ();
359 rw = XWINDOW (root_window);
360 if (mini_p)
362 mini_window = make_window ();
363 mw = XWINDOW (mini_window);
364 wset_next (rw, mini_window);
365 wset_prev (mw, root_window);
366 mw->mini = 1;
367 wset_frame (mw, frame);
368 fset_minibuffer_window (f, mini_window);
370 else
372 mini_window = Qnil;
373 wset_next (rw, Qnil);
374 fset_minibuffer_window (f, Qnil);
377 wset_frame (rw, frame);
379 /* 10 is arbitrary,
380 just so that there is "something there."
381 Correct size will be set up later with change_frame_size. */
383 SET_FRAME_COLS (f, 10);
384 FRAME_LINES (f) = 10;
385 SET_FRAME_WIDTH (f, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f));
386 SET_FRAME_HEIGHT (f, FRAME_LINES (f) * FRAME_LINE_HEIGHT (f));
388 rw->total_cols = 10;
389 rw->pixel_width = rw->total_cols * FRAME_COLUMN_WIDTH (f);
390 rw->total_lines = mini_p ? 9 : 10;
391 rw->pixel_height = rw->total_lines * FRAME_LINE_HEIGHT (f);
393 if (mini_p)
395 mw->top_line = rw->total_lines;
396 mw->pixel_top = rw->pixel_height;
397 mw->total_cols = rw->total_cols;
398 mw->pixel_width = rw->pixel_width;
399 mw->total_lines = 1;
400 mw->pixel_height = FRAME_LINE_HEIGHT (f);
403 /* Choose a buffer for the frame's root window. */
405 Lisp_Object buf = Fcurrent_buffer ();
407 /* If current buffer is hidden, try to find another one. */
408 if (BUFFER_HIDDEN_P (XBUFFER (buf)))
409 buf = other_buffer_safely (buf);
411 /* Use set_window_buffer, not Fset_window_buffer, and don't let
412 hooks be run by it. The reason is that the whole frame/window
413 arrangement is not yet fully initialized at this point. Windows
414 don't have the right size, glyph matrices aren't initialized
415 etc. Running Lisp functions at this point surely ends in a
416 SEGV. */
417 set_window_buffer (root_window, buf, 0, 0);
418 fset_buffer_list (f, list1 (buf));
421 if (mini_p)
422 set_window_buffer (mini_window,
423 (NILP (Vminibuffer_list)
424 ? get_minibuffer (0)
425 : Fcar (Vminibuffer_list)),
426 0, 0);
428 fset_root_window (f, root_window);
429 fset_selected_window (f, root_window);
430 /* Make sure this window seems more recently used than
431 a newly-created, never-selected window. */
432 XWINDOW (f->selected_window)->use_time = ++window_select_count;
434 return f;
437 #ifdef HAVE_WINDOW_SYSTEM
438 /* Make a frame using a separate minibuffer window on another frame.
439 MINI_WINDOW is the minibuffer window to use. nil means use the
440 default (the global minibuffer). */
442 struct frame *
443 make_frame_without_minibuffer (register Lisp_Object mini_window, KBOARD *kb, Lisp_Object display)
445 register struct frame *f;
446 struct gcpro gcpro1;
448 if (!NILP (mini_window))
449 CHECK_LIVE_WINDOW (mini_window);
451 if (!NILP (mini_window)
452 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
453 error ("Frame and minibuffer must be on the same terminal");
455 /* Make a frame containing just a root window. */
456 f = make_frame (0);
458 if (NILP (mini_window))
460 /* Use default-minibuffer-frame if possible. */
461 if (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame))
462 || ! FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame))))
464 Lisp_Object frame_dummy;
466 XSETFRAME (frame_dummy, f);
467 GCPRO1 (frame_dummy);
468 /* If there's no minibuffer frame to use, create one. */
469 kset_default_minibuffer_frame
470 (kb, call1 (intern ("make-initial-minibuffer-frame"), display));
471 UNGCPRO;
474 mini_window
475 = XFRAME (KVAR (kb, Vdefault_minibuffer_frame))->minibuffer_window;
478 fset_minibuffer_window (f, mini_window);
480 /* Make the chosen minibuffer window display the proper minibuffer,
481 unless it is already showing a minibuffer. */
482 if (NILP (Fmemq (XWINDOW (mini_window)->contents, Vminibuffer_list)))
483 /* Use set_window_buffer instead of Fset_window_buffer (see
484 discussion of bug#11984, bug#12025, bug#12026). */
485 set_window_buffer (mini_window,
486 (NILP (Vminibuffer_list)
487 ? get_minibuffer (0)
488 : Fcar (Vminibuffer_list)), 0, 0);
489 return f;
492 /* Make a frame containing only a minibuffer window. */
494 struct frame *
495 make_minibuffer_frame (void)
497 /* First make a frame containing just a root window, no minibuffer. */
499 register struct frame *f = make_frame (0);
500 register Lisp_Object mini_window;
501 register Lisp_Object frame;
503 XSETFRAME (frame, f);
505 f->auto_raise = 0;
506 f->auto_lower = 0;
507 f->no_split = 1;
508 f->wants_modeline = 0;
510 /* Now label the root window as also being the minibuffer.
511 Avoid infinite looping on the window chain by marking next pointer
512 as nil. */
514 mini_window = f->root_window;
515 fset_minibuffer_window (f, mini_window);
516 XWINDOW (mini_window)->mini = 1;
517 wset_next (XWINDOW (mini_window), Qnil);
518 wset_prev (XWINDOW (mini_window), Qnil);
519 wset_frame (XWINDOW (mini_window), frame);
521 /* Put the proper buffer in that window. */
523 /* Use set_window_buffer instead of Fset_window_buffer (see
524 discussion of bug#11984, bug#12025, bug#12026). */
525 set_window_buffer (mini_window,
526 (NILP (Vminibuffer_list)
527 ? get_minibuffer (0)
528 : Fcar (Vminibuffer_list)), 0, 0);
529 return f;
531 #endif /* HAVE_WINDOW_SYSTEM */
533 /* Construct a frame that refers to a terminal. */
535 static printmax_t tty_frame_count;
537 struct frame *
538 make_initial_frame (void)
540 struct frame *f;
541 struct terminal *terminal;
542 Lisp_Object frame;
544 eassert (initial_kboard);
546 /* The first call must initialize Vframe_list. */
547 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
548 Vframe_list = Qnil;
550 terminal = init_initial_terminal ();
552 f = make_frame (1);
553 XSETFRAME (frame, f);
555 Vframe_list = Fcons (frame, Vframe_list);
557 tty_frame_count = 1;
558 fset_name (f, build_pure_c_string ("F1"));
560 SET_FRAME_VISIBLE (f, 1);
562 f->output_method = terminal->type;
563 f->terminal = terminal;
564 f->terminal->reference_count++;
565 f->output_data.nothing = 0;
567 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
568 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
570 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
572 /* The default value of menu-bar-mode is t. */
573 set_menu_bar_lines (f, make_number (1), Qnil);
575 if (!noninteractive)
576 init_frame_faces (f);
578 last_nonminibuf_frame = f;
580 return f;
584 static struct frame *
585 make_terminal_frame (struct terminal *terminal)
587 register struct frame *f;
588 Lisp_Object frame;
589 char name[sizeof "F" + INT_STRLEN_BOUND (printmax_t)];
591 if (!terminal->name)
592 error ("Terminal is not live, can't create new frames on it");
594 f = make_frame (1);
596 XSETFRAME (frame, f);
597 Vframe_list = Fcons (frame, Vframe_list);
599 fset_name (f, make_formatted_string (name, "F%"pMd, ++tty_frame_count));
601 SET_FRAME_VISIBLE (f, 1);
603 f->terminal = terminal;
604 f->terminal->reference_count++;
605 #ifdef MSDOS
606 f->output_data.tty->display_info = &the_only_display_info;
607 if (!inhibit_window_system
608 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
609 || XFRAME (selected_frame)->output_method == output_msdos_raw))
610 f->output_method = output_msdos_raw;
611 else
612 f->output_method = output_termcap;
613 #else /* not MSDOS */
614 f->output_method = output_termcap;
615 create_tty_output (f);
616 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
617 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
618 #endif /* not MSDOS */
620 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
621 FRAME_MENU_BAR_LINES (f) = NILP (Vmenu_bar_mode) ? 0 : 1;
622 FRAME_MENU_BAR_HEIGHT (f) = FRAME_MENU_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
624 /* Set the top frame to the newly created frame. */
625 if (FRAMEP (FRAME_TTY (f)->top_frame)
626 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
627 SET_FRAME_VISIBLE (XFRAME (FRAME_TTY (f)->top_frame), 2); /* obscured */
629 FRAME_TTY (f)->top_frame = frame;
631 if (!noninteractive)
632 init_frame_faces (f);
634 return f;
637 /* Get a suitable value for frame parameter PARAMETER for a newly
638 created frame, based on (1) the user-supplied frame parameter
639 alist SUPPLIED_PARMS, and (2) CURRENT_VALUE. */
641 static Lisp_Object
642 get_future_frame_param (Lisp_Object parameter,
643 Lisp_Object supplied_parms,
644 char *current_value)
646 Lisp_Object result;
648 result = Fassq (parameter, supplied_parms);
649 if (NILP (result))
650 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
651 if (NILP (result) && current_value != NULL)
652 result = build_string (current_value);
653 if (!NILP (result) && !STRINGP (result))
654 result = XCDR (result);
655 if (NILP (result) || !STRINGP (result))
656 result = Qnil;
658 return result;
661 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
662 1, 1, 0,
663 doc: /* Create an additional terminal frame, possibly on another terminal.
664 This function takes one argument, an alist specifying frame parameters.
666 You can create multiple frames on a single text terminal, but only one
667 of them (the selected terminal frame) is actually displayed.
669 In practice, generally you don't need to specify any parameters,
670 except when you want to create a new frame on another terminal.
671 In that case, the `tty' parameter specifies the device file to open,
672 and the `tty-type' parameter specifies the terminal type. Example:
674 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
676 Note that changing the size of one terminal frame automatically
677 affects all frames on the same terminal device. */)
678 (Lisp_Object parms)
680 struct frame *f;
681 struct terminal *t = NULL;
682 Lisp_Object frame, tem;
683 struct frame *sf = SELECTED_FRAME ();
685 #ifdef MSDOS
686 if (sf->output_method != output_msdos_raw
687 && sf->output_method != output_termcap)
688 emacs_abort ();
689 #else /* not MSDOS */
691 #ifdef WINDOWSNT /* This should work now! */
692 if (sf->output_method != output_termcap)
693 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
694 #endif
695 #endif /* not MSDOS */
698 Lisp_Object terminal;
700 terminal = Fassq (Qterminal, parms);
701 if (CONSP (terminal))
703 terminal = XCDR (terminal);
704 t = get_terminal (terminal, 1);
706 #ifdef MSDOS
707 if (t && t != the_only_display_info.terminal)
708 /* msdos.c assumes a single tty_display_info object. */
709 error ("Multiple terminals are not supported on this platform");
710 if (!t)
711 t = the_only_display_info.terminal;
712 #endif
715 if (!t)
717 char *name = 0, *type = 0;
718 Lisp_Object tty, tty_type;
720 tty = get_future_frame_param
721 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
722 ? FRAME_TTY (XFRAME (selected_frame))->name
723 : NULL));
724 if (!NILP (tty))
725 name = xlispstrdupa (tty);
727 tty_type = get_future_frame_param
728 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
729 ? FRAME_TTY (XFRAME (selected_frame))->type
730 : NULL));
731 if (!NILP (tty_type))
732 type = xlispstrdupa (tty_type);
734 t = init_tty (name, type, 0); /* Errors are not fatal. */
737 f = make_terminal_frame (t);
740 int width, height;
741 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
742 change_frame_size (f, width, height, 0, 0, 0, 0);
745 adjust_frame_glyphs (f);
746 calculate_costs (f);
747 XSETFRAME (frame, f);
749 store_in_alist (&parms, Qtty_type, build_string (t->display_info.tty->type));
750 store_in_alist (&parms, Qtty,
751 (t->display_info.tty->name
752 ? build_string (t->display_info.tty->name)
753 : Qnil));
754 Fmodify_frame_parameters (frame, parms);
756 /* Make the frame face alist be frame-specific, so that each
757 frame could change its face definitions independently. */
758 fset_face_alist (f, Fcopy_alist (sf->face_alist));
759 /* Simple Fcopy_alist isn't enough, because we need the contents of
760 the vectors which are the CDRs of associations in face_alist to
761 be copied as well. */
762 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
763 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
764 return frame;
768 /* Perform the switch to frame FRAME.
770 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
771 FRAME1 as frame.
773 If TRACK is non-zero and the frame that currently has the focus
774 redirects its focus to the selected frame, redirect that focused
775 frame's focus to FRAME instead.
777 FOR_DELETION non-zero means that the selected frame is being
778 deleted, which includes the possibility that the frame's terminal
779 is dead.
781 The value of NORECORD is passed as argument to Fselect_window. */
783 Lisp_Object
784 do_switch_frame (Lisp_Object frame, int track, int for_deletion, Lisp_Object norecord)
786 struct frame *sf = SELECTED_FRAME ();
788 /* If FRAME is a switch-frame event, extract the frame we should
789 switch to. */
790 if (CONSP (frame)
791 && EQ (XCAR (frame), Qswitch_frame)
792 && CONSP (XCDR (frame)))
793 frame = XCAR (XCDR (frame));
795 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
796 a switch-frame event to arrive after a frame is no longer live,
797 especially when deleting the initial frame during startup. */
798 CHECK_FRAME (frame);
799 if (! FRAME_LIVE_P (XFRAME (frame)))
800 return Qnil;
802 if (sf == XFRAME (frame))
803 return frame;
805 /* If a frame's focus has been redirected toward the currently
806 selected frame, we should change the redirection to point to the
807 newly selected frame. This means that if the focus is redirected
808 from a minibufferless frame to a surrogate minibuffer frame, we
809 can use `other-window' to switch between all the frames using
810 that minibuffer frame, and the focus redirection will follow us
811 around. */
812 #if 0
813 /* This is too greedy; it causes inappropriate focus redirection
814 that's hard to get rid of. */
815 if (track)
817 Lisp_Object tail;
819 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
821 Lisp_Object focus;
823 if (!FRAMEP (XCAR (tail)))
824 emacs_abort ();
826 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
828 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
829 Fredirect_frame_focus (XCAR (tail), frame);
832 #else /* ! 0 */
833 /* Instead, apply it only to the frame we're pointing to. */
834 #ifdef HAVE_WINDOW_SYSTEM
835 if (track && FRAME_WINDOW_P (XFRAME (frame)))
837 Lisp_Object focus, xfocus;
839 xfocus = x_get_focus_frame (XFRAME (frame));
840 if (FRAMEP (xfocus))
842 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
843 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
844 Fredirect_frame_focus (xfocus, frame);
847 #endif /* HAVE_X_WINDOWS */
848 #endif /* ! 0 */
850 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
851 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
853 if (FRAME_TERMCAP_P (XFRAME (frame)) || FRAME_MSDOS_P (XFRAME (frame)))
855 Lisp_Object top_frame = FRAME_TTY (XFRAME (frame))->top_frame;
857 /* Don't mark the frame garbaged and/or obscured if we are
858 switching to the frame that is already the top frame of that
859 TTY. */
860 if (!EQ (frame, top_frame))
862 if (FRAMEP (top_frame))
863 /* Mark previously displayed frame as now obscured. */
864 SET_FRAME_VISIBLE (XFRAME (top_frame), 2);
865 SET_FRAME_VISIBLE (XFRAME (frame), 1);
867 FRAME_TTY (XFRAME (frame))->top_frame = frame;
870 selected_frame = frame;
871 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
872 last_nonminibuf_frame = XFRAME (selected_frame);
874 Fselect_window (XFRAME (frame)->selected_window, norecord);
876 /* We want to make sure that the next event generates a frame-switch
877 event to the appropriate frame. This seems kludgy to me, but
878 before you take it out, make sure that evaluating something like
879 (select-window (frame-root-window (new-frame))) doesn't end up
880 with your typing being interpreted in the new frame instead of
881 the one you're actually typing in. */
882 internal_last_event_frame = Qnil;
884 return frame;
887 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
888 doc: /* Select FRAME.
889 Subsequent editing commands apply to its selected window.
890 Optional argument NORECORD means to neither change the order of
891 recently selected windows nor the buffer list.
893 The selection of FRAME lasts until the next time the user does
894 something to select a different frame, or until the next time
895 this function is called. If you are using a window system, the
896 previously selected frame may be restored as the selected frame
897 when returning to the command loop, because it still may have
898 the window system's input focus. On a text terminal, the next
899 redisplay will display FRAME.
901 This function returns FRAME, or nil if FRAME has been deleted. */)
902 (Lisp_Object frame, Lisp_Object norecord)
904 return do_switch_frame (frame, 1, 0, norecord);
907 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
908 doc: /* Handle a switch-frame event EVENT.
909 Switch-frame events are usually bound to this function.
910 A switch-frame event tells Emacs that the window manager has requested
911 that the user's events be directed to the frame mentioned in the event.
912 This function selects the selected window of the frame of EVENT.
914 If EVENT is frame object, handle it as if it were a switch-frame event
915 to that frame. */)
916 (Lisp_Object event)
918 /* Preserve prefix arg that the command loop just cleared. */
919 kset_prefix_arg (current_kboard, Vcurrent_prefix_arg);
920 Frun_hooks (1, &Qmouse_leave_buffer_hook);
921 /* `switch-frame' implies a focus in. */
922 call1 (intern ("handle-focus-in"), event);
923 return do_switch_frame (event, 0, 0, Qnil);
926 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
927 doc: /* Return the frame that is now selected. */)
928 (void)
930 return selected_frame;
933 DEFUN ("frame-list", Fframe_list, Sframe_list,
934 0, 0, 0,
935 doc: /* Return a list of all live frames. */)
936 (void)
938 Lisp_Object frames;
939 frames = Fcopy_sequence (Vframe_list);
940 #ifdef HAVE_WINDOW_SYSTEM
941 if (FRAMEP (tip_frame))
942 frames = Fdelq (tip_frame, frames);
943 #endif
944 return frames;
947 /* Return CANDIDATE if it can be used as 'other-than-FRAME' frame on the
948 same tty (for tty frames) or among frames which uses FRAME's keyboard.
949 If MINIBUF is nil, do not consider minibuffer-only candidate.
950 If MINIBUF is `visible', do not consider an invisible candidate.
951 If MINIBUF is a window, consider only its own frame and candidate now
952 using that window as the minibuffer.
953 If MINIBUF is 0, consider candidate if it is visible or iconified.
954 Otherwise consider any candidate and return nil if CANDIDATE is not
955 acceptable. */
957 static Lisp_Object
958 candidate_frame (Lisp_Object candidate, Lisp_Object frame, Lisp_Object minibuf)
960 struct frame *c = XFRAME (candidate), *f = XFRAME (frame);
962 if ((!FRAME_TERMCAP_P (c) && !FRAME_TERMCAP_P (f)
963 && FRAME_KBOARD (c) == FRAME_KBOARD (f))
964 || (FRAME_TERMCAP_P (c) && FRAME_TERMCAP_P (f)
965 && FRAME_TTY (c) == FRAME_TTY (f)))
967 if (NILP (minibuf))
969 if (!FRAME_MINIBUF_ONLY_P (c))
970 return candidate;
972 else if (EQ (minibuf, Qvisible))
974 if (FRAME_VISIBLE_P (c))
975 return candidate;
977 else if (WINDOWP (minibuf))
979 if (EQ (FRAME_MINIBUF_WINDOW (c), minibuf)
980 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), candidate)
981 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
982 FRAME_FOCUS_FRAME (c)))
983 return candidate;
985 else if (XFASTINT (minibuf) == 0)
987 if (FRAME_VISIBLE_P (c) || FRAME_ICONIFIED_P (c))
988 return candidate;
990 else
991 return candidate;
993 return Qnil;
996 /* Return the next frame in the frame list after FRAME. */
998 static Lisp_Object
999 next_frame (Lisp_Object frame, Lisp_Object minibuf)
1001 Lisp_Object f, tail;
1002 int passed = 0;
1004 /* There must always be at least one frame in Vframe_list. */
1005 eassert (CONSP (Vframe_list));
1007 while (passed < 2)
1008 FOR_EACH_FRAME (tail, f)
1010 if (passed)
1012 f = candidate_frame (f, frame, minibuf);
1013 if (!NILP (f))
1014 return f;
1016 if (EQ (frame, f))
1017 passed++;
1019 return frame;
1022 /* Return the previous frame in the frame list before FRAME. */
1024 static Lisp_Object
1025 prev_frame (Lisp_Object frame, Lisp_Object minibuf)
1027 Lisp_Object f, tail, prev = Qnil;
1029 /* There must always be at least one frame in Vframe_list. */
1030 eassert (CONSP (Vframe_list));
1032 FOR_EACH_FRAME (tail, f)
1034 if (EQ (frame, f) && !NILP (prev))
1035 return prev;
1036 f = candidate_frame (f, frame, minibuf);
1037 if (!NILP (f))
1038 prev = f;
1041 /* We've scanned the entire list. */
1042 if (NILP (prev))
1043 /* We went through the whole frame list without finding a single
1044 acceptable frame. Return the original frame. */
1045 return frame;
1046 else
1047 /* There were no acceptable frames in the list before FRAME; otherwise,
1048 we would have returned directly from the loop. Since PREV is the last
1049 acceptable frame in the list, return it. */
1050 return prev;
1054 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1055 doc: /* Return the next frame in the frame list after FRAME.
1056 It considers only frames on the same terminal as FRAME.
1057 By default, skip minibuffer-only frames.
1058 If omitted, FRAME defaults to the selected frame.
1059 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1060 If MINIFRAME is a window, include only its own frame
1061 and any frame now using that window as the minibuffer.
1062 If MINIFRAME is `visible', include all visible frames.
1063 If MINIFRAME is 0, include all visible and iconified frames.
1064 Otherwise, include all frames. */)
1065 (Lisp_Object frame, Lisp_Object miniframe)
1067 if (NILP (frame))
1068 frame = selected_frame;
1069 CHECK_LIVE_FRAME (frame);
1070 return next_frame (frame, miniframe);
1073 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1074 doc: /* Return the previous frame in the frame list before FRAME.
1075 It considers only frames on the same terminal as FRAME.
1076 By default, skip minibuffer-only frames.
1077 If omitted, FRAME defaults to the selected frame.
1078 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1079 If MINIFRAME is a window, include only its own frame
1080 and any frame now using that window as the minibuffer.
1081 If MINIFRAME is `visible', include all visible frames.
1082 If MINIFRAME is 0, include all visible and iconified frames.
1083 Otherwise, include all frames. */)
1084 (Lisp_Object frame, Lisp_Object miniframe)
1086 if (NILP (frame))
1087 frame = selected_frame;
1088 CHECK_LIVE_FRAME (frame);
1089 return prev_frame (frame, miniframe);
1092 DEFUN ("last-nonminibuffer-frame", Flast_nonminibuf_frame,
1093 Slast_nonminibuf_frame, 0, 0, 0,
1094 doc: /* Return last non-minibuffer frame selected. */)
1095 (void)
1097 Lisp_Object frame = Qnil;
1099 if (last_nonminibuf_frame)
1100 XSETFRAME (frame, last_nonminibuf_frame);
1102 return frame;
1105 /* Return 1 if it is ok to delete frame F;
1106 0 if all frames aside from F are invisible.
1107 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1109 static int
1110 other_visible_frames (struct frame *f)
1112 Lisp_Object frames, this;
1114 FOR_EACH_FRAME (frames, this)
1116 if (f == XFRAME (this))
1117 continue;
1119 /* Verify that we can still talk to the frame's X window,
1120 and note any recent change in visibility. */
1121 #ifdef HAVE_X_WINDOWS
1122 if (FRAME_WINDOW_P (XFRAME (this)))
1123 x_sync (XFRAME (this));
1124 #endif
1126 if (FRAME_VISIBLE_P (XFRAME (this))
1127 || FRAME_ICONIFIED_P (XFRAME (this))
1128 /* Allow deleting the terminal frame when at least one X
1129 frame exists. */
1130 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1131 return 1;
1133 return 0;
1136 /* Make sure that minibuf_window doesn't refer to FRAME's minibuffer
1137 window. Preferably use the selected frame's minibuffer window
1138 instead. If the selected frame doesn't have one, get some other
1139 frame's minibuffer window. SELECT non-zero means select the new
1140 minibuffer window. */
1141 static void
1142 check_minibuf_window (Lisp_Object frame, int select)
1144 struct frame *f = decode_live_frame (frame);
1146 XSETFRAME (frame, f);
1148 if (WINDOWP (minibuf_window) && EQ (f->minibuffer_window, minibuf_window))
1150 Lisp_Object frames, this, window = make_number (0);
1152 if (!EQ (frame, selected_frame)
1153 && FRAME_HAS_MINIBUF_P (XFRAME (selected_frame)))
1154 window = FRAME_MINIBUF_WINDOW (XFRAME (selected_frame));
1155 else
1156 FOR_EACH_FRAME (frames, this)
1158 if (!EQ (this, frame) && FRAME_HAS_MINIBUF_P (XFRAME (this)))
1160 window = FRAME_MINIBUF_WINDOW (XFRAME (this));
1161 break;
1165 /* Don't abort if no window was found (Bug#15247). */
1166 if (WINDOWP (window))
1168 /* Use set_window_buffer instead of Fset_window_buffer (see
1169 discussion of bug#11984, bug#12025, bug#12026). */
1170 set_window_buffer (window, XWINDOW (minibuf_window)->contents, 0, 0);
1171 minibuf_window = window;
1173 /* SELECT non-zero usually means that FRAME's minibuffer
1174 window was selected; select the new one. */
1175 if (select)
1176 Fselect_window (minibuf_window, Qnil);
1182 /* Delete FRAME. When FORCE equals Qnoelisp, delete FRAME
1183 unconditionally. x_connection_closed and delete_terminal use
1184 this. Any other value of FORCE implements the semantics
1185 described for Fdelete_frame. */
1186 Lisp_Object
1187 delete_frame (Lisp_Object frame, Lisp_Object force)
1189 struct frame *f = decode_any_frame (frame);
1190 struct frame *sf;
1191 struct kboard *kb;
1193 int minibuffer_selected, is_tooltip_frame;
1195 if (! FRAME_LIVE_P (f))
1196 return Qnil;
1198 if (NILP (force) && !other_visible_frames (f))
1199 error ("Attempt to delete the sole visible or iconified frame");
1201 /* x_connection_closed must have set FORCE to `noelisp' in order
1202 to delete the last frame, if it is gone. */
1203 if (NILP (XCDR (Vframe_list)) && !EQ (force, Qnoelisp))
1204 error ("Attempt to delete the only frame");
1206 XSETFRAME (frame, f);
1208 /* Does this frame have a minibuffer, and is it the surrogate
1209 minibuffer for any other frame? */
1210 if (FRAME_HAS_MINIBUF_P (f))
1212 Lisp_Object frames, this;
1214 FOR_EACH_FRAME (frames, this)
1216 Lisp_Object fminiw;
1218 if (EQ (this, frame))
1219 continue;
1221 fminiw = FRAME_MINIBUF_WINDOW (XFRAME (this));
1223 if (WINDOWP (fminiw) && EQ (frame, WINDOW_FRAME (XWINDOW (fminiw))))
1225 /* If we MUST delete this frame, delete the other first.
1226 But do this only if FORCE equals `noelisp'. */
1227 if (EQ (force, Qnoelisp))
1228 delete_frame (this, Qnoelisp);
1229 else
1230 error ("Attempt to delete a surrogate minibuffer frame");
1235 is_tooltip_frame = !NILP (Fframe_parameter (frame, intern ("tooltip")));
1237 /* Run `delete-frame-functions' unless FORCE is `noelisp' or
1238 frame is a tooltip. FORCE is set to `noelisp' when handling
1239 a disconnect from the terminal, so we don't dare call Lisp
1240 code. */
1241 if (NILP (Vrun_hooks) || is_tooltip_frame)
1243 else if (EQ (force, Qnoelisp))
1244 pending_funcalls
1245 = Fcons (list3 (Qrun_hook_with_args, Qdelete_frame_functions, frame),
1246 pending_funcalls);
1247 else
1249 #ifdef HAVE_X_WINDOWS
1250 /* Also, save clipboard to the clipboard manager. */
1251 x_clipboard_manager_save_frame (frame);
1252 #endif
1254 safe_call2 (Qrun_hook_with_args, Qdelete_frame_functions, frame);
1257 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1258 if (! FRAME_LIVE_P (f))
1259 return Qnil;
1261 /* At this point, we are committed to deleting the frame.
1262 There is no more chance for errors to prevent it. */
1264 minibuffer_selected = EQ (minibuf_window, selected_window);
1265 sf = SELECTED_FRAME ();
1266 /* Don't let the frame remain selected. */
1267 if (f == sf)
1269 Lisp_Object tail;
1270 Lisp_Object frame1 = Qnil;
1272 /* Look for another visible frame on the same terminal.
1273 Do not call next_frame here because it may loop forever.
1274 See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15025. */
1275 FOR_EACH_FRAME (tail, frame1)
1276 if (!EQ (frame, frame1)
1277 && (FRAME_TERMINAL (XFRAME (frame))
1278 == FRAME_TERMINAL (XFRAME (frame1)))
1279 && FRAME_VISIBLE_P (XFRAME (frame1)))
1280 break;
1282 /* If there is none, find *some* other frame. */
1283 if (NILP (frame1) || EQ (frame1, frame))
1285 FOR_EACH_FRAME (tail, frame1)
1287 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
1289 /* Do not change a text terminal's top-frame. */
1290 struct frame *f1 = XFRAME (frame1);
1291 if (FRAME_TERMCAP_P (f1) || FRAME_MSDOS_P (f1))
1293 Lisp_Object top_frame = FRAME_TTY (f1)->top_frame;
1294 if (!EQ (top_frame, frame))
1295 frame1 = top_frame;
1297 break;
1301 #ifdef NS_IMPL_COCOA
1302 else
1303 /* Under NS, there is no system mechanism for choosing a new
1304 window to get focus -- it is left to application code.
1305 So the portion of THIS application interfacing with NS
1306 needs to know about it. We call Fraise_frame, but the
1307 purpose is really to transfer focus. */
1308 Fraise_frame (frame1);
1309 #endif
1311 do_switch_frame (frame1, 0, 1, Qnil);
1312 sf = SELECTED_FRAME ();
1315 /* Don't allow minibuf_window to remain on a deleted frame. */
1316 check_minibuf_window (frame, minibuffer_selected);
1318 /* Don't let echo_area_window to remain on a deleted frame. */
1319 if (EQ (f->minibuffer_window, echo_area_window))
1320 echo_area_window = sf->minibuffer_window;
1322 /* Clear any X selections for this frame. */
1323 #ifdef HAVE_X_WINDOWS
1324 if (FRAME_X_P (f))
1325 x_clear_frame_selections (f);
1326 #endif
1328 /* Free glyphs.
1329 This function must be called before the window tree of the
1330 frame is deleted because windows contain dynamically allocated
1331 memory. */
1332 free_glyphs (f);
1334 #ifdef HAVE_WINDOW_SYSTEM
1335 /* Give chance to each font driver to free a frame specific data. */
1336 font_update_drivers (f, Qnil);
1337 #endif
1339 /* Mark all the windows that used to be on FRAME as deleted, and then
1340 remove the reference to them. */
1341 delete_all_child_windows (f->root_window);
1342 fset_root_window (f, Qnil);
1344 Vframe_list = Fdelq (frame, Vframe_list);
1345 SET_FRAME_VISIBLE (f, 0);
1347 /* Allow the vector of menu bar contents to be freed in the next
1348 garbage collection. The frame object itself may not be garbage
1349 collected until much later, because recent_keys and other data
1350 structures can still refer to it. */
1351 fset_menu_bar_vector (f, Qnil);
1353 /* If FRAME's buffer lists contains killed
1354 buffers, this helps GC to reclaim them. */
1355 fset_buffer_list (f, Qnil);
1356 fset_buried_buffer_list (f, Qnil);
1358 free_font_driver_list (f);
1359 xfree (f->namebuf);
1360 xfree (f->decode_mode_spec_buffer);
1361 xfree (FRAME_INSERT_COST (f));
1362 xfree (FRAME_DELETEN_COST (f));
1363 xfree (FRAME_INSERTN_COST (f));
1364 xfree (FRAME_DELETE_COST (f));
1366 /* Since some events are handled at the interrupt level, we may get
1367 an event for f at any time; if we zero out the frame's terminal
1368 now, then we may trip up the event-handling code. Instead, we'll
1369 promise that the terminal of the frame must be valid until we
1370 have called the window-system-dependent frame destruction
1371 routine. */
1375 struct terminal *terminal;
1376 block_input ();
1377 if (FRAME_TERMINAL (f)->delete_frame_hook)
1378 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
1379 terminal = FRAME_TERMINAL (f);
1380 f->output_data.nothing = 0;
1381 f->terminal = 0; /* Now the frame is dead. */
1382 unblock_input ();
1384 /* If needed, delete the terminal that this frame was on.
1385 (This must be done after the frame is killed.) */
1386 terminal->reference_count--;
1387 #ifdef USE_GTK
1388 /* FIXME: Deleting the terminal crashes emacs because of a GTK
1389 bug.
1390 http://lists.gnu.org/archive/html/emacs-devel/2011-10/msg00363.html */
1391 if (terminal->reference_count == 0 && terminal->type == output_x_window)
1392 terminal->reference_count = 1;
1393 #endif /* USE_GTK */
1394 if (terminal->reference_count == 0)
1396 Lisp_Object tmp;
1397 XSETTERMINAL (tmp, terminal);
1399 kb = NULL;
1400 Fdelete_terminal (tmp, NILP (force) ? Qt : force);
1402 else
1403 kb = terminal->kboard;
1406 /* If we've deleted the last_nonminibuf_frame, then try to find
1407 another one. */
1408 if (f == last_nonminibuf_frame)
1410 Lisp_Object frames, this;
1412 last_nonminibuf_frame = 0;
1414 FOR_EACH_FRAME (frames, this)
1416 f = XFRAME (this);
1417 if (!FRAME_MINIBUF_ONLY_P (f))
1419 last_nonminibuf_frame = f;
1420 break;
1425 /* If there's no other frame on the same kboard, get out of
1426 single-kboard state if we're in it for this kboard. */
1427 if (kb != NULL)
1429 Lisp_Object frames, this;
1430 /* Some frame we found on the same kboard, or nil if there are none. */
1431 Lisp_Object frame_on_same_kboard = Qnil;
1433 FOR_EACH_FRAME (frames, this)
1434 if (kb == FRAME_KBOARD (XFRAME (this)))
1435 frame_on_same_kboard = this;
1437 if (NILP (frame_on_same_kboard))
1438 not_single_kboard_state (kb);
1442 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1443 find another one. Prefer minibuffer-only frames, but also notice
1444 frames with other windows. */
1445 if (kb != NULL && EQ (frame, KVAR (kb, Vdefault_minibuffer_frame)))
1447 Lisp_Object frames, this;
1449 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1450 Lisp_Object frame_with_minibuf = Qnil;
1451 /* Some frame we found on the same kboard, or nil if there are none. */
1452 Lisp_Object frame_on_same_kboard = Qnil;
1454 FOR_EACH_FRAME (frames, this)
1456 struct frame *f1 = XFRAME (this);
1458 /* Consider only frames on the same kboard
1459 and only those with minibuffers. */
1460 if (kb == FRAME_KBOARD (f1)
1461 && FRAME_HAS_MINIBUF_P (f1))
1463 frame_with_minibuf = this;
1464 if (FRAME_MINIBUF_ONLY_P (f1))
1465 break;
1468 if (kb == FRAME_KBOARD (f1))
1469 frame_on_same_kboard = this;
1472 if (!NILP (frame_on_same_kboard))
1474 /* We know that there must be some frame with a minibuffer out
1475 there. If this were not true, all of the frames present
1476 would have to be minibufferless, which implies that at some
1477 point their minibuffer frames must have been deleted, but
1478 that is prohibited at the top; you can't delete surrogate
1479 minibuffer frames. */
1480 if (NILP (frame_with_minibuf))
1481 emacs_abort ();
1483 kset_default_minibuffer_frame (kb, frame_with_minibuf);
1485 else
1486 /* No frames left on this kboard--say no minibuffer either. */
1487 kset_default_minibuffer_frame (kb, Qnil);
1490 /* Cause frame titles to update--necessary if we now have just one frame. */
1491 if (!is_tooltip_frame)
1492 update_mode_lines = 15;
1494 return Qnil;
1497 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1498 doc: /* Delete FRAME, permanently eliminating it from use.
1499 FRAME defaults to the selected frame.
1501 A frame may not be deleted if its minibuffer is used by other frames.
1502 Normally, you may not delete a frame if all other frames are invisible,
1503 but if the second optional argument FORCE is non-nil, you may do so.
1505 This function runs `delete-frame-functions' before actually
1506 deleting the frame, unless the frame is a tooltip.
1507 The functions are run with one argument, the frame to be deleted. */)
1508 (Lisp_Object frame, Lisp_Object force)
1510 return delete_frame (frame, !NILP (force) ? Qt : Qnil);
1514 /* Return mouse position in character cell units. */
1516 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1517 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1518 The position is given in character cells, where (0, 0) is the
1519 upper-left corner of the frame, X is the horizontal offset, and Y is
1520 the vertical offset.
1521 If Emacs is running on a mouseless terminal or hasn't been programmed
1522 to read the mouse position, it returns the selected frame for FRAME
1523 and nil for X and Y.
1524 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1525 passing the normal return value to that function as an argument,
1526 and returns whatever that function returns. */)
1527 (void)
1529 struct frame *f;
1530 Lisp_Object lispy_dummy;
1531 Lisp_Object x, y, retval;
1532 struct gcpro gcpro1;
1534 f = SELECTED_FRAME ();
1535 x = y = Qnil;
1537 /* It's okay for the hook to refrain from storing anything. */
1538 if (FRAME_TERMINAL (f)->mouse_position_hook)
1540 enum scroll_bar_part party_dummy;
1541 Time time_dummy;
1542 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1543 &lispy_dummy, &party_dummy,
1544 &x, &y,
1545 &time_dummy);
1548 if (! NILP (x))
1550 int col = XINT (x);
1551 int row = XINT (y);
1552 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1553 XSETINT (x, col);
1554 XSETINT (y, row);
1556 XSETFRAME (lispy_dummy, f);
1557 retval = Fcons (lispy_dummy, Fcons (x, y));
1558 GCPRO1 (retval);
1559 if (!NILP (Vmouse_position_function))
1560 retval = call1 (Vmouse_position_function, retval);
1561 RETURN_UNGCPRO (retval);
1564 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1565 Smouse_pixel_position, 0, 0, 0,
1566 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1567 The position is given in pixel units, where (0, 0) is the
1568 upper-left corner of the frame, X is the horizontal offset, and Y is
1569 the vertical offset.
1570 If Emacs is running on a mouseless terminal or hasn't been programmed
1571 to read the mouse position, it returns the selected frame for FRAME
1572 and nil for X and Y. */)
1573 (void)
1575 struct frame *f;
1576 Lisp_Object lispy_dummy;
1577 Lisp_Object x, y;
1579 f = SELECTED_FRAME ();
1580 x = y = Qnil;
1582 /* It's okay for the hook to refrain from storing anything. */
1583 if (FRAME_TERMINAL (f)->mouse_position_hook)
1585 enum scroll_bar_part party_dummy;
1586 Time time_dummy;
1587 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1588 &lispy_dummy, &party_dummy,
1589 &x, &y,
1590 &time_dummy);
1593 XSETFRAME (lispy_dummy, f);
1594 return Fcons (lispy_dummy, Fcons (x, y));
1597 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1598 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1599 Coordinates are relative to the frame, not a window,
1600 so the coordinates of the top left character in the frame
1601 may be nonzero due to left-hand scroll bars or the menu bar.
1603 The position is given in character cells, where (0, 0) is the
1604 upper-left corner of the frame, X is the horizontal offset, and Y is
1605 the vertical offset.
1607 This function is a no-op for an X frame that is not visible.
1608 If you have just created a frame, you must wait for it to become visible
1609 before calling this function on it, like this.
1610 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1611 (Lisp_Object frame, Lisp_Object x, Lisp_Object y)
1613 CHECK_LIVE_FRAME (frame);
1614 CHECK_TYPE_RANGED_INTEGER (int, x);
1615 CHECK_TYPE_RANGED_INTEGER (int, y);
1617 /* I think this should be done with a hook. */
1618 #ifdef HAVE_WINDOW_SYSTEM
1619 if (FRAME_WINDOW_P (XFRAME (frame)))
1620 /* Warping the mouse will cause enternotify and focus events. */
1621 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1622 #else
1623 #if defined (MSDOS)
1624 if (FRAME_MSDOS_P (XFRAME (frame)))
1626 Fselect_frame (frame, Qnil);
1627 mouse_moveto (XINT (x), XINT (y));
1629 #else
1630 #ifdef HAVE_GPM
1632 Fselect_frame (frame, Qnil);
1633 term_mouse_moveto (XINT (x), XINT (y));
1635 #endif
1636 #endif
1637 #endif
1639 return Qnil;
1642 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1643 Sset_mouse_pixel_position, 3, 3, 0,
1644 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1645 The position is given in pixels, where (0, 0) is the upper-left corner
1646 of the frame, X is the horizontal offset, and Y is the vertical offset.
1648 Note, this is a no-op for an X frame that is not visible.
1649 If you have just created a frame, you must wait for it to become visible
1650 before calling this function on it, like this.
1651 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1652 (Lisp_Object frame, Lisp_Object x, Lisp_Object y)
1654 CHECK_LIVE_FRAME (frame);
1655 CHECK_TYPE_RANGED_INTEGER (int, x);
1656 CHECK_TYPE_RANGED_INTEGER (int, y);
1658 /* I think this should be done with a hook. */
1659 #ifdef HAVE_WINDOW_SYSTEM
1660 if (FRAME_WINDOW_P (XFRAME (frame)))
1661 /* Warping the mouse will cause enternotify and focus events. */
1662 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1663 #else
1664 #if defined (MSDOS)
1665 if (FRAME_MSDOS_P (XFRAME (frame)))
1667 Fselect_frame (frame, Qnil);
1668 mouse_moveto (XINT (x), XINT (y));
1670 #else
1671 #ifdef HAVE_GPM
1673 Fselect_frame (frame, Qnil);
1674 term_mouse_moveto (XINT (x), XINT (y));
1676 #endif
1677 #endif
1678 #endif
1680 return Qnil;
1683 static void make_frame_visible_1 (Lisp_Object);
1685 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1686 0, 1, "",
1687 doc: /* Make the frame FRAME visible (assuming it is an X window).
1688 If omitted, FRAME defaults to the currently selected frame. */)
1689 (Lisp_Object frame)
1691 struct frame *f = decode_live_frame (frame);
1693 /* I think this should be done with a hook. */
1694 #ifdef HAVE_WINDOW_SYSTEM
1695 if (FRAME_WINDOW_P (f))
1696 x_make_frame_visible (f);
1697 #endif
1699 make_frame_visible_1 (f->root_window);
1701 /* Make menu bar update for the Buffers and Frames menus. */
1702 /* windows_or_buffers_changed = 15; FIXME: Why? */
1704 XSETFRAME (frame, f);
1705 return frame;
1708 /* Update the display_time slot of the buffers shown in WINDOW
1709 and all its descendants. */
1711 static void
1712 make_frame_visible_1 (Lisp_Object window)
1714 struct window *w;
1716 for (; !NILP (window); window = w->next)
1718 w = XWINDOW (window);
1719 if (WINDOWP (w->contents))
1720 make_frame_visible_1 (w->contents);
1721 else
1722 bset_display_time (XBUFFER (w->contents), Fcurrent_time ());
1726 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1727 0, 2, "",
1728 doc: /* Make the frame FRAME invisible.
1729 If omitted, FRAME defaults to the currently selected frame.
1730 On graphical displays, invisible frames are not updated and are
1731 usually not displayed at all, even in a window system's \"taskbar\".
1733 Normally you may not make FRAME invisible if all other frames are invisible,
1734 but if the second optional argument FORCE is non-nil, you may do so.
1736 This function has no effect on text terminal frames. Such frames are
1737 always considered visible, whether or not they are currently being
1738 displayed in the terminal. */)
1739 (Lisp_Object frame, Lisp_Object force)
1741 struct frame *f = decode_live_frame (frame);
1743 if (NILP (force) && !other_visible_frames (f))
1744 error ("Attempt to make invisible the sole visible or iconified frame");
1746 /* Don't allow minibuf_window to remain on an invisible frame. */
1747 check_minibuf_window (frame, EQ (minibuf_window, selected_window));
1749 /* I think this should be done with a hook. */
1750 #ifdef HAVE_WINDOW_SYSTEM
1751 if (FRAME_WINDOW_P (f))
1752 x_make_frame_invisible (f);
1753 #endif
1755 /* Make menu bar update for the Buffers and Frames menus. */
1756 windows_or_buffers_changed = 16;
1758 return Qnil;
1761 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1762 0, 1, "",
1763 doc: /* Make the frame FRAME into an icon.
1764 If omitted, FRAME defaults to the currently selected frame. */)
1765 (Lisp_Object frame)
1767 struct frame *f = decode_live_frame (frame);
1769 /* Don't allow minibuf_window to remain on an iconified frame. */
1770 check_minibuf_window (frame, EQ (minibuf_window, selected_window));
1772 /* I think this should be done with a hook. */
1773 #ifdef HAVE_WINDOW_SYSTEM
1774 if (FRAME_WINDOW_P (f))
1775 x_iconify_frame (f);
1776 #endif
1778 /* Make menu bar update for the Buffers and Frames menus. */
1779 windows_or_buffers_changed = 17;
1781 return Qnil;
1784 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1785 1, 1, 0,
1786 doc: /* Return t if FRAME is \"visible\" (actually in use for display).
1787 Return the symbol `icon' if FRAME is iconified or \"minimized\".
1788 Return nil if FRAME was made invisible, via `make-frame-invisible'.
1789 On graphical displays, invisible frames are not updated and are
1790 usually not displayed at all, even in a window system's \"taskbar\".
1792 If FRAME is a text terminal frame, this always returns t.
1793 Such frames are always considered visible, whether or not they are
1794 currently being displayed on the terminal. */)
1795 (Lisp_Object frame)
1797 CHECK_LIVE_FRAME (frame);
1799 if (FRAME_VISIBLE_P (XFRAME (frame)))
1800 return Qt;
1801 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1802 return Qicon;
1803 return Qnil;
1806 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1807 0, 0, 0,
1808 doc: /* Return a list of all frames now \"visible\" (being updated). */)
1809 (void)
1811 Lisp_Object tail, frame, value = Qnil;
1813 FOR_EACH_FRAME (tail, frame)
1814 if (FRAME_VISIBLE_P (XFRAME (frame)))
1815 value = Fcons (frame, value);
1817 return value;
1821 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
1822 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
1823 If FRAME is invisible or iconified, make it visible.
1824 If you don't specify a frame, the selected frame is used.
1825 If Emacs is displaying on an ordinary terminal or some other device which
1826 doesn't support multiple overlapping frames, this function selects FRAME. */)
1827 (Lisp_Object frame)
1829 struct frame *f = decode_live_frame (frame);
1831 XSETFRAME (frame, f);
1833 if (FRAME_TERMCAP_P (f))
1834 /* On a text terminal select FRAME. */
1835 Fselect_frame (frame, Qnil);
1836 else
1837 /* Do like the documentation says. */
1838 Fmake_frame_visible (frame);
1840 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
1841 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
1843 return Qnil;
1846 /* Should we have a corresponding function called Flower_Power? */
1847 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
1848 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
1849 If you don't specify a frame, the selected frame is used.
1850 If Emacs is displaying on an ordinary terminal or some other device which
1851 doesn't support multiple overlapping frames, this function does nothing. */)
1852 (Lisp_Object frame)
1854 struct frame *f = decode_live_frame (frame);
1856 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
1857 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
1859 return Qnil;
1863 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
1864 1, 2, 0,
1865 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
1866 In other words, switch-frame events caused by events in FRAME will
1867 request a switch to FOCUS-FRAME, and `last-event-frame' will be
1868 FOCUS-FRAME after reading an event typed at FRAME.
1870 If FOCUS-FRAME is nil, any existing redirection is canceled, and the
1871 frame again receives its own keystrokes.
1873 Focus redirection is useful for temporarily redirecting keystrokes to
1874 a surrogate minibuffer frame when a frame doesn't have its own
1875 minibuffer window.
1877 A frame's focus redirection can be changed by `select-frame'. If frame
1878 FOO is selected, and then a different frame BAR is selected, any
1879 frames redirecting their focus to FOO are shifted to redirect their
1880 focus to BAR. This allows focus redirection to work properly when the
1881 user switches from one frame to another using `select-window'.
1883 This means that a frame whose focus is redirected to itself is treated
1884 differently from a frame whose focus is redirected to nil; the former
1885 is affected by `select-frame', while the latter is not.
1887 The redirection lasts until `redirect-frame-focus' is called to change it. */)
1888 (Lisp_Object frame, Lisp_Object focus_frame)
1890 /* Note that we don't check for a live frame here. It's reasonable
1891 to redirect the focus of a frame you're about to delete, if you
1892 know what other frame should receive those keystrokes. */
1893 struct frame *f = decode_any_frame (frame);
1895 if (! NILP (focus_frame))
1896 CHECK_LIVE_FRAME (focus_frame);
1898 fset_focus_frame (f, focus_frame);
1900 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
1901 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
1903 return Qnil;
1907 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 0, 1, 0,
1908 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
1909 If FRAME is omitted or nil, the selected frame is used.
1910 Return nil if FRAME's focus is not redirected.
1911 See `redirect-frame-focus'. */)
1912 (Lisp_Object frame)
1914 return FRAME_FOCUS_FRAME (decode_live_frame (frame));
1917 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
1918 doc: /* Set the input focus to FRAME.
1919 FRAME nil means use the selected frame.
1920 If there is no window system support, this function does nothing. */)
1921 (Lisp_Object frame)
1923 #ifdef HAVE_WINDOW_SYSTEM
1924 x_focus_frame (decode_window_system_frame (frame));
1925 #endif
1926 return Qnil;
1930 /* Return the value of frame parameter PROP in frame FRAME. */
1932 #ifdef HAVE_WINDOW_SYSTEM
1933 #if !HAVE_NS && !HAVE_NTGUI
1934 static
1935 #endif
1936 Lisp_Object
1937 get_frame_param (register struct frame *frame, Lisp_Object prop)
1939 register Lisp_Object tem;
1941 tem = Fassq (prop, frame->param_alist);
1942 if (EQ (tem, Qnil))
1943 return tem;
1944 return Fcdr (tem);
1946 #endif
1948 /* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
1950 void
1951 frames_discard_buffer (Lisp_Object buffer)
1953 Lisp_Object frame, tail;
1955 FOR_EACH_FRAME (tail, frame)
1957 fset_buffer_list
1958 (XFRAME (frame), Fdelq (buffer, XFRAME (frame)->buffer_list));
1959 fset_buried_buffer_list
1960 (XFRAME (frame), Fdelq (buffer, XFRAME (frame)->buried_buffer_list));
1964 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
1965 If the alist already has an element for PROP, we change it. */
1967 void
1968 store_in_alist (Lisp_Object *alistptr, Lisp_Object prop, Lisp_Object val)
1970 register Lisp_Object tem;
1972 tem = Fassq (prop, *alistptr);
1973 if (EQ (tem, Qnil))
1974 *alistptr = Fcons (Fcons (prop, val), *alistptr);
1975 else
1976 Fsetcdr (tem, val);
1979 static int
1980 frame_name_fnn_p (char *str, ptrdiff_t len)
1982 if (len > 1 && str[0] == 'F' && '0' <= str[1] && str[1] <= '9')
1984 char *p = str + 2;
1985 while ('0' <= *p && *p <= '9')
1986 p++;
1987 if (p == str + len)
1988 return 1;
1990 return 0;
1993 /* Set the name of the terminal frame. Also used by MSDOS frames.
1994 Modeled after x_set_name which is used for WINDOW frames. */
1996 static void
1997 set_term_frame_name (struct frame *f, Lisp_Object name)
1999 f->explicit_name = ! NILP (name);
2001 /* If NAME is nil, set the name to F<num>. */
2002 if (NILP (name))
2004 char namebuf[sizeof "F" + INT_STRLEN_BOUND (printmax_t)];
2006 /* Check for no change needed in this very common case
2007 before we do any consing. */
2008 if (frame_name_fnn_p (SSDATA (f->name), SBYTES (f->name)))
2009 return;
2011 name = make_formatted_string (namebuf, "F%"pMd, ++tty_frame_count);
2013 else
2015 CHECK_STRING (name);
2017 /* Don't change the name if it's already NAME. */
2018 if (! NILP (Fstring_equal (name, f->name)))
2019 return;
2021 /* Don't allow the user to set the frame name to F<num>, so it
2022 doesn't clash with the names we generate for terminal frames. */
2023 if (frame_name_fnn_p (SSDATA (name), SBYTES (name)))
2024 error ("Frame names of the form F<num> are usurped by Emacs");
2027 fset_name (f, name);
2028 update_mode_lines = 16;
2031 #ifdef HAVE_NTGUI
2032 void
2033 set_frame_param (struct frame *f, Lisp_Object prop, Lisp_Object val)
2035 register Lisp_Object old_alist_elt;
2037 old_alist_elt = Fassq (prop, f->param_alist);
2038 if (EQ (old_alist_elt, Qnil))
2039 fset_param_alist (f, Fcons (Fcons (prop, val), f->param_alist));
2040 else
2041 Fsetcdr (old_alist_elt, val);
2043 #endif
2045 void
2046 store_frame_param (struct frame *f, Lisp_Object prop, Lisp_Object val)
2048 register Lisp_Object old_alist_elt;
2050 /* The buffer-list parameters are stored in a special place and not
2051 in the alist. All buffers must be live. */
2052 if (EQ (prop, Qbuffer_list))
2054 Lisp_Object list = Qnil;
2055 for (; CONSP (val); val = XCDR (val))
2056 if (!NILP (Fbuffer_live_p (XCAR (val))))
2057 list = Fcons (XCAR (val), list);
2058 fset_buffer_list (f, Fnreverse (list));
2059 return;
2061 if (EQ (prop, Qburied_buffer_list))
2063 Lisp_Object list = Qnil;
2064 for (; CONSP (val); val = XCDR (val))
2065 if (!NILP (Fbuffer_live_p (XCAR (val))))
2066 list = Fcons (XCAR (val), list);
2067 fset_buried_buffer_list (f, Fnreverse (list));
2068 return;
2071 /* If PROP is a symbol which is supposed to have frame-local values,
2072 and it is set up based on this frame, switch to the global
2073 binding. That way, we can create or alter the frame-local binding
2074 without messing up the symbol's status. */
2075 if (SYMBOLP (prop))
2077 struct Lisp_Symbol *sym = XSYMBOL (prop);
2078 start:
2079 switch (sym->redirect)
2081 case SYMBOL_VARALIAS: sym = indirect_variable (sym); goto start;
2082 case SYMBOL_PLAINVAL: case SYMBOL_FORWARDED: break;
2083 case SYMBOL_LOCALIZED:
2084 { struct Lisp_Buffer_Local_Value *blv = sym->val.blv;
2085 if (blv->frame_local && blv_found (blv) && XFRAME (blv->where) == f)
2086 swap_in_global_binding (sym);
2087 break;
2089 default: emacs_abort ();
2093 /* The tty color needed to be set before the frame's parameter
2094 alist was updated with the new value. This is not true any more,
2095 but we still do this test early on. */
2096 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode)
2097 && f == FRAME_TTY (f)->previous_frame)
2098 /* Force redisplay of this tty. */
2099 FRAME_TTY (f)->previous_frame = NULL;
2101 /* Update the frame parameter alist. */
2102 old_alist_elt = Fassq (prop, f->param_alist);
2103 if (EQ (old_alist_elt, Qnil))
2104 fset_param_alist (f, Fcons (Fcons (prop, val), f->param_alist));
2105 else
2106 Fsetcdr (old_alist_elt, val);
2108 /* Update some other special parameters in their special places
2109 in addition to the alist. */
2111 if (EQ (prop, Qbuffer_predicate))
2112 fset_buffer_predicate (f, val);
2114 if (! FRAME_WINDOW_P (f))
2116 if (EQ (prop, Qmenu_bar_lines))
2117 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2118 else if (EQ (prop, Qname))
2119 set_term_frame_name (f, val);
2122 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2124 if (! MINI_WINDOW_P (XWINDOW (val)))
2125 error ("Surrogate minibuffer windows must be minibuffer windows");
2127 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2128 && !EQ (val, f->minibuffer_window))
2129 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2131 /* Install the chosen minibuffer window, with proper buffer. */
2132 fset_minibuffer_window (f, val);
2136 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2137 doc: /* Return the parameters-alist of frame FRAME.
2138 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2139 The meaningful PARMs depend on the kind of frame.
2140 If FRAME is omitted or nil, return information on the currently selected frame. */)
2141 (Lisp_Object frame)
2143 Lisp_Object alist;
2144 struct frame *f = decode_any_frame (frame);
2145 int height, width;
2146 struct gcpro gcpro1;
2148 if (!FRAME_LIVE_P (f))
2149 return Qnil;
2151 alist = Fcopy_alist (f->param_alist);
2152 GCPRO1 (alist);
2154 if (!FRAME_WINDOW_P (f))
2156 int fg = FRAME_FOREGROUND_PIXEL (f);
2157 int bg = FRAME_BACKGROUND_PIXEL (f);
2158 Lisp_Object elt;
2160 /* If the frame's parameter alist says the colors are
2161 unspecified and reversed, take the frame's background pixel
2162 for foreground and vice versa. */
2163 elt = Fassq (Qforeground_color, alist);
2164 if (CONSP (elt) && STRINGP (XCDR (elt)))
2166 if (strncmp (SSDATA (XCDR (elt)),
2167 unspecified_bg,
2168 SCHARS (XCDR (elt))) == 0)
2169 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2170 else if (strncmp (SSDATA (XCDR (elt)),
2171 unspecified_fg,
2172 SCHARS (XCDR (elt))) == 0)
2173 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2175 else
2176 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2177 elt = Fassq (Qbackground_color, alist);
2178 if (CONSP (elt) && STRINGP (XCDR (elt)))
2180 if (strncmp (SSDATA (XCDR (elt)),
2181 unspecified_fg,
2182 SCHARS (XCDR (elt))) == 0)
2183 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2184 else if (strncmp (SSDATA (XCDR (elt)),
2185 unspecified_bg,
2186 SCHARS (XCDR (elt))) == 0)
2187 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2189 else
2190 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2191 store_in_alist (&alist, intern ("font"),
2192 build_string (FRAME_MSDOS_P (f)
2193 ? "ms-dos"
2194 : FRAME_W32_P (f) ? "w32term"
2195 :"tty"));
2197 store_in_alist (&alist, Qname, f->name);
2198 height = (f->new_height
2199 ? (f->new_pixelwise
2200 ? (f->new_height / FRAME_LINE_HEIGHT (f))
2201 : f->new_height)
2202 : FRAME_LINES (f));
2203 store_in_alist (&alist, Qheight, make_number (height));
2204 width = (f->new_width
2205 ? (f->new_pixelwise
2206 ? (f->new_width / FRAME_COLUMN_WIDTH (f))
2207 : f->new_width)
2208 : FRAME_COLS (f));
2209 store_in_alist (&alist, Qwidth, make_number (width));
2210 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2211 store_in_alist (&alist, Qminibuffer,
2212 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2213 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2214 : FRAME_MINIBUF_WINDOW (f)));
2215 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2216 store_in_alist (&alist, Qbuffer_list, f->buffer_list);
2217 store_in_alist (&alist, Qburied_buffer_list, f->buried_buffer_list);
2219 /* I think this should be done with a hook. */
2220 #ifdef HAVE_WINDOW_SYSTEM
2221 if (FRAME_WINDOW_P (f))
2222 x_report_frame_params (f, &alist);
2223 else
2224 #endif
2226 /* This ought to be correct in f->param_alist for an X frame. */
2227 Lisp_Object lines;
2228 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2229 store_in_alist (&alist, Qmenu_bar_lines, lines);
2232 UNGCPRO;
2233 return alist;
2237 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2238 doc: /* Return FRAME's value for parameter PARAMETER.
2239 If FRAME is nil, describe the currently selected frame. */)
2240 (Lisp_Object frame, Lisp_Object parameter)
2242 struct frame *f = decode_any_frame (frame);
2243 Lisp_Object value = Qnil;
2245 CHECK_SYMBOL (parameter);
2247 XSETFRAME (frame, f);
2249 if (FRAME_LIVE_P (f))
2251 /* Avoid consing in frequent cases. */
2252 if (EQ (parameter, Qname))
2253 value = f->name;
2254 #ifdef HAVE_X_WINDOWS
2255 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2256 value = XCAR (FRAME_DISPLAY_INFO (f)->name_list_element);
2257 #endif /* HAVE_X_WINDOWS */
2258 else if (EQ (parameter, Qbackground_color)
2259 || EQ (parameter, Qforeground_color))
2261 value = Fassq (parameter, f->param_alist);
2262 if (CONSP (value))
2264 value = XCDR (value);
2265 /* Fframe_parameters puts the actual fg/bg color names,
2266 even if f->param_alist says otherwise. This is
2267 important when param_alist's notion of colors is
2268 "unspecified". We need to do the same here. */
2269 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2271 const char *color_name;
2272 ptrdiff_t csz;
2274 if (EQ (parameter, Qbackground_color))
2276 color_name = SSDATA (value);
2277 csz = SCHARS (value);
2278 if (strncmp (color_name, unspecified_bg, csz) == 0)
2279 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2280 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2281 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2283 else if (EQ (parameter, Qforeground_color))
2285 color_name = SSDATA (value);
2286 csz = SCHARS (value);
2287 if (strncmp (color_name, unspecified_fg, csz) == 0)
2288 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2289 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2290 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2294 else
2295 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2297 else if (EQ (parameter, Qdisplay_type)
2298 || EQ (parameter, Qbackground_mode))
2299 value = Fcdr (Fassq (parameter, f->param_alist));
2300 else
2301 /* FIXME: Avoid this code path at all (as well as code duplication)
2302 by sharing more code with Fframe_parameters. */
2303 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2306 return value;
2310 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2311 Smodify_frame_parameters, 2, 2, 0,
2312 doc: /* Modify the parameters of frame FRAME according to ALIST.
2313 If FRAME is nil, it defaults to the selected frame.
2314 ALIST is an alist of parameters to change and their new values.
2315 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2316 The meaningful PARMs depend on the kind of frame.
2317 Undefined PARMs are ignored, but stored in the frame's parameter list
2318 so that `frame-parameters' will return them.
2320 The value of frame parameter FOO can also be accessed
2321 as a frame-local binding for the variable FOO, if you have
2322 enabled such bindings for that variable with `make-variable-frame-local'.
2323 Note that this functionality is obsolete as of Emacs 22.2, and its
2324 use is not recommended. Explicitly check for a frame-parameter instead. */)
2325 (Lisp_Object frame, Lisp_Object alist)
2327 struct frame *f = decode_live_frame (frame);
2328 register Lisp_Object prop, val;
2330 CHECK_LIST (alist);
2332 /* I think this should be done with a hook. */
2333 #ifdef HAVE_WINDOW_SYSTEM
2334 if (FRAME_WINDOW_P (f))
2335 x_set_frame_parameters (f, alist);
2336 else
2337 #endif
2338 #ifdef MSDOS
2339 if (FRAME_MSDOS_P (f))
2340 IT_set_frame_parameters (f, alist);
2341 else
2342 #endif
2345 EMACS_INT length = XFASTINT (Flength (alist));
2346 ptrdiff_t i;
2347 Lisp_Object *parms;
2348 Lisp_Object *values;
2349 USE_SAFE_ALLOCA;
2350 SAFE_ALLOCA_LISP (parms, 2 * length);
2351 values = parms + length;
2353 /* Extract parm names and values into those vectors. */
2355 for (i = 0; CONSP (alist); alist = XCDR (alist))
2357 Lisp_Object elt;
2359 elt = XCAR (alist);
2360 parms[i] = Fcar (elt);
2361 values[i] = Fcdr (elt);
2362 i++;
2365 /* Now process them in reverse of specified order. */
2366 while (--i >= 0)
2368 prop = parms[i];
2369 val = values[i];
2370 store_frame_param (f, prop, val);
2372 if (EQ (prop, Qforeground_color)
2373 || EQ (prop, Qbackground_color))
2374 update_face_from_frame_parameter (f, prop, val);
2377 SAFE_FREE ();
2379 return Qnil;
2382 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2383 0, 1, 0,
2384 doc: /* Height in pixels of a line in the font in frame FRAME.
2385 If FRAME is omitted or nil, the selected frame is used.
2386 For a terminal frame, the value is always 1. */)
2387 (Lisp_Object frame)
2389 #ifdef HAVE_WINDOW_SYSTEM
2390 struct frame *f = decode_any_frame (frame);
2392 if (FRAME_WINDOW_P (f))
2393 return make_number (FRAME_LINE_HEIGHT (f));
2394 else
2395 #endif
2396 return make_number (1);
2400 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2401 0, 1, 0,
2402 doc: /* Width in pixels of characters in the font in frame FRAME.
2403 If FRAME is omitted or nil, the selected frame is used.
2404 On a graphical screen, the width is the standard width of the default font.
2405 For a terminal screen, the value is always 1. */)
2406 (Lisp_Object frame)
2408 #ifdef HAVE_WINDOW_SYSTEM
2409 struct frame *f = decode_any_frame (frame);
2411 if (FRAME_WINDOW_P (f))
2412 return make_number (FRAME_COLUMN_WIDTH (f));
2413 else
2414 #endif
2415 return make_number (1);
2418 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2419 Sframe_pixel_height, 0, 1, 0,
2420 doc: /* Return a FRAME's height in pixels.
2421 If FRAME is omitted or nil, the selected frame is used. The exact value
2422 of the result depends on the window-system and toolkit in use:
2424 In the Gtk+ version of Emacs, it includes only any window (including
2425 the minibuffer or echo area), mode line, and header line. It does not
2426 include the tool bar or menu bar.
2428 With other graphical versions, it also includes the tool bar and the
2429 menu bar.
2431 For a text terminal, it includes the menu bar. In this case, the
2432 result is really in characters rather than pixels (i.e., is identical
2433 to `frame-height'). */)
2434 (Lisp_Object frame)
2436 struct frame *f = decode_any_frame (frame);
2438 #ifdef HAVE_WINDOW_SYSTEM
2439 if (FRAME_WINDOW_P (f))
2440 return make_number (FRAME_PIXEL_HEIGHT (f));
2441 else
2442 #endif
2443 return make_number (FRAME_LINES (f));
2446 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2447 Sframe_pixel_width, 0, 1, 0,
2448 doc: /* Return FRAME's width in pixels.
2449 For a terminal frame, the result really gives the width in characters.
2450 If FRAME is omitted or nil, the selected frame is used. */)
2451 (Lisp_Object frame)
2453 struct frame *f = decode_any_frame (frame);
2455 #ifdef HAVE_WINDOW_SYSTEM
2456 if (FRAME_WINDOW_P (f))
2457 return make_number (FRAME_PIXEL_WIDTH (f));
2458 else
2459 #endif
2460 return make_number (FRAME_COLS (f));
2463 DEFUN ("tool-bar-pixel-width", Ftool_bar_pixel_width,
2464 Stool_bar_pixel_width, 0, 1, 0,
2465 doc: /* Return width in pixels of FRAME's tool bar.
2466 The result is greater than zero only when the tool bar is on the left
2467 or right side of FRAME. If FRAME is omitted or nil, the selected frame
2468 is used. */)
2469 (Lisp_Object frame)
2471 #ifdef FRAME_TOOLBAR_WIDTH
2472 struct frame *f = decode_any_frame (frame);
2474 if (FRAME_WINDOW_P (f))
2475 return make_number (FRAME_TOOLBAR_WIDTH (f));
2476 #endif
2477 return make_number (0);
2480 DEFUN ("frame-text-cols", Fframe_text_cols, Sframe_text_cols, 0, 1, 0,
2481 doc: /* Return width in columns of FRAME's text area. */)
2482 (Lisp_Object frame)
2484 return make_number (FRAME_COLS (decode_any_frame (frame)));
2487 DEFUN ("frame-text-lines", Fframe_text_lines, Sframe_text_lines, 0, 1, 0,
2488 doc: /* Return height in lines of FRAME's text area. */)
2489 (Lisp_Object frame)
2491 return make_number (FRAME_LINES (decode_any_frame (frame)));
2494 DEFUN ("frame-total-cols", Fframe_total_cols, Sframe_total_cols, 0, 1, 0,
2495 doc: /* Return total columns of FRAME. */)
2496 (Lisp_Object frame)
2498 return make_number (FRAME_TOTAL_COLS (decode_any_frame (frame)));
2501 DEFUN ("frame-text-width", Fframe_text_width, Sframe_text_width, 0, 1, 0,
2502 doc: /* Return text area width of FRAME in pixels. */)
2503 (Lisp_Object frame)
2505 return make_number (FRAME_TEXT_WIDTH (decode_any_frame (frame)));
2508 DEFUN ("frame-text-height", Fframe_text_height, Sframe_text_height, 0, 1, 0,
2509 doc: /* Return text area height of FRAME in pixels. */)
2510 (Lisp_Object frame)
2512 return make_number (FRAME_TEXT_HEIGHT (decode_any_frame (frame)));
2515 DEFUN ("frame-scroll-bar-width", Fscroll_bar_width, Sscroll_bar_width, 0, 1, 0,
2516 doc: /* Return scroll bar width of FRAME in pixels. */)
2517 (Lisp_Object frame)
2519 return make_number (FRAME_SCROLL_BAR_AREA_WIDTH (decode_any_frame (frame)));
2522 DEFUN ("frame-fringe-width", Ffringe_width, Sfringe_width, 0, 1, 0,
2523 doc: /* Return fringe width of FRAME in pixels. */)
2524 (Lisp_Object frame)
2526 return make_number (FRAME_TOTAL_FRINGE_WIDTH (decode_any_frame (frame)));
2529 DEFUN ("frame-border-width", Fborder_width, Sborder_width, 0, 1, 0,
2530 doc: /* Return border width of FRAME in pixels. */)
2531 (Lisp_Object frame)
2533 return make_number (FRAME_INTERNAL_BORDER_WIDTH (decode_any_frame (frame)));
2536 DEFUN ("frame-right-divider-width", Fright_divider_width, Sright_divider_width, 0, 1, 0,
2537 doc: /* Return width (in pixels) of vertical window dividers on FRAME. */)
2538 (Lisp_Object frame)
2540 return make_number (FRAME_RIGHT_DIVIDER_WIDTH (decode_any_frame (frame)));
2543 DEFUN ("frame-bottom-divider-width", Fbottom_divider_width, Sbottom_divider_width, 0, 1, 0,
2544 doc: /* Return width (in pixels) of horizontal window dividers on FRAME. */)
2545 (Lisp_Object frame)
2547 return make_number (FRAME_BOTTOM_DIVIDER_WIDTH (decode_any_frame (frame)));
2550 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 4, 0,
2551 doc: /* Specify that the frame FRAME has HEIGHT text lines.
2552 Optional third arg PRETEND non-nil means that redisplay should use
2553 HEIGHT lines but that the idea of the actual height of the frame should
2554 not be changed. Optional fourth argument PIXELWISE non-nil means that
2555 FRAME should be HEIGHT pixels high. */)
2556 (Lisp_Object frame, Lisp_Object height, Lisp_Object pretend, Lisp_Object pixelwise)
2558 register struct frame *f = decode_live_frame (frame);
2560 CHECK_TYPE_RANGED_INTEGER (int, height);
2562 /* I think this should be done with a hook. */
2563 #ifdef HAVE_WINDOW_SYSTEM
2564 if (FRAME_WINDOW_P (f))
2566 if (NILP (pixelwise))
2568 if (XINT (height) != FRAME_LINES (f))
2569 x_set_window_size (f, 1, FRAME_COLS (f), XINT (height), 0);
2571 do_pending_window_change (0);
2573 else if (XINT (height) != FRAME_TEXT_HEIGHT (f))
2575 x_set_window_size (f, 1, FRAME_TEXT_WIDTH (f), XINT (height), 1);
2576 do_pending_window_change (0);
2579 else
2580 #endif
2581 change_frame_size (f, 0, XINT (height), !NILP (pretend), 0, 0,
2582 NILP (pixelwise) ? 0 : 1);
2583 return Qnil;
2586 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 4, 0,
2587 doc: /* Specify that the frame FRAME has WIDTH columns.
2588 Optional third arg PRETEND non-nil means that redisplay should use WIDTH
2589 columns but that the idea of the actual width of the frame should not
2590 be changed. Optional fourth argument PIXELWISE non-nil means that FRAME
2591 should be WIDTH pixels wide. */)
2592 (Lisp_Object frame, Lisp_Object width, Lisp_Object pretend, Lisp_Object pixelwise)
2594 register struct frame *f = decode_live_frame (frame);
2596 CHECK_TYPE_RANGED_INTEGER (int, width);
2598 /* I think this should be done with a hook. */
2599 #ifdef HAVE_WINDOW_SYSTEM
2600 if (FRAME_WINDOW_P (f))
2602 if (NILP (pixelwise))
2604 if (XINT (width) != FRAME_COLS (f))
2605 x_set_window_size (f, 1, XINT (width), FRAME_LINES (f), 0);
2607 do_pending_window_change (0);
2609 else if (XINT (width) != FRAME_TEXT_WIDTH (f))
2611 x_set_window_size (f, 1, XINT (width), FRAME_TEXT_HEIGHT (f), 1);
2612 do_pending_window_change (0);
2615 else
2616 #endif
2617 change_frame_size (f, XINT (width), 0, !NILP (pretend), 0, 0,
2618 NILP (pixelwise) ? 0 : 1);
2619 return Qnil;
2622 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 4, 0,
2623 doc: /* Sets size of FRAME to WIDTH by HEIGHT, measured in characters.
2624 Optional argument PIXELWISE non-nil means to measure in pixels. */)
2625 (Lisp_Object frame, Lisp_Object width, Lisp_Object height, Lisp_Object pixelwise)
2627 register struct frame *f = decode_live_frame (frame);
2629 CHECK_TYPE_RANGED_INTEGER (int, width);
2630 CHECK_TYPE_RANGED_INTEGER (int, height);
2632 /* I think this should be done with a hook. */
2633 #ifdef HAVE_WINDOW_SYSTEM
2634 if (FRAME_WINDOW_P (f))
2636 if (!NILP (pixelwise)
2637 ? (XINT (width) != FRAME_TEXT_WIDTH (f)
2638 || XINT (height) != FRAME_TEXT_HEIGHT (f)
2639 || f->new_height || f->new_width)
2640 : (XINT (width) != FRAME_COLS (f)
2641 || XINT (height) != FRAME_LINES (f)
2642 || f->new_height || f->new_width))
2644 x_set_window_size (f, 1, XINT (width), XINT (height),
2645 NILP (pixelwise) ? 0 : 1);
2646 do_pending_window_change (0);
2649 else
2650 #endif
2651 change_frame_size (f, XINT (width), XINT (height), 0, 0, 0,
2652 NILP (pixelwise) ? 0 : 1);
2654 return Qnil;
2657 DEFUN ("set-frame-position", Fset_frame_position,
2658 Sset_frame_position, 3, 3, 0,
2659 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2660 If FRAME is nil, the selected frame is used. XOFFSET and YOFFSET are
2661 actually the position of the upper left corner of the frame. Negative
2662 values for XOFFSET or YOFFSET are interpreted relative to the rightmost
2663 or bottommost possible position (that stays within the screen). */)
2664 (Lisp_Object frame, Lisp_Object xoffset, Lisp_Object yoffset)
2666 register struct frame *f = decode_live_frame (frame);
2668 CHECK_TYPE_RANGED_INTEGER (int, xoffset);
2669 CHECK_TYPE_RANGED_INTEGER (int, yoffset);
2671 /* I think this should be done with a hook. */
2672 #ifdef HAVE_WINDOW_SYSTEM
2673 if (FRAME_WINDOW_P (f))
2674 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2675 #endif
2677 return Qt;
2681 /***********************************************************************
2682 Frame Parameters
2683 ***********************************************************************/
2685 /* Connect the frame-parameter names for X frames
2686 to the ways of passing the parameter values to the window system.
2688 The name of a parameter, as a Lisp symbol,
2689 has an `x-frame-parameter' property which is an integer in Lisp
2690 that is an index in this table. */
2692 struct frame_parm_table {
2693 const char *name;
2694 Lisp_Object *variable;
2697 static const struct frame_parm_table frame_parms[] =
2699 {"auto-raise", &Qauto_raise},
2700 {"auto-lower", &Qauto_lower},
2701 {"background-color", 0},
2702 {"border-color", &Qborder_color},
2703 {"border-width", &Qborder_width},
2704 {"cursor-color", &Qcursor_color},
2705 {"cursor-type", &Qcursor_type},
2706 {"font", 0},
2707 {"foreground-color", 0},
2708 {"icon-name", &Qicon_name},
2709 {"icon-type", &Qicon_type},
2710 {"internal-border-width", &Qinternal_border_width},
2711 {"right-divider-width", &Qright_divider_width},
2712 {"bottom-divider-width", &Qbottom_divider_width},
2713 {"menu-bar-lines", &Qmenu_bar_lines},
2714 {"mouse-color", &Qmouse_color},
2715 {"name", &Qname},
2716 {"scroll-bar-width", &Qscroll_bar_width},
2717 {"title", &Qtitle},
2718 {"unsplittable", &Qunsplittable},
2719 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2720 {"visibility", &Qvisibility},
2721 {"tool-bar-lines", &Qtool_bar_lines},
2722 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2723 {"scroll-bar-background", &Qscroll_bar_background},
2724 {"screen-gamma", &Qscreen_gamma},
2725 {"line-spacing", &Qline_spacing},
2726 {"left-fringe", &Qleft_fringe},
2727 {"right-fringe", &Qright_fringe},
2728 {"wait-for-wm", &Qwait_for_wm},
2729 {"fullscreen", &Qfullscreen},
2730 {"font-backend", &Qfont_backend},
2731 {"alpha", &Qalpha},
2732 {"sticky", &Qsticky},
2733 {"tool-bar-position", &Qtool_bar_position},
2736 #ifdef HAVE_NTGUI
2738 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2739 wanted positions of the WM window (not Emacs window).
2740 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2741 window (FRAME_X_WINDOW).
2744 void
2745 x_fullscreen_adjust (struct frame *f, int *width, int *height, int *top_pos, int *left_pos)
2747 int newwidth = FRAME_COLS (f);
2748 int newheight = FRAME_LINES (f);
2749 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
2751 *top_pos = f->top_pos;
2752 *left_pos = f->left_pos;
2754 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2756 int ph;
2758 ph = x_display_pixel_height (dpyinfo);
2759 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2760 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2761 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2762 *top_pos = 0;
2765 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2767 int pw;
2769 pw = x_display_pixel_width (dpyinfo);
2770 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2771 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2772 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2773 *left_pos = 0;
2776 *width = newwidth;
2777 *height = newheight;
2780 #endif /* HAVE_NTGUI */
2782 #ifdef HAVE_WINDOW_SYSTEM
2784 /* Change the parameters of frame F as specified by ALIST.
2785 If a parameter is not specially recognized, do nothing special;
2786 otherwise call the `x_set_...' function for that parameter.
2787 Except for certain geometry properties, always call store_frame_param
2788 to store the new value in the parameter alist. */
2790 void
2791 x_set_frame_parameters (struct frame *f, Lisp_Object alist)
2793 Lisp_Object tail;
2795 /* If both of these parameters are present, it's more efficient to
2796 set them both at once. So we wait until we've looked at the
2797 entire list before we set them. */
2798 int width, height;
2800 /* Same here. */
2801 Lisp_Object left, top;
2803 /* Same with these. */
2804 Lisp_Object icon_left, icon_top;
2806 /* Record in these vectors all the parms specified. */
2807 Lisp_Object *parms;
2808 Lisp_Object *values;
2809 ptrdiff_t i, p;
2810 bool left_no_change = 0, top_no_change = 0;
2811 #ifdef HAVE_X_WINDOWS
2812 bool icon_left_no_change = 0, icon_top_no_change = 0;
2813 #endif
2814 bool size_changed = 0;
2815 struct gcpro gcpro1, gcpro2;
2817 i = 0;
2818 for (tail = alist; CONSP (tail); tail = XCDR (tail))
2819 i++;
2821 parms = alloca (i * sizeof *parms);
2822 values = alloca (i * sizeof *values);
2824 /* Extract parm names and values into those vectors. */
2826 i = 0;
2827 for (tail = alist; CONSP (tail); tail = XCDR (tail))
2829 Lisp_Object elt;
2831 elt = XCAR (tail);
2832 parms[i] = Fcar (elt);
2833 values[i] = Fcdr (elt);
2834 i++;
2836 /* TAIL and ALIST are not used again below here. */
2837 alist = tail = Qnil;
2839 GCPRO2 (*parms, *values);
2840 gcpro1.nvars = i;
2841 gcpro2.nvars = i;
2843 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2844 because their values appear in VALUES and strings are not valid. */
2845 top = left = Qunbound;
2846 icon_left = icon_top = Qunbound;
2848 /* Provide default values for HEIGHT and WIDTH. */
2849 width = (f->new_width
2850 ? (f->new_pixelwise
2851 ? (f->new_width / FRAME_COLUMN_WIDTH (f))
2852 : f->new_width)
2853 : FRAME_COLS (f));
2854 height = (f->new_height
2855 ? (f->new_pixelwise
2856 ? (f->new_height / FRAME_LINE_HEIGHT (f))
2857 : f->new_height)
2858 : FRAME_LINES (f));
2860 /* Process foreground_color and background_color before anything else.
2861 They are independent of other properties, but other properties (e.g.,
2862 cursor_color) are dependent upon them. */
2863 /* Process default font as well, since fringe widths depends on it. */
2864 for (p = 0; p < i; p++)
2866 Lisp_Object prop, val;
2868 prop = parms[p];
2869 val = values[p];
2870 if (EQ (prop, Qforeground_color)
2871 || EQ (prop, Qbackground_color)
2872 || EQ (prop, Qfont))
2874 register Lisp_Object param_index, old_value;
2876 old_value = get_frame_param (f, prop);
2877 if (NILP (Fequal (val, old_value)))
2879 store_frame_param (f, prop, val);
2881 param_index = Fget (prop, Qx_frame_parameter);
2882 if (NATNUMP (param_index)
2883 && (XFASTINT (param_index)
2884 < sizeof (frame_parms)/sizeof (frame_parms[0]))
2885 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
2886 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
2891 /* Now process them in reverse of specified order. */
2892 while (i-- != 0)
2894 Lisp_Object prop, val;
2896 prop = parms[i];
2897 val = values[i];
2899 if (EQ (prop, Qwidth) && RANGED_INTEGERP (0, val, INT_MAX))
2901 size_changed = 1;
2902 width = XFASTINT (val);
2904 else if (EQ (prop, Qheight) && RANGED_INTEGERP (0, val, INT_MAX))
2906 size_changed = 1;
2907 height = XFASTINT (val);
2909 else if (EQ (prop, Qtop))
2910 top = val;
2911 else if (EQ (prop, Qleft))
2912 left = val;
2913 else if (EQ (prop, Qicon_top))
2914 icon_top = val;
2915 else if (EQ (prop, Qicon_left))
2916 icon_left = val;
2917 else if (EQ (prop, Qforeground_color)
2918 || EQ (prop, Qbackground_color)
2919 || EQ (prop, Qfont))
2920 /* Processed above. */
2921 continue;
2922 else
2924 register Lisp_Object param_index, old_value;
2926 old_value = get_frame_param (f, prop);
2928 store_frame_param (f, prop, val);
2930 param_index = Fget (prop, Qx_frame_parameter);
2931 if (NATNUMP (param_index)
2932 && (XFASTINT (param_index)
2933 < sizeof (frame_parms)/sizeof (frame_parms[0]))
2934 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
2935 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
2939 /* Don't die if just one of these was set. */
2940 if (EQ (left, Qunbound))
2942 left_no_change = 1;
2943 if (f->left_pos < 0)
2944 left = list2 (Qplus, make_number (f->left_pos));
2945 else
2946 XSETINT (left, f->left_pos);
2948 if (EQ (top, Qunbound))
2950 top_no_change = 1;
2951 if (f->top_pos < 0)
2952 top = list2 (Qplus, make_number (f->top_pos));
2953 else
2954 XSETINT (top, f->top_pos);
2957 /* If one of the icon positions was not set, preserve or default it. */
2958 if (! TYPE_RANGED_INTEGERP (int, icon_left))
2960 #ifdef HAVE_X_WINDOWS
2961 icon_left_no_change = 1;
2962 #endif
2963 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
2964 if (NILP (icon_left))
2965 XSETINT (icon_left, 0);
2967 if (! TYPE_RANGED_INTEGERP (int, icon_top))
2969 #ifdef HAVE_X_WINDOWS
2970 icon_top_no_change = 1;
2971 #endif
2972 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
2973 if (NILP (icon_top))
2974 XSETINT (icon_top, 0);
2977 /* Don't set these parameters unless they've been explicitly
2978 specified. The window might be mapped or resized while we're in
2979 this function, and we don't want to override that unless the lisp
2980 code has asked for it.
2982 Don't set these parameters unless they actually differ from the
2983 window's current parameters; the window may not actually exist
2984 yet. */
2986 Lisp_Object frame;
2988 /* Make this 1, eventually. */
2989 check_frame_size (f, &width, &height, 0);
2991 XSETFRAME (frame, f);
2993 if (size_changed
2994 && (width != FRAME_COLS (f)
2995 || height != FRAME_LINES (f)
2996 || f->new_height || f->new_width))
2997 Fset_frame_size (frame, make_number (width), make_number (height), Qnil);
2999 if ((!NILP (left) || !NILP (top))
3000 && ! (left_no_change && top_no_change)
3001 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3002 && NUMBERP (top) && XINT (top) == f->top_pos))
3004 int leftpos = 0;
3005 int toppos = 0;
3007 /* Record the signs. */
3008 f->size_hint_flags &= ~ (XNegative | YNegative);
3009 if (EQ (left, Qminus))
3010 f->size_hint_flags |= XNegative;
3011 else if (TYPE_RANGED_INTEGERP (int, left))
3013 leftpos = XINT (left);
3014 if (leftpos < 0)
3015 f->size_hint_flags |= XNegative;
3017 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3018 && CONSP (XCDR (left))
3019 && RANGED_INTEGERP (-INT_MAX, XCAR (XCDR (left)), INT_MAX))
3021 leftpos = - XINT (XCAR (XCDR (left)));
3022 f->size_hint_flags |= XNegative;
3024 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3025 && CONSP (XCDR (left))
3026 && TYPE_RANGED_INTEGERP (int, XCAR (XCDR (left))))
3028 leftpos = XINT (XCAR (XCDR (left)));
3031 if (EQ (top, Qminus))
3032 f->size_hint_flags |= YNegative;
3033 else if (TYPE_RANGED_INTEGERP (int, top))
3035 toppos = XINT (top);
3036 if (toppos < 0)
3037 f->size_hint_flags |= YNegative;
3039 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3040 && CONSP (XCDR (top))
3041 && RANGED_INTEGERP (-INT_MAX, XCAR (XCDR (top)), INT_MAX))
3043 toppos = - XINT (XCAR (XCDR (top)));
3044 f->size_hint_flags |= YNegative;
3046 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3047 && CONSP (XCDR (top))
3048 && TYPE_RANGED_INTEGERP (int, XCAR (XCDR (top))))
3050 toppos = XINT (XCAR (XCDR (top)));
3054 /* Store the numeric value of the position. */
3055 f->top_pos = toppos;
3056 f->left_pos = leftpos;
3058 f->win_gravity = NorthWestGravity;
3060 /* Actually set that position, and convert to absolute. */
3061 x_set_offset (f, leftpos, toppos, -1);
3063 #ifdef HAVE_X_WINDOWS
3064 if ((!NILP (icon_left) || !NILP (icon_top))
3065 && ! (icon_left_no_change && icon_top_no_change))
3066 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3067 #endif /* HAVE_X_WINDOWS */
3070 UNGCPRO;
3074 /* Insert a description of internally-recorded parameters of frame X
3075 into the parameter alist *ALISTPTR that is to be given to the user.
3076 Only parameters that are specific to the X window system
3077 and whose values are not correctly recorded in the frame's
3078 param_alist need to be considered here. */
3080 void
3081 x_report_frame_params (struct frame *f, Lisp_Object *alistptr)
3083 Lisp_Object tem;
3084 uprintmax_t w;
3085 char buf[INT_BUFSIZE_BOUND (w)];
3087 /* Represent negative positions (off the top or left screen edge)
3088 in a way that Fmodify_frame_parameters will understand correctly. */
3089 XSETINT (tem, f->left_pos);
3090 if (f->left_pos >= 0)
3091 store_in_alist (alistptr, Qleft, tem);
3092 else
3093 store_in_alist (alistptr, Qleft, list2 (Qplus, tem));
3095 XSETINT (tem, f->top_pos);
3096 if (f->top_pos >= 0)
3097 store_in_alist (alistptr, Qtop, tem);
3098 else
3099 store_in_alist (alistptr, Qtop, list2 (Qplus, tem));
3101 store_in_alist (alistptr, Qborder_width,
3102 make_number (f->border_width));
3103 store_in_alist (alistptr, Qinternal_border_width,
3104 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
3105 store_in_alist (alistptr, Qright_divider_width,
3106 make_number (FRAME_RIGHT_DIVIDER_WIDTH (f)));
3107 store_in_alist (alistptr, Qbottom_divider_width,
3108 make_number (FRAME_BOTTOM_DIVIDER_WIDTH (f)));
3109 store_in_alist (alistptr, Qleft_fringe,
3110 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
3111 store_in_alist (alistptr, Qright_fringe,
3112 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
3113 store_in_alist (alistptr, Qscroll_bar_width,
3114 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3115 ? make_number (0)
3116 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3117 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3118 /* nil means "use default width"
3119 for non-toolkit scroll bar.
3120 ruler-mode.el depends on this. */
3121 : Qnil));
3122 /* FRAME_X_WINDOW is not guaranteed to return an integer. E.g., on
3123 MS-Windows it returns a value whose type is HANDLE, which is
3124 actually a pointer. Explicit casting avoids compiler
3125 warnings. */
3126 w = (uintptr_t) FRAME_X_WINDOW (f);
3127 store_in_alist (alistptr, Qwindow_id,
3128 make_formatted_string (buf, "%"pMu, w));
3129 #ifdef HAVE_X_WINDOWS
3130 #ifdef USE_X_TOOLKIT
3131 /* Tooltip frame may not have this widget. */
3132 if (FRAME_X_OUTPUT (f)->widget)
3133 #endif
3134 w = (uintptr_t) FRAME_OUTER_WINDOW (f);
3135 store_in_alist (alistptr, Qouter_window_id,
3136 make_formatted_string (buf, "%"pMu, w));
3137 #endif
3138 store_in_alist (alistptr, Qicon_name, f->icon_name);
3139 store_in_alist (alistptr, Qvisibility,
3140 (FRAME_VISIBLE_P (f) ? Qt
3141 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3142 store_in_alist (alistptr, Qdisplay,
3143 XCAR (FRAME_DISPLAY_INFO (f)->name_list_element));
3145 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_DISPLAY_INFO (f)->root_window)
3146 tem = Qnil;
3147 else
3148 tem = make_natnum ((uintptr_t) FRAME_X_OUTPUT (f)->parent_desc);
3149 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
3150 store_in_alist (alistptr, Qparent_id, tem);
3151 store_in_alist (alistptr, Qtool_bar_position, f->tool_bar_position);
3155 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3156 the previous value of that parameter, NEW_VALUE is the new value. */
3158 void
3159 x_set_fullscreen (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
3161 if (NILP (new_value))
3162 f->want_fullscreen = FULLSCREEN_NONE;
3163 else if (EQ (new_value, Qfullboth) || EQ (new_value, Qfullscreen))
3164 f->want_fullscreen = FULLSCREEN_BOTH;
3165 else if (EQ (new_value, Qfullwidth))
3166 f->want_fullscreen = FULLSCREEN_WIDTH;
3167 else if (EQ (new_value, Qfullheight))
3168 f->want_fullscreen = FULLSCREEN_HEIGHT;
3169 else if (EQ (new_value, Qmaximized))
3170 f->want_fullscreen = FULLSCREEN_MAXIMIZED;
3172 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
3173 FRAME_TERMINAL (f)->fullscreen_hook (f);
3177 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3178 the previous value of that parameter, NEW_VALUE is the new value. */
3180 void
3181 x_set_line_spacing (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
3183 if (NILP (new_value))
3184 f->extra_line_spacing = 0;
3185 else if (RANGED_INTEGERP (0, new_value, INT_MAX))
3186 f->extra_line_spacing = XFASTINT (new_value);
3187 else if (FLOATP (new_value))
3189 int new_spacing = XFLOAT_DATA (new_value) * FRAME_LINE_HEIGHT (f) + 0.5;
3191 if (new_spacing >= 0)
3192 f->extra_line_spacing = new_spacing;
3193 else
3194 signal_error ("Invalid line-spacing", new_value);
3196 else
3197 signal_error ("Invalid line-spacing", new_value);
3198 if (FRAME_VISIBLE_P (f))
3199 redraw_frame (f);
3203 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3204 the previous value of that parameter, NEW_VALUE is the new value. */
3206 void
3207 x_set_screen_gamma (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
3209 Lisp_Object bgcolor;
3211 if (NILP (new_value))
3212 f->gamma = 0;
3213 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3214 /* The value 0.4545 is the normal viewing gamma. */
3215 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3216 else
3217 signal_error ("Invalid screen-gamma", new_value);
3219 /* Apply the new gamma value to the frame background. */
3220 bgcolor = Fassq (Qbackground_color, f->param_alist);
3221 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3223 Lisp_Object parm_index = Fget (Qbackground_color, Qx_frame_parameter);
3224 if (NATNUMP (parm_index)
3225 && (XFASTINT (parm_index)
3226 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3227 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (parm_index)])
3228 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (parm_index)])
3229 (f, bgcolor, Qnil);
3232 Fclear_face_cache (Qnil);
3236 void
3237 x_set_font (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3239 Lisp_Object font_object;
3240 int fontset = -1;
3241 #ifdef HAVE_X_WINDOWS
3242 Lisp_Object font_param = arg;
3243 #endif
3245 /* Set the frame parameter back to the old value because we may
3246 fail to use ARG as the new parameter value. */
3247 store_frame_param (f, Qfont, oldval);
3249 /* ARG is a fontset name, a font name, a cons of fontset name and a
3250 font object, or a font object. In the last case, this function
3251 never fail. */
3252 if (STRINGP (arg))
3254 fontset = fs_query_fontset (arg, 0);
3255 if (fontset < 0)
3257 font_object = font_open_by_name (f, arg);
3258 if (NILP (font_object))
3259 error ("Font `%s' is not defined", SSDATA (arg));
3260 arg = AREF (font_object, FONT_NAME_INDEX);
3262 else if (fontset > 0)
3264 font_object = font_open_by_name (f, fontset_ascii (fontset));
3265 if (NILP (font_object))
3266 error ("Font `%s' is not defined", SDATA (arg));
3267 arg = AREF (font_object, FONT_NAME_INDEX);
3269 else
3270 error ("The default fontset can't be used for a frame font");
3272 else if (CONSP (arg) && STRINGP (XCAR (arg)) && FONT_OBJECT_P (XCDR (arg)))
3274 /* This is the case that the ASCII font of F's fontset XCAR
3275 (arg) is changed to the font XCDR (arg) by
3276 `set-fontset-font'. */
3277 fontset = fs_query_fontset (XCAR (arg), 0);
3278 if (fontset < 0)
3279 error ("Unknown fontset: %s", SDATA (XCAR (arg)));
3280 font_object = XCDR (arg);
3281 arg = AREF (font_object, FONT_NAME_INDEX);
3282 #ifdef HAVE_X_WINDOWS
3283 font_param = Ffont_get (font_object, QCname);
3284 #endif
3286 else if (FONT_OBJECT_P (arg))
3288 font_object = arg;
3289 #ifdef HAVE_X_WINDOWS
3290 font_param = Ffont_get (font_object, QCname);
3291 #endif
3292 /* This is to store the XLFD font name in the frame parameter for
3293 backward compatibility. We should store the font-object
3294 itself in the future. */
3295 arg = AREF (font_object, FONT_NAME_INDEX);
3296 fontset = FRAME_FONTSET (f);
3297 /* Check if we can use the current fontset. If not, set FONTSET
3298 to -1 to generate a new fontset from FONT-OBJECT. */
3299 if (fontset >= 0)
3301 Lisp_Object ascii_font = fontset_ascii (fontset);
3302 Lisp_Object spec = font_spec_from_name (ascii_font);
3304 if (NILP (spec))
3305 signal_error ("Invalid font name", ascii_font);
3307 if (! font_match_p (spec, font_object))
3308 fontset = -1;
3311 else
3312 signal_error ("Invalid font", arg);
3314 if (! NILP (Fequal (font_object, oldval)))
3315 return;
3317 x_new_font (f, font_object, fontset);
3318 store_frame_param (f, Qfont, arg);
3319 #ifdef HAVE_X_WINDOWS
3320 store_frame_param (f, Qfont_param, font_param);
3321 #endif
3322 /* Recalculate toolbar height. */
3323 f->n_tool_bar_rows = 0;
3325 /* Ensure we redraw it. */
3326 clear_current_matrices (f);
3328 /* Attempt to hunt down bug#16028. */
3329 SET_FRAME_GARBAGED (f);
3331 recompute_basic_faces (f);
3333 do_pending_window_change (0);
3335 /* We used to call face-set-after-frame-default here, but it leads to
3336 recursive calls (since that function can set the `default' face's
3337 font which in turns changes the frame's `font' parameter).
3338 Also I don't know what this call is meant to do, but it seems the
3339 wrong way to do it anyway (it does a lot more work than what seems
3340 reasonable in response to a change to `font'). */
3344 void
3345 x_set_font_backend (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
3347 if (! NILP (new_value)
3348 && !CONSP (new_value))
3350 char *p0, *p1;
3352 CHECK_STRING (new_value);
3353 p0 = p1 = SSDATA (new_value);
3354 new_value = Qnil;
3355 while (*p0)
3357 while (*p1 && ! c_isspace (*p1) && *p1 != ',') p1++;
3358 if (p0 < p1)
3359 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3360 new_value);
3361 if (*p1)
3363 int c;
3365 while ((c = *++p1) && c_isspace (c));
3367 p0 = p1;
3369 new_value = Fnreverse (new_value);
3372 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3373 return;
3375 if (FRAME_FONT (f))
3376 free_all_realized_faces (Qnil);
3378 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
3379 if (NILP (new_value))
3381 if (NILP (old_value))
3382 error ("No font backend available");
3383 font_update_drivers (f, old_value);
3384 error ("None of specified font backends are available");
3386 store_frame_param (f, Qfont_backend, new_value);
3388 if (FRAME_FONT (f))
3390 Lisp_Object frame;
3392 XSETFRAME (frame, f);
3393 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3394 ++face_change_count;
3395 windows_or_buffers_changed = 18;
3400 void
3401 x_set_fringe_width (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
3403 compute_fringe_widths (f, 1);
3404 #ifdef HAVE_X_WINDOWS
3405 /* Must adjust this so window managers report correct number of columns. */
3406 if (FRAME_X_WINDOW (f) != 0)
3407 x_wm_set_size_hint (f, 0, 0);
3408 #endif
3411 void
3412 x_set_border_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3414 CHECK_TYPE_RANGED_INTEGER (int, arg);
3416 if (XINT (arg) == f->border_width)
3417 return;
3419 if (FRAME_X_WINDOW (f) != 0)
3420 error ("Cannot change the border width of a frame");
3422 f->border_width = XINT (arg);
3425 void
3426 x_set_internal_border_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3428 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3430 CHECK_TYPE_RANGED_INTEGER (int, arg);
3431 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3432 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3433 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3435 #ifdef USE_X_TOOLKIT
3436 if (FRAME_X_OUTPUT (f)->edit_widget)
3437 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3438 #endif
3440 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3441 return;
3443 if (FRAME_X_WINDOW (f) != 0)
3445 x_set_window_size (f, 0, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f), 1);
3446 SET_FRAME_GARBAGED (f);
3447 do_pending_window_change (0);
3449 else
3450 SET_FRAME_GARBAGED (f);
3453 void
3454 x_set_right_divider_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3456 int old = FRAME_RIGHT_DIVIDER_WIDTH (f);
3458 CHECK_TYPE_RANGED_INTEGER (int, arg);
3459 FRAME_RIGHT_DIVIDER_WIDTH (f) = XINT (arg);
3460 if (FRAME_RIGHT_DIVIDER_WIDTH (f) < 0)
3461 FRAME_RIGHT_DIVIDER_WIDTH (f) = 0;
3463 if (FRAME_RIGHT_DIVIDER_WIDTH (f) == old)
3464 return;
3466 if (FRAME_X_WINDOW (f) != 0)
3468 x_set_window_size (f, 0, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f), 1);
3469 SET_FRAME_GARBAGED (f);
3470 do_pending_window_change (0);
3472 else
3473 SET_FRAME_GARBAGED (f);
3476 void
3477 x_set_bottom_divider_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3479 int old = FRAME_BOTTOM_DIVIDER_WIDTH (f);
3481 CHECK_TYPE_RANGED_INTEGER (int, arg);
3482 FRAME_BOTTOM_DIVIDER_WIDTH (f) = XINT (arg);
3483 if (FRAME_BOTTOM_DIVIDER_WIDTH (f) < 0)
3484 FRAME_BOTTOM_DIVIDER_WIDTH (f) = 0;
3486 if (FRAME_BOTTOM_DIVIDER_WIDTH (f) == old)
3487 return;
3489 if (FRAME_X_WINDOW (f) != 0)
3491 x_set_window_size (f, 0, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f), 1);
3492 SET_FRAME_GARBAGED (f);
3493 do_pending_window_change (0);
3495 else
3496 SET_FRAME_GARBAGED (f);
3499 void
3500 x_set_visibility (struct frame *f, Lisp_Object value, Lisp_Object oldval)
3502 Lisp_Object frame;
3503 XSETFRAME (frame, f);
3505 if (NILP (value))
3506 Fmake_frame_invisible (frame, Qt);
3507 else if (EQ (value, Qicon))
3508 Ficonify_frame (frame);
3509 else
3510 Fmake_frame_visible (frame);
3513 void
3514 x_set_autoraise (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3516 f->auto_raise = !EQ (Qnil, arg);
3519 void
3520 x_set_autolower (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3522 f->auto_lower = !EQ (Qnil, arg);
3525 void
3526 x_set_unsplittable (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3528 f->no_split = !NILP (arg);
3531 void
3532 x_set_vertical_scroll_bars (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3534 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3535 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3536 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3537 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3539 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3540 = (NILP (arg)
3541 ? vertical_scroll_bar_none
3542 : EQ (Qleft, arg)
3543 ? vertical_scroll_bar_left
3544 : EQ (Qright, arg)
3545 ? vertical_scroll_bar_right
3546 : EQ (Qleft, Vdefault_frame_scroll_bars)
3547 ? vertical_scroll_bar_left
3548 : EQ (Qright, Vdefault_frame_scroll_bars)
3549 ? vertical_scroll_bar_right
3550 : vertical_scroll_bar_none);
3552 /* We set this parameter before creating the X window for the
3553 frame, so we can get the geometry right from the start.
3554 However, if the window hasn't been created yet, we shouldn't
3555 call x_set_window_size. */
3556 if (FRAME_X_WINDOW (f))
3557 x_set_window_size (f, 0, FRAME_TEXT_WIDTH (f),
3558 FRAME_TEXT_HEIGHT (f), 1);
3559 do_pending_window_change (0);
3563 void
3564 x_set_scroll_bar_width (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3566 int unit = FRAME_COLUMN_WIDTH (f);
3568 if (NILP (arg))
3570 x_set_scroll_bar_default_width (f);
3572 if (FRAME_X_WINDOW (f))
3573 x_set_window_size (f, 0, FRAME_TEXT_WIDTH (f),
3574 FRAME_TEXT_HEIGHT (f), 1);
3575 do_pending_window_change (0);
3577 else if (RANGED_INTEGERP (1, arg, INT_MAX)
3578 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3580 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3581 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + unit - 1) / unit;
3582 if (FRAME_X_WINDOW (f))
3583 x_set_window_size (f, 0, FRAME_TEXT_WIDTH (f),
3584 FRAME_TEXT_HEIGHT (f), 1);
3585 do_pending_window_change (0);
3588 /* Eventually remove the following call. It should have been done by
3589 x_set_window_size already. */
3590 change_frame_size (f, 0, 0, 0, 0, 0, 1);
3591 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3592 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3595 void
3596 x_set_alpha (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
3598 double alpha = 1.0;
3599 double newval[2];
3600 int i;
3601 Lisp_Object item;
3603 for (i = 0; i < 2; i++)
3605 newval[i] = 1.0;
3606 if (CONSP (arg))
3608 item = CAR (arg);
3609 arg = CDR (arg);
3611 else
3612 item = arg;
3614 if (NILP (item))
3615 alpha = - 1.0;
3616 else if (FLOATP (item))
3618 alpha = XFLOAT_DATA (item);
3619 if (! (0 <= alpha && alpha <= 1.0))
3620 args_out_of_range (make_float (0.0), make_float (1.0));
3622 else if (INTEGERP (item))
3624 EMACS_INT ialpha = XINT (item);
3625 if (! (0 <= ialpha && alpha <= 100))
3626 args_out_of_range (make_number (0), make_number (100));
3627 alpha = ialpha / 100.0;
3629 else
3630 wrong_type_argument (Qnumberp, item);
3631 newval[i] = alpha;
3634 for (i = 0; i < 2; i++)
3635 f->alpha[i] = newval[i];
3637 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA)
3638 block_input ();
3639 x_set_frame_alpha (f);
3640 unblock_input ();
3641 #endif
3643 return;
3646 #ifndef HAVE_NS
3648 /* Non-zero if mouse is grabbed on DPYINFO
3649 and we know the frame where it is. */
3651 bool x_mouse_grabbed (Display_Info *dpyinfo)
3653 return (dpyinfo->grabbed
3654 && dpyinfo->last_mouse_frame
3655 && FRAME_LIVE_P (dpyinfo->last_mouse_frame));
3658 /* Re-highlight something with mouse-face properties
3659 on DPYINFO using saved frame and mouse position. */
3661 void
3662 x_redo_mouse_highlight (Display_Info *dpyinfo)
3664 if (dpyinfo->last_mouse_motion_frame
3665 && FRAME_LIVE_P (dpyinfo->last_mouse_motion_frame))
3666 note_mouse_highlight (dpyinfo->last_mouse_motion_frame,
3667 dpyinfo->last_mouse_motion_x,
3668 dpyinfo->last_mouse_motion_y);
3671 #endif /* HAVE_NS */
3673 /* Subroutines of creating an X frame. */
3675 /* Make sure that Vx_resource_name is set to a reasonable value.
3676 Fix it up, or set it to `emacs' if it is too hopeless. */
3678 void
3679 validate_x_resource_name (void)
3681 ptrdiff_t len = 0;
3682 /* Number of valid characters in the resource name. */
3683 ptrdiff_t good_count = 0;
3684 /* Number of invalid characters in the resource name. */
3685 ptrdiff_t bad_count = 0;
3686 Lisp_Object new;
3687 ptrdiff_t i;
3689 if (!STRINGP (Vx_resource_class))
3690 Vx_resource_class = build_string (EMACS_CLASS);
3692 if (STRINGP (Vx_resource_name))
3694 unsigned char *p = SDATA (Vx_resource_name);
3696 len = SBYTES (Vx_resource_name);
3698 /* Only letters, digits, - and _ are valid in resource names.
3699 Count the valid characters and count the invalid ones. */
3700 for (i = 0; i < len; i++)
3702 int c = p[i];
3703 if (! ((c >= 'a' && c <= 'z')
3704 || (c >= 'A' && c <= 'Z')
3705 || (c >= '0' && c <= '9')
3706 || c == '-' || c == '_'))
3707 bad_count++;
3708 else
3709 good_count++;
3712 else
3713 /* Not a string => completely invalid. */
3714 bad_count = 5, good_count = 0;
3716 /* If name is valid already, return. */
3717 if (bad_count == 0)
3718 return;
3720 /* If name is entirely invalid, or nearly so, or is so implausibly
3721 large that alloca might not work, use `emacs'. */
3722 if (good_count < 2 || MAX_ALLOCA - sizeof ".customization" < len)
3724 Vx_resource_name = build_string ("emacs");
3725 return;
3728 /* Name is partly valid. Copy it and replace the invalid characters
3729 with underscores. */
3731 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3733 for (i = 0; i < len; i++)
3735 int c = SREF (new, i);
3736 if (! ((c >= 'a' && c <= 'z')
3737 || (c >= 'A' && c <= 'Z')
3738 || (c >= '0' && c <= '9')
3739 || c == '-' || c == '_'))
3740 SSET (new, i, '_');
3744 /* Get specified attribute from resource database RDB.
3745 See Fx_get_resource below for other parameters. */
3747 static Lisp_Object
3748 xrdb_get_resource (XrmDatabase rdb, Lisp_Object attribute, Lisp_Object class, Lisp_Object component, Lisp_Object subclass)
3750 register char *value;
3751 char *name_key;
3752 char *class_key;
3754 CHECK_STRING (attribute);
3755 CHECK_STRING (class);
3757 if (!NILP (component))
3758 CHECK_STRING (component);
3759 if (!NILP (subclass))
3760 CHECK_STRING (subclass);
3761 if (NILP (component) != NILP (subclass))
3762 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3764 validate_x_resource_name ();
3766 /* Allocate space for the components, the dots which separate them,
3767 and the final '\0'. Make them big enough for the worst case. */
3768 name_key = alloca (SBYTES (Vx_resource_name)
3769 + (STRINGP (component)
3770 ? SBYTES (component) : 0)
3771 + SBYTES (attribute)
3772 + 3);
3774 class_key = alloca (SBYTES (Vx_resource_class)
3775 + SBYTES (class)
3776 + (STRINGP (subclass)
3777 ? SBYTES (subclass) : 0)
3778 + 3);
3780 /* Start with emacs.FRAMENAME for the name (the specific one)
3781 and with `Emacs' for the class key (the general one). */
3782 strcpy (name_key, SSDATA (Vx_resource_name));
3783 strcpy (class_key, SSDATA (Vx_resource_class));
3785 strcat (class_key, ".");
3786 strcat (class_key, SSDATA (class));
3788 if (!NILP (component))
3790 strcat (class_key, ".");
3791 strcat (class_key, SSDATA (subclass));
3793 strcat (name_key, ".");
3794 strcat (name_key, SSDATA (component));
3797 strcat (name_key, ".");
3798 strcat (name_key, SSDATA (attribute));
3800 value = x_get_string_resource (rdb, name_key, class_key);
3802 if (value && *value)
3803 return build_string (value);
3804 else
3805 return Qnil;
3809 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3810 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3811 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3812 class, where INSTANCE is the name under which Emacs was invoked, or
3813 the name specified by the `-name' or `-rn' command-line arguments.
3815 The optional arguments COMPONENT and SUBCLASS add to the key and the
3816 class, respectively. You must specify both of them or neither.
3817 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3818 and the class is `Emacs.CLASS.SUBCLASS'. */)
3819 (Lisp_Object attribute, Lisp_Object class, Lisp_Object component,
3820 Lisp_Object subclass)
3822 check_window_system (NULL);
3824 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3825 attribute, class, component, subclass);
3828 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3830 Lisp_Object
3831 display_x_get_resource (Display_Info *dpyinfo, Lisp_Object attribute,
3832 Lisp_Object class, Lisp_Object component,
3833 Lisp_Object subclass)
3835 return xrdb_get_resource (dpyinfo->xrdb,
3836 attribute, class, component, subclass);
3839 #if defined HAVE_X_WINDOWS && !defined USE_X_TOOLKIT
3840 /* Used when C code wants a resource value. */
3841 /* Called from oldXMenu/Create.c. */
3842 char *
3843 x_get_resource_string (const char *attribute, const char *class)
3845 char *result;
3846 struct frame *sf = SELECTED_FRAME ();
3847 ptrdiff_t invocation_namelen = SBYTES (Vinvocation_name);
3848 USE_SAFE_ALLOCA;
3850 /* Allocate space for the components, the dots which separate them,
3851 and the final '\0'. */
3852 char *name_key = SAFE_ALLOCA (invocation_namelen + strlen (attribute) + 2);
3853 char *class_key = alloca ((sizeof (EMACS_CLASS) - 1) + strlen (class) + 2);
3855 esprintf (name_key, "%s.%s", SSDATA (Vinvocation_name), attribute);
3856 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3858 result = x_get_string_resource (FRAME_DISPLAY_INFO (sf)->xrdb,
3859 name_key, class_key);
3860 SAFE_FREE ();
3861 return result;
3863 #endif
3865 /* Return the value of parameter PARAM.
3867 First search ALIST, then Vdefault_frame_alist, then the X defaults
3868 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3870 Convert the resource to the type specified by desired_type.
3872 If no default is specified, return Qunbound. If you call
3873 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3874 and don't let it get stored in any Lisp-visible variables! */
3876 Lisp_Object
3877 x_get_arg (Display_Info *dpyinfo, Lisp_Object alist, Lisp_Object param,
3878 const char *attribute, const char *class, enum resource_types type)
3880 register Lisp_Object tem;
3882 tem = Fassq (param, alist);
3884 if (!NILP (tem))
3886 /* If we find this parm in ALIST, clear it out
3887 so that it won't be "left over" at the end. */
3888 Lisp_Object tail;
3889 XSETCAR (tem, Qnil);
3890 /* In case the parameter appears more than once in the alist,
3891 clear it out. */
3892 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3893 if (CONSP (XCAR (tail))
3894 && EQ (XCAR (XCAR (tail)), param))
3895 XSETCAR (XCAR (tail), Qnil);
3897 else
3898 tem = Fassq (param, Vdefault_frame_alist);
3900 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3901 look in the X resources. */
3902 if (EQ (tem, Qnil))
3904 if (attribute && dpyinfo)
3906 tem = display_x_get_resource (dpyinfo,
3907 build_string (attribute),
3908 build_string (class),
3909 Qnil, Qnil);
3911 if (NILP (tem))
3912 return Qunbound;
3914 switch (type)
3916 case RES_TYPE_NUMBER:
3917 return make_number (atoi (SSDATA (tem)));
3919 case RES_TYPE_BOOLEAN_NUMBER:
3920 if (!strcmp (SSDATA (tem), "on")
3921 || !strcmp (SSDATA (tem), "true"))
3922 return make_number (1);
3923 return make_number (atoi (SSDATA (tem)));
3924 break;
3926 case RES_TYPE_FLOAT:
3927 return make_float (atof (SSDATA (tem)));
3929 case RES_TYPE_BOOLEAN:
3930 tem = Fdowncase (tem);
3931 if (!strcmp (SSDATA (tem), "on")
3932 #ifdef HAVE_NS
3933 || !strcmp (SSDATA (tem), "yes")
3934 #endif
3935 || !strcmp (SSDATA (tem), "true"))
3936 return Qt;
3937 else
3938 return Qnil;
3940 case RES_TYPE_STRING:
3941 return tem;
3943 case RES_TYPE_SYMBOL:
3944 /* As a special case, we map the values `true' and `on'
3945 to Qt, and `false' and `off' to Qnil. */
3947 Lisp_Object lower;
3948 lower = Fdowncase (tem);
3949 if (!strcmp (SSDATA (lower), "on")
3950 #ifdef HAVE_NS
3951 || !strcmp (SSDATA (lower), "yes")
3952 #endif
3953 || !strcmp (SSDATA (lower), "true"))
3954 return Qt;
3955 else if (!strcmp (SSDATA (lower), "off")
3956 #ifdef HAVE_NS
3957 || !strcmp (SSDATA (lower), "no")
3958 #endif
3959 || !strcmp (SSDATA (lower), "false"))
3960 return Qnil;
3961 else
3962 return Fintern (tem, Qnil);
3965 default:
3966 emacs_abort ();
3969 else
3970 return Qunbound;
3972 return Fcdr (tem);
3975 static Lisp_Object
3976 x_frame_get_arg (struct frame *f, Lisp_Object alist, Lisp_Object param,
3977 const char *attribute, const char *class,
3978 enum resource_types type)
3980 return x_get_arg (FRAME_DISPLAY_INFO (f),
3981 alist, param, attribute, class, type);
3984 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
3986 Lisp_Object
3987 x_frame_get_and_record_arg (struct frame *f, Lisp_Object alist,
3988 Lisp_Object param,
3989 const char *attribute, const char *class,
3990 enum resource_types type)
3992 Lisp_Object value;
3994 value = x_get_arg (FRAME_DISPLAY_INFO (f), alist, param,
3995 attribute, class, type);
3996 if (! NILP (value) && ! EQ (value, Qunbound))
3997 store_frame_param (f, param, value);
3999 return value;
4003 /* Record in frame F the specified or default value according to ALIST
4004 of the parameter named PROP (a Lisp symbol).
4005 If no value is specified for PROP, look for an X default for XPROP
4006 on the frame named NAME.
4007 If that is not found either, use the value DEFLT. */
4009 Lisp_Object
4010 x_default_parameter (struct frame *f, Lisp_Object alist, Lisp_Object prop,
4011 Lisp_Object deflt, const char *xprop, const char *xclass,
4012 enum resource_types type)
4014 Lisp_Object tem;
4016 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4017 if (EQ (tem, Qunbound))
4018 tem = deflt;
4019 x_set_frame_parameters (f, list1 (Fcons (prop, tem)));
4020 return tem;
4024 #if !defined (HAVE_X_WINDOWS) && defined (NoValue)
4027 * XParseGeometry parses strings of the form
4028 * "=<width>x<height>{+-}<xoffset>{+-}<yoffset>", where
4029 * width, height, xoffset, and yoffset are unsigned integers.
4030 * Example: "=80x24+300-49"
4031 * The equal sign is optional.
4032 * It returns a bitmask that indicates which of the four values
4033 * were actually found in the string. For each value found,
4034 * the corresponding argument is updated; for each value
4035 * not found, the corresponding argument is left unchanged.
4038 static int
4039 XParseGeometry (char *string,
4040 int *x, int *y,
4041 unsigned int *width, unsigned int *height)
4043 int mask = NoValue;
4044 char *strind;
4045 unsigned long tempWidth, tempHeight;
4046 long int tempX, tempY;
4047 char *nextCharacter;
4049 if (string == NULL || *string == '\0')
4050 return mask;
4051 if (*string == '=')
4052 string++; /* ignore possible '=' at beg of geometry spec */
4054 strind = string;
4055 if (*strind != '+' && *strind != '-' && *strind != 'x')
4057 tempWidth = strtoul (strind, &nextCharacter, 10);
4058 if (strind == nextCharacter)
4059 return 0;
4060 strind = nextCharacter;
4061 mask |= WidthValue;
4064 if (*strind == 'x' || *strind == 'X')
4066 strind++;
4067 tempHeight = strtoul (strind, &nextCharacter, 10);
4068 if (strind == nextCharacter)
4069 return 0;
4070 strind = nextCharacter;
4071 mask |= HeightValue;
4074 if (*strind == '+' || *strind == '-')
4076 if (*strind == '-')
4077 mask |= XNegative;
4078 tempX = strtol (strind, &nextCharacter, 10);
4079 if (strind == nextCharacter)
4080 return 0;
4081 strind = nextCharacter;
4082 mask |= XValue;
4083 if (*strind == '+' || *strind == '-')
4085 if (*strind == '-')
4086 mask |= YNegative;
4087 tempY = strtol (strind, &nextCharacter, 10);
4088 if (strind == nextCharacter)
4089 return 0;
4090 strind = nextCharacter;
4091 mask |= YValue;
4095 /* If strind isn't at the end of the string then it's an invalid
4096 geometry specification. */
4098 if (*strind != '\0')
4099 return 0;
4101 if (mask & XValue)
4102 *x = clip_to_bounds (INT_MIN, tempX, INT_MAX);
4103 if (mask & YValue)
4104 *y = clip_to_bounds (INT_MIN, tempY, INT_MAX);
4105 if (mask & WidthValue)
4106 *width = min (tempWidth, UINT_MAX);
4107 if (mask & HeightValue)
4108 *height = min (tempHeight, UINT_MAX);
4109 return mask;
4112 #endif /* !defined (HAVE_X_WINDOWS) && defined (NoValue) */
4115 /* NS used to define x-parse-geometry in ns-win.el, but that confused
4116 make-docfile: the documentation string in ns-win.el was used for
4117 x-parse-geometry even in non-NS builds.
4119 With two definitions of x-parse-geometry in this file, various
4120 things still get confused (eg M-x apropos documentation), so that
4121 it is best if the two definitions just share the same doc-string.
4123 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4124 doc: /* Parse a display geometry string STRING.
4125 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4126 The properties returned may include `top', `left', `height', and `width'.
4127 For X, the value of `left' or `top' may be an integer,
4128 or a list (+ N) meaning N pixels relative to top/left corner,
4129 or a list (- N) meaning -N pixels relative to bottom/right corner.
4130 On Nextstep, this just calls `ns-parse-geometry'. */)
4131 (Lisp_Object string)
4133 int geometry, x, y;
4134 unsigned int width, height;
4135 Lisp_Object result;
4137 CHECK_STRING (string);
4139 #ifdef HAVE_NS
4140 if (strchr (SSDATA (string), ' ') != NULL)
4141 return call1 (Qns_parse_geometry, string);
4142 #endif
4143 geometry = XParseGeometry (SSDATA (string),
4144 &x, &y, &width, &height);
4145 result = Qnil;
4146 if (geometry & XValue)
4148 Lisp_Object element;
4150 if (x >= 0 && (geometry & XNegative))
4151 element = list3 (Qleft, Qminus, make_number (-x));
4152 else if (x < 0 && ! (geometry & XNegative))
4153 element = list3 (Qleft, Qplus, make_number (x));
4154 else
4155 element = Fcons (Qleft, make_number (x));
4156 result = Fcons (element, result);
4159 if (geometry & YValue)
4161 Lisp_Object element;
4163 if (y >= 0 && (geometry & YNegative))
4164 element = list3 (Qtop, Qminus, make_number (-y));
4165 else if (y < 0 && ! (geometry & YNegative))
4166 element = list3 (Qtop, Qplus, make_number (y));
4167 else
4168 element = Fcons (Qtop, make_number (y));
4169 result = Fcons (element, result);
4172 if (geometry & WidthValue)
4173 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4174 if (geometry & HeightValue)
4175 result = Fcons (Fcons (Qheight, make_number (height)), result);
4177 return result;
4181 /* Calculate the desired size and position of frame F.
4182 Return the flags saying which aspects were specified.
4184 Also set the win_gravity and size_hint_flags of F.
4186 Adjust height for toolbar if TOOLBAR_P is 1.
4188 This function does not make the coordinates positive. */
4190 #define DEFAULT_ROWS 35
4191 #define DEFAULT_COLS 80
4193 long
4194 x_figure_window_size (struct frame *f, Lisp_Object parms, bool toolbar_p)
4196 register Lisp_Object tem0, tem1, tem2;
4197 long window_prompting = 0;
4198 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
4200 /* Default values if we fall through.
4201 Actually, if that happens we should get
4202 window manager prompting. */
4203 SET_FRAME_WIDTH (f, DEFAULT_COLS * FRAME_COLUMN_WIDTH (f));
4204 SET_FRAME_COLS (f, DEFAULT_COLS);
4205 SET_FRAME_HEIGHT (f, DEFAULT_ROWS * FRAME_LINE_HEIGHT (f));
4206 FRAME_LINES (f) = DEFAULT_ROWS;
4208 /* Window managers expect that if program-specified
4209 positions are not (0,0), they're intentional, not defaults. */
4210 f->top_pos = 0;
4211 f->left_pos = 0;
4213 /* Ensure that old new_width and new_height will not override the
4214 values set here. */
4215 /* ++KFS: This was specific to W32, but seems ok for all platforms */
4216 f->new_width = f->new_height = f->new_pixelwise = 0;
4218 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4219 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4220 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4221 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4223 if (!EQ (tem0, Qunbound))
4225 CHECK_NUMBER (tem0);
4226 if (! (0 <= XINT (tem0) && XINT (tem0) <= INT_MAX))
4227 xsignal1 (Qargs_out_of_range, tem0);
4228 FRAME_LINES (f) = XINT (tem0);
4230 if (!EQ (tem1, Qunbound))
4232 CHECK_NUMBER (tem1);
4233 if (! (0 <= XINT (tem1) && XINT (tem1) <= INT_MAX))
4234 xsignal1 (Qargs_out_of_range, tem1);
4235 SET_FRAME_COLS (f, XINT (tem1));
4237 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4238 window_prompting |= USSize;
4239 else
4240 window_prompting |= PSize;
4244 /* This used to be done _before_ calling x_figure_window_size, but
4245 since the height is reset here, this was really a no-op. I
4246 assume that moving it here does what Gerd intended (although he
4247 no longer can remember what that was... ++KFS, 2003-03-25. */
4249 /* Add the tool-bar height to the initial frame height so that the
4250 user gets a text display area of the size he specified with -g or
4251 via .Xdefaults. Later changes of the tool-bar height don't
4252 change the frame size. This is done so that users can create
4253 tall Emacs frames without having to guess how tall the tool-bar
4254 will get. */
4255 if (toolbar_p && FRAME_TOOL_BAR_HEIGHT (f))
4257 int margin, relief, bar_height;
4259 relief = (tool_bar_button_relief >= 0
4260 ? tool_bar_button_relief
4261 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4263 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4264 margin = XFASTINT (Vtool_bar_button_margin);
4265 else if (CONSP (Vtool_bar_button_margin)
4266 && RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4267 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4268 else
4269 margin = 0;
4271 /* PXW: We should be able to not round here. */
4272 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4273 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
4276 compute_fringe_widths (f, 0);
4278 SET_FRAME_WIDTH (f, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f));
4279 SET_FRAME_HEIGHT(f, FRAME_LINES (f) * FRAME_LINE_HEIGHT (f));
4281 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4282 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4283 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4284 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4286 if (EQ (tem0, Qminus))
4288 f->top_pos = 0;
4289 window_prompting |= YNegative;
4291 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4292 && CONSP (XCDR (tem0))
4293 && RANGED_INTEGERP (-INT_MAX, XCAR (XCDR (tem0)), INT_MAX))
4295 f->top_pos = - XINT (XCAR (XCDR (tem0)));
4296 window_prompting |= YNegative;
4298 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4299 && CONSP (XCDR (tem0))
4300 && TYPE_RANGED_INTEGERP (int, XCAR (XCDR (tem0))))
4302 f->top_pos = XINT (XCAR (XCDR (tem0)));
4304 else if (EQ (tem0, Qunbound))
4305 f->top_pos = 0;
4306 else
4308 CHECK_TYPE_RANGED_INTEGER (int, tem0);
4309 f->top_pos = XINT (tem0);
4310 if (f->top_pos < 0)
4311 window_prompting |= YNegative;
4314 if (EQ (tem1, Qminus))
4316 f->left_pos = 0;
4317 window_prompting |= XNegative;
4319 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4320 && CONSP (XCDR (tem1))
4321 && RANGED_INTEGERP (-INT_MAX, XCAR (XCDR (tem1)), INT_MAX))
4323 f->left_pos = - XINT (XCAR (XCDR (tem1)));
4324 window_prompting |= XNegative;
4326 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4327 && CONSP (XCDR (tem1))
4328 && TYPE_RANGED_INTEGERP (int, XCAR (XCDR (tem1))))
4330 f->left_pos = XINT (XCAR (XCDR (tem1)));
4332 else if (EQ (tem1, Qunbound))
4333 f->left_pos = 0;
4334 else
4336 CHECK_TYPE_RANGED_INTEGER (int, tem1);
4337 f->left_pos = XINT (tem1);
4338 if (f->left_pos < 0)
4339 window_prompting |= XNegative;
4342 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4343 window_prompting |= USPosition;
4344 else
4345 window_prompting |= PPosition;
4348 if (window_prompting & XNegative)
4350 if (window_prompting & YNegative)
4351 f->win_gravity = SouthEastGravity;
4352 else
4353 f->win_gravity = NorthEastGravity;
4355 else
4357 if (window_prompting & YNegative)
4358 f->win_gravity = SouthWestGravity;
4359 else
4360 f->win_gravity = NorthWestGravity;
4363 f->size_hint_flags = window_prompting;
4365 return window_prompting;
4370 #endif /* HAVE_WINDOW_SYSTEM */
4372 void
4373 frame_make_pointer_invisible (void)
4375 if (! NILP (Vmake_pointer_invisible))
4377 struct frame *f;
4378 if (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
4379 return;
4381 f = SELECTED_FRAME ();
4382 if (f && !f->pointer_invisible
4383 && FRAME_TERMINAL (f)->toggle_invisible_pointer_hook)
4385 f->mouse_moved = 0;
4386 FRAME_TERMINAL (f)->toggle_invisible_pointer_hook (f, 1);
4387 f->pointer_invisible = 1;
4392 void
4393 frame_make_pointer_visible (void)
4395 /* We don't check Vmake_pointer_invisible here in case the
4396 pointer was invisible when Vmake_pointer_invisible was set to nil. */
4397 struct frame *f;
4399 if (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
4400 return;
4402 f = SELECTED_FRAME ();
4403 if (f && f->pointer_invisible && f->mouse_moved
4404 && FRAME_TERMINAL (f)->toggle_invisible_pointer_hook)
4406 FRAME_TERMINAL (f)->toggle_invisible_pointer_hook (f, 0);
4407 f->pointer_invisible = 0;
4411 DEFUN ("frame-pointer-visible-p", Fframe_pointer_visible_p,
4412 Sframe_pointer_visible_p, 0, 1, 0,
4413 doc: /* Return t if the mouse pointer displayed on FRAME is visible.
4414 Otherwise it returns nil. FRAME omitted or nil means the
4415 selected frame. This is useful when `make-pointer-invisible' is set. */)
4416 (Lisp_Object frame)
4418 return decode_any_frame (frame)->pointer_invisible ? Qnil : Qt;
4423 /***********************************************************************
4424 Multimonitor data
4425 ***********************************************************************/
4427 #ifdef HAVE_WINDOW_SYSTEM
4429 # if (defined HAVE_NS \
4430 || (!defined USE_GTK && (defined HAVE_XINERAMA || defined HAVE_XRANDR)))
4431 void
4432 free_monitors (struct MonitorInfo *monitors, int n_monitors)
4434 int i;
4435 for (i = 0; i < n_monitors; ++i)
4436 xfree (monitors[i].name);
4437 xfree (monitors);
4439 # endif
4441 Lisp_Object
4442 make_monitor_attribute_list (struct MonitorInfo *monitors,
4443 int n_monitors,
4444 int primary_monitor,
4445 Lisp_Object monitor_frames,
4446 const char *source)
4448 Lisp_Object attributes_list = Qnil;
4449 Lisp_Object primary_monitor_attributes = Qnil;
4450 int i;
4452 for (i = 0; i < n_monitors; ++i)
4454 Lisp_Object geometry, workarea, attributes = Qnil;
4455 struct MonitorInfo *mi = &monitors[i];
4457 if (mi->geom.width == 0) continue;
4459 workarea = list4i (mi->work.x, mi->work.y,
4460 mi->work.width, mi->work.height);
4461 geometry = list4i (mi->geom.x, mi->geom.y,
4462 mi->geom.width, mi->geom.height);
4463 attributes = Fcons (Fcons (Qsource, build_string (source)),
4464 attributes);
4465 attributes = Fcons (Fcons (Qframes, AREF (monitor_frames, i)),
4466 attributes);
4467 attributes = Fcons (Fcons (Qmm_size,
4468 list2i (mi->mm_width, mi->mm_height)),
4469 attributes);
4470 attributes = Fcons (Fcons (Qworkarea, workarea), attributes);
4471 attributes = Fcons (Fcons (Qgeometry, geometry), attributes);
4472 if (mi->name)
4473 attributes = Fcons (Fcons (Qname, make_string (mi->name,
4474 strlen (mi->name))),
4475 attributes);
4477 if (i == primary_monitor)
4478 primary_monitor_attributes = attributes;
4479 else
4480 attributes_list = Fcons (attributes, attributes_list);
4483 if (!NILP (primary_monitor_attributes))
4484 attributes_list = Fcons (primary_monitor_attributes, attributes_list);
4485 return attributes_list;
4488 #endif /* HAVE_WINDOW_SYSTEM */
4491 /***********************************************************************
4492 Initialization
4493 ***********************************************************************/
4495 void
4496 syms_of_frame (void)
4498 DEFSYM (Qframep, "framep");
4499 DEFSYM (Qframe_live_p, "frame-live-p");
4500 DEFSYM (Qexplicit_name, "explicit-name");
4501 DEFSYM (Qheight, "height");
4502 DEFSYM (Qicon, "icon");
4503 DEFSYM (Qminibuffer, "minibuffer");
4504 DEFSYM (Qmodeline, "modeline");
4505 DEFSYM (Qonly, "only");
4506 DEFSYM (Qnone, "none");
4507 DEFSYM (Qwidth, "width");
4508 DEFSYM (Qgeometry, "geometry");
4509 DEFSYM (Qicon_left, "icon-left");
4510 DEFSYM (Qicon_top, "icon-top");
4511 DEFSYM (Qtooltip, "tooltip");
4512 DEFSYM (Qleft, "left");
4513 DEFSYM (Qright, "right");
4514 DEFSYM (Quser_position, "user-position");
4515 DEFSYM (Quser_size, "user-size");
4516 DEFSYM (Qwindow_id, "window-id");
4517 #ifdef HAVE_X_WINDOWS
4518 DEFSYM (Qouter_window_id, "outer-window-id");
4519 #endif
4520 DEFSYM (Qparent_id, "parent-id");
4521 DEFSYM (Qx, "x");
4522 DEFSYM (Qw32, "w32");
4523 DEFSYM (Qpc, "pc");
4524 DEFSYM (Qns, "ns");
4525 DEFSYM (Qvisible, "visible");
4526 DEFSYM (Qbuffer_predicate, "buffer-predicate");
4527 DEFSYM (Qbuffer_list, "buffer-list");
4528 DEFSYM (Qburied_buffer_list, "buried-buffer-list");
4529 DEFSYM (Qdisplay_type, "display-type");
4530 DEFSYM (Qbackground_mode, "background-mode");
4531 DEFSYM (Qnoelisp, "noelisp");
4532 DEFSYM (Qtty_color_mode, "tty-color-mode");
4533 DEFSYM (Qtty, "tty");
4534 DEFSYM (Qtty_type, "tty-type");
4536 DEFSYM (Qface_set_after_frame_default, "face-set-after-frame-default");
4538 DEFSYM (Qfullwidth, "fullwidth");
4539 DEFSYM (Qfullheight, "fullheight");
4540 DEFSYM (Qfullboth, "fullboth");
4541 DEFSYM (Qmaximized, "maximized");
4542 DEFSYM (Qx_resource_name, "x-resource-name");
4543 DEFSYM (Qx_frame_parameter, "x-frame-parameter");
4545 DEFSYM (Qterminal, "terminal");
4547 DEFSYM (Qgeometry, "geometry");
4548 DEFSYM (Qworkarea, "workarea");
4549 DEFSYM (Qmm_size, "mm-size");
4550 DEFSYM (Qframes, "frames");
4551 DEFSYM (Qsource, "source");
4553 #ifdef HAVE_NS
4554 DEFSYM (Qns_parse_geometry, "ns-parse-geometry");
4555 #endif
4558 int i;
4560 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4562 Lisp_Object v = intern_c_string (frame_parms[i].name);
4563 if (frame_parms[i].variable)
4565 *frame_parms[i].variable = v;
4566 staticpro (frame_parms[i].variable);
4568 Fput (v, Qx_frame_parameter, make_number (i));
4572 #ifdef HAVE_WINDOW_SYSTEM
4573 DEFVAR_LISP ("x-resource-name", Vx_resource_name,
4574 doc: /* The name Emacs uses to look up X resources.
4575 `x-get-resource' uses this as the first component of the instance name
4576 when requesting resource values.
4577 Emacs initially sets `x-resource-name' to the name under which Emacs
4578 was invoked, or to the value specified with the `-name' or `-rn'
4579 switches, if present.
4581 It may be useful to bind this variable locally around a call
4582 to `x-get-resource'. See also the variable `x-resource-class'. */);
4583 Vx_resource_name = Qnil;
4585 DEFVAR_LISP ("x-resource-class", Vx_resource_class,
4586 doc: /* The class Emacs uses to look up X resources.
4587 `x-get-resource' uses this as the first component of the instance class
4588 when requesting resource values.
4590 Emacs initially sets `x-resource-class' to "Emacs".
4592 Setting this variable permanently is not a reasonable thing to do,
4593 but binding this variable locally around a call to `x-get-resource'
4594 is a reasonable practice. See also the variable `x-resource-name'. */);
4595 Vx_resource_class = build_string (EMACS_CLASS);
4597 DEFVAR_LISP ("frame-alpha-lower-limit", Vframe_alpha_lower_limit,
4598 doc: /* The lower limit of the frame opacity (alpha transparency).
4599 The value should range from 0 (invisible) to 100 (completely opaque).
4600 You can also use a floating number between 0.0 and 1.0. */);
4601 Vframe_alpha_lower_limit = make_number (20);
4602 #endif
4604 DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist,
4605 doc: /* Alist of default values for frame creation.
4606 These may be set in your init file, like this:
4607 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4608 These override values given in window system configuration data,
4609 including X Windows' defaults database.
4610 For values specific to the first Emacs frame, see `initial-frame-alist'.
4611 For window-system specific values, see `window-system-default-frame-alist'.
4612 For values specific to the separate minibuffer frame, see
4613 `minibuffer-frame-alist'.
4614 The `menu-bar-lines' element of the list controls whether new frames
4615 have menu bars; `menu-bar-mode' works by altering this element.
4616 Setting this variable does not affect existing frames, only new ones. */);
4617 Vdefault_frame_alist = Qnil;
4619 DEFVAR_LISP ("default-frame-scroll-bars", Vdefault_frame_scroll_bars,
4620 doc: /* Default position of scroll bars on this window-system. */);
4621 #ifdef HAVE_WINDOW_SYSTEM
4622 #if defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA) || (defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS))
4623 /* MS-Windows, Mac OS X, and GTK have scroll bars on the right by
4624 default. */
4625 Vdefault_frame_scroll_bars = Qright;
4626 #else
4627 Vdefault_frame_scroll_bars = Qleft;
4628 #endif
4629 #else
4630 Vdefault_frame_scroll_bars = Qnil;
4631 #endif
4633 DEFVAR_BOOL ("scroll-bar-adjust-thumb-portion",
4634 scroll_bar_adjust_thumb_portion_p,
4635 doc: /* Adjust thumb for overscrolling for Gtk+ and MOTIF.
4636 Non-nil means adjust the thumb in the scroll bar so it can be dragged downwards
4637 even if the end of the buffer is shown (i.e. overscrolling).
4638 Set to nil if you want the thumb to be at the bottom when the end of the buffer
4639 is shown. Also, the thumb fills the whole scroll bar when the entire buffer
4640 is visible. In this case you can not overscroll. */);
4641 scroll_bar_adjust_thumb_portion_p = 1;
4643 DEFVAR_LISP ("terminal-frame", Vterminal_frame,
4644 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4646 DEFVAR_LISP ("mouse-position-function", Vmouse_position_function,
4647 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4648 `mouse-position' calls this function, passing its usual return value as
4649 argument, and returns whatever this function returns.
4650 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4651 which need to do mouse handling at the Lisp level. */);
4652 Vmouse_position_function = Qnil;
4654 DEFVAR_LISP ("mouse-highlight", Vmouse_highlight,
4655 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4656 If the value is an integer, highlighting is only shown after moving the
4657 mouse, while keyboard input turns off the highlight even when the mouse
4658 is over the clickable text. However, the mouse shape still indicates
4659 when the mouse is over clickable text. */);
4660 Vmouse_highlight = Qt;
4662 DEFVAR_LISP ("make-pointer-invisible", Vmake_pointer_invisible,
4663 doc: /* If non-nil, make pointer invisible while typing.
4664 The pointer becomes visible again when the mouse is moved. */);
4665 Vmake_pointer_invisible = Qt;
4667 DEFVAR_LISP ("focus-in-hook", Vfocus_in_hook,
4668 doc: /* Normal hook run when a frame gains input focus. */);
4669 Vfocus_in_hook = Qnil;
4670 DEFSYM (Qfocus_in_hook, "focus-in-hook");
4672 DEFVAR_LISP ("focus-out-hook", Vfocus_out_hook,
4673 doc: /* Normal hook run when a frame loses input focus. */);
4674 Vfocus_out_hook = Qnil;
4675 DEFSYM (Qfocus_out_hook, "focus-out-hook");
4677 DEFVAR_LISP ("delete-frame-functions", Vdelete_frame_functions,
4678 doc: /* Functions run before deleting a frame.
4679 The functions are run with one arg, the frame to be deleted.
4680 See `delete-frame'.
4682 Note that functions in this list may be called just before the frame is
4683 actually deleted, or some time later (or even both when an earlier function
4684 in `delete-frame-functions' (indirectly) calls `delete-frame'
4685 recursively). */);
4686 Vdelete_frame_functions = Qnil;
4687 DEFSYM (Qdelete_frame_functions, "delete-frame-functions");
4689 DEFVAR_LISP ("menu-bar-mode", Vmenu_bar_mode,
4690 doc: /* Non-nil if Menu-Bar mode is enabled.
4691 See the command `menu-bar-mode' for a description of this minor mode.
4692 Setting this variable directly does not take effect;
4693 either customize it (see the info node `Easy Customization')
4694 or call the function `menu-bar-mode'. */);
4695 Vmenu_bar_mode = Qt;
4697 DEFVAR_LISP ("tool-bar-mode", Vtool_bar_mode,
4698 doc: /* Non-nil if Tool-Bar mode is enabled.
4699 See the command `tool-bar-mode' for a description of this minor mode.
4700 Setting this variable directly does not take effect;
4701 either customize it (see the info node `Easy Customization')
4702 or call the function `tool-bar-mode'. */);
4703 #ifdef HAVE_WINDOW_SYSTEM
4704 Vtool_bar_mode = Qt;
4705 #else
4706 Vtool_bar_mode = Qnil;
4707 #endif
4709 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4710 doc: /* Minibufferless frames use this frame's minibuffer.
4711 Emacs cannot create minibufferless frames unless this is set to an
4712 appropriate surrogate.
4714 Emacs consults this variable only when creating minibufferless
4715 frames; once the frame is created, it sticks with its assigned
4716 minibuffer, no matter what this variable is set to. This means that
4717 this variable doesn't necessarily say anything meaningful about the
4718 current set of frames, or where the minibuffer is currently being
4719 displayed.
4721 This variable is local to the current terminal and cannot be buffer-local. */);
4723 DEFVAR_BOOL ("focus-follows-mouse", focus_follows_mouse,
4724 doc: /* Non-nil if window system changes focus when you move the mouse.
4725 You should set this variable to tell Emacs how your window manager
4726 handles focus, since there is no way in general for Emacs to find out
4727 automatically. See also `mouse-autoselect-window'. */);
4728 focus_follows_mouse = 0;
4730 DEFVAR_BOOL ("frame-resize-pixelwise", frame_resize_pixelwise,
4731 doc: /* Non-nil means resize frames pixelwise.
4732 If this option is nil, resizing a frame rounds its sizes to the frame's
4733 current values of `frame-char-height' and `frame-char-width'. If this
4734 is non-nil, no rounding occurs, hence frame sizes can increase/decrease
4735 by one pixel.
4737 With some window managers you have to set this to non-nil in order to
4738 fully maximize frames. To resize your initial frame pixelwise,
4739 set this option to a non-nil value in your init file. */);
4740 frame_resize_pixelwise = 0;
4742 staticpro (&Vframe_list);
4744 defsubr (&Sframep);
4745 defsubr (&Sframe_live_p);
4746 defsubr (&Swindow_system);
4747 defsubr (&Smake_terminal_frame);
4748 defsubr (&Shandle_switch_frame);
4749 defsubr (&Sselect_frame);
4750 defsubr (&Sselected_frame);
4751 defsubr (&Sframe_list);
4752 defsubr (&Snext_frame);
4753 defsubr (&Sprevious_frame);
4754 defsubr (&Slast_nonminibuf_frame);
4755 defsubr (&Sdelete_frame);
4756 defsubr (&Smouse_position);
4757 defsubr (&Smouse_pixel_position);
4758 defsubr (&Sset_mouse_position);
4759 defsubr (&Sset_mouse_pixel_position);
4760 #if 0
4761 defsubr (&Sframe_configuration);
4762 defsubr (&Srestore_frame_configuration);
4763 #endif
4764 defsubr (&Smake_frame_visible);
4765 defsubr (&Smake_frame_invisible);
4766 defsubr (&Siconify_frame);
4767 defsubr (&Sframe_visible_p);
4768 defsubr (&Svisible_frame_list);
4769 defsubr (&Sraise_frame);
4770 defsubr (&Slower_frame);
4771 defsubr (&Sx_focus_frame);
4772 defsubr (&Sredirect_frame_focus);
4773 defsubr (&Sframe_focus);
4774 defsubr (&Sframe_parameters);
4775 defsubr (&Sframe_parameter);
4776 defsubr (&Smodify_frame_parameters);
4777 defsubr (&Sframe_char_height);
4778 defsubr (&Sframe_char_width);
4779 defsubr (&Sframe_pixel_height);
4780 defsubr (&Sframe_pixel_width);
4781 defsubr (&Sframe_text_cols);
4782 defsubr (&Sframe_text_lines);
4783 defsubr (&Sframe_total_cols);
4784 defsubr (&Sframe_text_width);
4785 defsubr (&Sframe_text_height);
4786 defsubr (&Sscroll_bar_width);
4787 defsubr (&Sfringe_width);
4788 defsubr (&Sborder_width);
4789 defsubr (&Sright_divider_width);
4790 defsubr (&Sbottom_divider_width);
4791 defsubr (&Stool_bar_pixel_width);
4792 defsubr (&Sset_frame_height);
4793 defsubr (&Sset_frame_width);
4794 defsubr (&Sset_frame_size);
4795 defsubr (&Sset_frame_position);
4796 defsubr (&Sframe_pointer_visible_p);
4798 #ifdef HAVE_WINDOW_SYSTEM
4799 defsubr (&Sx_get_resource);
4800 defsubr (&Sx_parse_geometry);
4801 #endif