Merge from emacs--devo--0
[emacs.git] / src / frame.c
blob389a94ae3e842afe7688e08176f529c6ab957ac9
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "character.h"
27 #ifdef HAVE_X_WINDOWS
28 #include "xterm.h"
29 #endif
30 #ifdef WINDOWSNT
31 #include "w32term.h"
32 #endif
33 #ifdef MAC_OS
34 #include "macterm.h"
35 #endif
36 #include "buffer.h"
37 /* These help us bind and responding to switch-frame events. */
38 #include "commands.h"
39 #include "keyboard.h"
40 #include "frame.h"
41 #ifdef HAVE_WINDOW_SYSTEM
42 #include "fontset.h"
43 #endif
44 #include "blockinput.h"
45 #include "termchar.h"
46 #include "termhooks.h"
47 #include "dispextern.h"
48 #include "window.h"
49 #ifdef MSDOS
50 #include "msdos.h"
51 #include "dosfns.h"
52 #endif
55 #ifdef HAVE_WINDOW_SYSTEM
57 #ifdef USE_FONT_BACKEND
58 #include "font.h"
59 #endif /* USE_FONT_BACKEND */
61 /* The name we're using in resource queries. Most often "emacs". */
63 Lisp_Object Vx_resource_name;
65 /* The application class we're using in resource queries.
66 Normally "Emacs". */
68 Lisp_Object Vx_resource_class;
70 #endif
72 Lisp_Object Qframep, Qframe_live_p;
73 Lisp_Object Qicon, Qmodeline;
74 Lisp_Object Qonly;
75 Lisp_Object Qx, Qw32, Qmac, Qpc;
76 Lisp_Object Qvisible;
77 Lisp_Object Qdisplay_type;
78 Lisp_Object Qbackground_mode;
80 Lisp_Object Qx_frame_parameter;
81 Lisp_Object Qx_resource_name;
82 Lisp_Object Qterminal;
83 Lisp_Object Qterminal_live_p;
85 /* Frame parameters (set or reported). */
87 Lisp_Object Qauto_raise, Qauto_lower;
88 Lisp_Object Qborder_color, Qborder_width;
89 Lisp_Object Qcursor_color, Qcursor_type;
90 Lisp_Object Qgeometry; /* Not used */
91 Lisp_Object Qheight, Qwidth;
92 Lisp_Object Qleft, Qright;
93 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
94 Lisp_Object Qinternal_border_width;
95 Lisp_Object Qmouse_color;
96 Lisp_Object Qminibuffer;
97 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
98 Lisp_Object Qvisibility;
99 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
100 Lisp_Object Qscreen_gamma;
101 Lisp_Object Qline_spacing;
102 Lisp_Object Quser_position, Quser_size;
103 Lisp_Object Qwait_for_wm;
104 Lisp_Object Qwindow_id;
105 #ifdef HAVE_X_WINDOWS
106 Lisp_Object Qouter_window_id;
107 #endif
108 Lisp_Object Qparent_id;
109 Lisp_Object Qtitle, Qname;
110 Lisp_Object Qexplicit_name;
111 Lisp_Object Qunsplittable;
112 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
113 Lisp_Object Qleft_fringe, Qright_fringe;
114 Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
115 Lisp_Object Qtty_color_mode;
116 Lisp_Object Qtty, Qtty_type;
117 Lisp_Object Qwindow_system;
119 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
120 #ifdef USE_FONT_BACKEND
121 Lisp_Object Qfont_backend;
122 #endif /* USE_FONT_BACKEND */
124 Lisp_Object Qinhibit_face_set_after_frame_default;
125 Lisp_Object Qface_set_after_frame_default;
127 Lisp_Object Vterminal_frame;
128 Lisp_Object Vdefault_frame_alist;
129 Lisp_Object Vdefault_frame_scroll_bars;
130 Lisp_Object Vmouse_position_function;
131 Lisp_Object Vmouse_highlight;
132 Lisp_Object Vdelete_frame_functions;
134 int focus_follows_mouse;
136 static void
137 set_menu_bar_lines_1 (window, n)
138 Lisp_Object window;
139 int n;
141 struct window *w = XWINDOW (window);
143 XSETFASTINT (w->last_modified, 0);
144 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
145 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
147 if (INTEGERP (w->orig_top_line))
148 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
149 if (INTEGERP (w->orig_total_lines))
150 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
152 /* Handle just the top child in a vertical split. */
153 if (!NILP (w->vchild))
154 set_menu_bar_lines_1 (w->vchild, n);
156 /* Adjust all children in a horizontal split. */
157 for (window = w->hchild; !NILP (window); window = w->next)
159 w = XWINDOW (window);
160 set_menu_bar_lines_1 (window, n);
164 void
165 set_menu_bar_lines (f, value, oldval)
166 struct frame *f;
167 Lisp_Object value, oldval;
169 int nlines;
170 int olines = FRAME_MENU_BAR_LINES (f);
172 /* Right now, menu bars don't work properly in minibuf-only frames;
173 most of the commands try to apply themselves to the minibuffer
174 frame itself, and get an error because you can't switch buffers
175 in or split the minibuffer window. */
176 if (FRAME_MINIBUF_ONLY_P (f))
177 return;
179 if (INTEGERP (value))
180 nlines = XINT (value);
181 else
182 nlines = 0;
184 if (nlines != olines)
186 windows_or_buffers_changed++;
187 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
188 FRAME_MENU_BAR_LINES (f) = nlines;
189 set_menu_bar_lines_1 (f->root_window, nlines - olines);
190 adjust_glyphs (f);
194 Lisp_Object Vemacs_iconified;
195 Lisp_Object Vframe_list;
197 extern Lisp_Object Vminibuffer_list;
198 extern Lisp_Object get_minibuffer ();
199 extern Lisp_Object Fhandle_switch_frame ();
200 extern Lisp_Object Fredirect_frame_focus ();
201 extern Lisp_Object x_get_focus_frame ();
203 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
204 doc: /* Return non-nil if OBJECT is a frame.
205 Value is t for a termcap frame (a character-only terminal),
206 `x' for an Emacs frame that is really an X window,
207 `w32' for an Emacs frame that is a window on MS-Windows display,
208 `mac' for an Emacs frame on a Macintosh display,
209 `pc' for a direct-write MS-DOS frame.
210 See also `frame-live-p'. */)
211 (object)
212 Lisp_Object object;
214 if (!FRAMEP (object))
215 return Qnil;
216 switch (XFRAME (object)->output_method)
218 case output_initial: /* The initial frame is like a termcap frame. */
219 case output_termcap:
220 return Qt;
221 case output_x_window:
222 return Qx;
223 case output_w32:
224 return Qw32;
225 case output_msdos_raw:
226 return Qpc;
227 case output_mac:
228 return Qmac;
229 default:
230 abort ();
234 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
235 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
236 Value is nil if OBJECT is not a live frame. If object is a live
237 frame, the return value indicates what sort of terminal device it is
238 displayed on. See the documentation of `framep' for possible
239 return values. */)
240 (object)
241 Lisp_Object object;
243 return ((FRAMEP (object)
244 && FRAME_LIVE_P (XFRAME (object)))
245 ? Fframep (object)
246 : Qnil);
249 DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
250 doc: /* The name of the window system that FRAME is displaying through.
251 The value is a symbol---for instance, 'x' for X windows.
252 The value is nil if Emacs is using a text-only terminal.
254 FRAME defaults to the currently selected frame. */)
255 (frame)
256 Lisp_Object frame;
258 Lisp_Object type;
259 if (NILP (frame))
260 frame = selected_frame;
262 type = Fframep (frame);
264 if (NILP (type))
265 wrong_type_argument (Qframep, frame);
267 if (EQ (type, Qt))
268 return Qnil;
269 else
270 return type;
273 struct frame *
274 make_frame (mini_p)
275 int mini_p;
277 Lisp_Object frame;
278 register struct frame *f;
279 register Lisp_Object root_window;
280 register Lisp_Object mini_window;
282 f = allocate_frame ();
283 XSETFRAME (frame, f);
285 f->desired_matrix = 0;
286 f->current_matrix = 0;
287 f->desired_pool = 0;
288 f->current_pool = 0;
289 f->glyphs_initialized_p = 0;
290 f->decode_mode_spec_buffer = 0;
291 f->visible = 0;
292 f->async_visible = 0;
293 f->output_data.nothing = 0;
294 f->iconified = 0;
295 f->async_iconified = 0;
296 f->wants_modeline = 1;
297 f->auto_raise = 0;
298 f->auto_lower = 0;
299 f->no_split = 0;
300 f->garbaged = 1;
301 f->has_minibuffer = mini_p;
302 f->focus_frame = Qnil;
303 f->explicit_name = 0;
304 f->can_have_scroll_bars = 0;
305 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
306 f->param_alist = Qnil;
307 f->scroll_bars = Qnil;
308 f->condemned_scroll_bars = Qnil;
309 f->face_alist = Qnil;
310 f->face_cache = NULL;
311 f->menu_bar_items = Qnil;
312 f->menu_bar_vector = Qnil;
313 f->menu_bar_items_used = 0;
314 f->buffer_predicate = Qnil;
315 f->buffer_list = Qnil;
316 f->buried_buffer_list = Qnil;
317 f->namebuf = 0;
318 f->title = Qnil;
319 f->menu_bar_window = Qnil;
320 f->tool_bar_window = Qnil;
321 f->tool_bar_items = Qnil;
322 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
323 f->n_tool_bar_items = 0;
324 f->left_fringe_width = f->right_fringe_width = 0;
325 f->fringe_cols = 0;
326 f->scroll_bar_actual_width = 0;
327 f->border_width = 0;
328 f->internal_border_width = 0;
329 f->column_width = 1; /* !FRAME_WINDOW_P value */
330 f->line_height = 1; /* !FRAME_WINDOW_P value */
331 f->x_pixels_diff = f->y_pixels_diff = 0;
332 #ifdef HAVE_WINDOW_SYSTEM
333 f->want_fullscreen = FULLSCREEN_NONE;
334 #endif
335 f->size_hint_flags = 0;
336 f->win_gravity = 0;
337 #ifdef USE_FONT_BACKEND
338 f->font_driver_list = NULL;
339 #endif /* USE_FONT_BACKEND */
341 root_window = make_window ();
342 if (mini_p)
344 mini_window = make_window ();
345 XWINDOW (root_window)->next = mini_window;
346 XWINDOW (mini_window)->prev = root_window;
347 XWINDOW (mini_window)->mini_p = Qt;
348 XWINDOW (mini_window)->frame = frame;
349 f->minibuffer_window = mini_window;
351 else
353 mini_window = Qnil;
354 XWINDOW (root_window)->next = Qnil;
355 f->minibuffer_window = Qnil;
358 XWINDOW (root_window)->frame = frame;
360 /* 10 is arbitrary,
361 just so that there is "something there."
362 Correct size will be set up later with change_frame_size. */
364 SET_FRAME_COLS (f, 10);
365 FRAME_LINES (f) = 10;
367 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
368 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
370 if (mini_p)
372 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
373 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
374 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
377 /* Choose a buffer for the frame's root window. */
379 Lisp_Object buf;
381 XWINDOW (root_window)->buffer = Qt;
382 buf = Fcurrent_buffer ();
383 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
384 a space), try to find another one. */
385 if (SREF (Fbuffer_name (buf), 0) == ' ')
386 buf = Fother_buffer (buf, Qnil, Qnil);
388 /* Use set_window_buffer, not Fset_window_buffer, and don't let
389 hooks be run by it. The reason is that the whole frame/window
390 arrangement is not yet fully intialized at this point. Windows
391 don't have the right size, glyph matrices aren't initialized
392 etc. Running Lisp functions at this point surely ends in a
393 SEGV. */
394 set_window_buffer (root_window, buf, 0, 0);
395 f->buffer_list = Fcons (buf, Qnil);
398 if (mini_p)
400 XWINDOW (mini_window)->buffer = Qt;
401 set_window_buffer (mini_window,
402 (NILP (Vminibuffer_list)
403 ? get_minibuffer (0)
404 : Fcar (Vminibuffer_list)),
405 0, 0);
408 f->root_window = root_window;
409 f->selected_window = root_window;
410 /* Make sure this window seems more recently used than
411 a newly-created, never-selected window. */
412 ++window_select_count;
413 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
415 f->default_face_done_p = 0;
417 return f;
420 #ifdef HAVE_WINDOW_SYSTEM
421 /* Make a frame using a separate minibuffer window on another frame.
422 MINI_WINDOW is the minibuffer window to use. nil means use the
423 default (the global minibuffer). */
425 struct frame *
426 make_frame_without_minibuffer (mini_window, kb, display)
427 register Lisp_Object mini_window;
428 KBOARD *kb;
429 Lisp_Object display;
431 register struct frame *f;
432 struct gcpro gcpro1;
434 if (!NILP (mini_window))
435 CHECK_LIVE_WINDOW (mini_window);
437 #ifdef MULTI_KBOARD
438 if (!NILP (mini_window)
439 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
440 error ("Frame and minibuffer must be on the same terminal");
441 #endif
443 /* Make a frame containing just a root window. */
444 f = make_frame (0);
446 if (NILP (mini_window))
448 /* Use default-minibuffer-frame if possible. */
449 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
450 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
452 Lisp_Object frame_dummy;
454 XSETFRAME (frame_dummy, f);
455 GCPRO1 (frame_dummy);
456 /* If there's no minibuffer frame to use, create one. */
457 kb->Vdefault_minibuffer_frame =
458 call1 (intern ("make-initial-minibuffer-frame"), display);
459 UNGCPRO;
462 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
465 f->minibuffer_window = mini_window;
467 /* Make the chosen minibuffer window display the proper minibuffer,
468 unless it is already showing a minibuffer. */
469 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
470 Fset_window_buffer (mini_window,
471 (NILP (Vminibuffer_list)
472 ? get_minibuffer (0)
473 : Fcar (Vminibuffer_list)), Qnil);
474 return f;
477 /* Make a frame containing only a minibuffer window. */
479 struct frame *
480 make_minibuffer_frame ()
482 /* First make a frame containing just a root window, no minibuffer. */
484 register struct frame *f = make_frame (0);
485 register Lisp_Object mini_window;
486 register Lisp_Object frame;
488 XSETFRAME (frame, f);
490 f->auto_raise = 0;
491 f->auto_lower = 0;
492 f->no_split = 1;
493 f->wants_modeline = 0;
494 f->has_minibuffer = 1;
496 /* Now label the root window as also being the minibuffer.
497 Avoid infinite looping on the window chain by marking next pointer
498 as nil. */
500 mini_window = f->minibuffer_window = f->root_window;
501 XWINDOW (mini_window)->mini_p = Qt;
502 XWINDOW (mini_window)->next = Qnil;
503 XWINDOW (mini_window)->prev = Qnil;
504 XWINDOW (mini_window)->frame = frame;
506 /* Put the proper buffer in that window. */
508 Fset_window_buffer (mini_window,
509 (NILP (Vminibuffer_list)
510 ? get_minibuffer (0)
511 : Fcar (Vminibuffer_list)), Qnil);
512 return f;
514 #endif /* HAVE_WINDOW_SYSTEM */
516 /* Construct a frame that refers to a terminal. */
518 static int tty_frame_count;
520 struct frame *
521 make_initial_frame (void)
523 struct frame *f;
524 struct terminal *terminal;
525 Lisp_Object frame;
527 #ifdef MULTI_KBOARD
528 /* Create the initial keyboard. */
529 if (!initial_kboard)
531 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
532 init_kboard (initial_kboard);
533 initial_kboard->next_kboard = all_kboards;
534 all_kboards = initial_kboard;
536 #endif
538 /* The first call must initialize Vframe_list. */
539 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
540 Vframe_list = Qnil;
542 terminal = init_initial_terminal ();
544 f = make_frame (1);
545 XSETFRAME (frame, f);
547 Vframe_list = Fcons (frame, Vframe_list);
549 tty_frame_count = 1;
550 f->name = build_string ("F1");
552 f->visible = 1;
553 f->async_visible = 1;
555 f->output_method = terminal->type;
556 f->terminal = terminal;
557 f->terminal->reference_count++;
558 f->output_data.nothing = 0;
560 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
561 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
563 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
564 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
566 return f;
570 struct frame *
571 make_terminal_frame (struct terminal *terminal)
573 register struct frame *f;
574 Lisp_Object frame;
575 char name[20];
577 if (!terminal->name)
578 error ("Terminal is not live, can't create new frames on it");
580 f = make_frame (1);
582 XSETFRAME (frame, f);
583 Vframe_list = Fcons (frame, Vframe_list);
585 tty_frame_count++;
586 sprintf (name, "F%d", tty_frame_count);
587 f->name = build_string (name);
589 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
590 f->async_visible = 1; /* Don't let visible be cleared later. */
591 #ifdef MSDOS
592 f->output_data.x = &the_only_x_display;
593 if (!inhibit_window_system
594 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
595 || XFRAME (selected_frame)->output_method == output_msdos_raw))
597 f->output_method = output_msdos_raw;
598 /* This initialization of foreground and background pixels is
599 only important for the initial frame created in temacs. If
600 we don't do that, we get black background and foreground in
601 the dumped Emacs because the_only_x_display is a static
602 variable, hence it is born all-zeroes, and zero is the code
603 for the black color. Other frames all inherit their pixels
604 from what's already in the_only_x_display. */
605 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
606 && FRAME_BACKGROUND_PIXEL (f) == 0
607 && FRAME_FOREGROUND_PIXEL (f) == 0)
609 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
610 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
613 else
614 f->output_method = output_termcap;
615 #else
616 #ifdef MAC_OS8
617 make_mac_terminal_frame (f);
618 #else
620 f->output_method = output_termcap;
621 f->terminal = terminal;
622 f->terminal->reference_count++;
623 create_tty_output (f);
625 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
626 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
628 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
629 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
631 /* Set the top frame to the newly created frame. */
632 if (FRAMEP (FRAME_TTY (f)->top_frame)
633 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
634 XFRAME (FRAME_TTY (f)->top_frame)->async_visible = 2; /* obscured */
636 FRAME_TTY (f)->top_frame = frame;
639 #ifdef CANNOT_DUMP
640 FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR;
641 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
642 #endif
643 #endif /* MAC_OS8 */
644 #endif /* MSDOS */
646 if (!noninteractive)
647 init_frame_faces (f);
649 return f;
652 /* Get a suitable value for frame parameter PARAMETER for a newly
653 created frame, based on (1) the user-supplied frame parameter
654 alist SUPPLIED_PARMS, (2) CURRENT_VALUE, and finally, if all else
655 fails, (3) Vdefault_frame_alist. */
657 static Lisp_Object
658 get_future_frame_param (Lisp_Object parameter,
659 Lisp_Object supplied_parms,
660 char *current_value)
662 Lisp_Object result;
664 result = Fassq (parameter, supplied_parms);
665 if (NILP (result))
666 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
667 if (NILP (result) && current_value != NULL)
668 result = build_string (current_value);
669 if (NILP (result))
670 result = Fassq (parameter, Vdefault_frame_alist);
671 if (!NILP (result) && !STRINGP (result))
672 result = XCDR (result);
673 if (NILP (result) || !STRINGP (result))
674 result = Qnil;
676 return result;
679 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
680 1, 1, 0,
681 doc: /* Create an additional terminal frame, possibly on another terminal.
682 This function takes one argument, an alist specifying frame parameters.
684 You can create multiple frames on a single text-only terminal, but
685 only one of them (the selected terminal frame) is actually displayed.
687 In practice, generally you don't need to specify any parameters,
688 except when you want to create a new frame on another terminal.
689 In that case, the `tty' parameter specifies the device file to open,
690 and the `tty-type' parameter specifies the terminal type. Example:
692 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
694 Note that changing the size of one terminal frame automatically
695 affects all frames on the same terminal device. */)
696 (parms)
697 Lisp_Object parms;
699 struct frame *f;
700 struct terminal *t = NULL;
701 Lisp_Object frame, tem;
702 struct frame *sf = SELECTED_FRAME ();
704 #ifdef MSDOS
705 if (sf->output_method != output_msdos_raw
706 && sf->output_method != output_termcap)
707 abort ();
708 #else /* not MSDOS */
710 #if 0 /* #ifdef MAC_OS */
711 /* This can happen for multi-tty when using both terminal frames and
712 Carbon frames. */
713 if (sf->output_method != output_mac)
714 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
715 #else
716 #if 0 /* This should work now! */
717 if (sf->output_method != output_termcap)
718 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
719 #endif
720 #endif
721 #endif /* not MSDOS */
724 Lisp_Object terminal;
726 terminal = Fassq (Qterminal, parms);
727 if (!NILP (terminal))
729 terminal = XCDR (terminal);
730 t = get_terminal (terminal, 1);
734 if (!t)
736 char *name = 0, *type = 0;
737 Lisp_Object tty, tty_type;
739 tty = get_future_frame_param
740 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
741 ? FRAME_TTY (XFRAME (selected_frame))->name
742 : NULL));
743 if (!NILP (tty))
745 name = (char *) alloca (SBYTES (tty) + 1);
746 strncpy (name, SDATA (tty), SBYTES (tty));
747 name[SBYTES (tty)] = 0;
750 tty_type = get_future_frame_param
751 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
752 ? FRAME_TTY (XFRAME (selected_frame))->type
753 : NULL));
754 if (!NILP (tty_type))
756 type = (char *) alloca (SBYTES (tty_type) + 1);
757 strncpy (type, SDATA (tty_type), SBYTES (tty_type));
758 type[SBYTES (tty_type)] = 0;
761 t = init_tty (name, type, 0); /* Errors are not fatal. */
764 f = make_terminal_frame (t);
767 int width, height;
768 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
769 change_frame_size (f, height, width, 0, 0, 0);
772 adjust_glyphs (f);
773 calculate_costs (f);
774 XSETFRAME (frame, f);
775 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
776 Fmodify_frame_parameters (frame, parms);
777 Fmodify_frame_parameters (frame, Fcons (Fcons (Qwindow_system, Qnil), Qnil));
778 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty_type,
779 build_string (t->display_info.tty->type)),
780 Qnil));
781 if (t->display_info.tty->name != NULL)
782 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty,
783 build_string (t->display_info.tty->name)),
784 Qnil));
785 else
786 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty, Qnil), Qnil));
788 /* Make the frame face alist be frame-specific, so that each
789 frame could change its face definitions independently. */
790 f->face_alist = Fcopy_alist (sf->face_alist);
791 /* Simple Fcopy_alist isn't enough, because we need the contents of
792 the vectors which are the CDRs of associations in face_alist to
793 be copied as well. */
794 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
795 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
796 return frame;
800 /* Perform the switch to frame FRAME.
802 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
803 FRAME1 as frame.
805 If TRACK is non-zero and the frame that currently has the focus
806 redirects its focus to the selected frame, redirect that focused
807 frame's focus to FRAME instead.
809 FOR_DELETION non-zero means that the selected frame is being
810 deleted, which includes the possibility that the frame's terminal
811 is dead. */
813 Lisp_Object
814 do_switch_frame (frame, track, for_deletion)
815 Lisp_Object frame;
816 int track, for_deletion;
818 struct frame *sf = SELECTED_FRAME ();
820 /* If FRAME is a switch-frame event, extract the frame we should
821 switch to. */
822 if (CONSP (frame)
823 && EQ (XCAR (frame), Qswitch_frame)
824 && CONSP (XCDR (frame)))
825 frame = XCAR (XCDR (frame));
827 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
828 a switch-frame event to arrive after a frame is no longer live,
829 especially when deleting the initial frame during startup. */
830 CHECK_FRAME (frame);
831 if (! FRAME_LIVE_P (XFRAME (frame)))
832 return Qnil;
834 if (sf == XFRAME (frame))
835 return frame;
837 /* This is too greedy; it causes inappropriate focus redirection
838 that's hard to get rid of. */
839 #if 0
840 /* If a frame's focus has been redirected toward the currently
841 selected frame, we should change the redirection to point to the
842 newly selected frame. This means that if the focus is redirected
843 from a minibufferless frame to a surrogate minibuffer frame, we
844 can use `other-window' to switch between all the frames using
845 that minibuffer frame, and the focus redirection will follow us
846 around. */
847 if (track)
849 Lisp_Object tail;
851 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
853 Lisp_Object focus;
855 if (!FRAMEP (XCAR (tail)))
856 abort ();
858 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
860 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
861 Fredirect_frame_focus (XCAR (tail), frame);
864 #else /* ! 0 */
865 /* Instead, apply it only to the frame we're pointing to. */
866 #ifdef HAVE_WINDOW_SYSTEM
867 if (track && FRAME_WINDOW_P (XFRAME (frame)))
869 Lisp_Object focus, xfocus;
871 xfocus = x_get_focus_frame (XFRAME (frame));
872 if (FRAMEP (xfocus))
874 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
875 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
876 Fredirect_frame_focus (xfocus, frame);
879 #endif /* HAVE_X_WINDOWS */
880 #endif /* ! 0 */
882 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
883 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
885 if (FRAME_TERMCAP_P (XFRAME (selected_frame))
886 && FRAME_TERMCAP_P (XFRAME (frame))
887 && FRAME_TTY (XFRAME (selected_frame)) == FRAME_TTY (XFRAME (frame)))
889 XFRAME (selected_frame)->async_visible = 2; /* obscured */
890 XFRAME (frame)->async_visible = 1;
891 FRAME_TTY (XFRAME (frame))->top_frame = frame;
894 selected_frame = frame;
895 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
896 last_nonminibuf_frame = XFRAME (selected_frame);
898 Fselect_window (XFRAME (frame)->selected_window, Qnil);
900 #ifndef WINDOWSNT
901 /* Make sure to switch the tty color mode to that of the newly
902 selected frame. */
903 sf = SELECTED_FRAME ();
904 if (FRAME_TERMCAP_P (sf))
906 Lisp_Object color_mode_spec, color_mode;
908 color_mode_spec = assq_no_quit (Qtty_color_mode, sf->param_alist);
909 if (CONSP (color_mode_spec))
910 color_mode = XCDR (color_mode_spec);
911 else
912 color_mode = make_number (0);
913 set_tty_color_mode (sf, color_mode);
915 #endif /* !WINDOWSNT */
917 /* We want to make sure that the next event generates a frame-switch
918 event to the appropriate frame. This seems kludgy to me, but
919 before you take it out, make sure that evaluating something like
920 (select-window (frame-root-window (new-frame))) doesn't end up
921 with your typing being interpreted in the new frame instead of
922 the one you're actually typing in. */
923 internal_last_event_frame = Qnil;
925 return frame;
928 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 1, "e",
929 doc: /* Select the frame FRAME.
930 Subsequent editing commands apply to its selected window.
931 The selection of FRAME lasts until the next time the user does
932 something to select a different frame, or until the next time this
933 function is called. If you are using a window system, the previously
934 selected frame may be restored as the selected frame after return to
935 the command loop, because it still may have the window system's input
936 focus. On a text-only terminal, the next redisplay will display FRAME.
938 This function returns FRAME, or nil if FRAME has been deleted. */)
939 (frame)
940 Lisp_Object frame;
942 return do_switch_frame (frame, 1, 0);
946 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
947 doc: /* Handle a switch-frame event EVENT.
948 Switch-frame events are usually bound to this function.
949 A switch-frame event tells Emacs that the window manager has requested
950 that the user's events be directed to the frame mentioned in the event.
951 This function selects the selected window of the frame of EVENT.
953 If EVENT is frame object, handle it as if it were a switch-frame event
954 to that frame. */)
955 (event)
956 Lisp_Object event;
958 /* Preserve prefix arg that the command loop just cleared. */
959 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
960 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
961 return do_switch_frame (event, 0, 0);
964 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
965 doc: /* Return the frame that is now selected. */)
968 return selected_frame;
971 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
972 doc: /* Return the frame object that window WINDOW is on. */)
973 (window)
974 Lisp_Object window;
976 CHECK_LIVE_WINDOW (window);
977 return XWINDOW (window)->frame;
980 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
981 doc: /* Returns the topmost, leftmost window of FRAME.
982 If omitted, FRAME defaults to the currently selected frame. */)
983 (frame)
984 Lisp_Object frame;
986 Lisp_Object w;
988 if (NILP (frame))
989 w = SELECTED_FRAME ()->root_window;
990 else
992 CHECK_LIVE_FRAME (frame);
993 w = XFRAME (frame)->root_window;
995 while (NILP (XWINDOW (w)->buffer))
997 if (! NILP (XWINDOW (w)->hchild))
998 w = XWINDOW (w)->hchild;
999 else if (! NILP (XWINDOW (w)->vchild))
1000 w = XWINDOW (w)->vchild;
1001 else
1002 abort ();
1004 return w;
1007 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
1008 Sactive_minibuffer_window, 0, 0, 0,
1009 doc: /* Return the currently active minibuffer window, or nil if none. */)
1012 return minibuf_level ? minibuf_window : Qnil;
1015 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
1016 doc: /* Returns the root-window of FRAME.
1017 If omitted, FRAME defaults to the currently selected frame. */)
1018 (frame)
1019 Lisp_Object frame;
1021 Lisp_Object window;
1023 if (NILP (frame))
1024 window = SELECTED_FRAME ()->root_window;
1025 else
1027 CHECK_LIVE_FRAME (frame);
1028 window = XFRAME (frame)->root_window;
1031 return window;
1034 DEFUN ("frame-selected-window", Fframe_selected_window,
1035 Sframe_selected_window, 0, 1, 0,
1036 doc: /* Return the selected window of frame object FRAME.
1037 If omitted, FRAME defaults to the currently selected frame. */)
1038 (frame)
1039 Lisp_Object frame;
1041 Lisp_Object window;
1043 if (NILP (frame))
1044 window = SELECTED_FRAME ()->selected_window;
1045 else
1047 CHECK_LIVE_FRAME (frame);
1048 window = XFRAME (frame)->selected_window;
1051 return window;
1054 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
1055 Sset_frame_selected_window, 2, 2, 0,
1056 doc: /* Set the selected window of frame object FRAME to WINDOW.
1057 Return WINDOW.
1058 If FRAME is nil, the selected frame is used.
1059 If FRAME is the selected frame, this makes WINDOW the selected window. */)
1060 (frame, window)
1061 Lisp_Object frame, window;
1063 if (NILP (frame))
1064 frame = selected_frame;
1066 CHECK_LIVE_FRAME (frame);
1067 CHECK_LIVE_WINDOW (window);
1069 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
1070 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
1072 if (EQ (frame, selected_frame))
1073 return Fselect_window (window, Qnil);
1075 return XFRAME (frame)->selected_window = window;
1079 DEFUN ("frame-list", Fframe_list, Sframe_list,
1080 0, 0, 0,
1081 doc: /* Return a list of all frames. */)
1084 Lisp_Object frames;
1085 frames = Fcopy_sequence (Vframe_list);
1086 #ifdef HAVE_WINDOW_SYSTEM
1087 if (FRAMEP (tip_frame))
1088 frames = Fdelq (tip_frame, frames);
1089 #endif
1090 return frames;
1093 /* Return the next frame in the frame list after FRAME.
1094 If MINIBUF is nil, exclude minibuffer-only frames.
1095 If MINIBUF is a window, include only its own frame
1096 and any frame now using that window as the minibuffer.
1097 If MINIBUF is `visible', include all visible frames.
1098 If MINIBUF is 0, include all visible and iconified frames.
1099 Otherwise, include all frames. */
1101 static Lisp_Object
1102 next_frame (frame, minibuf)
1103 Lisp_Object frame;
1104 Lisp_Object minibuf;
1106 Lisp_Object tail;
1107 int passed = 0;
1109 /* There must always be at least one frame in Vframe_list. */
1110 if (! CONSP (Vframe_list))
1111 abort ();
1113 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
1114 forever. Forestall that. */
1115 CHECK_LIVE_FRAME (frame);
1117 while (1)
1118 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1120 Lisp_Object f;
1122 f = XCAR (tail);
1124 if (passed
1125 && ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1126 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1127 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1128 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame)))))
1130 /* Decide whether this frame is eligible to be returned. */
1132 /* If we've looped all the way around without finding any
1133 eligible frames, return the original frame. */
1134 if (EQ (f, frame))
1135 return f;
1137 /* Let minibuf decide if this frame is acceptable. */
1138 if (NILP (minibuf))
1140 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1141 return f;
1143 else if (EQ (minibuf, Qvisible))
1145 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1146 if (FRAME_VISIBLE_P (XFRAME (f)))
1147 return f;
1149 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
1151 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1152 if (FRAME_VISIBLE_P (XFRAME (f))
1153 || FRAME_ICONIFIED_P (XFRAME (f)))
1154 return f;
1156 else if (WINDOWP (minibuf))
1158 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1159 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1160 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1161 FRAME_FOCUS_FRAME (XFRAME (f))))
1162 return f;
1164 else
1165 return f;
1168 if (EQ (frame, f))
1169 passed++;
1173 /* Return the previous frame in the frame list before FRAME.
1174 If MINIBUF is nil, exclude minibuffer-only frames.
1175 If MINIBUF is a window, include only its own frame
1176 and any frame now using that window as the minibuffer.
1177 If MINIBUF is `visible', include all visible frames.
1178 If MINIBUF is 0, include all visible and iconified frames.
1179 Otherwise, include all frames. */
1181 static Lisp_Object
1182 prev_frame (frame, minibuf)
1183 Lisp_Object frame;
1184 Lisp_Object minibuf;
1186 Lisp_Object tail;
1187 Lisp_Object prev;
1189 /* There must always be at least one frame in Vframe_list. */
1190 if (! CONSP (Vframe_list))
1191 abort ();
1193 prev = Qnil;
1194 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1196 Lisp_Object f;
1198 f = XCAR (tail);
1199 if (!FRAMEP (f))
1200 abort ();
1202 if (EQ (frame, f) && !NILP (prev))
1203 return prev;
1205 if ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1206 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1207 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1208 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame))))
1210 /* Decide whether this frame is eligible to be returned,
1211 according to minibuf. */
1212 if (NILP (minibuf))
1214 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1215 prev = f;
1217 else if (WINDOWP (minibuf))
1219 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1220 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1221 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1222 FRAME_FOCUS_FRAME (XFRAME (f))))
1223 prev = f;
1225 else if (EQ (minibuf, Qvisible))
1227 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1228 if (FRAME_VISIBLE_P (XFRAME (f)))
1229 prev = f;
1231 else if (XFASTINT (minibuf) == 0)
1233 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1234 if (FRAME_VISIBLE_P (XFRAME (f))
1235 || FRAME_ICONIFIED_P (XFRAME (f)))
1236 prev = f;
1238 else
1239 prev = f;
1243 /* We've scanned the entire list. */
1244 if (NILP (prev))
1245 /* We went through the whole frame list without finding a single
1246 acceptable frame. Return the original frame. */
1247 return frame;
1248 else
1249 /* There were no acceptable frames in the list before FRAME; otherwise,
1250 we would have returned directly from the loop. Since PREV is the last
1251 acceptable frame in the list, return it. */
1252 return prev;
1256 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1257 doc: /* Return the next frame in the frame list after FRAME.
1258 It considers only frames on the same terminal as FRAME.
1259 By default, skip minibuffer-only frames.
1260 If omitted, FRAME defaults to the selected frame.
1261 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1262 If MINIFRAME is a window, include only its own frame
1263 and any frame now using that window as the minibuffer.
1264 If MINIFRAME is `visible', include all visible frames.
1265 If MINIFRAME is 0, include all visible and iconified frames.
1266 Otherwise, include all frames. */)
1267 (frame, miniframe)
1268 Lisp_Object frame, miniframe;
1270 if (NILP (frame))
1271 frame = selected_frame;
1273 CHECK_LIVE_FRAME (frame);
1274 return next_frame (frame, miniframe);
1277 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1278 doc: /* Return the previous frame in the frame list before FRAME.
1279 It considers only frames on the same terminal as FRAME.
1280 By default, skip minibuffer-only frames.
1281 If omitted, FRAME defaults to the selected frame.
1282 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1283 If MINIFRAME is a window, include only its own frame
1284 and any frame now using that window as the minibuffer.
1285 If MINIFRAME is `visible', include all visible frames.
1286 If MINIFRAME is 0, include all visible and iconified frames.
1287 Otherwise, include all frames. */)
1288 (frame, miniframe)
1289 Lisp_Object frame, miniframe;
1291 if (NILP (frame))
1292 frame = selected_frame;
1293 CHECK_LIVE_FRAME (frame);
1294 return prev_frame (frame, miniframe);
1297 /* Return 1 if it is ok to delete frame F;
1298 0 if all frames aside from F are invisible.
1299 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1302 other_visible_frames (f)
1303 FRAME_PTR f;
1305 /* We know the selected frame is visible,
1306 so if F is some other frame, it can't be the sole visible one. */
1307 if (f == SELECTED_FRAME ())
1309 Lisp_Object frames;
1310 int count = 0;
1312 for (frames = Vframe_list;
1313 CONSP (frames);
1314 frames = XCDR (frames))
1316 Lisp_Object this;
1318 this = XCAR (frames);
1319 /* Verify that the frame's window still exists
1320 and we can still talk to it. And note any recent change
1321 in visibility. */
1322 #ifdef HAVE_WINDOW_SYSTEM
1323 if (FRAME_WINDOW_P (XFRAME (this)))
1325 x_sync (XFRAME (this));
1326 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1328 #endif
1330 if (FRAME_VISIBLE_P (XFRAME (this))
1331 || FRAME_ICONIFIED_P (XFRAME (this))
1332 /* Allow deleting the terminal frame when at least
1333 one X frame exists! */
1334 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1335 count++;
1337 return count > 1;
1339 return 1;
1342 /* Error handler for `delete-frame-functions'. */
1343 static Lisp_Object
1344 delete_frame_handler (Lisp_Object arg)
1346 add_to_log ("Error during `delete-frame': %s", arg, Qnil);
1347 return Qnil;
1350 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1351 doc: /* Delete FRAME, permanently eliminating it from use.
1352 If omitted, FRAME defaults to the selected frame.
1353 A frame may not be deleted if its minibuffer is used by other frames.
1354 Normally, you may not delete a frame if all other frames are invisible,
1355 but if the second optional argument FORCE is non-nil, you may do so.
1357 This function runs `delete-frame-functions' before actually deleting the
1358 frame, unless the frame is a tooltip.
1359 The functions are run with one arg, the frame to be deleted. */)
1360 (frame, force)
1361 Lisp_Object frame, force;
1363 struct frame *f;
1364 struct frame *sf = SELECTED_FRAME ();
1365 struct kboard *kb;
1367 int minibuffer_selected;
1369 if (EQ (frame, Qnil))
1371 f = sf;
1372 XSETFRAME (frame, f);
1374 else
1376 CHECK_FRAME (frame);
1377 f = XFRAME (frame);
1380 if (! FRAME_LIVE_P (f))
1381 return Qnil;
1383 if (NILP (force) && !other_visible_frames (f)
1384 #ifdef MAC_OS8
1385 /* Terminal frame deleted before any other visible frames are
1386 created. */
1387 && strcmp (SDATA (f->name), "F1") != 0
1388 #endif
1390 error ("Attempt to delete the sole visible or iconified frame");
1392 #if 0
1393 /* This is a nice idea, but x_connection_closed needs to be able
1394 to delete the last frame, if it is gone. */
1395 if (NILP (XCDR (Vframe_list)))
1396 error ("Attempt to delete the only frame");
1397 #endif
1399 /* Does this frame have a minibuffer, and is it the surrogate
1400 minibuffer for any other frame? */
1401 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1403 Lisp_Object frames;
1405 for (frames = Vframe_list;
1406 CONSP (frames);
1407 frames = XCDR (frames))
1409 Lisp_Object this;
1410 this = XCAR (frames);
1412 if (! EQ (this, frame)
1413 && EQ (frame,
1414 WINDOW_FRAME (XWINDOW
1415 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1416 error ("Attempt to delete a surrogate minibuffer frame");
1420 /* Run `delete-frame-functions' unless frame is a tooltip. */
1421 if (!NILP (Vrun_hooks)
1422 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
1424 Lisp_Object args[2];
1425 struct gcpro gcpro1, gcpro2;
1427 /* Don't let a rogue function in `delete-frame-functions'
1428 prevent the frame deletion. */
1429 GCPRO2 (args[0], args[1]);
1430 args[0] = intern ("delete-frame-functions");
1431 args[1] = frame;
1432 internal_condition_case_2 (Frun_hook_with_args, 2, args,
1433 Qt, delete_frame_handler);
1434 UNGCPRO;
1437 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1438 if (! FRAME_LIVE_P (f))
1439 return Qnil;
1441 minibuffer_selected = EQ (minibuf_window, selected_window);
1443 /* Don't let the frame remain selected. */
1444 if (f == sf)
1446 Lisp_Object tail, frame1;
1448 /* Look for another visible frame on the same terminal. */
1449 frame1 = next_frame (frame, Qvisible);
1451 /* If there is none, find *some* other frame. */
1452 if (NILP (frame1) || EQ (frame1, frame))
1454 FOR_EACH_FRAME (tail, frame1)
1456 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
1457 break;
1461 do_switch_frame (frame1, 0, 1);
1462 sf = SELECTED_FRAME ();
1465 /* Don't allow minibuf_window to remain on a deleted frame. */
1466 if (EQ (f->minibuffer_window, minibuf_window))
1468 Fset_window_buffer (sf->minibuffer_window,
1469 XWINDOW (minibuf_window)->buffer, Qnil);
1470 minibuf_window = sf->minibuffer_window;
1472 /* If the dying minibuffer window was selected,
1473 select the new one. */
1474 if (minibuffer_selected)
1475 Fselect_window (minibuf_window, Qnil);
1478 /* Don't let echo_area_window to remain on a deleted frame. */
1479 if (EQ (f->minibuffer_window, echo_area_window))
1480 echo_area_window = sf->minibuffer_window;
1482 /* Clear any X selections for this frame. */
1483 #ifdef HAVE_X_WINDOWS
1484 if (FRAME_X_P (f))
1485 x_clear_frame_selections (f);
1486 #endif
1487 #ifdef MAC_OS
1488 if (FRAME_MAC_P (f))
1489 x_clear_frame_selections (f);
1490 #endif
1492 /* Free glyphs.
1493 This function must be called before the window tree of the
1494 frame is deleted because windows contain dynamically allocated
1495 memory. */
1496 free_glyphs (f);
1498 /* Mark all the windows that used to be on FRAME as deleted, and then
1499 remove the reference to them. */
1500 delete_all_subwindows (XWINDOW (f->root_window));
1501 f->root_window = Qnil;
1503 Vframe_list = Fdelq (frame, Vframe_list);
1504 FRAME_SET_VISIBLE (f, 0);
1506 if (f->namebuf)
1507 xfree (f->namebuf);
1508 if (f->decode_mode_spec_buffer)
1509 xfree (f->decode_mode_spec_buffer);
1510 if (FRAME_INSERT_COST (f))
1511 xfree (FRAME_INSERT_COST (f));
1512 if (FRAME_DELETEN_COST (f))
1513 xfree (FRAME_DELETEN_COST (f));
1514 if (FRAME_INSERTN_COST (f))
1515 xfree (FRAME_INSERTN_COST (f));
1516 if (FRAME_DELETE_COST (f))
1517 xfree (FRAME_DELETE_COST (f));
1518 if (FRAME_MESSAGE_BUF (f))
1519 xfree (FRAME_MESSAGE_BUF (f));
1521 /* Since some events are handled at the interrupt level, we may get
1522 an event for f at any time; if we zero out the frame's terminal
1523 now, then we may trip up the event-handling code. Instead, we'll
1524 promise that the terminal of the frame must be valid until we
1525 have called the window-system-dependent frame destruction
1526 routine. */
1528 if (FRAME_TERMINAL (f)->delete_frame_hook)
1529 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
1532 struct terminal *terminal = FRAME_TERMINAL (f);
1533 f->output_data.nothing = 0;
1534 f->terminal = 0; /* Now the frame is dead. */
1536 /* If needed, delete the terminal that this frame was on.
1537 (This must be done after the frame is killed.) */
1538 terminal->reference_count--;
1539 if (terminal->reference_count == 0)
1541 kb = NULL;
1542 if (terminal->delete_terminal_hook)
1543 (*terminal->delete_terminal_hook) (terminal);
1544 else
1545 delete_terminal (terminal);
1547 #ifdef MULTI_KBOARD
1548 else
1549 kb = terminal->kboard;
1550 #endif
1553 /* If we've deleted the last_nonminibuf_frame, then try to find
1554 another one. */
1555 if (f == last_nonminibuf_frame)
1557 Lisp_Object frames;
1559 last_nonminibuf_frame = 0;
1561 for (frames = Vframe_list;
1562 CONSP (frames);
1563 frames = XCDR (frames))
1565 f = XFRAME (XCAR (frames));
1566 if (!FRAME_MINIBUF_ONLY_P (f))
1568 last_nonminibuf_frame = f;
1569 break;
1574 /* If there's no other frame on the same kboard, get out of
1575 single-kboard state if we're in it for this kboard. */
1576 if (kb != NULL)
1578 Lisp_Object frames;
1579 /* Some frame we found on the same kboard, or nil if there are none. */
1580 Lisp_Object frame_on_same_kboard;
1582 frame_on_same_kboard = Qnil;
1584 for (frames = Vframe_list;
1585 CONSP (frames);
1586 frames = XCDR (frames))
1588 Lisp_Object this;
1589 struct frame *f1;
1591 this = XCAR (frames);
1592 if (!FRAMEP (this))
1593 abort ();
1594 f1 = XFRAME (this);
1596 if (kb == FRAME_KBOARD (f1))
1597 frame_on_same_kboard = this;
1600 if (NILP (frame_on_same_kboard))
1601 not_single_kboard_state (kb);
1605 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1606 find another one. Prefer minibuffer-only frames, but also notice
1607 frames with other windows. */
1608 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
1610 Lisp_Object frames;
1612 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1613 Lisp_Object frame_with_minibuf;
1614 /* Some frame we found on the same kboard, or nil if there are none. */
1615 Lisp_Object frame_on_same_kboard;
1617 frame_on_same_kboard = Qnil;
1618 frame_with_minibuf = Qnil;
1620 for (frames = Vframe_list;
1621 CONSP (frames);
1622 frames = XCDR (frames))
1624 Lisp_Object this;
1625 struct frame *f1;
1627 this = XCAR (frames);
1628 if (!FRAMEP (this))
1629 abort ();
1630 f1 = XFRAME (this);
1632 /* Consider only frames on the same kboard
1633 and only those with minibuffers. */
1634 if (kb == FRAME_KBOARD (f1)
1635 && FRAME_HAS_MINIBUF_P (f1))
1637 frame_with_minibuf = this;
1638 if (FRAME_MINIBUF_ONLY_P (f1))
1639 break;
1642 if (kb == FRAME_KBOARD (f1))
1643 frame_on_same_kboard = this;
1646 if (!NILP (frame_on_same_kboard))
1648 /* We know that there must be some frame with a minibuffer out
1649 there. If this were not true, all of the frames present
1650 would have to be minibufferless, which implies that at some
1651 point their minibuffer frames must have been deleted, but
1652 that is prohibited at the top; you can't delete surrogate
1653 minibuffer frames. */
1654 if (NILP (frame_with_minibuf))
1655 abort ();
1657 kb->Vdefault_minibuffer_frame = frame_with_minibuf;
1659 else
1660 /* No frames left on this kboard--say no minibuffer either. */
1661 kb->Vdefault_minibuffer_frame = Qnil;
1664 /* Cause frame titles to update--necessary if we now have just one frame. */
1665 update_mode_lines = 1;
1667 return Qnil;
1670 /* Return mouse position in character cell units. */
1672 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1673 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1674 The position is given in character cells, where (0, 0) is the
1675 upper-left corner of the frame, X is the horizontal offset, and Y is
1676 the vertical offset.
1677 If Emacs is running on a mouseless terminal or hasn't been programmed
1678 to read the mouse position, it returns the selected frame for FRAME
1679 and nil for X and Y.
1680 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1681 passing the normal return value to that function as an argument,
1682 and returns whatever that function returns. */)
1685 FRAME_PTR f;
1686 Lisp_Object lispy_dummy;
1687 enum scroll_bar_part party_dummy;
1688 Lisp_Object x, y, retval;
1689 int col, row;
1690 unsigned long long_dummy;
1691 struct gcpro gcpro1;
1693 f = SELECTED_FRAME ();
1694 x = y = Qnil;
1696 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1697 /* It's okay for the hook to refrain from storing anything. */
1698 if (FRAME_TERMINAL (f)->mouse_position_hook)
1699 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1700 &lispy_dummy, &party_dummy,
1701 &x, &y,
1702 &long_dummy);
1703 if (! NILP (x))
1705 col = XINT (x);
1706 row = XINT (y);
1707 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1708 XSETINT (x, col);
1709 XSETINT (y, row);
1711 #endif
1712 XSETFRAME (lispy_dummy, f);
1713 retval = Fcons (lispy_dummy, Fcons (x, y));
1714 GCPRO1 (retval);
1715 if (!NILP (Vmouse_position_function))
1716 retval = call1 (Vmouse_position_function, retval);
1717 RETURN_UNGCPRO (retval);
1720 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1721 Smouse_pixel_position, 0, 0, 0,
1722 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1723 The position is given in pixel units, where (0, 0) is the
1724 upper-left corner of the frame, X is the horizontal offset, and Y is
1725 the vertical offset.
1726 If Emacs is running on a mouseless terminal or hasn't been programmed
1727 to read the mouse position, it returns the selected frame for FRAME
1728 and nil for X and Y. */)
1731 FRAME_PTR f;
1732 Lisp_Object lispy_dummy;
1733 enum scroll_bar_part party_dummy;
1734 Lisp_Object x, y;
1735 unsigned long long_dummy;
1737 f = SELECTED_FRAME ();
1738 x = y = Qnil;
1740 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1741 /* It's okay for the hook to refrain from storing anything. */
1742 if (FRAME_TERMINAL (f)->mouse_position_hook)
1743 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1744 &lispy_dummy, &party_dummy,
1745 &x, &y,
1746 &long_dummy);
1747 #endif
1748 XSETFRAME (lispy_dummy, f);
1749 return Fcons (lispy_dummy, Fcons (x, y));
1752 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1753 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1754 Coordinates are relative to the frame, not a window,
1755 so the coordinates of the top left character in the frame
1756 may be nonzero due to left-hand scroll bars or the menu bar.
1758 The position is given in character cells, where (0, 0) is the
1759 upper-left corner of the frame, X is the horizontal offset, and Y is
1760 the vertical offset.
1762 This function is a no-op for an X frame that is not visible.
1763 If you have just created a frame, you must wait for it to become visible
1764 before calling this function on it, like this.
1765 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1766 (frame, x, y)
1767 Lisp_Object frame, x, y;
1769 CHECK_LIVE_FRAME (frame);
1770 CHECK_NUMBER (x);
1771 CHECK_NUMBER (y);
1773 /* I think this should be done with a hook. */
1774 #ifdef HAVE_WINDOW_SYSTEM
1775 if (FRAME_WINDOW_P (XFRAME (frame)))
1776 /* Warping the mouse will cause enternotify and focus events. */
1777 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1778 #else
1779 #if defined (MSDOS) && defined (HAVE_MOUSE)
1780 if (FRAME_MSDOS_P (XFRAME (frame)))
1782 Fselect_frame (frame);
1783 mouse_moveto (XINT (x), XINT (y));
1785 #else
1786 #ifdef HAVE_GPM
1788 Fselect_frame (frame);
1789 term_mouse_moveto (XINT (x), XINT (y));
1791 #endif
1792 #endif
1793 #endif
1795 return Qnil;
1798 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1799 Sset_mouse_pixel_position, 3, 3, 0,
1800 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1801 The position is given in pixels, where (0, 0) is the upper-left corner
1802 of the frame, X is the horizontal offset, and Y is the vertical offset.
1804 Note, this is a no-op for an X frame that is not visible.
1805 If you have just created a frame, you must wait for it to become visible
1806 before calling this function on it, like this.
1807 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1808 (frame, x, y)
1809 Lisp_Object frame, x, y;
1811 CHECK_LIVE_FRAME (frame);
1812 CHECK_NUMBER (x);
1813 CHECK_NUMBER (y);
1815 /* I think this should be done with a hook. */
1816 #ifdef HAVE_WINDOW_SYSTEM
1817 if (FRAME_WINDOW_P (XFRAME (frame)))
1818 /* Warping the mouse will cause enternotify and focus events. */
1819 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1820 #else
1821 #if defined (MSDOS) && defined (HAVE_MOUSE)
1822 if (FRAME_MSDOS_P (XFRAME (frame)))
1824 Fselect_frame (frame);
1825 mouse_moveto (XINT (x), XINT (y));
1827 #else
1828 #ifdef HAVE_GPM
1830 Fselect_frame (frame);
1831 term_mouse_moveto (XINT (x), XINT (y));
1833 #endif
1834 #endif
1835 #endif
1837 return Qnil;
1840 static void make_frame_visible_1 P_ ((Lisp_Object));
1842 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1843 0, 1, "",
1844 doc: /* Make the frame FRAME visible (assuming it is an X window).
1845 If omitted, FRAME defaults to the currently selected frame. */)
1846 (frame)
1847 Lisp_Object frame;
1849 if (NILP (frame))
1850 frame = selected_frame;
1852 CHECK_LIVE_FRAME (frame);
1854 /* I think this should be done with a hook. */
1855 #ifdef HAVE_WINDOW_SYSTEM
1856 if (FRAME_WINDOW_P (XFRAME (frame)))
1858 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1859 x_make_frame_visible (XFRAME (frame));
1861 #endif
1863 make_frame_visible_1 (XFRAME (frame)->root_window);
1865 /* Make menu bar update for the Buffers and Frames menus. */
1866 windows_or_buffers_changed++;
1868 return frame;
1871 /* Update the display_time slot of the buffers shown in WINDOW
1872 and all its descendents. */
1874 static void
1875 make_frame_visible_1 (window)
1876 Lisp_Object window;
1878 struct window *w;
1880 for (;!NILP (window); window = w->next)
1882 w = XWINDOW (window);
1884 if (!NILP (w->buffer))
1885 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1887 if (!NILP (w->vchild))
1888 make_frame_visible_1 (w->vchild);
1889 if (!NILP (w->hchild))
1890 make_frame_visible_1 (w->hchild);
1894 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1895 0, 2, "",
1896 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1897 If omitted, FRAME defaults to the currently selected frame.
1898 Normally you may not make FRAME invisible if all other frames are invisible,
1899 but if the second optional argument FORCE is non-nil, you may do so. */)
1900 (frame, force)
1901 Lisp_Object frame, force;
1903 if (NILP (frame))
1904 frame = selected_frame;
1906 CHECK_LIVE_FRAME (frame);
1908 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1909 error ("Attempt to make invisible the sole visible or iconified frame");
1911 #if 0 /* This isn't logically necessary, and it can do GC. */
1912 /* Don't let the frame remain selected. */
1913 if (EQ (frame, selected_frame))
1914 do_switch_frame (next_frame (frame, Qt), 0, 0)
1915 #endif
1917 /* Don't allow minibuf_window to remain on a deleted frame. */
1918 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1920 struct frame *sf = XFRAME (selected_frame);
1921 Fset_window_buffer (sf->minibuffer_window,
1922 XWINDOW (minibuf_window)->buffer, Qnil);
1923 minibuf_window = sf->minibuffer_window;
1926 /* I think this should be done with a hook. */
1927 #ifdef HAVE_WINDOW_SYSTEM
1928 if (FRAME_WINDOW_P (XFRAME (frame)))
1929 x_make_frame_invisible (XFRAME (frame));
1930 #endif
1932 /* Make menu bar update for the Buffers and Frames menus. */
1933 windows_or_buffers_changed++;
1935 return Qnil;
1938 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1939 0, 1, "",
1940 doc: /* Make the frame FRAME into an icon.
1941 If omitted, FRAME defaults to the currently selected frame. */)
1942 (frame)
1943 Lisp_Object frame;
1945 if (NILP (frame))
1946 frame = selected_frame;
1948 CHECK_LIVE_FRAME (frame);
1950 #if 0 /* This isn't logically necessary, and it can do GC. */
1951 /* Don't let the frame remain selected. */
1952 if (EQ (frame, selected_frame))
1953 Fhandle_switch_frame (next_frame (frame, Qt));
1954 #endif
1956 /* Don't allow minibuf_window to remain on a deleted frame. */
1957 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1959 struct frame *sf = XFRAME (selected_frame);
1960 Fset_window_buffer (sf->minibuffer_window,
1961 XWINDOW (minibuf_window)->buffer, Qnil);
1962 minibuf_window = sf->minibuffer_window;
1965 /* I think this should be done with a hook. */
1966 #ifdef HAVE_WINDOW_SYSTEM
1967 if (FRAME_WINDOW_P (XFRAME (frame)))
1968 x_iconify_frame (XFRAME (frame));
1969 #endif
1971 /* Make menu bar update for the Buffers and Frames menus. */
1972 windows_or_buffers_changed++;
1974 return Qnil;
1977 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1978 1, 1, 0,
1979 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1980 A frame that is not \"visible\" is not updated and, if it works through
1981 a window system, it may not show at all.
1982 Return the symbol `icon' if frame is visible only as an icon.
1984 On a text-only terminal, all frames are considered visible, whether
1985 they are currently being displayed or not, and this function returns t
1986 for all frames. */)
1987 (frame)
1988 Lisp_Object frame;
1990 CHECK_LIVE_FRAME (frame);
1992 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1994 if (FRAME_VISIBLE_P (XFRAME (frame)))
1995 return Qt;
1996 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1997 return Qicon;
1998 return Qnil;
2001 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
2002 0, 0, 0,
2003 doc: /* Return a list of all frames now \"visible\" (being updated). */)
2006 Lisp_Object tail, frame;
2007 struct frame *f;
2008 Lisp_Object value;
2010 value = Qnil;
2011 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
2013 frame = XCAR (tail);
2014 if (!FRAMEP (frame))
2015 continue;
2016 f = XFRAME (frame);
2017 if (FRAME_VISIBLE_P (f))
2018 value = Fcons (frame, value);
2020 return value;
2024 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
2025 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
2026 If FRAME is invisible or iconified, make it visible.
2027 If you don't specify a frame, the selected frame is used.
2028 If Emacs is displaying on an ordinary terminal or some other device which
2029 doesn't support multiple overlapping frames, this function does nothing. */)
2030 (frame)
2031 Lisp_Object frame;
2033 struct frame *f;
2034 if (NILP (frame))
2035 frame = selected_frame;
2037 CHECK_LIVE_FRAME (frame);
2039 f = XFRAME (frame);
2041 /* Do like the documentation says. */
2042 Fmake_frame_visible (frame);
2044 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2045 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
2047 return Qnil;
2050 /* Should we have a corresponding function called Flower_Power? */
2051 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
2052 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
2053 If you don't specify a frame, the selected frame is used.
2054 If Emacs is displaying on an ordinary terminal or some other device which
2055 doesn't support multiple overlapping frames, this function does nothing. */)
2056 (frame)
2057 Lisp_Object frame;
2059 struct frame *f;
2061 if (NILP (frame))
2062 frame = selected_frame;
2064 CHECK_LIVE_FRAME (frame);
2066 f = XFRAME (frame);
2068 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2069 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
2071 return Qnil;
2075 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
2076 1, 2, 0,
2077 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
2078 In other words, switch-frame events caused by events in FRAME will
2079 request a switch to FOCUS-FRAME, and `last-event-frame' will be
2080 FOCUS-FRAME after reading an event typed at FRAME.
2082 If FOCUS-FRAME is omitted or nil, any existing redirection is
2083 cancelled, and the frame again receives its own keystrokes.
2085 Focus redirection is useful for temporarily redirecting keystrokes to
2086 a surrogate minibuffer frame when a frame doesn't have its own
2087 minibuffer window.
2089 A frame's focus redirection can be changed by `select-frame'. If frame
2090 FOO is selected, and then a different frame BAR is selected, any
2091 frames redirecting their focus to FOO are shifted to redirect their
2092 focus to BAR. This allows focus redirection to work properly when the
2093 user switches from one frame to another using `select-window'.
2095 This means that a frame whose focus is redirected to itself is treated
2096 differently from a frame whose focus is redirected to nil; the former
2097 is affected by `select-frame', while the latter is not.
2099 The redirection lasts until `redirect-frame-focus' is called to change it. */)
2100 (frame, focus_frame)
2101 Lisp_Object frame, focus_frame;
2103 struct frame *f;
2105 /* Note that we don't check for a live frame here. It's reasonable
2106 to redirect the focus of a frame you're about to delete, if you
2107 know what other frame should receive those keystrokes. */
2108 CHECK_FRAME (frame);
2110 if (! NILP (focus_frame))
2111 CHECK_LIVE_FRAME (focus_frame);
2113 f = XFRAME (frame);
2115 f->focus_frame = focus_frame;
2117 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
2118 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
2120 return Qnil;
2124 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
2125 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
2126 This returns nil if FRAME's focus is not redirected.
2127 See `redirect-frame-focus'. */)
2128 (frame)
2129 Lisp_Object frame;
2131 CHECK_LIVE_FRAME (frame);
2133 return FRAME_FOCUS_FRAME (XFRAME (frame));
2138 /* Return the value of frame parameter PROP in frame FRAME. */
2140 Lisp_Object
2141 get_frame_param (frame, prop)
2142 register struct frame *frame;
2143 Lisp_Object prop;
2145 register Lisp_Object tem;
2147 tem = Fassq (prop, frame->param_alist);
2148 if (EQ (tem, Qnil))
2149 return tem;
2150 return Fcdr (tem);
2153 /* Return the buffer-predicate of the selected frame. */
2155 Lisp_Object
2156 frame_buffer_predicate (frame)
2157 Lisp_Object frame;
2159 return XFRAME (frame)->buffer_predicate;
2162 /* Return the buffer-list of the selected frame. */
2164 Lisp_Object
2165 frame_buffer_list (frame)
2166 Lisp_Object frame;
2168 return XFRAME (frame)->buffer_list;
2171 /* Set the buffer-list of the selected frame. */
2173 void
2174 set_frame_buffer_list (frame, list)
2175 Lisp_Object frame, list;
2177 XFRAME (frame)->buffer_list = list;
2180 /* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
2182 void
2183 frames_discard_buffer (buffer)
2184 Lisp_Object buffer;
2186 Lisp_Object frame, tail;
2188 FOR_EACH_FRAME (tail, frame)
2190 XFRAME (frame)->buffer_list
2191 = Fdelq (buffer, XFRAME (frame)->buffer_list);
2192 XFRAME (frame)->buried_buffer_list
2193 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
2197 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
2198 If the alist already has an element for PROP, we change it. */
2200 void
2201 store_in_alist (alistptr, prop, val)
2202 Lisp_Object *alistptr, val;
2203 Lisp_Object prop;
2205 register Lisp_Object tem;
2207 tem = Fassq (prop, *alistptr);
2208 if (EQ (tem, Qnil))
2209 *alistptr = Fcons (Fcons (prop, val), *alistptr);
2210 else
2211 Fsetcdr (tem, val);
2214 static int
2215 frame_name_fnn_p (str, len)
2216 char *str;
2217 EMACS_INT len;
2219 if (len > 1 && str[0] == 'F')
2221 char *end_ptr;
2223 strtol (str + 1, &end_ptr, 10);
2225 if (end_ptr == str + len)
2226 return 1;
2228 return 0;
2231 /* Set the name of the terminal frame. Also used by MSDOS frames.
2232 Modeled after x_set_name which is used for WINDOW frames. */
2234 static void
2235 set_term_frame_name (f, name)
2236 struct frame *f;
2237 Lisp_Object name;
2239 f->explicit_name = ! NILP (name);
2241 /* If NAME is nil, set the name to F<num>. */
2242 if (NILP (name))
2244 char namebuf[20];
2246 /* Check for no change needed in this very common case
2247 before we do any consing. */
2248 if (frame_name_fnn_p (SDATA (f->name),
2249 SBYTES (f->name)))
2250 return;
2252 tty_frame_count++;
2253 sprintf (namebuf, "F%d", tty_frame_count);
2254 name = build_string (namebuf);
2256 else
2258 CHECK_STRING (name);
2260 /* Don't change the name if it's already NAME. */
2261 if (! NILP (Fstring_equal (name, f->name)))
2262 return;
2264 /* Don't allow the user to set the frame name to F<num>, so it
2265 doesn't clash with the names we generate for terminal frames. */
2266 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
2267 error ("Frame names of the form F<num> are usurped by Emacs");
2270 f->name = name;
2271 update_mode_lines = 1;
2274 void
2275 store_frame_param (f, prop, val)
2276 struct frame *f;
2277 Lisp_Object prop, val;
2279 register Lisp_Object old_alist_elt;
2281 /* The buffer-list parameters are stored in a special place and not
2282 in the alist. */
2283 if (EQ (prop, Qbuffer_list))
2285 f->buffer_list = val;
2286 return;
2288 if (EQ (prop, Qburied_buffer_list))
2290 f->buried_buffer_list = val;
2291 return;
2294 /* If PROP is a symbol which is supposed to have frame-local values,
2295 and it is set up based on this frame, switch to the global
2296 binding. That way, we can create or alter the frame-local binding
2297 without messing up the symbol's status. */
2298 if (SYMBOLP (prop))
2300 Lisp_Object valcontents;
2301 valcontents = SYMBOL_VALUE (prop);
2302 if ((BUFFER_LOCAL_VALUEP (valcontents)
2303 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
2304 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2305 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
2306 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2307 swap_in_global_binding (prop);
2310 #ifndef WINDOWSNT
2311 /* The tty color mode needs to be set before the frame's parameter
2312 alist is updated with the new value, because set_tty_color_mode
2313 wants to look at the old mode. */
2314 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode))
2315 set_tty_color_mode (f, val);
2316 #endif
2318 /* Update the frame parameter alist. */
2319 old_alist_elt = Fassq (prop, f->param_alist);
2320 if (EQ (old_alist_elt, Qnil))
2321 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2322 else
2323 Fsetcdr (old_alist_elt, val);
2325 /* Update some other special parameters in their special places
2326 in addition to the alist. */
2328 if (EQ (prop, Qbuffer_predicate))
2329 f->buffer_predicate = val;
2331 if (! FRAME_WINDOW_P (f))
2333 if (EQ (prop, Qmenu_bar_lines))
2334 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2335 else if (EQ (prop, Qname))
2336 set_term_frame_name (f, val);
2339 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2341 if (! MINI_WINDOW_P (XWINDOW (val)))
2342 error ("Surrogate minibuffer windows must be minibuffer windows");
2344 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2345 && !EQ (val, f->minibuffer_window))
2346 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2348 /* Install the chosen minibuffer window, with proper buffer. */
2349 f->minibuffer_window = val;
2353 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2354 doc: /* Return the parameters-alist of frame FRAME.
2355 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2356 The meaningful PARMs depend on the kind of frame.
2357 If FRAME is omitted, return information on the currently selected frame. */)
2358 (frame)
2359 Lisp_Object frame;
2361 Lisp_Object alist;
2362 FRAME_PTR f;
2363 int height, width;
2364 struct gcpro gcpro1;
2366 if (NILP (frame))
2367 frame = selected_frame;
2369 CHECK_FRAME (frame);
2370 f = XFRAME (frame);
2372 if (!FRAME_LIVE_P (f))
2373 return Qnil;
2375 alist = Fcopy_alist (f->param_alist);
2376 GCPRO1 (alist);
2378 if (!FRAME_WINDOW_P (f))
2380 int fg = FRAME_FOREGROUND_PIXEL (f);
2381 int bg = FRAME_BACKGROUND_PIXEL (f);
2382 Lisp_Object elt;
2384 /* If the frame's parameter alist says the colors are
2385 unspecified and reversed, take the frame's background pixel
2386 for foreground and vice versa. */
2387 elt = Fassq (Qforeground_color, alist);
2388 if (CONSP (elt) && STRINGP (XCDR (elt)))
2390 if (strncmp (SDATA (XCDR (elt)),
2391 unspecified_bg,
2392 SCHARS (XCDR (elt))) == 0)
2393 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2394 else if (strncmp (SDATA (XCDR (elt)),
2395 unspecified_fg,
2396 SCHARS (XCDR (elt))) == 0)
2397 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2399 else
2400 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2401 elt = Fassq (Qbackground_color, alist);
2402 if (CONSP (elt) && STRINGP (XCDR (elt)))
2404 if (strncmp (SDATA (XCDR (elt)),
2405 unspecified_fg,
2406 SCHARS (XCDR (elt))) == 0)
2407 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2408 else if (strncmp (SDATA (XCDR (elt)),
2409 unspecified_bg,
2410 SCHARS (XCDR (elt))) == 0)
2411 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2413 else
2414 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2415 store_in_alist (&alist, intern ("font"),
2416 build_string (FRAME_MSDOS_P (f)
2417 ? "ms-dos"
2418 : FRAME_W32_P (f) ? "w32term"
2419 :"tty"));
2421 store_in_alist (&alist, Qname, f->name);
2422 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2423 store_in_alist (&alist, Qheight, make_number (height));
2424 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2425 store_in_alist (&alist, Qwidth, make_number (width));
2426 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2427 store_in_alist (&alist, Qminibuffer,
2428 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2429 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2430 : FRAME_MINIBUF_WINDOW (f)));
2431 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2432 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2433 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
2435 /* I think this should be done with a hook. */
2436 #ifdef HAVE_WINDOW_SYSTEM
2437 if (FRAME_WINDOW_P (f))
2438 x_report_frame_params (f, &alist);
2439 else
2440 #endif
2442 /* This ought to be correct in f->param_alist for an X frame. */
2443 Lisp_Object lines;
2444 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2445 store_in_alist (&alist, Qmenu_bar_lines, lines);
2448 UNGCPRO;
2449 return alist;
2453 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2454 doc: /* Return FRAME's value for parameter PARAMETER.
2455 If FRAME is nil, describe the currently selected frame. */)
2456 (frame, parameter)
2457 Lisp_Object frame, parameter;
2459 struct frame *f;
2460 Lisp_Object value;
2462 if (NILP (frame))
2463 frame = selected_frame;
2464 else
2465 CHECK_FRAME (frame);
2466 CHECK_SYMBOL (parameter);
2468 f = XFRAME (frame);
2469 value = Qnil;
2471 if (FRAME_LIVE_P (f))
2473 /* Avoid consing in frequent cases. */
2474 if (EQ (parameter, Qname))
2475 value = f->name;
2476 #ifdef HAVE_X_WINDOWS
2477 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2478 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2479 #endif /* HAVE_X_WINDOWS */
2480 else if (EQ (parameter, Qbackground_color)
2481 || EQ (parameter, Qforeground_color))
2483 value = Fassq (parameter, f->param_alist);
2484 if (CONSP (value))
2486 value = XCDR (value);
2487 /* Fframe_parameters puts the actual fg/bg color names,
2488 even if f->param_alist says otherwise. This is
2489 important when param_alist's notion of colors is
2490 "unspecified". We need to do the same here. */
2491 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2493 const char *color_name;
2494 EMACS_INT csz;
2496 if (EQ (parameter, Qbackground_color))
2498 color_name = SDATA (value);
2499 csz = SCHARS (value);
2500 if (strncmp (color_name, unspecified_bg, csz) == 0)
2501 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2502 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2503 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2505 else if (EQ (parameter, Qforeground_color))
2507 color_name = SDATA (value);
2508 csz = SCHARS (value);
2509 if (strncmp (color_name, unspecified_fg, csz) == 0)
2510 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2511 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2512 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2516 else
2517 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2519 else if (EQ (parameter, Qdisplay_type)
2520 || EQ (parameter, Qbackground_mode))
2521 value = Fcdr (Fassq (parameter, f->param_alist));
2522 else
2523 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2526 return value;
2530 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2531 Smodify_frame_parameters, 2, 2, 0,
2532 doc: /* Modify the parameters of frame FRAME according to ALIST.
2533 If FRAME is nil, it defaults to the selected frame.
2534 ALIST is an alist of parameters to change and their new values.
2535 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2536 The meaningful PARMs depend on the kind of frame.
2537 Undefined PARMs are ignored, but stored in the frame's parameter list
2538 so that `frame-parameters' will return them.
2540 The value of frame parameter FOO can also be accessed
2541 as a frame-local binding for the variable FOO, if you have
2542 enabled such bindings for that variable with `make-variable-frame-local'. */)
2543 (frame, alist)
2544 Lisp_Object frame, alist;
2546 FRAME_PTR f;
2547 register Lisp_Object tail, prop, val;
2549 if (EQ (frame, Qnil))
2550 frame = selected_frame;
2551 CHECK_LIVE_FRAME (frame);
2552 f = XFRAME (frame);
2554 /* I think this should be done with a hook. */
2555 #ifdef HAVE_WINDOW_SYSTEM
2556 if (FRAME_WINDOW_P (f))
2557 x_set_frame_parameters (f, alist);
2558 else
2559 #endif
2560 #ifdef MSDOS
2561 if (FRAME_MSDOS_P (f))
2562 IT_set_frame_parameters (f, alist);
2563 else
2564 #endif
2567 int length = XINT (Flength (alist));
2568 int i;
2569 Lisp_Object *parms
2570 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2571 Lisp_Object *values
2572 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2574 /* Extract parm names and values into those vectors. */
2576 i = 0;
2577 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2579 Lisp_Object elt;
2581 elt = Fcar (tail);
2582 parms[i] = Fcar (elt);
2583 values[i] = Fcdr (elt);
2584 i++;
2587 /* Now process them in reverse of specified order. */
2588 for (i--; i >= 0; i--)
2590 prop = parms[i];
2591 val = values[i];
2592 store_frame_param (f, prop, val);
2594 /* Changing the background color might change the background
2595 mode, so that we have to load new defface specs.
2596 Call frame-set-background-mode to do that. */
2597 if (EQ (prop, Qbackground_color))
2598 call1 (Qframe_set_background_mode, frame);
2601 return Qnil;
2604 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2605 0, 1, 0,
2606 doc: /* Height in pixels of a line in the font in frame FRAME.
2607 If FRAME is omitted, the selected frame is used.
2608 For a terminal frame, the value is always 1. */)
2609 (frame)
2610 Lisp_Object frame;
2612 struct frame *f;
2614 if (NILP (frame))
2615 frame = selected_frame;
2616 CHECK_FRAME (frame);
2617 f = XFRAME (frame);
2619 #ifdef HAVE_WINDOW_SYSTEM
2620 if (FRAME_WINDOW_P (f))
2621 return make_number (x_char_height (f));
2622 else
2623 #endif
2624 return make_number (1);
2628 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2629 0, 1, 0,
2630 doc: /* Width in pixels of characters in the font in frame FRAME.
2631 If FRAME is omitted, the selected frame is used.
2632 On a graphical screen, the width is the standard width of the default font.
2633 For a terminal screen, the value is always 1. */)
2634 (frame)
2635 Lisp_Object frame;
2637 struct frame *f;
2639 if (NILP (frame))
2640 frame = selected_frame;
2641 CHECK_FRAME (frame);
2642 f = XFRAME (frame);
2644 #ifdef HAVE_WINDOW_SYSTEM
2645 if (FRAME_WINDOW_P (f))
2646 return make_number (x_char_width (f));
2647 else
2648 #endif
2649 return make_number (1);
2652 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2653 Sframe_pixel_height, 0, 1, 0,
2654 doc: /* Return a FRAME's height in pixels.
2655 This counts only the height available for text lines,
2656 not menu bars on window-system Emacs frames.
2657 For a terminal frame, the result really gives the height in characters.
2658 If FRAME is omitted, the selected frame is used. */)
2659 (frame)
2660 Lisp_Object frame;
2662 struct frame *f;
2664 if (NILP (frame))
2665 frame = selected_frame;
2666 CHECK_FRAME (frame);
2667 f = XFRAME (frame);
2669 #ifdef HAVE_WINDOW_SYSTEM
2670 if (FRAME_WINDOW_P (f))
2671 return make_number (x_pixel_height (f));
2672 else
2673 #endif
2674 return make_number (FRAME_LINES (f));
2677 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2678 Sframe_pixel_width, 0, 1, 0,
2679 doc: /* Return FRAME's width in pixels.
2680 For a terminal frame, the result really gives the width in characters.
2681 If FRAME is omitted, the selected frame is used. */)
2682 (frame)
2683 Lisp_Object frame;
2685 struct frame *f;
2687 if (NILP (frame))
2688 frame = selected_frame;
2689 CHECK_FRAME (frame);
2690 f = XFRAME (frame);
2692 #ifdef HAVE_WINDOW_SYSTEM
2693 if (FRAME_WINDOW_P (f))
2694 return make_number (x_pixel_width (f));
2695 else
2696 #endif
2697 return make_number (FRAME_COLS (f));
2700 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2701 doc: /* Specify that the frame FRAME has LINES lines.
2702 Optional third arg non-nil means that redisplay should use LINES lines
2703 but that the idea of the actual height of the frame should not be changed. */)
2704 (frame, lines, pretend)
2705 Lisp_Object frame, lines, pretend;
2707 register struct frame *f;
2709 CHECK_NUMBER (lines);
2710 if (NILP (frame))
2711 frame = selected_frame;
2712 CHECK_LIVE_FRAME (frame);
2713 f = XFRAME (frame);
2715 /* I think this should be done with a hook. */
2716 #ifdef HAVE_WINDOW_SYSTEM
2717 if (FRAME_WINDOW_P (f))
2719 if (XINT (lines) != FRAME_LINES (f))
2720 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2721 do_pending_window_change (0);
2723 else
2724 #endif
2725 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2726 return Qnil;
2729 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2730 doc: /* Specify that the frame FRAME has COLS columns.
2731 Optional third arg non-nil means that redisplay should use COLS columns
2732 but that the idea of the actual width of the frame should not be changed. */)
2733 (frame, cols, pretend)
2734 Lisp_Object frame, cols, pretend;
2736 register struct frame *f;
2737 CHECK_NUMBER (cols);
2738 if (NILP (frame))
2739 frame = selected_frame;
2740 CHECK_LIVE_FRAME (frame);
2741 f = XFRAME (frame);
2743 /* I think this should be done with a hook. */
2744 #ifdef HAVE_WINDOW_SYSTEM
2745 if (FRAME_WINDOW_P (f))
2747 if (XINT (cols) != FRAME_COLS (f))
2748 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2749 do_pending_window_change (0);
2751 else
2752 #endif
2753 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2754 return Qnil;
2757 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2758 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2759 (frame, cols, rows)
2760 Lisp_Object frame, cols, rows;
2762 register struct frame *f;
2764 CHECK_LIVE_FRAME (frame);
2765 CHECK_NUMBER (cols);
2766 CHECK_NUMBER (rows);
2767 f = XFRAME (frame);
2769 /* I think this should be done with a hook. */
2770 #ifdef HAVE_WINDOW_SYSTEM
2771 if (FRAME_WINDOW_P (f))
2773 if (XINT (rows) != FRAME_LINES (f)
2774 || XINT (cols) != FRAME_COLS (f)
2775 || f->new_text_lines || f->new_text_cols)
2776 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2777 do_pending_window_change (0);
2779 else
2780 #endif
2781 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2783 return Qnil;
2786 DEFUN ("set-frame-position", Fset_frame_position,
2787 Sset_frame_position, 3, 3, 0,
2788 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2789 This is actually the position of the upper left corner of the frame.
2790 Negative values for XOFFSET or YOFFSET are interpreted relative to
2791 the rightmost or bottommost possible position (that stays within the screen). */)
2792 (frame, xoffset, yoffset)
2793 Lisp_Object frame, xoffset, yoffset;
2795 register struct frame *f;
2797 CHECK_LIVE_FRAME (frame);
2798 CHECK_NUMBER (xoffset);
2799 CHECK_NUMBER (yoffset);
2800 f = XFRAME (frame);
2802 /* I think this should be done with a hook. */
2803 #ifdef HAVE_WINDOW_SYSTEM
2804 if (FRAME_WINDOW_P (f))
2805 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2806 #endif
2808 return Qt;
2812 /***********************************************************************
2813 Frame Parameters
2814 ***********************************************************************/
2816 /* Connect the frame-parameter names for X frames
2817 to the ways of passing the parameter values to the window system.
2819 The name of a parameter, as a Lisp symbol,
2820 has an `x-frame-parameter' property which is an integer in Lisp
2821 that is an index in this table. */
2823 struct frame_parm_table {
2824 char *name;
2825 Lisp_Object *variable;
2828 static struct frame_parm_table frame_parms[] =
2830 {"auto-raise", &Qauto_raise},
2831 {"auto-lower", &Qauto_lower},
2832 {"background-color", 0},
2833 {"border-color", &Qborder_color},
2834 {"border-width", &Qborder_width},
2835 {"cursor-color", &Qcursor_color},
2836 {"cursor-type", &Qcursor_type},
2837 {"font", 0},
2838 {"foreground-color", 0},
2839 {"icon-name", &Qicon_name},
2840 {"icon-type", &Qicon_type},
2841 {"internal-border-width", &Qinternal_border_width},
2842 {"menu-bar-lines", &Qmenu_bar_lines},
2843 {"mouse-color", &Qmouse_color},
2844 {"name", &Qname},
2845 {"scroll-bar-width", &Qscroll_bar_width},
2846 {"title", &Qtitle},
2847 {"unsplittable", &Qunsplittable},
2848 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2849 {"visibility", &Qvisibility},
2850 {"tool-bar-lines", &Qtool_bar_lines},
2851 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2852 {"scroll-bar-background", &Qscroll_bar_background},
2853 {"screen-gamma", &Qscreen_gamma},
2854 {"line-spacing", &Qline_spacing},
2855 {"left-fringe", &Qleft_fringe},
2856 {"right-fringe", &Qright_fringe},
2857 {"wait-for-wm", &Qwait_for_wm},
2858 {"fullscreen", &Qfullscreen},
2859 #ifdef USE_FONT_BACKEND
2860 {"font-backend", &Qfont_backend}
2861 #endif /* USE_FONT_BACKEND */
2864 #ifdef HAVE_WINDOW_SYSTEM
2866 extern Lisp_Object Qbox;
2867 extern Lisp_Object Qtop;
2869 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2870 wanted positions of the WM window (not Emacs window).
2871 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2872 window (FRAME_X_WINDOW).
2875 void
2876 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2877 struct frame *f;
2878 int *width;
2879 int *height;
2880 int *top_pos;
2881 int *left_pos;
2883 int newwidth = FRAME_COLS (f);
2884 int newheight = FRAME_LINES (f);
2886 *top_pos = f->top_pos;
2887 *left_pos = f->left_pos;
2889 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2891 int ph;
2893 ph = FRAME_X_DISPLAY_INFO (f)->height;
2894 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2895 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2896 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2897 *top_pos = 0;
2900 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2902 int pw;
2904 pw = FRAME_X_DISPLAY_INFO (f)->width;
2905 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2906 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2907 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2908 *left_pos = 0;
2911 *width = newwidth;
2912 *height = newheight;
2916 /* Change the parameters of frame F as specified by ALIST.
2917 If a parameter is not specially recognized, do nothing special;
2918 otherwise call the `x_set_...' function for that parameter.
2919 Except for certain geometry properties, always call store_frame_param
2920 to store the new value in the parameter alist. */
2922 void
2923 x_set_frame_parameters (f, alist)
2924 FRAME_PTR f;
2925 Lisp_Object alist;
2927 Lisp_Object tail;
2929 /* If both of these parameters are present, it's more efficient to
2930 set them both at once. So we wait until we've looked at the
2931 entire list before we set them. */
2932 int width, height;
2934 /* Same here. */
2935 Lisp_Object left, top;
2937 /* Same with these. */
2938 Lisp_Object icon_left, icon_top;
2940 /* Record in these vectors all the parms specified. */
2941 Lisp_Object *parms;
2942 Lisp_Object *values;
2943 int i, p;
2944 int left_no_change = 0, top_no_change = 0;
2945 int icon_left_no_change = 0, icon_top_no_change = 0;
2946 int fullscreen_is_being_set = 0;
2948 struct gcpro gcpro1, gcpro2;
2950 i = 0;
2951 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2952 i++;
2954 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2955 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2957 /* Extract parm names and values into those vectors. */
2959 i = 0;
2960 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2962 Lisp_Object elt;
2964 elt = Fcar (tail);
2965 parms[i] = Fcar (elt);
2966 values[i] = Fcdr (elt);
2967 i++;
2969 /* TAIL and ALIST are not used again below here. */
2970 alist = tail = Qnil;
2972 GCPRO2 (*parms, *values);
2973 gcpro1.nvars = i;
2974 gcpro2.nvars = i;
2976 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2977 because their values appear in VALUES and strings are not valid. */
2978 top = left = Qunbound;
2979 icon_left = icon_top = Qunbound;
2981 /* Provide default values for HEIGHT and WIDTH. */
2982 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2983 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2985 /* Process foreground_color and background_color before anything else.
2986 They are independent of other properties, but other properties (e.g.,
2987 cursor_color) are dependent upon them. */
2988 /* Process default font as well, since fringe widths depends on it. */
2989 /* Also, process fullscreen, width and height depend upon that */
2990 for (p = 0; p < i; p++)
2992 Lisp_Object prop, val;
2994 prop = parms[p];
2995 val = values[p];
2996 if (EQ (prop, Qforeground_color)
2997 || EQ (prop, Qbackground_color)
2998 || EQ (prop, Qfont)
2999 || EQ (prop, Qfullscreen))
3001 register Lisp_Object param_index, old_value;
3002 int count = SPECPDL_INDEX ();
3004 old_value = get_frame_param (f, prop);
3005 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
3007 if (NILP (Fequal (val, old_value)))
3009 /* For :font attributes, the frame_parm_handler
3010 x_set_font calls `face-set-after-frame-default'.
3011 Unless we bind inhibit-face-set-after-frame-default
3012 here, this would reset the :font attribute that we
3013 just applied to the default value for new faces. */
3014 specbind (Qinhibit_face_set_after_frame_default, Qt);
3016 store_frame_param (f, prop, val);
3018 param_index = Fget (prop, Qx_frame_parameter);
3019 if (NATNUMP (param_index)
3020 && (XFASTINT (param_index)
3021 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3022 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3023 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3024 unbind_to (count, Qnil);
3029 /* Now process them in reverse of specified order. */
3030 for (i--; i >= 0; i--)
3032 Lisp_Object prop, val;
3034 prop = parms[i];
3035 val = values[i];
3037 if (EQ (prop, Qwidth) && NATNUMP (val))
3038 width = XFASTINT (val);
3039 else if (EQ (prop, Qheight) && NATNUMP (val))
3040 height = XFASTINT (val);
3041 else if (EQ (prop, Qtop))
3042 top = val;
3043 else if (EQ (prop, Qleft))
3044 left = val;
3045 else if (EQ (prop, Qicon_top))
3046 icon_top = val;
3047 else if (EQ (prop, Qicon_left))
3048 icon_left = val;
3049 else if (EQ (prop, Qforeground_color)
3050 || EQ (prop, Qbackground_color)
3051 || EQ (prop, Qfont)
3052 || EQ (prop, Qfullscreen))
3053 /* Processed above. */
3054 continue;
3055 else
3057 register Lisp_Object param_index, old_value;
3059 old_value = get_frame_param (f, prop);
3061 store_frame_param (f, prop, val);
3063 param_index = Fget (prop, Qx_frame_parameter);
3064 if (NATNUMP (param_index)
3065 && (XFASTINT (param_index)
3066 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3067 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3068 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3072 /* Don't die if just one of these was set. */
3073 if (EQ (left, Qunbound))
3075 left_no_change = 1;
3076 if (f->left_pos < 0)
3077 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
3078 else
3079 XSETINT (left, f->left_pos);
3081 if (EQ (top, Qunbound))
3083 top_no_change = 1;
3084 if (f->top_pos < 0)
3085 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
3086 else
3087 XSETINT (top, f->top_pos);
3090 /* If one of the icon positions was not set, preserve or default it. */
3091 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3093 icon_left_no_change = 1;
3094 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3095 if (NILP (icon_left))
3096 XSETINT (icon_left, 0);
3098 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3100 icon_top_no_change = 1;
3101 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3102 if (NILP (icon_top))
3103 XSETINT (icon_top, 0);
3106 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3108 /* If the frame is visible already and the fullscreen parameter is
3109 being set, it is too late to set WM manager hints to specify
3110 size and position.
3111 Here we first get the width, height and position that applies to
3112 fullscreen. We then move the frame to the appropriate
3113 position. Resize of the frame is taken care of in the code after
3114 this if-statement. */
3115 int new_left, new_top;
3117 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
3118 if (new_top != f->top_pos || new_left != f->left_pos)
3119 x_set_offset (f, new_left, new_top, 1);
3122 /* Don't set these parameters unless they've been explicitly
3123 specified. The window might be mapped or resized while we're in
3124 this function, and we don't want to override that unless the lisp
3125 code has asked for it.
3127 Don't set these parameters unless they actually differ from the
3128 window's current parameters; the window may not actually exist
3129 yet. */
3131 Lisp_Object frame;
3133 check_frame_size (f, &height, &width);
3135 XSETFRAME (frame, f);
3137 if (width != FRAME_COLS (f)
3138 || height != FRAME_LINES (f)
3139 || f->new_text_lines || f->new_text_cols)
3140 Fset_frame_size (frame, make_number (width), make_number (height));
3142 if ((!NILP (left) || !NILP (top))
3143 && ! (left_no_change && top_no_change)
3144 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3145 && NUMBERP (top) && XINT (top) == f->top_pos))
3147 int leftpos = 0;
3148 int toppos = 0;
3150 /* Record the signs. */
3151 f->size_hint_flags &= ~ (XNegative | YNegative);
3152 if (EQ (left, Qminus))
3153 f->size_hint_flags |= XNegative;
3154 else if (INTEGERP (left))
3156 leftpos = XINT (left);
3157 if (leftpos < 0)
3158 f->size_hint_flags |= XNegative;
3160 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3161 && CONSP (XCDR (left))
3162 && INTEGERP (XCAR (XCDR (left))))
3164 leftpos = - XINT (XCAR (XCDR (left)));
3165 f->size_hint_flags |= XNegative;
3167 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3168 && CONSP (XCDR (left))
3169 && INTEGERP (XCAR (XCDR (left))))
3171 leftpos = XINT (XCAR (XCDR (left)));
3174 if (EQ (top, Qminus))
3175 f->size_hint_flags |= YNegative;
3176 else if (INTEGERP (top))
3178 toppos = XINT (top);
3179 if (toppos < 0)
3180 f->size_hint_flags |= YNegative;
3182 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3183 && CONSP (XCDR (top))
3184 && INTEGERP (XCAR (XCDR (top))))
3186 toppos = - XINT (XCAR (XCDR (top)));
3187 f->size_hint_flags |= YNegative;
3189 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3190 && CONSP (XCDR (top))
3191 && INTEGERP (XCAR (XCDR (top))))
3193 toppos = XINT (XCAR (XCDR (top)));
3197 /* Store the numeric value of the position. */
3198 f->top_pos = toppos;
3199 f->left_pos = leftpos;
3201 f->win_gravity = NorthWestGravity;
3203 /* Actually set that position, and convert to absolute. */
3204 x_set_offset (f, leftpos, toppos, -1);
3207 if ((!NILP (icon_left) || !NILP (icon_top))
3208 && ! (icon_left_no_change && icon_top_no_change))
3209 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3212 UNGCPRO;
3216 /* Insert a description of internally-recorded parameters of frame X
3217 into the parameter alist *ALISTPTR that is to be given to the user.
3218 Only parameters that are specific to the X window system
3219 and whose values are not correctly recorded in the frame's
3220 param_alist need to be considered here. */
3222 void
3223 x_report_frame_params (f, alistptr)
3224 struct frame *f;
3225 Lisp_Object *alistptr;
3227 char buf[16];
3228 Lisp_Object tem;
3230 /* Represent negative positions (off the top or left screen edge)
3231 in a way that Fmodify_frame_parameters will understand correctly. */
3232 XSETINT (tem, f->left_pos);
3233 if (f->left_pos >= 0)
3234 store_in_alist (alistptr, Qleft, tem);
3235 else
3236 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3238 XSETINT (tem, f->top_pos);
3239 if (f->top_pos >= 0)
3240 store_in_alist (alistptr, Qtop, tem);
3241 else
3242 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3244 store_in_alist (alistptr, Qborder_width,
3245 make_number (f->border_width));
3246 store_in_alist (alistptr, Qinternal_border_width,
3247 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
3248 store_in_alist (alistptr, Qleft_fringe,
3249 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
3250 store_in_alist (alistptr, Qright_fringe,
3251 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
3252 store_in_alist (alistptr, Qscroll_bar_width,
3253 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3254 ? make_number (0)
3255 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3256 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3257 /* nil means "use default width"
3258 for non-toolkit scroll bar.
3259 ruler-mode.el depends on this. */
3260 : Qnil));
3261 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3262 store_in_alist (alistptr, Qwindow_id,
3263 build_string (buf));
3264 #ifdef HAVE_X_WINDOWS
3265 #ifdef USE_X_TOOLKIT
3266 /* Tooltip frame may not have this widget. */
3267 if (FRAME_X_OUTPUT (f)->widget)
3268 #endif
3269 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3270 store_in_alist (alistptr, Qouter_window_id,
3271 build_string (buf));
3272 #endif
3273 store_in_alist (alistptr, Qicon_name, f->icon_name);
3274 FRAME_SAMPLE_VISIBILITY (f);
3275 store_in_alist (alistptr, Qvisibility,
3276 (FRAME_VISIBLE_P (f) ? Qt
3277 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3278 store_in_alist (alistptr, Qdisplay,
3279 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3281 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3282 tem = Qnil;
3283 else
3284 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
3285 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
3286 store_in_alist (alistptr, Qparent_id, tem);
3290 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3291 the previous value of that parameter, NEW_VALUE is the new value. */
3293 void
3294 x_set_fullscreen (f, new_value, old_value)
3295 struct frame *f;
3296 Lisp_Object new_value, old_value;
3298 if (NILP (new_value))
3299 f->want_fullscreen = FULLSCREEN_NONE;
3300 else if (EQ (new_value, Qfullboth))
3301 f->want_fullscreen = FULLSCREEN_BOTH;
3302 else if (EQ (new_value, Qfullwidth))
3303 f->want_fullscreen = FULLSCREEN_WIDTH;
3304 else if (EQ (new_value, Qfullheight))
3305 f->want_fullscreen = FULLSCREEN_HEIGHT;
3307 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
3308 FRAME_TERMINAL (f)->fullscreen_hook (f);
3312 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3313 the previous value of that parameter, NEW_VALUE is the new value. */
3315 void
3316 x_set_line_spacing (f, new_value, old_value)
3317 struct frame *f;
3318 Lisp_Object new_value, old_value;
3320 if (NILP (new_value))
3321 f->extra_line_spacing = 0;
3322 else if (NATNUMP (new_value))
3323 f->extra_line_spacing = XFASTINT (new_value);
3324 else
3325 signal_error ("Invalid line-spacing", new_value);
3326 if (FRAME_VISIBLE_P (f))
3327 redraw_frame (f);
3331 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3332 the previous value of that parameter, NEW_VALUE is the new value. */
3334 void
3335 x_set_screen_gamma (f, new_value, old_value)
3336 struct frame *f;
3337 Lisp_Object new_value, old_value;
3339 Lisp_Object bgcolor;
3341 if (NILP (new_value))
3342 f->gamma = 0;
3343 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3344 /* The value 0.4545 is the normal viewing gamma. */
3345 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3346 else
3347 signal_error ("Invalid screen-gamma", new_value);
3349 /* Apply the new gamma value to the frame background. */
3350 bgcolor = Fassq (Qbackground_color, f->param_alist);
3351 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3353 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3354 if (NATNUMP (index)
3355 && (XFASTINT (index)
3356 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3357 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3358 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3359 (f, bgcolor, Qnil);
3362 Fclear_face_cache (Qnil);
3366 void
3367 x_set_font (f, arg, oldval)
3368 struct frame *f;
3369 Lisp_Object arg, oldval;
3371 Lisp_Object result;
3372 Lisp_Object fontset_name;
3373 Lisp_Object frame;
3374 int old_fontset = FRAME_FONTSET(f);
3376 #ifdef USE_FONT_BACKEND
3377 if (enable_font_backend)
3379 int fontset = -1;
3380 Lisp_Object font_object;
3382 /* ARG is a fontset name, a font name, or a font object.
3383 In the last case, this function never fail. */
3384 if (STRINGP (arg))
3386 fontset = fs_query_fontset (arg, 0);
3387 if (fontset < 0)
3388 font_object = font_open_by_name (f, SDATA (arg));
3389 else if (fontset > 0)
3391 Lisp_Object ascii_font = fontset_ascii (fontset);
3393 font_object = font_open_by_name (f, SDATA (ascii_font));
3396 else
3397 font_object = arg;
3399 if (fontset < 0 && ! NILP (font_object))
3400 fontset = new_fontset_from_font (font_object);
3402 if (fontset == 0)
3403 /* Refuse the default fontset. */
3404 result = Qt;
3405 else if (NILP (font_object))
3406 result = Qnil;
3407 else
3408 result = x_new_fontset2 (f, fontset, font_object);
3410 else
3412 #endif /* USE_FONT_BACKEND */
3413 CHECK_STRING (arg);
3415 fontset_name = Fquery_fontset (arg, Qnil);
3417 BLOCK_INPUT;
3418 result = (STRINGP (fontset_name)
3419 ? x_new_fontset (f, fontset_name)
3420 : x_new_fontset (f, arg));
3421 UNBLOCK_INPUT;
3422 #ifdef USE_FONT_BACKEND
3424 #endif
3426 if (EQ (result, Qnil))
3427 error ("Font `%s' is not defined", SDATA (arg));
3428 else if (EQ (result, Qt))
3429 error ("The default fontset can't be used for a frame font");
3430 else if (STRINGP (result))
3432 set_default_ascii_font (result);
3433 if (STRINGP (fontset_name))
3435 /* Fontset names are built from ASCII font names, so the
3436 names may be equal despite there was a change. */
3437 if (old_fontset == FRAME_FONTSET (f))
3438 return;
3440 store_frame_param (f, Qfont, result);
3442 if (!NILP (Fequal (result, oldval)))
3443 return;
3445 /* Recalculate toolbar height. */
3446 f->n_tool_bar_rows = 0;
3447 /* Ensure we redraw it. */
3448 clear_current_matrices (f);
3450 recompute_basic_faces (f);
3452 else
3453 abort ();
3455 do_pending_window_change (0);
3457 /* Don't call `face-set-after-frame-default' when faces haven't been
3458 initialized yet. This is the case when called from
3459 Fx_create_frame. In that case, the X widget or window doesn't
3460 exist either, and we can end up in x_report_frame_params with a
3461 null widget which gives a segfault. */
3462 if (FRAME_FACE_CACHE (f))
3464 XSETFRAME (frame, f);
3465 call1 (Qface_set_after_frame_default, frame);
3470 #ifdef USE_FONT_BACKEND
3471 void
3472 x_set_font_backend (f, new_value, old_value)
3473 struct frame *f;
3474 Lisp_Object new_value, old_value;
3476 if (! NILP (new_value)
3477 && !CONSP (new_value))
3479 char *p0, *p1;
3481 CHECK_STRING (new_value);
3482 p0 = p1 = SDATA (new_value);
3483 new_value = Qnil;
3484 while (*p0)
3486 while (*p1 && *p1 != ',') p1++;
3487 if (p0 < p1)
3488 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3489 new_value);
3490 if (*p1)
3491 p1++;
3492 p0 = p1;
3494 new_value = Fnreverse (new_value);
3497 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3498 return;
3500 if (FRAME_FONT_OBJECT (f))
3502 free_all_realized_faces (Qnil);
3503 Fclear_font_cache ();
3506 new_value = font_update_drivers (f, new_value);
3507 if (NILP (new_value))
3508 error ("No font backend available");
3509 store_frame_param (f, Qfont_backend, new_value);
3511 if (FRAME_FONT_OBJECT (f))
3513 Lisp_Object frame;
3515 XSETFRAME (frame, f);
3516 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3517 ++face_change_count;
3518 ++windows_or_buffers_changed;
3521 #endif /* USE_FONT_BACKEND */
3524 void
3525 x_set_fringe_width (f, new_value, old_value)
3526 struct frame *f;
3527 Lisp_Object new_value, old_value;
3529 compute_fringe_widths (f, 1);
3532 void
3533 x_set_border_width (f, arg, oldval)
3534 struct frame *f;
3535 Lisp_Object arg, oldval;
3537 CHECK_NUMBER (arg);
3539 if (XINT (arg) == f->border_width)
3540 return;
3542 if (FRAME_X_WINDOW (f) != 0)
3543 error ("Cannot change the border width of a frame");
3545 f->border_width = XINT (arg);
3548 void
3549 x_set_internal_border_width (f, arg, oldval)
3550 struct frame *f;
3551 Lisp_Object arg, oldval;
3553 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3555 CHECK_NUMBER (arg);
3556 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3557 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3558 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3560 #ifdef USE_X_TOOLKIT
3561 if (FRAME_X_OUTPUT (f)->edit_widget)
3562 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3563 #endif
3565 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3566 return;
3568 if (FRAME_X_WINDOW (f) != 0)
3570 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3571 SET_FRAME_GARBAGED (f);
3572 do_pending_window_change (0);
3574 else
3575 SET_FRAME_GARBAGED (f);
3578 void
3579 x_set_visibility (f, value, oldval)
3580 struct frame *f;
3581 Lisp_Object value, oldval;
3583 Lisp_Object frame;
3584 XSETFRAME (frame, f);
3586 if (NILP (value))
3587 Fmake_frame_invisible (frame, Qt);
3588 else if (EQ (value, Qicon))
3589 Ficonify_frame (frame);
3590 else
3591 Fmake_frame_visible (frame);
3594 void
3595 x_set_autoraise (f, arg, oldval)
3596 struct frame *f;
3597 Lisp_Object arg, oldval;
3599 f->auto_raise = !EQ (Qnil, arg);
3602 void
3603 x_set_autolower (f, arg, oldval)
3604 struct frame *f;
3605 Lisp_Object arg, oldval;
3607 f->auto_lower = !EQ (Qnil, arg);
3610 void
3611 x_set_unsplittable (f, arg, oldval)
3612 struct frame *f;
3613 Lisp_Object arg, oldval;
3615 f->no_split = !NILP (arg);
3618 void
3619 x_set_vertical_scroll_bars (f, arg, oldval)
3620 struct frame *f;
3621 Lisp_Object arg, oldval;
3623 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3624 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3625 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3626 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3628 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3629 = (NILP (arg)
3630 ? vertical_scroll_bar_none
3631 : EQ (Qleft, arg)
3632 ? vertical_scroll_bar_left
3633 : EQ (Qright, arg)
3634 ? vertical_scroll_bar_right
3635 : EQ (Qleft, Vdefault_frame_scroll_bars)
3636 ? vertical_scroll_bar_left
3637 : EQ (Qright, Vdefault_frame_scroll_bars)
3638 ? vertical_scroll_bar_right
3639 : vertical_scroll_bar_none);
3641 /* We set this parameter before creating the X window for the
3642 frame, so we can get the geometry right from the start.
3643 However, if the window hasn't been created yet, we shouldn't
3644 call x_set_window_size. */
3645 if (FRAME_X_WINDOW (f))
3646 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3647 do_pending_window_change (0);
3651 void
3652 x_set_scroll_bar_width (f, arg, oldval)
3653 struct frame *f;
3654 Lisp_Object arg, oldval;
3656 int wid = FRAME_COLUMN_WIDTH (f);
3658 if (NILP (arg))
3660 x_set_scroll_bar_default_width (f);
3662 if (FRAME_X_WINDOW (f))
3663 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3664 do_pending_window_change (0);
3666 else if (INTEGERP (arg) && XINT (arg) > 0
3667 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3669 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3670 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3672 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3673 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3674 if (FRAME_X_WINDOW (f))
3675 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3676 do_pending_window_change (0);
3679 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3680 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3681 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3686 /* Return non-nil if frame F wants a bitmap icon. */
3688 Lisp_Object
3689 x_icon_type (f)
3690 FRAME_PTR f;
3692 Lisp_Object tem;
3694 tem = assq_no_quit (Qicon_type, f->param_alist);
3695 if (CONSP (tem))
3696 return XCDR (tem);
3697 else
3698 return Qnil;
3702 /* Subroutines of creating an X frame. */
3704 /* Make sure that Vx_resource_name is set to a reasonable value.
3705 Fix it up, or set it to `emacs' if it is too hopeless. */
3707 void
3708 validate_x_resource_name ()
3710 int len = 0;
3711 /* Number of valid characters in the resource name. */
3712 int good_count = 0;
3713 /* Number of invalid characters in the resource name. */
3714 int bad_count = 0;
3715 Lisp_Object new;
3716 int i;
3718 if (!STRINGP (Vx_resource_class))
3719 Vx_resource_class = build_string (EMACS_CLASS);
3721 if (STRINGP (Vx_resource_name))
3723 unsigned char *p = SDATA (Vx_resource_name);
3724 int i;
3726 len = SBYTES (Vx_resource_name);
3728 /* Only letters, digits, - and _ are valid in resource names.
3729 Count the valid characters and count the invalid ones. */
3730 for (i = 0; i < len; i++)
3732 int c = p[i];
3733 if (! ((c >= 'a' && c <= 'z')
3734 || (c >= 'A' && c <= 'Z')
3735 || (c >= '0' && c <= '9')
3736 || c == '-' || c == '_'))
3737 bad_count++;
3738 else
3739 good_count++;
3742 else
3743 /* Not a string => completely invalid. */
3744 bad_count = 5, good_count = 0;
3746 /* If name is valid already, return. */
3747 if (bad_count == 0)
3748 return;
3750 /* If name is entirely invalid, or nearly so, use `emacs'. */
3751 if (good_count == 0
3752 || (good_count == 1 && bad_count > 0))
3754 Vx_resource_name = build_string ("emacs");
3755 return;
3758 /* Name is partly valid. Copy it and replace the invalid characters
3759 with underscores. */
3761 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3763 for (i = 0; i < len; i++)
3765 int c = SREF (new, i);
3766 if (! ((c >= 'a' && c <= 'z')
3767 || (c >= 'A' && c <= 'Z')
3768 || (c >= '0' && c <= '9')
3769 || c == '-' || c == '_'))
3770 SSET (new, i, '_');
3775 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3776 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3779 /* Get specified attribute from resource database RDB.
3780 See Fx_get_resource below for other parameters. */
3782 static Lisp_Object
3783 xrdb_get_resource (rdb, attribute, class, component, subclass)
3784 XrmDatabase rdb;
3785 Lisp_Object attribute, class, component, subclass;
3787 register char *value;
3788 char *name_key;
3789 char *class_key;
3791 CHECK_STRING (attribute);
3792 CHECK_STRING (class);
3794 if (!NILP (component))
3795 CHECK_STRING (component);
3796 if (!NILP (subclass))
3797 CHECK_STRING (subclass);
3798 if (NILP (component) != NILP (subclass))
3799 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3801 validate_x_resource_name ();
3803 /* Allocate space for the components, the dots which separate them,
3804 and the final '\0'. Make them big enough for the worst case. */
3805 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3806 + (STRINGP (component)
3807 ? SBYTES (component) : 0)
3808 + SBYTES (attribute)
3809 + 3);
3811 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3812 + SBYTES (class)
3813 + (STRINGP (subclass)
3814 ? SBYTES (subclass) : 0)
3815 + 3);
3817 /* Start with emacs.FRAMENAME for the name (the specific one)
3818 and with `Emacs' for the class key (the general one). */
3819 strcpy (name_key, SDATA (Vx_resource_name));
3820 strcpy (class_key, SDATA (Vx_resource_class));
3822 strcat (class_key, ".");
3823 strcat (class_key, SDATA (class));
3825 if (!NILP (component))
3827 strcat (class_key, ".");
3828 strcat (class_key, SDATA (subclass));
3830 strcat (name_key, ".");
3831 strcat (name_key, SDATA (component));
3834 strcat (name_key, ".");
3835 strcat (name_key, SDATA (attribute));
3837 value = x_get_string_resource (rdb, name_key, class_key);
3839 if (value != (char *) 0)
3840 return build_string (value);
3841 else
3842 return Qnil;
3846 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3847 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3848 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3849 class, where INSTANCE is the name under which Emacs was invoked, or
3850 the name specified by the `-name' or `-rn' command-line arguments.
3852 The optional arguments COMPONENT and SUBCLASS add to the key and the
3853 class, respectively. You must specify both of them or neither.
3854 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3855 and the class is `Emacs.CLASS.SUBCLASS'. */)
3856 (attribute, class, component, subclass)
3857 Lisp_Object attribute, class, component, subclass;
3859 #ifdef HAVE_X_WINDOWS
3860 check_x ();
3861 #endif
3863 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3864 attribute, class, component, subclass);
3867 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3869 Lisp_Object
3870 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3871 Display_Info *dpyinfo;
3872 Lisp_Object attribute, class, component, subclass;
3874 return xrdb_get_resource (dpyinfo->xrdb,
3875 attribute, class, component, subclass);
3878 /* Used when C code wants a resource value. */
3880 char *
3881 x_get_resource_string (attribute, class)
3882 char *attribute, *class;
3884 char *name_key;
3885 char *class_key;
3886 struct frame *sf = SELECTED_FRAME ();
3888 /* Allocate space for the components, the dots which separate them,
3889 and the final '\0'. */
3890 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3891 + strlen (attribute) + 2);
3892 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3893 + strlen (class) + 2);
3895 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3896 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3898 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3899 name_key, class_key);
3903 /* Return the value of parameter PARAM.
3905 First search ALIST, then Vdefault_frame_alist, then the X defaults
3906 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3908 Convert the resource to the type specified by desired_type.
3910 If no default is specified, return Qunbound. If you call
3911 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3912 and don't let it get stored in any Lisp-visible variables! */
3914 Lisp_Object
3915 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3916 Display_Info *dpyinfo;
3917 Lisp_Object alist, param;
3918 char *attribute;
3919 char *class;
3920 enum resource_types type;
3922 register Lisp_Object tem;
3924 tem = Fassq (param, alist);
3926 if (!NILP (tem))
3928 /* If we find this parm in ALIST, clear it out
3929 so that it won't be "left over" at the end. */
3930 #ifndef WINDOWSNT /* w32fns.c has not yet been changed to cope with this. */
3931 Lisp_Object tail;
3932 XSETCAR (tem, Qnil);
3933 /* In case the parameter appears more than once in the alist,
3934 clear it out. */
3935 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3936 if (CONSP (XCAR (tail))
3937 && EQ (XCAR (XCAR (tail)), param))
3938 XSETCAR (XCAR (tail), Qnil);
3939 #endif
3941 else
3942 tem = Fassq (param, Vdefault_frame_alist);
3944 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3945 look in the X resources. */
3946 if (EQ (tem, Qnil))
3948 if (attribute)
3950 tem = display_x_get_resource (dpyinfo,
3951 build_string (attribute),
3952 build_string (class),
3953 Qnil, Qnil);
3955 if (NILP (tem))
3956 return Qunbound;
3958 switch (type)
3960 case RES_TYPE_NUMBER:
3961 return make_number (atoi (SDATA (tem)));
3963 case RES_TYPE_FLOAT:
3964 return make_float (atof (SDATA (tem)));
3966 case RES_TYPE_BOOLEAN:
3967 tem = Fdowncase (tem);
3968 if (!strcmp (SDATA (tem), "on")
3969 || !strcmp (SDATA (tem), "true"))
3970 return Qt;
3971 else
3972 return Qnil;
3974 case RES_TYPE_STRING:
3975 return tem;
3977 case RES_TYPE_SYMBOL:
3978 /* As a special case, we map the values `true' and `on'
3979 to Qt, and `false' and `off' to Qnil. */
3981 Lisp_Object lower;
3982 lower = Fdowncase (tem);
3983 if (!strcmp (SDATA (lower), "on")
3984 || !strcmp (SDATA (lower), "true"))
3985 return Qt;
3986 else if (!strcmp (SDATA (lower), "off")
3987 || !strcmp (SDATA (lower), "false"))
3988 return Qnil;
3989 else
3990 return Fintern (tem, Qnil);
3993 default:
3994 abort ();
3997 else
3998 return Qunbound;
4000 return Fcdr (tem);
4003 Lisp_Object
4004 x_frame_get_arg (f, alist, param, attribute, class, type)
4005 struct frame *f;
4006 Lisp_Object alist, param;
4007 char *attribute;
4008 char *class;
4009 enum resource_types type;
4011 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
4012 alist, param, attribute, class, type);
4015 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
4017 Lisp_Object
4018 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
4019 struct frame *f;
4020 Lisp_Object alist, param;
4021 char *attribute;
4022 char *class;
4023 enum resource_types type;
4025 Lisp_Object value;
4027 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
4028 attribute, class, type);
4029 if (! NILP (value) && ! EQ (value, Qunbound))
4030 store_frame_param (f, param, value);
4032 return value;
4036 /* Record in frame F the specified or default value according to ALIST
4037 of the parameter named PROP (a Lisp symbol).
4038 If no value is specified for PROP, look for an X default for XPROP
4039 on the frame named NAME.
4040 If that is not found either, use the value DEFLT. */
4042 Lisp_Object
4043 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
4044 struct frame *f;
4045 Lisp_Object alist;
4046 Lisp_Object prop;
4047 Lisp_Object deflt;
4048 char *xprop;
4049 char *xclass;
4050 enum resource_types type;
4052 Lisp_Object tem;
4054 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4055 if (EQ (tem, Qunbound))
4056 tem = deflt;
4057 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
4058 return tem;
4064 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4065 doc: /* Parse an X-style geometry string STRING.
4066 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4067 The properties returned may include `top', `left', `height', and `width'.
4068 The value of `left' or `top' may be an integer,
4069 or a list (+ N) meaning N pixels relative to top/left corner,
4070 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
4071 (string)
4072 Lisp_Object string;
4074 int geometry, x, y;
4075 unsigned int width, height;
4076 Lisp_Object result;
4078 CHECK_STRING (string);
4080 geometry = XParseGeometry ((char *) SDATA (string),
4081 &x, &y, &width, &height);
4083 #if 0
4084 if (!!(geometry & XValue) != !!(geometry & YValue))
4085 error ("Must specify both x and y position, or neither");
4086 #endif
4088 result = Qnil;
4089 if (geometry & XValue)
4091 Lisp_Object element;
4093 if (x >= 0 && (geometry & XNegative))
4094 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
4095 else if (x < 0 && ! (geometry & XNegative))
4096 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
4097 else
4098 element = Fcons (Qleft, make_number (x));
4099 result = Fcons (element, result);
4102 if (geometry & YValue)
4104 Lisp_Object element;
4106 if (y >= 0 && (geometry & YNegative))
4107 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
4108 else if (y < 0 && ! (geometry & YNegative))
4109 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4110 else
4111 element = Fcons (Qtop, make_number (y));
4112 result = Fcons (element, result);
4115 if (geometry & WidthValue)
4116 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4117 if (geometry & HeightValue)
4118 result = Fcons (Fcons (Qheight, make_number (height)), result);
4120 return result;
4123 /* Calculate the desired size and position of frame F.
4124 Return the flags saying which aspects were specified.
4126 Also set the win_gravity and size_hint_flags of F.
4128 Adjust height for toolbar if TOOLBAR_P is 1.
4130 This function does not make the coordinates positive. */
4132 #define DEFAULT_ROWS 40
4133 #define DEFAULT_COLS 80
4136 x_figure_window_size (f, parms, toolbar_p)
4137 struct frame *f;
4138 Lisp_Object parms;
4139 int toolbar_p;
4141 register Lisp_Object tem0, tem1, tem2;
4142 long window_prompting = 0;
4143 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4145 /* Default values if we fall through.
4146 Actually, if that happens we should get
4147 window manager prompting. */
4148 SET_FRAME_COLS (f, DEFAULT_COLS);
4149 FRAME_LINES (f) = DEFAULT_ROWS;
4150 /* Window managers expect that if program-specified
4151 positions are not (0,0), they're intentional, not defaults. */
4152 f->top_pos = 0;
4153 f->left_pos = 0;
4155 /* Ensure that old new_text_cols and new_text_lines will not override the
4156 values set here. */
4157 /* ++KFS: This was specific to W32, but seems ok for all platforms */
4158 f->new_text_cols = f->new_text_lines = 0;
4160 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4161 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4162 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4163 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4165 if (!EQ (tem0, Qunbound))
4167 CHECK_NUMBER (tem0);
4168 FRAME_LINES (f) = XINT (tem0);
4170 if (!EQ (tem1, Qunbound))
4172 CHECK_NUMBER (tem1);
4173 SET_FRAME_COLS (f, XINT (tem1));
4175 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4176 window_prompting |= USSize;
4177 else
4178 window_prompting |= PSize;
4181 f->scroll_bar_actual_width
4182 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
4184 /* This used to be done _before_ calling x_figure_window_size, but
4185 since the height is reset here, this was really a no-op. I
4186 assume that moving it here does what Gerd intended (although he
4187 no longer can remember what that was... ++KFS, 2003-03-25. */
4189 /* Add the tool-bar height to the initial frame height so that the
4190 user gets a text display area of the size he specified with -g or
4191 via .Xdefaults. Later changes of the tool-bar height don't
4192 change the frame size. This is done so that users can create
4193 tall Emacs frames without having to guess how tall the tool-bar
4194 will get. */
4195 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4197 int margin, relief, bar_height;
4199 relief = (tool_bar_button_relief >= 0
4200 ? tool_bar_button_relief
4201 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4203 if (INTEGERP (Vtool_bar_button_margin)
4204 && XINT (Vtool_bar_button_margin) > 0)
4205 margin = XFASTINT (Vtool_bar_button_margin);
4206 else if (CONSP (Vtool_bar_button_margin)
4207 && INTEGERP (XCDR (Vtool_bar_button_margin))
4208 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4209 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4210 else
4211 margin = 0;
4213 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4214 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
4217 compute_fringe_widths (f, 0);
4219 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4220 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
4222 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4223 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4224 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4225 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4227 if (EQ (tem0, Qminus))
4229 f->top_pos = 0;
4230 window_prompting |= YNegative;
4232 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4233 && CONSP (XCDR (tem0))
4234 && INTEGERP (XCAR (XCDR (tem0))))
4236 f->top_pos = - XINT (XCAR (XCDR (tem0)));
4237 window_prompting |= YNegative;
4239 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4240 && CONSP (XCDR (tem0))
4241 && INTEGERP (XCAR (XCDR (tem0))))
4243 f->top_pos = XINT (XCAR (XCDR (tem0)));
4245 else if (EQ (tem0, Qunbound))
4246 f->top_pos = 0;
4247 else
4249 CHECK_NUMBER (tem0);
4250 f->top_pos = XINT (tem0);
4251 if (f->top_pos < 0)
4252 window_prompting |= YNegative;
4255 if (EQ (tem1, Qminus))
4257 f->left_pos = 0;
4258 window_prompting |= XNegative;
4260 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4261 && CONSP (XCDR (tem1))
4262 && INTEGERP (XCAR (XCDR (tem1))))
4264 f->left_pos = - XINT (XCAR (XCDR (tem1)));
4265 window_prompting |= XNegative;
4267 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4268 && CONSP (XCDR (tem1))
4269 && INTEGERP (XCAR (XCDR (tem1))))
4271 f->left_pos = XINT (XCAR (XCDR (tem1)));
4273 else if (EQ (tem1, Qunbound))
4274 f->left_pos = 0;
4275 else
4277 CHECK_NUMBER (tem1);
4278 f->left_pos = XINT (tem1);
4279 if (f->left_pos < 0)
4280 window_prompting |= XNegative;
4283 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4284 window_prompting |= USPosition;
4285 else
4286 window_prompting |= PPosition;
4289 if (f->want_fullscreen != FULLSCREEN_NONE)
4291 int left, top;
4292 int width, height;
4294 /* It takes both for some WM:s to place it where we want */
4295 window_prompting = USPosition | PPosition;
4296 x_fullscreen_adjust (f, &width, &height, &top, &left);
4297 FRAME_COLS (f) = width;
4298 FRAME_LINES (f) = height;
4299 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4300 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4301 f->left_pos = left;
4302 f->top_pos = top;
4305 if (window_prompting & XNegative)
4307 if (window_prompting & YNegative)
4308 f->win_gravity = SouthEastGravity;
4309 else
4310 f->win_gravity = NorthEastGravity;
4312 else
4314 if (window_prompting & YNegative)
4315 f->win_gravity = SouthWestGravity;
4316 else
4317 f->win_gravity = NorthWestGravity;
4320 f->size_hint_flags = window_prompting;
4322 return window_prompting;
4327 #endif /* HAVE_WINDOW_SYSTEM */
4331 /***********************************************************************
4332 Initialization
4333 ***********************************************************************/
4335 void
4336 syms_of_frame ()
4338 Qframep = intern ("framep");
4339 staticpro (&Qframep);
4340 Qframe_live_p = intern ("frame-live-p");
4341 staticpro (&Qframe_live_p);
4342 Qexplicit_name = intern ("explicit-name");
4343 staticpro (&Qexplicit_name);
4344 Qheight = intern ("height");
4345 staticpro (&Qheight);
4346 Qicon = intern ("icon");
4347 staticpro (&Qicon);
4348 Qminibuffer = intern ("minibuffer");
4349 staticpro (&Qminibuffer);
4350 Qmodeline = intern ("modeline");
4351 staticpro (&Qmodeline);
4352 Qonly = intern ("only");
4353 staticpro (&Qonly);
4354 Qwidth = intern ("width");
4355 staticpro (&Qwidth);
4356 Qgeometry = intern ("geometry");
4357 staticpro (&Qgeometry);
4358 Qicon_left = intern ("icon-left");
4359 staticpro (&Qicon_left);
4360 Qicon_top = intern ("icon-top");
4361 staticpro (&Qicon_top);
4362 Qleft = intern ("left");
4363 staticpro (&Qleft);
4364 Qright = intern ("right");
4365 staticpro (&Qright);
4366 Quser_position = intern ("user-position");
4367 staticpro (&Quser_position);
4368 Quser_size = intern ("user-size");
4369 staticpro (&Quser_size);
4370 Qwindow_id = intern ("window-id");
4371 staticpro (&Qwindow_id);
4372 #ifdef HAVE_X_WINDOWS
4373 Qouter_window_id = intern ("outer-window-id");
4374 staticpro (&Qouter_window_id);
4375 #endif
4376 Qparent_id = intern ("parent-id");
4377 staticpro (&Qparent_id);
4378 Qx = intern ("x");
4379 staticpro (&Qx);
4380 Qw32 = intern ("w32");
4381 staticpro (&Qw32);
4382 Qpc = intern ("pc");
4383 staticpro (&Qpc);
4384 Qmac = intern ("mac");
4385 staticpro (&Qmac);
4386 Qvisible = intern ("visible");
4387 staticpro (&Qvisible);
4388 Qbuffer_predicate = intern ("buffer-predicate");
4389 staticpro (&Qbuffer_predicate);
4390 Qbuffer_list = intern ("buffer-list");
4391 staticpro (&Qbuffer_list);
4392 Qburied_buffer_list = intern ("buried-buffer-list");
4393 staticpro (&Qburied_buffer_list);
4394 Qdisplay_type = intern ("display-type");
4395 staticpro (&Qdisplay_type);
4396 Qbackground_mode = intern ("background-mode");
4397 staticpro (&Qbackground_mode);
4398 Qtty_color_mode = intern ("tty-color-mode");
4399 staticpro (&Qtty_color_mode);
4400 Qtty = intern ("tty");
4401 staticpro (&Qtty);
4402 Qtty_type = intern ("tty-type");
4403 staticpro (&Qtty_type);
4404 Qwindow_system = intern ("window-system");
4405 staticpro (&Qwindow_system);
4407 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4408 staticpro (&Qface_set_after_frame_default);
4410 Qinhibit_face_set_after_frame_default
4411 = intern ("inhibit-face-set-after-frame-default");
4412 staticpro (&Qinhibit_face_set_after_frame_default);
4414 Qfullwidth = intern ("fullwidth");
4415 staticpro (&Qfullwidth);
4416 Qfullheight = intern ("fullheight");
4417 staticpro (&Qfullheight);
4418 Qfullboth = intern ("fullboth");
4419 staticpro (&Qfullboth);
4420 Qx_resource_name = intern ("x-resource-name");
4421 staticpro (&Qx_resource_name);
4423 Qx_frame_parameter = intern ("x-frame-parameter");
4424 staticpro (&Qx_frame_parameter);
4426 Qterminal = intern ("terminal");
4427 staticpro (&Qterminal);
4428 Qterminal_live_p = intern ("terminal-live-p");
4429 staticpro (&Qterminal_live_p);
4432 int i;
4434 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4436 Lisp_Object v = intern (frame_parms[i].name);
4437 if (frame_parms[i].variable)
4439 *frame_parms[i].variable = v;
4440 staticpro (frame_parms[i].variable);
4442 Fput (v, Qx_frame_parameter, make_number (i));
4446 #ifdef HAVE_WINDOW_SYSTEM
4447 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4448 doc: /* The name Emacs uses to look up X resources.
4449 `x-get-resource' uses this as the first component of the instance name
4450 when requesting resource values.
4451 Emacs initially sets `x-resource-name' to the name under which Emacs
4452 was invoked, or to the value specified with the `-name' or `-rn'
4453 switches, if present.
4455 It may be useful to bind this variable locally around a call
4456 to `x-get-resource'. See also the variable `x-resource-class'. */);
4457 Vx_resource_name = Qnil;
4459 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4460 doc: /* The class Emacs uses to look up X resources.
4461 `x-get-resource' uses this as the first component of the instance class
4462 when requesting resource values.
4464 Emacs initially sets `x-resource-class' to "Emacs".
4466 Setting this variable permanently is not a reasonable thing to do,
4467 but binding this variable locally around a call to `x-get-resource'
4468 is a reasonable practice. See also the variable `x-resource-name'. */);
4469 Vx_resource_class = build_string (EMACS_CLASS);
4470 #endif
4472 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4473 doc: /* Alist of default values for frame creation.
4474 These may be set in your init file, like this:
4475 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4476 These override values given in window system configuration data,
4477 including X Windows' defaults database.
4478 For values specific to the first Emacs frame, see `initial-frame-alist'.
4479 For window-system specific values, see `window-system-default-frame-alist'.
4480 For values specific to the separate minibuffer frame, see
4481 `minibuffer-frame-alist'.
4482 The `menu-bar-lines' element of the list controls whether new frames
4483 have menu bars; `menu-bar-mode' works by altering this element.
4484 Setting this variable does not affect existing frames, only new ones. */);
4485 Vdefault_frame_alist = Qnil;
4487 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4488 doc: /* Default position of scroll bars on this window-system. */);
4489 #ifdef HAVE_WINDOW_SYSTEM
4490 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4491 /* MS-Windows has scroll bars on the right by default. */
4492 Vdefault_frame_scroll_bars = Qright;
4493 #else
4494 Vdefault_frame_scroll_bars = Qleft;
4495 #endif
4496 #else
4497 Vdefault_frame_scroll_bars = Qnil;
4498 #endif
4500 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4501 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4503 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
4504 doc: /* Non-nil if all of Emacs is iconified and frame updates are not needed. */);
4505 Vemacs_iconified = Qnil;
4507 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4508 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4509 `mouse-position' calls this function, passing its usual return value as
4510 argument, and returns whatever this function returns.
4511 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4512 which need to do mouse handling at the Lisp level. */);
4513 Vmouse_position_function = Qnil;
4515 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4516 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4517 If the value is an integer, highlighting is only shown after moving the
4518 mouse, while keyboard input turns off the highlight even when the mouse
4519 is over the clickable text. However, the mouse shape still indicates
4520 when the mouse is over clickable text. */);
4521 Vmouse_highlight = Qt;
4523 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4524 doc: /* Functions to be run before deleting a frame.
4525 The functions are run with one arg, the frame to be deleted.
4526 See `delete-frame'.
4528 Note that functions in this list may be called twice on the same
4529 frame. In the second invocation, the frame is already deleted, and
4530 the function should do nothing. (You can use `frame-live-p' to check
4531 for this.) This wrinkle happens when an earlier function in
4532 `delete-frame-functions' (indirectly) calls delete-frame
4533 recursively. */);
4534 Vdelete_frame_functions = Qnil;
4536 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4537 doc: /* Minibufferless frames use this frame's minibuffer.
4539 Emacs cannot create minibufferless frames unless this is set to an
4540 appropriate surrogate.
4542 Emacs consults this variable only when creating minibufferless
4543 frames; once the frame is created, it sticks with its assigned
4544 minibuffer, no matter what this variable is set to. This means that
4545 this variable doesn't necessarily say anything meaningful about the
4546 current set of frames, or where the minibuffer is currently being
4547 displayed.
4549 This variable is local to the current terminal and cannot be buffer-local. */);
4551 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4552 doc: /* Non-nil if window system changes focus when you move the mouse.
4553 You should set this variable to tell Emacs how your window manager
4554 handles focus, since there is no way in general for Emacs to find out
4555 automatically. */);
4556 #ifdef HAVE_WINDOW_SYSTEM
4557 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4558 focus_follows_mouse = 0;
4559 #else
4560 focus_follows_mouse = 1;
4561 #endif
4562 #else
4563 focus_follows_mouse = 0;
4564 #endif
4566 staticpro (&Vframe_list);
4568 defsubr (&Sactive_minibuffer_window);
4569 defsubr (&Sframep);
4570 defsubr (&Sframe_live_p);
4571 defsubr (&Swindow_system);
4572 defsubr (&Smake_terminal_frame);
4573 defsubr (&Shandle_switch_frame);
4574 defsubr (&Sselect_frame);
4575 defsubr (&Sselected_frame);
4576 defsubr (&Swindow_frame);
4577 defsubr (&Sframe_root_window);
4578 defsubr (&Sframe_first_window);
4579 defsubr (&Sframe_selected_window);
4580 defsubr (&Sset_frame_selected_window);
4581 defsubr (&Sframe_list);
4582 defsubr (&Snext_frame);
4583 defsubr (&Sprevious_frame);
4584 defsubr (&Sdelete_frame);
4585 defsubr (&Smouse_position);
4586 defsubr (&Smouse_pixel_position);
4587 defsubr (&Sset_mouse_position);
4588 defsubr (&Sset_mouse_pixel_position);
4589 #if 0
4590 defsubr (&Sframe_configuration);
4591 defsubr (&Srestore_frame_configuration);
4592 #endif
4593 defsubr (&Smake_frame_visible);
4594 defsubr (&Smake_frame_invisible);
4595 defsubr (&Siconify_frame);
4596 defsubr (&Sframe_visible_p);
4597 defsubr (&Svisible_frame_list);
4598 defsubr (&Sraise_frame);
4599 defsubr (&Slower_frame);
4600 defsubr (&Sredirect_frame_focus);
4601 defsubr (&Sframe_focus);
4602 defsubr (&Sframe_parameters);
4603 defsubr (&Sframe_parameter);
4604 defsubr (&Smodify_frame_parameters);
4605 defsubr (&Sframe_char_height);
4606 defsubr (&Sframe_char_width);
4607 defsubr (&Sframe_pixel_height);
4608 defsubr (&Sframe_pixel_width);
4609 defsubr (&Sset_frame_height);
4610 defsubr (&Sset_frame_width);
4611 defsubr (&Sset_frame_size);
4612 defsubr (&Sset_frame_position);
4614 #ifdef HAVE_WINDOW_SYSTEM
4615 defsubr (&Sx_get_resource);
4616 defsubr (&Sx_parse_geometry);
4617 #endif
4621 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4622 (do not change this comment) */