(calendar-mode-map): Use new calendar-scroll-* names.
[emacs.git] / src / frame.c
blobb29e20ab0ca7746bb9ea72b5049ce640ca32a489
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "charset.h"
27 #ifdef HAVE_X_WINDOWS
28 #include "xterm.h"
29 #endif
30 #ifdef WINDOWSNT
31 #include "w32term.h"
32 #endif
33 #ifdef MAC_OS
34 #include "macterm.h"
35 #endif
36 #include "buffer.h"
37 /* These help us bind and responding to switch-frame events. */
38 #include "commands.h"
39 #include "keyboard.h"
40 #include "frame.h"
41 #ifdef HAVE_WINDOW_SYSTEM
42 #include "fontset.h"
43 #endif
44 #include "blockinput.h"
45 #include "termhooks.h"
46 #include "dispextern.h"
47 #include "window.h"
48 #ifdef MSDOS
49 #include "msdos.h"
50 #include "dosfns.h"
51 #endif
54 #ifdef HAVE_WINDOW_SYSTEM
56 /* The name we're using in resource queries. Most often "emacs". */
58 Lisp_Object Vx_resource_name;
60 /* The application class we're using in resource queries.
61 Normally "Emacs". */
63 Lisp_Object Vx_resource_class;
65 #endif
67 Lisp_Object Qframep, Qframe_live_p;
68 Lisp_Object Qicon, Qmodeline;
69 Lisp_Object Qonly;
70 Lisp_Object Qx, Qw32, Qmac, Qpc;
71 Lisp_Object Qvisible;
72 Lisp_Object Qdisplay_type;
73 Lisp_Object Qbackground_mode;
75 Lisp_Object Qx_frame_parameter;
76 Lisp_Object Qx_resource_name;
78 /* Frame parameters (set or reported). */
80 Lisp_Object Qauto_raise, Qauto_lower;
81 Lisp_Object Qborder_color, Qborder_width;
82 Lisp_Object Qcursor_color, Qcursor_type;
83 Lisp_Object Qgeometry; /* Not used */
84 Lisp_Object Qheight, Qwidth;
85 Lisp_Object Qleft, Qright;
86 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
87 Lisp_Object Qinternal_border_width;
88 Lisp_Object Qmouse_color;
89 Lisp_Object Qminibuffer;
90 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
91 Lisp_Object Qvisibility;
92 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
93 Lisp_Object Qscreen_gamma;
94 Lisp_Object Qline_spacing;
95 Lisp_Object Quser_position, Quser_size;
96 Lisp_Object Qwait_for_wm;
97 Lisp_Object Qwindow_id;
98 #ifdef HAVE_X_WINDOWS
99 Lisp_Object Qouter_window_id;
100 #endif
101 Lisp_Object Qparent_id;
102 Lisp_Object Qtitle, Qname;
103 Lisp_Object Qunsplittable;
104 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
105 Lisp_Object Qleft_fringe, Qright_fringe;
106 Lisp_Object Qbuffer_predicate, Qbuffer_list;
107 Lisp_Object Qtty_color_mode;
109 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
111 Lisp_Object Qinhibit_face_set_after_frame_default;
112 Lisp_Object Qface_set_after_frame_default;
115 Lisp_Object Vterminal_frame;
116 Lisp_Object Vdefault_frame_alist;
117 Lisp_Object Vdefault_frame_scroll_bars;
118 Lisp_Object Vmouse_position_function;
119 Lisp_Object Vmouse_highlight;
120 Lisp_Object Vdelete_frame_functions;
122 static void
123 set_menu_bar_lines_1 (window, n)
124 Lisp_Object window;
125 int n;
127 struct window *w = XWINDOW (window);
129 XSETFASTINT (w->last_modified, 0);
130 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
131 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
133 if (INTEGERP (w->orig_top_line))
134 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
135 if (INTEGERP (w->orig_total_lines))
136 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
138 /* Handle just the top child in a vertical split. */
139 if (!NILP (w->vchild))
140 set_menu_bar_lines_1 (w->vchild, n);
142 /* Adjust all children in a horizontal split. */
143 for (window = w->hchild; !NILP (window); window = w->next)
145 w = XWINDOW (window);
146 set_menu_bar_lines_1 (window, n);
150 void
151 set_menu_bar_lines (f, value, oldval)
152 struct frame *f;
153 Lisp_Object value, oldval;
155 int nlines;
156 int olines = FRAME_MENU_BAR_LINES (f);
158 /* Right now, menu bars don't work properly in minibuf-only frames;
159 most of the commands try to apply themselves to the minibuffer
160 frame itself, and get an error because you can't switch buffers
161 in or split the minibuffer window. */
162 if (FRAME_MINIBUF_ONLY_P (f))
163 return;
165 if (INTEGERP (value))
166 nlines = XINT (value);
167 else
168 nlines = 0;
170 if (nlines != olines)
172 windows_or_buffers_changed++;
173 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
174 FRAME_MENU_BAR_LINES (f) = nlines;
175 set_menu_bar_lines_1 (f->root_window, nlines - olines);
176 adjust_glyphs (f);
180 Lisp_Object Vemacs_iconified;
181 Lisp_Object Vframe_list;
183 struct x_output tty_display;
185 extern Lisp_Object Vminibuffer_list;
186 extern Lisp_Object get_minibuffer ();
187 extern Lisp_Object Fhandle_switch_frame ();
188 extern Lisp_Object Fredirect_frame_focus ();
189 extern Lisp_Object x_get_focus_frame ();
191 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
192 doc: /* Return non-nil if OBJECT is a frame.
193 Value is t for a termcap frame (a character-only terminal),
194 `x' for an Emacs frame that is really an X window,
195 `w32' for an Emacs frame that is a window on MS-Windows display,
196 `mac' for an Emacs frame on a Macintosh display,
197 `pc' for a direct-write MS-DOS frame.
198 See also `frame-live-p'. */)
199 (object)
200 Lisp_Object object;
202 if (!FRAMEP (object))
203 return Qnil;
204 switch (XFRAME (object)->output_method)
206 case output_termcap:
207 return Qt;
208 case output_x_window:
209 return Qx;
210 case output_w32:
211 return Qw32;
212 case output_msdos_raw:
213 return Qpc;
214 case output_mac:
215 return Qmac;
216 default:
217 abort ();
221 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
222 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
223 Value is nil if OBJECT is not a live frame. If object is a live
224 frame, the return value indicates what sort of output device it is
225 displayed on. See the documentation of `framep' for possible
226 return values. */)
227 (object)
228 Lisp_Object object;
230 return ((FRAMEP (object)
231 && FRAME_LIVE_P (XFRAME (object)))
232 ? Fframep (object)
233 : Qnil);
236 struct frame *
237 make_frame (mini_p)
238 int mini_p;
240 Lisp_Object frame;
241 register struct frame *f;
242 register Lisp_Object root_window;
243 register Lisp_Object mini_window;
245 f = allocate_frame ();
246 XSETFRAME (frame, f);
248 f->desired_matrix = 0;
249 f->current_matrix = 0;
250 f->desired_pool = 0;
251 f->current_pool = 0;
252 f->glyphs_initialized_p = 0;
253 f->decode_mode_spec_buffer = 0;
254 f->visible = 0;
255 f->async_visible = 0;
256 f->output_data.nothing = 0;
257 f->iconified = 0;
258 f->async_iconified = 0;
259 f->wants_modeline = 1;
260 f->auto_raise = 0;
261 f->auto_lower = 0;
262 f->no_split = 0;
263 f->garbaged = 1;
264 f->has_minibuffer = mini_p;
265 f->focus_frame = Qnil;
266 f->explicit_name = 0;
267 f->can_have_scroll_bars = 0;
268 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
269 f->param_alist = Qnil;
270 f->scroll_bars = Qnil;
271 f->condemned_scroll_bars = Qnil;
272 f->face_alist = Qnil;
273 f->face_cache = NULL;
274 f->menu_bar_items = Qnil;
275 f->menu_bar_vector = Qnil;
276 f->menu_bar_items_used = 0;
277 f->buffer_predicate = Qnil;
278 f->buffer_list = Qnil;
279 #ifdef MULTI_KBOARD
280 f->kboard = initial_kboard;
281 #endif
282 f->namebuf = 0;
283 f->title = Qnil;
284 f->menu_bar_window = Qnil;
285 f->tool_bar_window = Qnil;
286 f->tool_bar_items = Qnil;
287 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
288 f->n_tool_bar_items = 0;
289 f->left_fringe_width = f->right_fringe_width = 0;
290 f->fringe_cols = 0;
291 f->scroll_bar_actual_width = 0;
292 f->border_width = 0;
293 f->internal_border_width = 0;
294 f->column_width = 1; /* !FRAME_WINDOW_P value */
295 f->line_height = 1; /* !FRAME_WINDOW_P value */
296 f->x_pixels_diff = f->y_pixels_diff = 0;
297 #ifdef HAVE_WINDOW_SYSTEM
298 f->want_fullscreen = FULLSCREEN_NONE;
299 #endif
300 f->size_hint_flags = 0;
301 f->win_gravity = 0;
303 root_window = make_window ();
304 if (mini_p)
306 mini_window = make_window ();
307 XWINDOW (root_window)->next = mini_window;
308 XWINDOW (mini_window)->prev = root_window;
309 XWINDOW (mini_window)->mini_p = Qt;
310 XWINDOW (mini_window)->frame = frame;
311 f->minibuffer_window = mini_window;
313 else
315 mini_window = Qnil;
316 XWINDOW (root_window)->next = Qnil;
317 f->minibuffer_window = Qnil;
320 XWINDOW (root_window)->frame = frame;
322 /* 10 is arbitrary,
323 just so that there is "something there."
324 Correct size will be set up later with change_frame_size. */
326 SET_FRAME_COLS (f, 10);
327 FRAME_LINES (f) = 10;
329 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
330 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
332 if (mini_p)
334 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
335 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
336 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
339 /* Choose a buffer for the frame's root window. */
341 Lisp_Object buf;
343 XWINDOW (root_window)->buffer = Qt;
344 buf = Fcurrent_buffer ();
345 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
346 a space), try to find another one. */
347 if (SREF (Fbuffer_name (buf), 0) == ' ')
348 buf = Fother_buffer (buf, Qnil, Qnil);
350 /* Use set_window_buffer, not Fset_window_buffer, and don't let
351 hooks be run by it. The reason is that the whole frame/window
352 arrangement is not yet fully intialized at this point. Windows
353 don't have the right size, glyph matrices aren't initialized
354 etc. Running Lisp functions at this point surely ends in a
355 SEGV. */
356 set_window_buffer (root_window, buf, 0, 0);
357 f->buffer_list = Fcons (buf, Qnil);
360 if (mini_p)
362 XWINDOW (mini_window)->buffer = Qt;
363 set_window_buffer (mini_window,
364 (NILP (Vminibuffer_list)
365 ? get_minibuffer (0)
366 : Fcar (Vminibuffer_list)),
367 0, 0);
370 f->root_window = root_window;
371 f->selected_window = root_window;
372 /* Make sure this window seems more recently used than
373 a newly-created, never-selected window. */
374 ++window_select_count;
375 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
377 f->default_face_done_p = 0;
379 return f;
382 #ifdef HAVE_WINDOW_SYSTEM
383 /* Make a frame using a separate minibuffer window on another frame.
384 MINI_WINDOW is the minibuffer window to use. nil means use the
385 default (the global minibuffer). */
387 struct frame *
388 make_frame_without_minibuffer (mini_window, kb, display)
389 register Lisp_Object mini_window;
390 KBOARD *kb;
391 Lisp_Object display;
393 register struct frame *f;
394 struct gcpro gcpro1;
396 if (!NILP (mini_window))
397 CHECK_LIVE_WINDOW (mini_window);
399 #ifdef MULTI_KBOARD
400 if (!NILP (mini_window)
401 && XFRAME (XWINDOW (mini_window)->frame)->kboard != kb)
402 error ("Frame and minibuffer must be on the same display");
403 #endif
405 /* Make a frame containing just a root window. */
406 f = make_frame (0);
408 if (NILP (mini_window))
410 /* Use default-minibuffer-frame if possible. */
411 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
412 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
414 Lisp_Object frame_dummy;
416 XSETFRAME (frame_dummy, f);
417 GCPRO1 (frame_dummy);
418 /* If there's no minibuffer frame to use, create one. */
419 kb->Vdefault_minibuffer_frame =
420 call1 (intern ("make-initial-minibuffer-frame"), display);
421 UNGCPRO;
424 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
427 f->minibuffer_window = mini_window;
429 /* Make the chosen minibuffer window display the proper minibuffer,
430 unless it is already showing a minibuffer. */
431 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
432 Fset_window_buffer (mini_window,
433 (NILP (Vminibuffer_list)
434 ? get_minibuffer (0)
435 : Fcar (Vminibuffer_list)), Qnil);
436 return f;
439 /* Make a frame containing only a minibuffer window. */
441 struct frame *
442 make_minibuffer_frame ()
444 /* First make a frame containing just a root window, no minibuffer. */
446 register struct frame *f = make_frame (0);
447 register Lisp_Object mini_window;
448 register Lisp_Object frame;
450 XSETFRAME (frame, f);
452 f->auto_raise = 0;
453 f->auto_lower = 0;
454 f->no_split = 1;
455 f->wants_modeline = 0;
456 f->has_minibuffer = 1;
458 /* Now label the root window as also being the minibuffer.
459 Avoid infinite looping on the window chain by marking next pointer
460 as nil. */
462 mini_window = f->minibuffer_window = f->root_window;
463 XWINDOW (mini_window)->mini_p = Qt;
464 XWINDOW (mini_window)->next = Qnil;
465 XWINDOW (mini_window)->prev = Qnil;
466 XWINDOW (mini_window)->frame = frame;
468 /* Put the proper buffer in that window. */
470 Fset_window_buffer (mini_window,
471 (NILP (Vminibuffer_list)
472 ? get_minibuffer (0)
473 : Fcar (Vminibuffer_list)), Qnil);
474 return f;
476 #endif /* HAVE_WINDOW_SYSTEM */
478 /* Construct a frame that refers to the terminal (stdin and stdout). */
480 static int terminal_frame_count;
482 struct frame *
483 make_terminal_frame ()
485 register struct frame *f;
486 Lisp_Object frame;
487 char name[20];
489 #ifdef MULTI_KBOARD
490 if (!initial_kboard)
492 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
493 init_kboard (initial_kboard);
494 initial_kboard->next_kboard = all_kboards;
495 all_kboards = initial_kboard;
497 #endif
499 /* The first call must initialize Vframe_list. */
500 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
501 Vframe_list = Qnil;
503 f = make_frame (1);
505 XSETFRAME (frame, f);
506 Vframe_list = Fcons (frame, Vframe_list);
508 terminal_frame_count++;
509 sprintf (name, "F%d", terminal_frame_count);
510 f->name = build_string (name);
512 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
513 f->async_visible = 1; /* Don't let visible be cleared later. */
514 #ifdef MSDOS
515 f->output_data.x = &the_only_x_display;
516 if (!inhibit_window_system
517 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
518 || XFRAME (selected_frame)->output_method == output_msdos_raw))
520 f->output_method = output_msdos_raw;
521 /* This initialization of foreground and background pixels is
522 only important for the initial frame created in temacs. If
523 we don't do that, we get black background and foreground in
524 the dumped Emacs because the_only_x_display is a static
525 variable, hence it is born all-zeroes, and zero is the code
526 for the black color. Other frames all inherit their pixels
527 from what's already in the_only_x_display. */
528 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
529 && f->output_data.x->background_pixel == 0
530 && f->output_data.x->foreground_pixel == 0)
532 f->output_data.x->background_pixel = FACE_TTY_DEFAULT_BG_COLOR;
533 f->output_data.x->foreground_pixel = FACE_TTY_DEFAULT_FG_COLOR;
536 else
537 f->output_method = output_termcap;
538 #else
539 #ifdef WINDOWSNT
540 f->output_method = output_termcap;
541 f->output_data.x = &tty_display;
542 #else
543 #ifdef MAC_OS8
544 make_mac_terminal_frame (f);
545 #else
546 f->output_data.x = &tty_display;
547 #ifdef CANNOT_DUMP
548 FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR;
549 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
550 #endif
551 #endif /* MAC_OS8 */
552 #endif /* WINDOWSNT */
553 #endif /* MSDOS */
555 if (!noninteractive)
556 init_frame_faces (f);
558 return f;
561 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
562 1, 1, 0,
563 doc: /* Create an additional terminal frame.
564 You can create multiple frames on a text-only terminal in this way.
565 Only the selected terminal frame is actually displayed.
566 This function takes one argument, an alist specifying frame parameters.
567 In practice, generally you don't need to specify any parameters.
568 Note that changing the size of one terminal frame automatically affects all. */)
569 (parms)
570 Lisp_Object parms;
572 struct frame *f;
573 Lisp_Object frame, tem;
574 struct frame *sf = SELECTED_FRAME ();
576 #ifdef MSDOS
577 if (sf->output_method != output_msdos_raw
578 && sf->output_method != output_termcap)
579 abort ();
580 #else /* not MSDOS */
582 #ifdef MAC_OS
583 if (sf->output_method != output_mac)
584 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
585 #else
586 if (sf->output_method != output_termcap)
587 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
588 #endif
589 #endif /* not MSDOS */
591 f = make_terminal_frame ();
593 change_frame_size (f, FRAME_LINES (sf),
594 FRAME_COLS (sf), 0, 0, 0);
595 adjust_glyphs (f);
596 calculate_costs (f);
597 XSETFRAME (frame, f);
598 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
599 Fmodify_frame_parameters (frame, parms);
601 /* Make the frame face alist be frame-specific, so that each
602 frame could change its face definitions independently. */
603 f->face_alist = Fcopy_alist (sf->face_alist);
604 /* Simple Fcopy_alist isn't enough, because we need the contents of
605 the vectors which are the CDRs of associations in face_alist to
606 be copied as well. */
607 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
608 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
609 return frame;
613 /* Perform the switch to frame FRAME.
615 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
616 FRAME1 as frame.
618 If TRACK is non-zero and the frame that currently has the focus
619 redirects its focus to the selected frame, redirect that focused
620 frame's focus to FRAME instead.
622 FOR_DELETION non-zero means that the selected frame is being
623 deleted, which includes the possibility that the frame's display
624 is dead. */
626 Lisp_Object
627 do_switch_frame (frame, track, for_deletion)
628 Lisp_Object frame;
629 int track, for_deletion;
631 struct frame *sf = SELECTED_FRAME ();
633 /* If FRAME is a switch-frame event, extract the frame we should
634 switch to. */
635 if (CONSP (frame)
636 && EQ (XCAR (frame), Qswitch_frame)
637 && CONSP (XCDR (frame)))
638 frame = XCAR (XCDR (frame));
640 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
641 a switch-frame event to arrive after a frame is no longer live,
642 especially when deleting the initial frame during startup. */
643 CHECK_FRAME (frame);
644 if (! FRAME_LIVE_P (XFRAME (frame)))
645 return Qnil;
647 if (sf == XFRAME (frame))
648 return frame;
650 /* This is too greedy; it causes inappropriate focus redirection
651 that's hard to get rid of. */
652 #if 0
653 /* If a frame's focus has been redirected toward the currently
654 selected frame, we should change the redirection to point to the
655 newly selected frame. This means that if the focus is redirected
656 from a minibufferless frame to a surrogate minibuffer frame, we
657 can use `other-window' to switch between all the frames using
658 that minibuffer frame, and the focus redirection will follow us
659 around. */
660 if (track)
662 Lisp_Object tail;
664 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
666 Lisp_Object focus;
668 if (!FRAMEP (XCAR (tail)))
669 abort ();
671 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
673 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
674 Fredirect_frame_focus (XCAR (tail), frame);
677 #else /* ! 0 */
678 /* Instead, apply it only to the frame we're pointing to. */
679 #ifdef HAVE_WINDOW_SYSTEM
680 if (track && FRAME_WINDOW_P (XFRAME (frame)))
682 Lisp_Object focus, xfocus;
684 xfocus = x_get_focus_frame (XFRAME (frame));
685 if (FRAMEP (xfocus))
687 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
688 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
689 Fredirect_frame_focus (xfocus, frame);
692 #endif /* HAVE_X_WINDOWS */
693 #endif /* ! 0 */
695 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
696 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
698 selected_frame = frame;
699 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
700 last_nonminibuf_frame = XFRAME (selected_frame);
702 Fselect_window (XFRAME (frame)->selected_window, Qnil);
704 #ifndef WINDOWSNT
705 /* Make sure to switch the tty color mode to that of the newly
706 selected frame. */
707 sf = SELECTED_FRAME ();
708 if (FRAME_TERMCAP_P (sf))
710 Lisp_Object color_mode_spec, color_mode;
712 color_mode_spec = assq_no_quit (Qtty_color_mode, sf->param_alist);
713 if (CONSP (color_mode_spec))
714 color_mode = XCDR (color_mode_spec);
715 else
716 color_mode = make_number (0);
717 set_tty_color_mode (sf, color_mode);
719 #endif /* !WINDOWSNT */
721 /* We want to make sure that the next event generates a frame-switch
722 event to the appropriate frame. This seems kludgy to me, but
723 before you take it out, make sure that evaluating something like
724 (select-window (frame-root-window (new-frame))) doesn't end up
725 with your typing being interpreted in the new frame instead of
726 the one you're actually typing in. */
727 internal_last_event_frame = Qnil;
729 return frame;
732 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 1, "e",
733 doc: /* Select the frame FRAME.
734 Subsequent editing commands apply to its selected window.
735 The selection of FRAME lasts until the next time the user does
736 something to select a different frame, or until the next time this
737 function is called. If you are using a window system, the previously
738 selected frame may be restored as the selected frame after return to
739 the command loop, because it still may have the window system's input
740 focus. On a text-only terminal, the next redisplay will display FRAME.
742 This function returns FRAME, or nil if FRAME has been deleted. */)
743 (frame)
744 Lisp_Object frame;
746 return do_switch_frame (frame, 1, 0);
750 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
751 doc: /* Handle a switch-frame event EVENT.
752 Switch-frame events are usually bound to this function.
753 A switch-frame event tells Emacs that the window manager has requested
754 that the user's events be directed to the frame mentioned in the event.
755 This function selects the selected window of the frame of EVENT.
757 If EVENT is frame object, handle it as if it were a switch-frame event
758 to that frame. */)
759 (event)
760 Lisp_Object event;
762 /* Preserve prefix arg that the command loop just cleared. */
763 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
764 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
765 return do_switch_frame (event, 0, 0);
768 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
769 doc: /* Return the frame that is now selected. */)
772 return selected_frame;
775 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
776 doc: /* Return the frame object that window WINDOW is on. */)
777 (window)
778 Lisp_Object window;
780 CHECK_LIVE_WINDOW (window);
781 return XWINDOW (window)->frame;
784 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
785 doc: /* Returns the topmost, leftmost window of FRAME.
786 If omitted, FRAME defaults to the currently selected frame. */)
787 (frame)
788 Lisp_Object frame;
790 Lisp_Object w;
792 if (NILP (frame))
793 w = SELECTED_FRAME ()->root_window;
794 else
796 CHECK_LIVE_FRAME (frame);
797 w = XFRAME (frame)->root_window;
799 while (NILP (XWINDOW (w)->buffer))
801 if (! NILP (XWINDOW (w)->hchild))
802 w = XWINDOW (w)->hchild;
803 else if (! NILP (XWINDOW (w)->vchild))
804 w = XWINDOW (w)->vchild;
805 else
806 abort ();
808 return w;
811 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
812 Sactive_minibuffer_window, 0, 0, 0,
813 doc: /* Return the currently active minibuffer window, or nil if none. */)
816 return minibuf_level ? minibuf_window : Qnil;
819 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
820 doc: /* Returns the root-window of FRAME.
821 If omitted, FRAME defaults to the currently selected frame. */)
822 (frame)
823 Lisp_Object frame;
825 Lisp_Object window;
827 if (NILP (frame))
828 window = SELECTED_FRAME ()->root_window;
829 else
831 CHECK_LIVE_FRAME (frame);
832 window = XFRAME (frame)->root_window;
835 return window;
838 DEFUN ("frame-selected-window", Fframe_selected_window,
839 Sframe_selected_window, 0, 1, 0,
840 doc: /* Return the selected window of frame object FRAME.
841 If omitted, FRAME defaults to the currently selected frame. */)
842 (frame)
843 Lisp_Object frame;
845 Lisp_Object window;
847 if (NILP (frame))
848 window = SELECTED_FRAME ()->selected_window;
849 else
851 CHECK_LIVE_FRAME (frame);
852 window = XFRAME (frame)->selected_window;
855 return window;
858 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
859 Sset_frame_selected_window, 2, 2, 0,
860 doc: /* Set the selected window of frame object FRAME to WINDOW.
861 Return WINDOW.
862 If FRAME is nil, the selected frame is used.
863 If FRAME is the selected frame, this makes WINDOW the selected window. */)
864 (frame, window)
865 Lisp_Object frame, window;
867 if (NILP (frame))
868 frame = selected_frame;
870 CHECK_LIVE_FRAME (frame);
871 CHECK_LIVE_WINDOW (window);
873 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
874 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
876 if (EQ (frame, selected_frame))
877 return Fselect_window (window, Qnil);
879 return XFRAME (frame)->selected_window = window;
882 DEFUN ("frame-list", Fframe_list, Sframe_list,
883 0, 0, 0,
884 doc: /* Return a list of all frames. */)
887 Lisp_Object frames;
888 frames = Fcopy_sequence (Vframe_list);
889 #ifdef HAVE_WINDOW_SYSTEM
890 if (FRAMEP (tip_frame))
891 frames = Fdelq (tip_frame, frames);
892 #endif
893 return frames;
896 /* Return the next frame in the frame list after FRAME.
897 If MINIBUF is nil, exclude minibuffer-only frames.
898 If MINIBUF is a window, include only its own frame
899 and any frame now using that window as the minibuffer.
900 If MINIBUF is `visible', include all visible frames.
901 If MINIBUF is 0, include all visible and iconified frames.
902 Otherwise, include all frames. */
904 static Lisp_Object
905 next_frame (frame, minibuf)
906 Lisp_Object frame;
907 Lisp_Object minibuf;
909 Lisp_Object tail;
910 int passed = 0;
912 /* There must always be at least one frame in Vframe_list. */
913 if (! CONSP (Vframe_list))
914 abort ();
916 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
917 forever. Forestall that. */
918 CHECK_LIVE_FRAME (frame);
920 while (1)
921 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
923 Lisp_Object f;
925 f = XCAR (tail);
927 if (passed
928 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
930 /* Decide whether this frame is eligible to be returned. */
932 /* If we've looped all the way around without finding any
933 eligible frames, return the original frame. */
934 if (EQ (f, frame))
935 return f;
937 /* Let minibuf decide if this frame is acceptable. */
938 if (NILP (minibuf))
940 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
941 return f;
943 else if (EQ (minibuf, Qvisible))
945 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
946 if (FRAME_VISIBLE_P (XFRAME (f)))
947 return f;
949 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
951 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
952 if (FRAME_VISIBLE_P (XFRAME (f))
953 || FRAME_ICONIFIED_P (XFRAME (f)))
954 return f;
956 else if (WINDOWP (minibuf))
958 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
959 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
960 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
961 FRAME_FOCUS_FRAME (XFRAME (f))))
962 return f;
964 else
965 return f;
968 if (EQ (frame, f))
969 passed++;
973 /* Return the previous frame in the frame list before FRAME.
974 If MINIBUF is nil, exclude minibuffer-only frames.
975 If MINIBUF is a window, include only its own frame
976 and any frame now using that window as the minibuffer.
977 If MINIBUF is `visible', include all visible frames.
978 If MINIBUF is 0, include all visible and iconified frames.
979 Otherwise, include all frames. */
981 static Lisp_Object
982 prev_frame (frame, minibuf)
983 Lisp_Object frame;
984 Lisp_Object minibuf;
986 Lisp_Object tail;
987 Lisp_Object prev;
989 /* There must always be at least one frame in Vframe_list. */
990 if (! CONSP (Vframe_list))
991 abort ();
993 prev = Qnil;
994 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
996 Lisp_Object f;
998 f = XCAR (tail);
999 if (!FRAMEP (f))
1000 abort ();
1002 if (EQ (frame, f) && !NILP (prev))
1003 return prev;
1005 if (FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1007 /* Decide whether this frame is eligible to be returned,
1008 according to minibuf. */
1009 if (NILP (minibuf))
1011 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1012 prev = f;
1014 else if (WINDOWP (minibuf))
1016 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1017 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1018 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1019 FRAME_FOCUS_FRAME (XFRAME (f))))
1020 prev = f;
1022 else if (EQ (minibuf, Qvisible))
1024 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1025 if (FRAME_VISIBLE_P (XFRAME (f)))
1026 prev = f;
1028 else if (XFASTINT (minibuf) == 0)
1030 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1031 if (FRAME_VISIBLE_P (XFRAME (f))
1032 || FRAME_ICONIFIED_P (XFRAME (f)))
1033 prev = f;
1035 else
1036 prev = f;
1040 /* We've scanned the entire list. */
1041 if (NILP (prev))
1042 /* We went through the whole frame list without finding a single
1043 acceptable frame. Return the original frame. */
1044 return frame;
1045 else
1046 /* There were no acceptable frames in the list before FRAME; otherwise,
1047 we would have returned directly from the loop. Since PREV is the last
1048 acceptable frame in the list, return it. */
1049 return prev;
1053 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1054 doc: /* Return the next frame in the frame list after FRAME.
1055 It considers only frames on the same terminal as FRAME.
1056 By default, skip minibuffer-only frames.
1057 If omitted, FRAME defaults to the selected frame.
1058 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1059 If MINIFRAME is a window, include only its own frame
1060 and any frame now using that window as the minibuffer.
1061 If MINIFRAME is `visible', include all visible frames.
1062 If MINIFRAME is 0, include all visible and iconified frames.
1063 Otherwise, include all frames. */)
1064 (frame, miniframe)
1065 Lisp_Object frame, miniframe;
1067 if (NILP (frame))
1068 frame = selected_frame;
1070 CHECK_LIVE_FRAME (frame);
1071 return next_frame (frame, miniframe);
1074 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1075 doc: /* Return the previous frame in the frame list before FRAME.
1076 It considers only frames on the same terminal as FRAME.
1077 By default, skip minibuffer-only frames.
1078 If omitted, FRAME defaults to the selected frame.
1079 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1080 If MINIFRAME is a window, include only its own frame
1081 and any frame now using that window as the minibuffer.
1082 If MINIFRAME is `visible', include all visible frames.
1083 If MINIFRAME is 0, include all visible and iconified frames.
1084 Otherwise, include all frames. */)
1085 (frame, miniframe)
1086 Lisp_Object frame, miniframe;
1088 if (NILP (frame))
1089 frame = selected_frame;
1090 CHECK_LIVE_FRAME (frame);
1091 return prev_frame (frame, miniframe);
1094 /* Return 1 if it is ok to delete frame F;
1095 0 if all frames aside from F are invisible.
1096 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1099 other_visible_frames (f)
1100 FRAME_PTR f;
1102 /* We know the selected frame is visible,
1103 so if F is some other frame, it can't be the sole visible one. */
1104 if (f == SELECTED_FRAME ())
1106 Lisp_Object frames;
1107 int count = 0;
1109 for (frames = Vframe_list;
1110 CONSP (frames);
1111 frames = XCDR (frames))
1113 Lisp_Object this;
1115 this = XCAR (frames);
1116 /* Verify that the frame's window still exists
1117 and we can still talk to it. And note any recent change
1118 in visibility. */
1119 #ifdef HAVE_WINDOW_SYSTEM
1120 if (FRAME_WINDOW_P (XFRAME (this)))
1122 x_sync (XFRAME (this));
1123 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1125 #endif
1127 if (FRAME_VISIBLE_P (XFRAME (this))
1128 || FRAME_ICONIFIED_P (XFRAME (this))
1129 /* Allow deleting the terminal frame when at least
1130 one X frame exists! */
1131 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1132 count++;
1134 return count > 1;
1136 return 1;
1139 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1140 doc: /* Delete FRAME, permanently eliminating it from use.
1141 If omitted, FRAME defaults to the selected frame.
1142 A frame may not be deleted if its minibuffer is used by other frames.
1143 Normally, you may not delete a frame if all other frames are invisible,
1144 but if the second optional argument FORCE is non-nil, you may do so.
1146 This function runs `delete-frame-functions' before actually deleting the
1147 frame, unless the frame is a tooltip.
1148 The functions are run with one arg, the frame to be deleted. */)
1149 (frame, force)
1150 Lisp_Object frame, force;
1152 struct frame *f;
1153 struct frame *sf = SELECTED_FRAME ();
1154 int minibuffer_selected;
1156 if (EQ (frame, Qnil))
1158 f = sf;
1159 XSETFRAME (frame, f);
1161 else
1163 CHECK_FRAME (frame);
1164 f = XFRAME (frame);
1167 if (! FRAME_LIVE_P (f))
1168 return Qnil;
1170 if (NILP (force) && !other_visible_frames (f)
1171 #ifdef MAC_OS8
1172 /* Terminal frame deleted before any other visible frames are
1173 created. */
1174 && strcmp (SDATA (f->name), "F1") != 0
1175 #endif
1177 error ("Attempt to delete the sole visible or iconified frame");
1179 #if 0
1180 /* This is a nice idea, but x_connection_closed needs to be able
1181 to delete the last frame, if it is gone. */
1182 if (NILP (XCDR (Vframe_list)))
1183 error ("Attempt to delete the only frame");
1184 #endif
1186 /* Does this frame have a minibuffer, and is it the surrogate
1187 minibuffer for any other frame? */
1188 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1190 Lisp_Object frames;
1192 for (frames = Vframe_list;
1193 CONSP (frames);
1194 frames = XCDR (frames))
1196 Lisp_Object this;
1197 this = XCAR (frames);
1199 if (! EQ (this, frame)
1200 && EQ (frame,
1201 WINDOW_FRAME (XWINDOW
1202 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1203 error ("Attempt to delete a surrogate minibuffer frame");
1207 /* Run `delete-frame-functions' unless frame is a tooltip. */
1208 if (!NILP (Vrun_hooks)
1209 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
1211 Lisp_Object args[2];
1212 args[0] = intern ("delete-frame-functions");
1213 args[1] = frame;
1214 Frun_hook_with_args (2, args);
1217 minibuffer_selected = EQ (minibuf_window, selected_window);
1219 /* Don't let the frame remain selected. */
1220 if (f == sf)
1222 Lisp_Object tail, frame1;
1224 /* Look for another visible frame on the same terminal. */
1225 frame1 = next_frame (frame, Qvisible);
1227 /* If there is none, find *some* other frame. */
1228 if (NILP (frame1) || EQ (frame1, frame))
1230 FOR_EACH_FRAME (tail, frame1)
1232 if (! EQ (frame, frame1))
1233 break;
1237 do_switch_frame (frame1, 0, 1);
1238 sf = SELECTED_FRAME ();
1241 /* Don't allow minibuf_window to remain on a deleted frame. */
1242 if (EQ (f->minibuffer_window, minibuf_window))
1244 Fset_window_buffer (sf->minibuffer_window,
1245 XWINDOW (minibuf_window)->buffer, Qnil);
1246 minibuf_window = sf->minibuffer_window;
1248 /* If the dying minibuffer window was selected,
1249 select the new one. */
1250 if (minibuffer_selected)
1251 Fselect_window (minibuf_window, Qnil);
1254 /* Don't let echo_area_window to remain on a deleted frame. */
1255 if (EQ (f->minibuffer_window, echo_area_window))
1256 echo_area_window = sf->minibuffer_window;
1258 /* Clear any X selections for this frame. */
1259 #ifdef HAVE_X_WINDOWS
1260 if (FRAME_X_P (f))
1261 x_clear_frame_selections (f);
1262 #endif
1263 #ifdef MAC_OS
1264 if (FRAME_MAC_P (f))
1265 x_clear_frame_selections (f);
1266 #endif
1268 /* Free glyphs.
1269 This function must be called before the window tree of the
1270 frame is deleted because windows contain dynamically allocated
1271 memory. */
1272 free_glyphs (f);
1274 /* Mark all the windows that used to be on FRAME as deleted, and then
1275 remove the reference to them. */
1276 delete_all_subwindows (XWINDOW (f->root_window));
1277 f->root_window = Qnil;
1279 Vframe_list = Fdelq (frame, Vframe_list);
1280 FRAME_SET_VISIBLE (f, 0);
1282 if (f->namebuf)
1283 xfree (f->namebuf);
1284 if (f->decode_mode_spec_buffer)
1285 xfree (f->decode_mode_spec_buffer);
1286 if (FRAME_INSERT_COST (f))
1287 xfree (FRAME_INSERT_COST (f));
1288 if (FRAME_DELETEN_COST (f))
1289 xfree (FRAME_DELETEN_COST (f));
1290 if (FRAME_INSERTN_COST (f))
1291 xfree (FRAME_INSERTN_COST (f));
1292 if (FRAME_DELETE_COST (f))
1293 xfree (FRAME_DELETE_COST (f));
1294 if (FRAME_MESSAGE_BUF (f))
1295 xfree (FRAME_MESSAGE_BUF (f));
1297 /* Since some events are handled at the interrupt level, we may get
1298 an event for f at any time; if we zero out the frame's display
1299 now, then we may trip up the event-handling code. Instead, we'll
1300 promise that the display of the frame must be valid until we have
1301 called the window-system-dependent frame destruction routine. */
1303 /* I think this should be done with a hook. */
1304 #ifdef HAVE_WINDOW_SYSTEM
1305 if (FRAME_WINDOW_P (f))
1306 x_destroy_window (f);
1307 #endif
1309 f->output_data.nothing = 0;
1311 /* If we've deleted the last_nonminibuf_frame, then try to find
1312 another one. */
1313 if (f == last_nonminibuf_frame)
1315 Lisp_Object frames;
1317 last_nonminibuf_frame = 0;
1319 for (frames = Vframe_list;
1320 CONSP (frames);
1321 frames = XCDR (frames))
1323 f = XFRAME (XCAR (frames));
1324 if (!FRAME_MINIBUF_ONLY_P (f))
1326 last_nonminibuf_frame = f;
1327 break;
1332 /* If there's no other frame on the same kboard, get out of
1333 single-kboard state if we're in it for this kboard. */
1335 Lisp_Object frames;
1336 /* Some frame we found on the same kboard, or nil if there are none. */
1337 Lisp_Object frame_on_same_kboard;
1339 frame_on_same_kboard = Qnil;
1341 for (frames = Vframe_list;
1342 CONSP (frames);
1343 frames = XCDR (frames))
1345 Lisp_Object this;
1346 struct frame *f1;
1348 this = XCAR (frames);
1349 if (!FRAMEP (this))
1350 abort ();
1351 f1 = XFRAME (this);
1353 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1354 frame_on_same_kboard = this;
1357 if (NILP (frame_on_same_kboard))
1358 not_single_kboard_state (FRAME_KBOARD (f));
1362 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1363 find another one. Prefer minibuffer-only frames, but also notice
1364 frames with other windows. */
1365 if (EQ (frame, FRAME_KBOARD (f)->Vdefault_minibuffer_frame))
1367 Lisp_Object frames;
1369 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1370 Lisp_Object frame_with_minibuf;
1371 /* Some frame we found on the same kboard, or nil if there are none. */
1372 Lisp_Object frame_on_same_kboard;
1374 frame_on_same_kboard = Qnil;
1375 frame_with_minibuf = Qnil;
1377 for (frames = Vframe_list;
1378 CONSP (frames);
1379 frames = XCDR (frames))
1381 Lisp_Object this;
1382 struct frame *f1;
1384 this = XCAR (frames);
1385 if (!FRAMEP (this))
1386 abort ();
1387 f1 = XFRAME (this);
1389 /* Consider only frames on the same kboard
1390 and only those with minibuffers. */
1391 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1)
1392 && FRAME_HAS_MINIBUF_P (f1))
1394 frame_with_minibuf = this;
1395 if (FRAME_MINIBUF_ONLY_P (f1))
1396 break;
1399 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1400 frame_on_same_kboard = this;
1403 if (!NILP (frame_on_same_kboard))
1405 /* We know that there must be some frame with a minibuffer out
1406 there. If this were not true, all of the frames present
1407 would have to be minibufferless, which implies that at some
1408 point their minibuffer frames must have been deleted, but
1409 that is prohibited at the top; you can't delete surrogate
1410 minibuffer frames. */
1411 if (NILP (frame_with_minibuf))
1412 abort ();
1414 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = frame_with_minibuf;
1416 else
1417 /* No frames left on this kboard--say no minibuffer either. */
1418 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
1421 /* Cause frame titles to update--necessary if we now have just one frame. */
1422 update_mode_lines = 1;
1424 return Qnil;
1427 /* Return mouse position in character cell units. */
1429 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1430 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1431 The position is given in character cells, where (0, 0) is the
1432 upper-left corner of the frame, X is the horizontal offset, and Y is
1433 the vertical offset.
1434 If Emacs is running on a mouseless terminal or hasn't been programmed
1435 to read the mouse position, it returns the selected frame for FRAME
1436 and nil for X and Y.
1437 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1438 passing the normal return value to that function as an argument,
1439 and returns whatever that function returns. */)
1442 FRAME_PTR f;
1443 Lisp_Object lispy_dummy;
1444 enum scroll_bar_part party_dummy;
1445 Lisp_Object x, y, retval;
1446 int col, row;
1447 unsigned long long_dummy;
1448 struct gcpro gcpro1;
1450 f = SELECTED_FRAME ();
1451 x = y = Qnil;
1453 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1454 /* It's okay for the hook to refrain from storing anything. */
1455 if (mouse_position_hook)
1456 (*mouse_position_hook) (&f, -1,
1457 &lispy_dummy, &party_dummy,
1458 &x, &y,
1459 &long_dummy);
1460 if (! NILP (x))
1462 col = XINT (x);
1463 row = XINT (y);
1464 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1465 XSETINT (x, col);
1466 XSETINT (y, row);
1468 #endif
1469 XSETFRAME (lispy_dummy, f);
1470 retval = Fcons (lispy_dummy, Fcons (x, y));
1471 GCPRO1 (retval);
1472 if (!NILP (Vmouse_position_function))
1473 retval = call1 (Vmouse_position_function, retval);
1474 RETURN_UNGCPRO (retval);
1477 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1478 Smouse_pixel_position, 0, 0, 0,
1479 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1480 The position is given in pixel units, where (0, 0) is the
1481 upper-left corner of the frame, X is the horizontal offset, and Y is
1482 the vertical offset.
1483 If Emacs is running on a mouseless terminal or hasn't been programmed
1484 to read the mouse position, it returns the selected frame for FRAME
1485 and nil for X and Y. */)
1488 FRAME_PTR f;
1489 Lisp_Object lispy_dummy;
1490 enum scroll_bar_part party_dummy;
1491 Lisp_Object x, y;
1492 unsigned long long_dummy;
1494 f = SELECTED_FRAME ();
1495 x = y = Qnil;
1497 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1498 /* It's okay for the hook to refrain from storing anything. */
1499 if (mouse_position_hook)
1500 (*mouse_position_hook) (&f, -1,
1501 &lispy_dummy, &party_dummy,
1502 &x, &y,
1503 &long_dummy);
1504 #endif
1505 XSETFRAME (lispy_dummy, f);
1506 return Fcons (lispy_dummy, Fcons (x, y));
1509 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1510 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1511 Coordinates are relative to the frame, not a window,
1512 so the coordinates of the top left character in the frame
1513 may be nonzero due to left-hand scroll bars or the menu bar.
1515 The position is given in character cells, where (0, 0) is the
1516 upper-left corner of the frame, X is the horizontal offset, and Y is
1517 the vertical offset.
1519 This function is a no-op for an X frame that is not visible.
1520 If you have just created a frame, you must wait for it to become visible
1521 before calling this function on it, like this.
1522 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1523 (frame, x, y)
1524 Lisp_Object frame, x, y;
1526 CHECK_LIVE_FRAME (frame);
1527 CHECK_NUMBER (x);
1528 CHECK_NUMBER (y);
1530 /* I think this should be done with a hook. */
1531 #ifdef HAVE_WINDOW_SYSTEM
1532 if (FRAME_WINDOW_P (XFRAME (frame)))
1533 /* Warping the mouse will cause enternotify and focus events. */
1534 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1535 #else
1536 #if defined (MSDOS) && defined (HAVE_MOUSE)
1537 if (FRAME_MSDOS_P (XFRAME (frame)))
1539 Fselect_frame (frame);
1540 mouse_moveto (XINT (x), XINT (y));
1542 #else
1543 #ifdef HAVE_GPM
1545 Fselect_frame (frame);
1546 term_mouse_moveto (XINT (x), XINT (y));
1548 #endif
1549 #endif
1550 #endif
1552 return Qnil;
1555 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1556 Sset_mouse_pixel_position, 3, 3, 0,
1557 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1558 The position is given in pixels, where (0, 0) is the upper-left corner
1559 of the frame, X is the horizontal offset, and Y is the vertical offset.
1561 Note, this is a no-op for an X frame that is not visible.
1562 If you have just created a frame, you must wait for it to become visible
1563 before calling this function on it, like this.
1564 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1565 (frame, x, y)
1566 Lisp_Object frame, x, y;
1568 CHECK_LIVE_FRAME (frame);
1569 CHECK_NUMBER (x);
1570 CHECK_NUMBER (y);
1572 /* I think this should be done with a hook. */
1573 #ifdef HAVE_WINDOW_SYSTEM
1574 if (FRAME_WINDOW_P (XFRAME (frame)))
1575 /* Warping the mouse will cause enternotify and focus events. */
1576 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1577 #else
1578 #if defined (MSDOS) && defined (HAVE_MOUSE)
1579 if (FRAME_MSDOS_P (XFRAME (frame)))
1581 Fselect_frame (frame);
1582 mouse_moveto (XINT (x), XINT (y));
1584 #else
1585 #ifdef HAVE_GPM
1587 Fselect_frame (frame);
1588 term_mouse_moveto (XINT (x), XINT (y));
1590 #endif
1591 #endif
1592 #endif
1594 return Qnil;
1597 static void make_frame_visible_1 P_ ((Lisp_Object));
1599 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1600 0, 1, "",
1601 doc: /* Make the frame FRAME visible (assuming it is an X window).
1602 If omitted, FRAME defaults to the currently selected frame. */)
1603 (frame)
1604 Lisp_Object frame;
1606 if (NILP (frame))
1607 frame = selected_frame;
1609 CHECK_LIVE_FRAME (frame);
1611 /* I think this should be done with a hook. */
1612 #ifdef HAVE_WINDOW_SYSTEM
1613 if (FRAME_WINDOW_P (XFRAME (frame)))
1615 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1616 x_make_frame_visible (XFRAME (frame));
1618 #endif
1620 make_frame_visible_1 (XFRAME (frame)->root_window);
1622 /* Make menu bar update for the Buffers and Frames menus. */
1623 windows_or_buffers_changed++;
1625 return frame;
1628 /* Update the display_time slot of the buffers shown in WINDOW
1629 and all its descendents. */
1631 static void
1632 make_frame_visible_1 (window)
1633 Lisp_Object window;
1635 struct window *w;
1637 for (;!NILP (window); window = w->next)
1639 w = XWINDOW (window);
1641 if (!NILP (w->buffer))
1642 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1644 if (!NILP (w->vchild))
1645 make_frame_visible_1 (w->vchild);
1646 if (!NILP (w->hchild))
1647 make_frame_visible_1 (w->hchild);
1651 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1652 0, 2, "",
1653 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1654 If omitted, FRAME defaults to the currently selected frame.
1655 Normally you may not make FRAME invisible if all other frames are invisible,
1656 but if the second optional argument FORCE is non-nil, you may do so. */)
1657 (frame, force)
1658 Lisp_Object frame, force;
1660 if (NILP (frame))
1661 frame = selected_frame;
1663 CHECK_LIVE_FRAME (frame);
1665 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1666 error ("Attempt to make invisible the sole visible or iconified frame");
1668 #if 0 /* This isn't logically necessary, and it can do GC. */
1669 /* Don't let the frame remain selected. */
1670 if (EQ (frame, selected_frame))
1671 do_switch_frame (next_frame (frame, Qt), 0, 0)
1672 #endif
1674 /* Don't allow minibuf_window to remain on a deleted frame. */
1675 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1677 struct frame *sf = XFRAME (selected_frame);
1678 Fset_window_buffer (sf->minibuffer_window,
1679 XWINDOW (minibuf_window)->buffer, Qnil);
1680 minibuf_window = sf->minibuffer_window;
1683 /* I think this should be done with a hook. */
1684 #ifdef HAVE_WINDOW_SYSTEM
1685 if (FRAME_WINDOW_P (XFRAME (frame)))
1686 x_make_frame_invisible (XFRAME (frame));
1687 #endif
1689 /* Make menu bar update for the Buffers and Frames menus. */
1690 windows_or_buffers_changed++;
1692 return Qnil;
1695 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1696 0, 1, "",
1697 doc: /* Make the frame FRAME into an icon.
1698 If omitted, FRAME defaults to the currently selected frame. */)
1699 (frame)
1700 Lisp_Object frame;
1702 if (NILP (frame))
1703 frame = selected_frame;
1705 CHECK_LIVE_FRAME (frame);
1707 #if 0 /* This isn't logically necessary, and it can do GC. */
1708 /* Don't let the frame remain selected. */
1709 if (EQ (frame, selected_frame))
1710 Fhandle_switch_frame (next_frame (frame, Qt));
1711 #endif
1713 /* Don't allow minibuf_window to remain on a deleted frame. */
1714 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1716 struct frame *sf = XFRAME (selected_frame);
1717 Fset_window_buffer (sf->minibuffer_window,
1718 XWINDOW (minibuf_window)->buffer, Qnil);
1719 minibuf_window = sf->minibuffer_window;
1722 /* I think this should be done with a hook. */
1723 #ifdef HAVE_WINDOW_SYSTEM
1724 if (FRAME_WINDOW_P (XFRAME (frame)))
1725 x_iconify_frame (XFRAME (frame));
1726 #endif
1728 /* Make menu bar update for the Buffers and Frames menus. */
1729 windows_or_buffers_changed++;
1731 return Qnil;
1734 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1735 1, 1, 0,
1736 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1737 A frame that is not \"visible\" is not updated and, if it works through
1738 a window system, it may not show at all.
1739 Return the symbol `icon' if frame is visible only as an icon.
1741 On a text-only terminal, all frames are considered visible, whether
1742 they are currently being displayed or not, and this function returns t
1743 for all frames. */)
1744 (frame)
1745 Lisp_Object frame;
1747 CHECK_LIVE_FRAME (frame);
1749 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1751 if (FRAME_VISIBLE_P (XFRAME (frame)))
1752 return Qt;
1753 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1754 return Qicon;
1755 return Qnil;
1758 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1759 0, 0, 0,
1760 doc: /* Return a list of all frames now \"visible\" (being updated). */)
1763 Lisp_Object tail, frame;
1764 struct frame *f;
1765 Lisp_Object value;
1767 value = Qnil;
1768 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1770 frame = XCAR (tail);
1771 if (!FRAMEP (frame))
1772 continue;
1773 f = XFRAME (frame);
1774 if (FRAME_VISIBLE_P (f))
1775 value = Fcons (frame, value);
1777 return value;
1781 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
1782 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
1783 If FRAME is invisible or iconified, make it visible.
1784 If you don't specify a frame, the selected frame is used.
1785 If Emacs is displaying on an ordinary terminal or some other device which
1786 doesn't support multiple overlapping frames, this function does nothing. */)
1787 (frame)
1788 Lisp_Object frame;
1790 if (NILP (frame))
1791 frame = selected_frame;
1793 CHECK_LIVE_FRAME (frame);
1795 /* Do like the documentation says. */
1796 Fmake_frame_visible (frame);
1798 if (frame_raise_lower_hook)
1799 (*frame_raise_lower_hook) (XFRAME (frame), 1);
1801 return Qnil;
1804 /* Should we have a corresponding function called Flower_Power? */
1805 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
1806 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
1807 If you don't specify a frame, the selected frame is used.
1808 If Emacs is displaying on an ordinary terminal or some other device which
1809 doesn't support multiple overlapping frames, this function does nothing. */)
1810 (frame)
1811 Lisp_Object frame;
1813 if (NILP (frame))
1814 frame = selected_frame;
1816 CHECK_LIVE_FRAME (frame);
1818 if (frame_raise_lower_hook)
1819 (*frame_raise_lower_hook) (XFRAME (frame), 0);
1821 return Qnil;
1825 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
1826 1, 2, 0,
1827 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
1828 In other words, switch-frame events caused by events in FRAME will
1829 request a switch to FOCUS-FRAME, and `last-event-frame' will be
1830 FOCUS-FRAME after reading an event typed at FRAME.
1832 If FOCUS-FRAME is omitted or nil, any existing redirection is
1833 cancelled, and the frame again receives its own keystrokes.
1835 Focus redirection is useful for temporarily redirecting keystrokes to
1836 a surrogate minibuffer frame when a frame doesn't have its own
1837 minibuffer window.
1839 A frame's focus redirection can be changed by `select-frame'. If frame
1840 FOO is selected, and then a different frame BAR is selected, any
1841 frames redirecting their focus to FOO are shifted to redirect their
1842 focus to BAR. This allows focus redirection to work properly when the
1843 user switches from one frame to another using `select-window'.
1845 This means that a frame whose focus is redirected to itself is treated
1846 differently from a frame whose focus is redirected to nil; the former
1847 is affected by `select-frame', while the latter is not.
1849 The redirection lasts until `redirect-frame-focus' is called to change it. */)
1850 (frame, focus_frame)
1851 Lisp_Object frame, focus_frame;
1853 /* Note that we don't check for a live frame here. It's reasonable
1854 to redirect the focus of a frame you're about to delete, if you
1855 know what other frame should receive those keystrokes. */
1856 CHECK_FRAME (frame);
1858 if (! NILP (focus_frame))
1859 CHECK_LIVE_FRAME (focus_frame);
1861 XFRAME (frame)->focus_frame = focus_frame;
1863 if (frame_rehighlight_hook)
1864 (*frame_rehighlight_hook) (XFRAME (frame));
1866 return Qnil;
1870 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
1871 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
1872 This returns nil if FRAME's focus is not redirected.
1873 See `redirect-frame-focus'. */)
1874 (frame)
1875 Lisp_Object frame;
1877 CHECK_LIVE_FRAME (frame);
1879 return FRAME_FOCUS_FRAME (XFRAME (frame));
1884 /* Return the value of frame parameter PROP in frame FRAME. */
1886 Lisp_Object
1887 get_frame_param (frame, prop)
1888 register struct frame *frame;
1889 Lisp_Object prop;
1891 register Lisp_Object tem;
1893 tem = Fassq (prop, frame->param_alist);
1894 if (EQ (tem, Qnil))
1895 return tem;
1896 return Fcdr (tem);
1899 /* Return the buffer-predicate of the selected frame. */
1901 Lisp_Object
1902 frame_buffer_predicate (frame)
1903 Lisp_Object frame;
1905 return XFRAME (frame)->buffer_predicate;
1908 /* Return the buffer-list of the selected frame. */
1910 Lisp_Object
1911 frame_buffer_list (frame)
1912 Lisp_Object frame;
1914 return XFRAME (frame)->buffer_list;
1917 /* Set the buffer-list of the selected frame. */
1919 void
1920 set_frame_buffer_list (frame, list)
1921 Lisp_Object frame, list;
1923 XFRAME (frame)->buffer_list = list;
1926 /* Discard BUFFER from the buffer-list of each frame. */
1928 void
1929 frames_discard_buffer (buffer)
1930 Lisp_Object buffer;
1932 Lisp_Object frame, tail;
1934 FOR_EACH_FRAME (tail, frame)
1936 XFRAME (frame)->buffer_list
1937 = Fdelq (buffer, XFRAME (frame)->buffer_list);
1941 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
1942 If the alist already has an element for PROP, we change it. */
1944 void
1945 store_in_alist (alistptr, prop, val)
1946 Lisp_Object *alistptr, val;
1947 Lisp_Object prop;
1949 register Lisp_Object tem;
1951 tem = Fassq (prop, *alistptr);
1952 if (EQ (tem, Qnil))
1953 *alistptr = Fcons (Fcons (prop, val), *alistptr);
1954 else
1955 Fsetcdr (tem, val);
1958 static int
1959 frame_name_fnn_p (str, len)
1960 char *str;
1961 int len;
1963 if (len > 1 && str[0] == 'F')
1965 char *end_ptr;
1967 strtol (str + 1, &end_ptr, 10);
1969 if (end_ptr == str + len)
1970 return 1;
1972 return 0;
1975 /* Set the name of the terminal frame. Also used by MSDOS frames.
1976 Modeled after x_set_name which is used for WINDOW frames. */
1978 static void
1979 set_term_frame_name (f, name)
1980 struct frame *f;
1981 Lisp_Object name;
1983 f->explicit_name = ! NILP (name);
1985 /* If NAME is nil, set the name to F<num>. */
1986 if (NILP (name))
1988 char namebuf[20];
1990 /* Check for no change needed in this very common case
1991 before we do any consing. */
1992 if (frame_name_fnn_p (SDATA (f->name),
1993 SBYTES (f->name)))
1994 return;
1996 terminal_frame_count++;
1997 sprintf (namebuf, "F%d", terminal_frame_count);
1998 name = build_string (namebuf);
2000 else
2002 CHECK_STRING (name);
2004 /* Don't change the name if it's already NAME. */
2005 if (! NILP (Fstring_equal (name, f->name)))
2006 return;
2008 /* Don't allow the user to set the frame name to F<num>, so it
2009 doesn't clash with the names we generate for terminal frames. */
2010 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
2011 error ("Frame names of the form F<num> are usurped by Emacs");
2014 f->name = name;
2015 update_mode_lines = 1;
2018 void
2019 store_frame_param (f, prop, val)
2020 struct frame *f;
2021 Lisp_Object prop, val;
2023 register Lisp_Object old_alist_elt;
2025 /* The buffer-alist parameter is stored in a special place and is
2026 not in the alist. */
2027 if (EQ (prop, Qbuffer_list))
2029 f->buffer_list = val;
2030 return;
2033 /* If PROP is a symbol which is supposed to have frame-local values,
2034 and it is set up based on this frame, switch to the global
2035 binding. That way, we can create or alter the frame-local binding
2036 without messing up the symbol's status. */
2037 if (SYMBOLP (prop))
2039 Lisp_Object valcontents;
2040 valcontents = SYMBOL_VALUE (prop);
2041 if ((BUFFER_LOCAL_VALUEP (valcontents)
2042 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
2043 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2044 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2045 swap_in_global_binding (prop);
2048 #ifndef WINDOWSNT
2049 /* The tty color mode needs to be set before the frame's parameter
2050 alist is updated with the new value, because set_tty_color_mode
2051 wants to look at the old mode. */
2052 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode))
2053 set_tty_color_mode (f, val);
2054 #endif
2056 /* Update the frame parameter alist. */
2057 old_alist_elt = Fassq (prop, f->param_alist);
2058 if (EQ (old_alist_elt, Qnil))
2059 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2060 else
2061 Fsetcdr (old_alist_elt, val);
2063 /* Update some other special parameters in their special places
2064 in addition to the alist. */
2066 if (EQ (prop, Qbuffer_predicate))
2067 f->buffer_predicate = val;
2069 if (! FRAME_WINDOW_P (f))
2071 if (EQ (prop, Qmenu_bar_lines))
2072 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2073 else if (EQ (prop, Qname))
2074 set_term_frame_name (f, val);
2077 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2079 if (! MINI_WINDOW_P (XWINDOW (val)))
2080 error ("Surrogate minibuffer windows must be minibuffer windows");
2082 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2083 && !EQ (val, f->minibuffer_window))
2084 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2086 /* Install the chosen minibuffer window, with proper buffer. */
2087 f->minibuffer_window = val;
2091 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2092 doc: /* Return the parameters-alist of frame FRAME.
2093 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2094 The meaningful PARMs depend on the kind of frame.
2095 If FRAME is omitted, return information on the currently selected frame. */)
2096 (frame)
2097 Lisp_Object frame;
2099 Lisp_Object alist;
2100 FRAME_PTR f;
2101 int height, width;
2102 struct gcpro gcpro1;
2104 if (NILP (frame))
2105 frame = selected_frame;
2107 CHECK_FRAME (frame);
2108 f = XFRAME (frame);
2110 if (!FRAME_LIVE_P (f))
2111 return Qnil;
2113 alist = Fcopy_alist (f->param_alist);
2114 GCPRO1 (alist);
2116 if (!FRAME_WINDOW_P (f))
2118 int fg = FRAME_FOREGROUND_PIXEL (f);
2119 int bg = FRAME_BACKGROUND_PIXEL (f);
2120 Lisp_Object elt;
2122 /* If the frame's parameter alist says the colors are
2123 unspecified and reversed, take the frame's background pixel
2124 for foreground and vice versa. */
2125 elt = Fassq (Qforeground_color, alist);
2126 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
2128 if (strncmp (SDATA (XCDR (elt)),
2129 unspecified_bg,
2130 SCHARS (XCDR (elt))) == 0)
2131 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2132 else if (strncmp (SDATA (XCDR (elt)),
2133 unspecified_fg,
2134 SCHARS (XCDR (elt))) == 0)
2135 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2137 else
2138 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2139 elt = Fassq (Qbackground_color, alist);
2140 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
2142 if (strncmp (SDATA (XCDR (elt)),
2143 unspecified_fg,
2144 SCHARS (XCDR (elt))) == 0)
2145 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2146 else if (strncmp (SDATA (XCDR (elt)),
2147 unspecified_bg,
2148 SCHARS (XCDR (elt))) == 0)
2149 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2151 else
2152 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2153 store_in_alist (&alist, intern ("font"),
2154 build_string (FRAME_MSDOS_P (f)
2155 ? "ms-dos"
2156 : FRAME_W32_P (f) ? "w32term"
2157 :"tty"));
2159 store_in_alist (&alist, Qname, f->name);
2160 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2161 store_in_alist (&alist, Qheight, make_number (height));
2162 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2163 store_in_alist (&alist, Qwidth, make_number (width));
2164 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2165 store_in_alist (&alist, Qminibuffer,
2166 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2167 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2168 : FRAME_MINIBUF_WINDOW (f)));
2169 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2170 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2172 /* I think this should be done with a hook. */
2173 #ifdef HAVE_WINDOW_SYSTEM
2174 if (FRAME_WINDOW_P (f))
2175 x_report_frame_params (f, &alist);
2176 else
2177 #endif
2179 /* This ought to be correct in f->param_alist for an X frame. */
2180 Lisp_Object lines;
2181 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2182 store_in_alist (&alist, Qmenu_bar_lines, lines);
2185 UNGCPRO;
2186 return alist;
2190 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2191 doc: /* Return FRAME's value for parameter PARAMETER.
2192 If FRAME is nil, describe the currently selected frame. */)
2193 (frame, parameter)
2194 Lisp_Object frame, parameter;
2196 struct frame *f;
2197 Lisp_Object value;
2199 if (NILP (frame))
2200 frame = selected_frame;
2201 else
2202 CHECK_FRAME (frame);
2203 CHECK_SYMBOL (parameter);
2205 f = XFRAME (frame);
2206 value = Qnil;
2208 if (FRAME_LIVE_P (f))
2210 /* Avoid consing in frequent cases. */
2211 if (EQ (parameter, Qname))
2212 value = f->name;
2213 #ifdef HAVE_X_WINDOWS
2214 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2215 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2216 #endif /* HAVE_X_WINDOWS */
2217 else if (EQ (parameter, Qbackground_color)
2218 || EQ (parameter, Qforeground_color))
2220 value = Fassq (parameter, f->param_alist);
2221 if (CONSP (value))
2223 value = XCDR (value);
2224 /* Fframe_parameters puts the actual fg/bg color names,
2225 even if f->param_alist says otherwise. This is
2226 important when param_alist's notion of colors is
2227 "unspecified". We need to do the same here. */
2228 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2230 const char *color_name;
2231 EMACS_INT csz;
2233 if (EQ (parameter, Qbackground_color))
2235 color_name = SDATA (value);
2236 csz = SCHARS (value);
2237 if (strncmp (color_name, unspecified_bg, csz) == 0)
2238 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2239 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2240 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2242 else if (EQ (parameter, Qforeground_color))
2244 color_name = SDATA (value);
2245 csz = SCHARS (value);
2246 if (strncmp (color_name, unspecified_fg, csz) == 0)
2247 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2248 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2249 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2253 else
2254 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2256 else if (EQ (parameter, Qdisplay_type)
2257 || EQ (parameter, Qbackground_mode))
2258 value = Fcdr (Fassq (parameter, f->param_alist));
2259 else
2260 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2263 return value;
2267 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2268 Smodify_frame_parameters, 2, 2, 0,
2269 doc: /* Modify the parameters of frame FRAME according to ALIST.
2270 If FRAME is nil, it defaults to the selected frame.
2271 ALIST is an alist of parameters to change and their new values.
2272 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2273 The meaningful PARMs depend on the kind of frame.
2274 Undefined PARMs are ignored, but stored in the frame's parameter list
2275 so that `frame-parameters' will return them.
2277 The value of frame parameter FOO can also be accessed
2278 as a frame-local binding for the variable FOO, if you have
2279 enabled such bindings for that variable with `make-variable-frame-local'. */)
2280 (frame, alist)
2281 Lisp_Object frame, alist;
2283 FRAME_PTR f;
2284 register Lisp_Object tail, prop, val;
2286 if (EQ (frame, Qnil))
2287 frame = selected_frame;
2288 CHECK_LIVE_FRAME (frame);
2289 f = XFRAME (frame);
2291 /* I think this should be done with a hook. */
2292 #ifdef HAVE_WINDOW_SYSTEM
2293 if (FRAME_WINDOW_P (f))
2294 x_set_frame_parameters (f, alist);
2295 else
2296 #endif
2297 #ifdef MSDOS
2298 if (FRAME_MSDOS_P (f))
2299 IT_set_frame_parameters (f, alist);
2300 else
2301 #endif
2304 int length = XINT (Flength (alist));
2305 int i;
2306 Lisp_Object *parms
2307 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2308 Lisp_Object *values
2309 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2311 /* Extract parm names and values into those vectors. */
2313 i = 0;
2314 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2316 Lisp_Object elt;
2318 elt = Fcar (tail);
2319 parms[i] = Fcar (elt);
2320 values[i] = Fcdr (elt);
2321 i++;
2324 /* Now process them in reverse of specified order. */
2325 for (i--; i >= 0; i--)
2327 prop = parms[i];
2328 val = values[i];
2329 store_frame_param (f, prop, val);
2331 /* Changing the background color might change the background
2332 mode, so that we have to load new defface specs.
2333 Call frame-set-background-mode to do that. */
2334 if (EQ (prop, Qbackground_color))
2335 call1 (Qframe_set_background_mode, frame);
2339 return Qnil;
2342 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2343 0, 1, 0,
2344 doc: /* Height in pixels of a line in the font in frame FRAME.
2345 If FRAME is omitted, the selected frame is used.
2346 For a terminal frame, the value is always 1. */)
2347 (frame)
2348 Lisp_Object frame;
2350 struct frame *f;
2352 if (NILP (frame))
2353 frame = selected_frame;
2354 CHECK_FRAME (frame);
2355 f = XFRAME (frame);
2357 #ifdef HAVE_WINDOW_SYSTEM
2358 if (FRAME_WINDOW_P (f))
2359 return make_number (x_char_height (f));
2360 else
2361 #endif
2362 return make_number (1);
2366 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2367 0, 1, 0,
2368 doc: /* Width in pixels of characters in the font in frame FRAME.
2369 If FRAME is omitted, the selected frame is used.
2370 On a graphical screen, the width is the standard width of the default font.
2371 For a terminal screen, the value is always 1. */)
2372 (frame)
2373 Lisp_Object frame;
2375 struct frame *f;
2377 if (NILP (frame))
2378 frame = selected_frame;
2379 CHECK_FRAME (frame);
2380 f = XFRAME (frame);
2382 #ifdef HAVE_WINDOW_SYSTEM
2383 if (FRAME_WINDOW_P (f))
2384 return make_number (x_char_width (f));
2385 else
2386 #endif
2387 return make_number (1);
2390 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2391 Sframe_pixel_height, 0, 1, 0,
2392 doc: /* Return a FRAME's height in pixels.
2393 This counts only the height available for text lines,
2394 not menu bars on window-system Emacs frames.
2395 For a terminal frame, the result really gives the height in characters.
2396 If FRAME is omitted, the selected frame is used. */)
2397 (frame)
2398 Lisp_Object frame;
2400 struct frame *f;
2402 if (NILP (frame))
2403 frame = selected_frame;
2404 CHECK_FRAME (frame);
2405 f = XFRAME (frame);
2407 #ifdef HAVE_WINDOW_SYSTEM
2408 if (FRAME_WINDOW_P (f))
2409 return make_number (x_pixel_height (f));
2410 else
2411 #endif
2412 return make_number (FRAME_LINES (f));
2415 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2416 Sframe_pixel_width, 0, 1, 0,
2417 doc: /* Return FRAME's width in pixels.
2418 For a terminal frame, the result really gives the width in characters.
2419 If FRAME is omitted, the selected frame is used. */)
2420 (frame)
2421 Lisp_Object frame;
2423 struct frame *f;
2425 if (NILP (frame))
2426 frame = selected_frame;
2427 CHECK_FRAME (frame);
2428 f = XFRAME (frame);
2430 #ifdef HAVE_WINDOW_SYSTEM
2431 if (FRAME_WINDOW_P (f))
2432 return make_number (x_pixel_width (f));
2433 else
2434 #endif
2435 return make_number (FRAME_COLS (f));
2438 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2439 doc: /* Specify that the frame FRAME has LINES lines.
2440 Optional third arg non-nil means that redisplay should use LINES lines
2441 but that the idea of the actual height of the frame should not be changed. */)
2442 (frame, lines, pretend)
2443 Lisp_Object frame, lines, pretend;
2445 register struct frame *f;
2447 CHECK_NUMBER (lines);
2448 if (NILP (frame))
2449 frame = selected_frame;
2450 CHECK_LIVE_FRAME (frame);
2451 f = XFRAME (frame);
2453 /* I think this should be done with a hook. */
2454 #ifdef HAVE_WINDOW_SYSTEM
2455 if (FRAME_WINDOW_P (f))
2457 if (XINT (lines) != FRAME_LINES (f))
2458 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2459 do_pending_window_change (0);
2461 else
2462 #endif
2463 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2464 return Qnil;
2467 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2468 doc: /* Specify that the frame FRAME has COLS columns.
2469 Optional third arg non-nil means that redisplay should use COLS columns
2470 but that the idea of the actual width of the frame should not be changed. */)
2471 (frame, cols, pretend)
2472 Lisp_Object frame, cols, pretend;
2474 register struct frame *f;
2475 CHECK_NUMBER (cols);
2476 if (NILP (frame))
2477 frame = selected_frame;
2478 CHECK_LIVE_FRAME (frame);
2479 f = XFRAME (frame);
2481 /* I think this should be done with a hook. */
2482 #ifdef HAVE_WINDOW_SYSTEM
2483 if (FRAME_WINDOW_P (f))
2485 if (XINT (cols) != FRAME_COLS (f))
2486 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2487 do_pending_window_change (0);
2489 else
2490 #endif
2491 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2492 return Qnil;
2495 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2496 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2497 (frame, cols, rows)
2498 Lisp_Object frame, cols, rows;
2500 register struct frame *f;
2502 CHECK_LIVE_FRAME (frame);
2503 CHECK_NUMBER (cols);
2504 CHECK_NUMBER (rows);
2505 f = XFRAME (frame);
2507 /* I think this should be done with a hook. */
2508 #ifdef HAVE_WINDOW_SYSTEM
2509 if (FRAME_WINDOW_P (f))
2511 if (XINT (rows) != FRAME_LINES (f)
2512 || XINT (cols) != FRAME_COLS (f)
2513 || f->new_text_lines || f->new_text_cols)
2514 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2515 do_pending_window_change (0);
2517 else
2518 #endif
2519 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2521 return Qnil;
2524 DEFUN ("set-frame-position", Fset_frame_position,
2525 Sset_frame_position, 3, 3, 0,
2526 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2527 This is actually the position of the upper left corner of the frame.
2528 Negative values for XOFFSET or YOFFSET are interpreted relative to
2529 the rightmost or bottommost possible position (that stays within the screen). */)
2530 (frame, xoffset, yoffset)
2531 Lisp_Object frame, xoffset, yoffset;
2533 register struct frame *f;
2535 CHECK_LIVE_FRAME (frame);
2536 CHECK_NUMBER (xoffset);
2537 CHECK_NUMBER (yoffset);
2538 f = XFRAME (frame);
2540 /* I think this should be done with a hook. */
2541 #ifdef HAVE_WINDOW_SYSTEM
2542 if (FRAME_WINDOW_P (f))
2543 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2544 #endif
2546 return Qt;
2550 /***********************************************************************
2551 Frame Parameters
2552 ***********************************************************************/
2554 /* Connect the frame-parameter names for X frames
2555 to the ways of passing the parameter values to the window system.
2557 The name of a parameter, as a Lisp symbol,
2558 has an `x-frame-parameter' property which is an integer in Lisp
2559 that is an index in this table. */
2561 struct frame_parm_table {
2562 char *name;
2563 Lisp_Object *variable;
2566 static struct frame_parm_table frame_parms[] =
2568 {"auto-raise", &Qauto_raise},
2569 {"auto-lower", &Qauto_lower},
2570 {"background-color", 0},
2571 {"border-color", &Qborder_color},
2572 {"border-width", &Qborder_width},
2573 {"cursor-color", &Qcursor_color},
2574 {"cursor-type", &Qcursor_type},
2575 {"font", 0},
2576 {"foreground-color", 0},
2577 {"icon-name", &Qicon_name},
2578 {"icon-type", &Qicon_type},
2579 {"internal-border-width", &Qinternal_border_width},
2580 {"menu-bar-lines", &Qmenu_bar_lines},
2581 {"mouse-color", &Qmouse_color},
2582 {"name", &Qname},
2583 {"scroll-bar-width", &Qscroll_bar_width},
2584 {"title", &Qtitle},
2585 {"unsplittable", &Qunsplittable},
2586 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2587 {"visibility", &Qvisibility},
2588 {"tool-bar-lines", &Qtool_bar_lines},
2589 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2590 {"scroll-bar-background", &Qscroll_bar_background},
2591 {"screen-gamma", &Qscreen_gamma},
2592 {"line-spacing", &Qline_spacing},
2593 {"left-fringe", &Qleft_fringe},
2594 {"right-fringe", &Qright_fringe},
2595 {"wait-for-wm", &Qwait_for_wm},
2596 {"fullscreen", &Qfullscreen},
2599 #ifdef HAVE_WINDOW_SYSTEM
2601 extern Lisp_Object Qbox;
2602 extern Lisp_Object Qtop;
2604 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2605 wanted positions of the WM window (not Emacs window).
2606 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2607 window (FRAME_X_WINDOW).
2610 void
2611 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2612 struct frame *f;
2613 int *width;
2614 int *height;
2615 int *top_pos;
2616 int *left_pos;
2618 int newwidth = FRAME_COLS (f);
2619 int newheight = FRAME_LINES (f);
2621 *top_pos = f->top_pos;
2622 *left_pos = f->left_pos;
2624 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2626 int ph;
2628 ph = FRAME_X_DISPLAY_INFO (f)->height;
2629 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2630 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2631 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2632 *top_pos = 0;
2635 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2637 int pw;
2639 pw = FRAME_X_DISPLAY_INFO (f)->width;
2640 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2641 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2642 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2643 *left_pos = 0;
2646 *width = newwidth;
2647 *height = newheight;
2651 /* Change the parameters of frame F as specified by ALIST.
2652 If a parameter is not specially recognized, do nothing special;
2653 otherwise call the `x_set_...' function for that parameter.
2654 Except for certain geometry properties, always call store_frame_param
2655 to store the new value in the parameter alist. */
2657 void
2658 x_set_frame_parameters (f, alist)
2659 FRAME_PTR f;
2660 Lisp_Object alist;
2662 Lisp_Object tail;
2664 /* If both of these parameters are present, it's more efficient to
2665 set them both at once. So we wait until we've looked at the
2666 entire list before we set them. */
2667 int width, height;
2669 /* Same here. */
2670 Lisp_Object left, top;
2672 /* Same with these. */
2673 Lisp_Object icon_left, icon_top;
2675 /* Record in these vectors all the parms specified. */
2676 Lisp_Object *parms;
2677 Lisp_Object *values;
2678 int i, p;
2679 int left_no_change = 0, top_no_change = 0;
2680 int icon_left_no_change = 0, icon_top_no_change = 0;
2681 int fullscreen_is_being_set = 0;
2683 struct gcpro gcpro1, gcpro2;
2685 i = 0;
2686 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2687 i++;
2689 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2690 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2692 /* Extract parm names and values into those vectors. */
2694 i = 0;
2695 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2697 Lisp_Object elt;
2699 elt = Fcar (tail);
2700 parms[i] = Fcar (elt);
2701 values[i] = Fcdr (elt);
2702 i++;
2704 /* TAIL and ALIST are not used again below here. */
2705 alist = tail = Qnil;
2707 GCPRO2 (*parms, *values);
2708 gcpro1.nvars = i;
2709 gcpro2.nvars = i;
2711 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2712 because their values appear in VALUES and strings are not valid. */
2713 top = left = Qunbound;
2714 icon_left = icon_top = Qunbound;
2716 /* Provide default values for HEIGHT and WIDTH. */
2717 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2718 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2720 /* Process foreground_color and background_color before anything else.
2721 They are independent of other properties, but other properties (e.g.,
2722 cursor_color) are dependent upon them. */
2723 /* Process default font as well, since fringe widths depends on it. */
2724 /* Also, process fullscreen, width and height depend upon that */
2725 for (p = 0; p < i; p++)
2727 Lisp_Object prop, val;
2729 prop = parms[p];
2730 val = values[p];
2731 if (EQ (prop, Qforeground_color)
2732 || EQ (prop, Qbackground_color)
2733 || EQ (prop, Qfont)
2734 || EQ (prop, Qfullscreen))
2736 register Lisp_Object param_index, old_value;
2737 int count = SPECPDL_INDEX ();
2739 old_value = get_frame_param (f, prop);
2740 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
2742 if (NILP (Fequal (val, old_value)))
2744 /* For :font attributes, the frame_parm_handler
2745 x_set_font calls `face-set-after-frame-default'.
2746 Unless we bind inhibit-face-set-after-frame-default
2747 here, this would reset the :font attribute that we
2748 just applied to the default value for new faces. */
2749 specbind (Qinhibit_face_set_after_frame_default, Qt);
2751 store_frame_param (f, prop, val);
2753 param_index = Fget (prop, Qx_frame_parameter);
2754 if (NATNUMP (param_index)
2755 && (XFASTINT (param_index)
2756 < sizeof (frame_parms)/sizeof (frame_parms[0]))
2757 && rif->frame_parm_handlers[XINT (param_index)])
2758 (*(rif->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
2760 unbind_to (count, Qnil);
2765 /* Now process them in reverse of specified order. */
2766 for (i--; i >= 0; i--)
2768 Lisp_Object prop, val;
2770 prop = parms[i];
2771 val = values[i];
2773 if (EQ (prop, Qwidth) && NUMBERP (val))
2774 width = XFASTINT (val);
2775 else if (EQ (prop, Qheight) && NUMBERP (val))
2776 height = XFASTINT (val);
2777 else if (EQ (prop, Qtop))
2778 top = val;
2779 else if (EQ (prop, Qleft))
2780 left = val;
2781 else if (EQ (prop, Qicon_top))
2782 icon_top = val;
2783 else if (EQ (prop, Qicon_left))
2784 icon_left = val;
2785 else if (EQ (prop, Qforeground_color)
2786 || EQ (prop, Qbackground_color)
2787 || EQ (prop, Qfont)
2788 || EQ (prop, Qfullscreen))
2789 /* Processed above. */
2790 continue;
2791 else
2793 register Lisp_Object param_index, old_value;
2795 old_value = get_frame_param (f, prop);
2797 store_frame_param (f, prop, val);
2799 param_index = Fget (prop, Qx_frame_parameter);
2800 if (NATNUMP (param_index)
2801 && (XFASTINT (param_index)
2802 < sizeof (frame_parms)/sizeof (frame_parms[0]))
2803 && rif->frame_parm_handlers[XINT (param_index)])
2804 (*(rif->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
2808 /* Don't die if just one of these was set. */
2809 if (EQ (left, Qunbound))
2811 left_no_change = 1;
2812 if (f->left_pos < 0)
2813 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
2814 else
2815 XSETINT (left, f->left_pos);
2817 if (EQ (top, Qunbound))
2819 top_no_change = 1;
2820 if (f->top_pos < 0)
2821 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
2822 else
2823 XSETINT (top, f->top_pos);
2826 /* If one of the icon positions was not set, preserve or default it. */
2827 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
2829 icon_left_no_change = 1;
2830 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
2831 if (NILP (icon_left))
2832 XSETINT (icon_left, 0);
2834 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
2836 icon_top_no_change = 1;
2837 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
2838 if (NILP (icon_top))
2839 XSETINT (icon_top, 0);
2842 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
2844 /* If the frame is visible already and the fullscreen parameter is
2845 being set, it is too late to set WM manager hints to specify
2846 size and position.
2847 Here we first get the width, height and position that applies to
2848 fullscreen. We then move the frame to the appropriate
2849 position. Resize of the frame is taken care of in the code after
2850 this if-statement. */
2851 int new_left, new_top;
2853 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
2854 if (new_top != f->top_pos || new_left != f->left_pos)
2855 x_set_offset (f, new_left, new_top, 1);
2858 /* Don't set these parameters unless they've been explicitly
2859 specified. The window might be mapped or resized while we're in
2860 this function, and we don't want to override that unless the lisp
2861 code has asked for it.
2863 Don't set these parameters unless they actually differ from the
2864 window's current parameters; the window may not actually exist
2865 yet. */
2867 Lisp_Object frame;
2869 check_frame_size (f, &height, &width);
2871 XSETFRAME (frame, f);
2873 if (width != FRAME_COLS (f)
2874 || height != FRAME_LINES (f)
2875 || f->new_text_lines || f->new_text_cols)
2876 Fset_frame_size (frame, make_number (width), make_number (height));
2878 if ((!NILP (left) || !NILP (top))
2879 && ! (left_no_change && top_no_change)
2880 && ! (NUMBERP (left) && XINT (left) == f->left_pos
2881 && NUMBERP (top) && XINT (top) == f->top_pos))
2883 int leftpos = 0;
2884 int toppos = 0;
2886 /* Record the signs. */
2887 f->size_hint_flags &= ~ (XNegative | YNegative);
2888 if (EQ (left, Qminus))
2889 f->size_hint_flags |= XNegative;
2890 else if (INTEGERP (left))
2892 leftpos = XINT (left);
2893 if (leftpos < 0)
2894 f->size_hint_flags |= XNegative;
2896 else if (CONSP (left) && EQ (XCAR (left), Qminus)
2897 && CONSP (XCDR (left))
2898 && INTEGERP (XCAR (XCDR (left))))
2900 leftpos = - XINT (XCAR (XCDR (left)));
2901 f->size_hint_flags |= XNegative;
2903 else if (CONSP (left) && EQ (XCAR (left), Qplus)
2904 && CONSP (XCDR (left))
2905 && INTEGERP (XCAR (XCDR (left))))
2907 leftpos = XINT (XCAR (XCDR (left)));
2910 if (EQ (top, Qminus))
2911 f->size_hint_flags |= YNegative;
2912 else if (INTEGERP (top))
2914 toppos = XINT (top);
2915 if (toppos < 0)
2916 f->size_hint_flags |= YNegative;
2918 else if (CONSP (top) && EQ (XCAR (top), Qminus)
2919 && CONSP (XCDR (top))
2920 && INTEGERP (XCAR (XCDR (top))))
2922 toppos = - XINT (XCAR (XCDR (top)));
2923 f->size_hint_flags |= YNegative;
2925 else if (CONSP (top) && EQ (XCAR (top), Qplus)
2926 && CONSP (XCDR (top))
2927 && INTEGERP (XCAR (XCDR (top))))
2929 toppos = XINT (XCAR (XCDR (top)));
2933 /* Store the numeric value of the position. */
2934 f->top_pos = toppos;
2935 f->left_pos = leftpos;
2937 f->win_gravity = NorthWestGravity;
2939 /* Actually set that position, and convert to absolute. */
2940 x_set_offset (f, leftpos, toppos, -1);
2943 if ((!NILP (icon_left) || !NILP (icon_top))
2944 && ! (icon_left_no_change && icon_top_no_change))
2945 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
2948 UNGCPRO;
2952 /* Insert a description of internally-recorded parameters of frame X
2953 into the parameter alist *ALISTPTR that is to be given to the user.
2954 Only parameters that are specific to the X window system
2955 and whose values are not correctly recorded in the frame's
2956 param_alist need to be considered here. */
2958 void
2959 x_report_frame_params (f, alistptr)
2960 struct frame *f;
2961 Lisp_Object *alistptr;
2963 char buf[16];
2964 Lisp_Object tem;
2966 /* Represent negative positions (off the top or left screen edge)
2967 in a way that Fmodify_frame_parameters will understand correctly. */
2968 XSETINT (tem, f->left_pos);
2969 if (f->left_pos >= 0)
2970 store_in_alist (alistptr, Qleft, tem);
2971 else
2972 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
2974 XSETINT (tem, f->top_pos);
2975 if (f->top_pos >= 0)
2976 store_in_alist (alistptr, Qtop, tem);
2977 else
2978 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
2980 store_in_alist (alistptr, Qborder_width,
2981 make_number (f->border_width));
2982 store_in_alist (alistptr, Qinternal_border_width,
2983 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
2984 store_in_alist (alistptr, Qleft_fringe,
2985 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
2986 store_in_alist (alistptr, Qright_fringe,
2987 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
2988 store_in_alist (alistptr, Qscroll_bar_width,
2989 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
2990 ? make_number (0)
2991 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
2992 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
2993 /* nil means "use default width"
2994 for non-toolkit scroll bar.
2995 ruler-mode.el depends on this. */
2996 : Qnil));
2997 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
2998 store_in_alist (alistptr, Qwindow_id,
2999 build_string (buf));
3000 #ifdef HAVE_X_WINDOWS
3001 #ifdef USE_X_TOOLKIT
3002 /* Tooltip frame may not have this widget. */
3003 if (FRAME_X_OUTPUT (f)->widget)
3004 #endif
3005 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3006 store_in_alist (alistptr, Qouter_window_id,
3007 build_string (buf));
3008 #endif
3009 store_in_alist (alistptr, Qicon_name, f->icon_name);
3010 FRAME_SAMPLE_VISIBILITY (f);
3011 store_in_alist (alistptr, Qvisibility,
3012 (FRAME_VISIBLE_P (f) ? Qt
3013 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3014 store_in_alist (alistptr, Qdisplay,
3015 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3017 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3018 tem = Qnil;
3019 else
3020 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
3021 store_in_alist (alistptr, Qparent_id, tem);
3025 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3026 the previous value of that parameter, NEW_VALUE is the new value. */
3028 void
3029 x_set_fullscreen (f, new_value, old_value)
3030 struct frame *f;
3031 Lisp_Object new_value, old_value;
3033 if (NILP (new_value))
3034 f->want_fullscreen = FULLSCREEN_NONE;
3035 else if (EQ (new_value, Qfullboth))
3036 f->want_fullscreen = FULLSCREEN_BOTH;
3037 else if (EQ (new_value, Qfullwidth))
3038 f->want_fullscreen = FULLSCREEN_WIDTH;
3039 else if (EQ (new_value, Qfullheight))
3040 f->want_fullscreen = FULLSCREEN_HEIGHT;
3042 if (fullscreen_hook != NULL)
3043 fullscreen_hook (f);
3047 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3048 the previous value of that parameter, NEW_VALUE is the new value. */
3050 void
3051 x_set_line_spacing (f, new_value, old_value)
3052 struct frame *f;
3053 Lisp_Object new_value, old_value;
3055 if (NILP (new_value))
3056 f->extra_line_spacing = 0;
3057 else if (NATNUMP (new_value))
3058 f->extra_line_spacing = XFASTINT (new_value);
3059 else
3060 signal_error ("Invalid line-spacing", new_value);
3061 if (FRAME_VISIBLE_P (f))
3062 redraw_frame (f);
3066 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3067 the previous value of that parameter, NEW_VALUE is the new value. */
3069 void
3070 x_set_screen_gamma (f, new_value, old_value)
3071 struct frame *f;
3072 Lisp_Object new_value, old_value;
3074 Lisp_Object bgcolor;
3076 if (NILP (new_value))
3077 f->gamma = 0;
3078 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3079 /* The value 0.4545 is the normal viewing gamma. */
3080 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3081 else
3082 signal_error ("Invalid screen-gamma", new_value);
3084 /* Apply the new gamma value to the frame background. */
3085 bgcolor = Fassq (Qbackground_color, f->param_alist);
3086 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3088 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3089 if (NATNUMP (index)
3090 && (XFASTINT (index)
3091 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3092 && rif->frame_parm_handlers[XFASTINT (index)])
3093 (*(rif->frame_parm_handlers[XFASTINT (index)]))
3094 (f, bgcolor, Qnil);
3097 Fclear_face_cache (Qnil);
3101 void
3102 x_set_font (f, arg, oldval)
3103 struct frame *f;
3104 Lisp_Object arg, oldval;
3106 Lisp_Object result;
3107 Lisp_Object fontset_name;
3108 Lisp_Object frame;
3109 int old_fontset = FRAME_FONTSET(f);
3111 CHECK_STRING (arg);
3113 fontset_name = Fquery_fontset (arg, Qnil);
3115 BLOCK_INPUT;
3116 result = (STRINGP (fontset_name)
3117 ? x_new_fontset (f, SDATA (fontset_name))
3118 : x_new_font (f, SDATA (arg)));
3119 UNBLOCK_INPUT;
3121 if (EQ (result, Qnil))
3122 error ("Font `%s' is not defined", SDATA (arg));
3123 else if (EQ (result, Qt))
3124 error ("The characters of the given font have varying widths");
3125 else if (STRINGP (result))
3127 set_default_ascii_font (result);
3128 if (STRINGP (fontset_name))
3130 /* Fontset names are built from ASCII font names, so the
3131 names may be equal despite there was a change. */
3132 if (old_fontset == FRAME_FONTSET (f))
3133 return;
3135 else if (!NILP (Fequal (result, oldval)))
3136 return;
3138 /* Recalculate toolbar height. */
3139 f->n_tool_bar_rows = 0;
3140 /* Ensure we redraw it. */
3141 clear_current_matrices (f);
3143 store_frame_param (f, Qfont, result);
3144 recompute_basic_faces (f);
3146 else
3147 abort ();
3149 do_pending_window_change (0);
3151 /* Don't call `face-set-after-frame-default' when faces haven't been
3152 initialized yet. This is the case when called from
3153 Fx_create_frame. In that case, the X widget or window doesn't
3154 exist either, and we can end up in x_report_frame_params with a
3155 null widget which gives a segfault. */
3156 if (FRAME_FACE_CACHE (f))
3158 XSETFRAME (frame, f);
3159 call1 (Qface_set_after_frame_default, frame);
3164 void
3165 x_set_fringe_width (f, new_value, old_value)
3166 struct frame *f;
3167 Lisp_Object new_value, old_value;
3169 compute_fringe_widths (f, 1);
3172 void
3173 x_set_border_width (f, arg, oldval)
3174 struct frame *f;
3175 Lisp_Object arg, oldval;
3177 CHECK_NUMBER (arg);
3179 if (XINT (arg) == f->border_width)
3180 return;
3182 if (FRAME_X_WINDOW (f) != 0)
3183 error ("Cannot change the border width of a frame");
3185 f->border_width = XINT (arg);
3188 void
3189 x_set_internal_border_width (f, arg, oldval)
3190 struct frame *f;
3191 Lisp_Object arg, oldval;
3193 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3195 CHECK_NUMBER (arg);
3196 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3197 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3198 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3200 #ifdef USE_X_TOOLKIT
3201 if (FRAME_X_OUTPUT (f)->edit_widget)
3202 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3203 #endif
3205 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3206 return;
3208 if (FRAME_X_WINDOW (f) != 0)
3210 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3211 SET_FRAME_GARBAGED (f);
3212 do_pending_window_change (0);
3214 else
3215 SET_FRAME_GARBAGED (f);
3218 void
3219 x_set_visibility (f, value, oldval)
3220 struct frame *f;
3221 Lisp_Object value, oldval;
3223 Lisp_Object frame;
3224 XSETFRAME (frame, f);
3226 if (NILP (value))
3227 Fmake_frame_invisible (frame, Qt);
3228 else if (EQ (value, Qicon))
3229 Ficonify_frame (frame);
3230 else
3231 Fmake_frame_visible (frame);
3234 void
3235 x_set_autoraise (f, arg, oldval)
3236 struct frame *f;
3237 Lisp_Object arg, oldval;
3239 f->auto_raise = !EQ (Qnil, arg);
3242 void
3243 x_set_autolower (f, arg, oldval)
3244 struct frame *f;
3245 Lisp_Object arg, oldval;
3247 f->auto_lower = !EQ (Qnil, arg);
3250 void
3251 x_set_unsplittable (f, arg, oldval)
3252 struct frame *f;
3253 Lisp_Object arg, oldval;
3255 f->no_split = !NILP (arg);
3258 void
3259 x_set_vertical_scroll_bars (f, arg, oldval)
3260 struct frame *f;
3261 Lisp_Object arg, oldval;
3263 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3264 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3265 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3266 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3268 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3269 = (NILP (arg)
3270 ? vertical_scroll_bar_none
3271 : EQ (Qleft, arg)
3272 ? vertical_scroll_bar_left
3273 : EQ (Qright, arg)
3274 ? vertical_scroll_bar_right
3275 : EQ (Qleft, Vdefault_frame_scroll_bars)
3276 ? vertical_scroll_bar_left
3277 : EQ (Qright, Vdefault_frame_scroll_bars)
3278 ? vertical_scroll_bar_right
3279 : vertical_scroll_bar_none);
3281 /* We set this parameter before creating the X window for the
3282 frame, so we can get the geometry right from the start.
3283 However, if the window hasn't been created yet, we shouldn't
3284 call x_set_window_size. */
3285 if (FRAME_X_WINDOW (f))
3286 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3287 do_pending_window_change (0);
3291 void
3292 x_set_scroll_bar_width (f, arg, oldval)
3293 struct frame *f;
3294 Lisp_Object arg, oldval;
3296 int wid = FRAME_COLUMN_WIDTH (f);
3298 if (NILP (arg))
3300 x_set_scroll_bar_default_width (f);
3302 if (FRAME_X_WINDOW (f))
3303 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3304 do_pending_window_change (0);
3306 else if (INTEGERP (arg) && XINT (arg) > 0
3307 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3309 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3310 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3312 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3313 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3314 if (FRAME_X_WINDOW (f))
3315 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3316 do_pending_window_change (0);
3319 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3320 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3321 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3326 /* Return non-nil if frame F wants a bitmap icon. */
3328 Lisp_Object
3329 x_icon_type (f)
3330 FRAME_PTR f;
3332 Lisp_Object tem;
3334 tem = assq_no_quit (Qicon_type, f->param_alist);
3335 if (CONSP (tem))
3336 return XCDR (tem);
3337 else
3338 return Qnil;
3342 /* Subroutines of creating an X frame. */
3344 /* Make sure that Vx_resource_name is set to a reasonable value.
3345 Fix it up, or set it to `emacs' if it is too hopeless. */
3347 void
3348 validate_x_resource_name ()
3350 int len = 0;
3351 /* Number of valid characters in the resource name. */
3352 int good_count = 0;
3353 /* Number of invalid characters in the resource name. */
3354 int bad_count = 0;
3355 Lisp_Object new;
3356 int i;
3358 if (!STRINGP (Vx_resource_class))
3359 Vx_resource_class = build_string (EMACS_CLASS);
3361 if (STRINGP (Vx_resource_name))
3363 unsigned char *p = SDATA (Vx_resource_name);
3364 int i;
3366 len = SBYTES (Vx_resource_name);
3368 /* Only letters, digits, - and _ are valid in resource names.
3369 Count the valid characters and count the invalid ones. */
3370 for (i = 0; i < len; i++)
3372 int c = p[i];
3373 if (! ((c >= 'a' && c <= 'z')
3374 || (c >= 'A' && c <= 'Z')
3375 || (c >= '0' && c <= '9')
3376 || c == '-' || c == '_'))
3377 bad_count++;
3378 else
3379 good_count++;
3382 else
3383 /* Not a string => completely invalid. */
3384 bad_count = 5, good_count = 0;
3386 /* If name is valid already, return. */
3387 if (bad_count == 0)
3388 return;
3390 /* If name is entirely invalid, or nearly so, use `emacs'. */
3391 if (good_count == 0
3392 || (good_count == 1 && bad_count > 0))
3394 Vx_resource_name = build_string ("emacs");
3395 return;
3398 /* Name is partly valid. Copy it and replace the invalid characters
3399 with underscores. */
3401 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3403 for (i = 0; i < len; i++)
3405 int c = SREF (new, i);
3406 if (! ((c >= 'a' && c <= 'z')
3407 || (c >= 'A' && c <= 'Z')
3408 || (c >= '0' && c <= '9')
3409 || c == '-' || c == '_'))
3410 SSET (new, i, '_');
3415 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3416 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3419 /* Get specified attribute from resource database RDB.
3420 See Fx_get_resource below for other parameters. */
3422 static Lisp_Object
3423 xrdb_get_resource (rdb, attribute, class, component, subclass)
3424 XrmDatabase rdb;
3425 Lisp_Object attribute, class, component, subclass;
3427 register char *value;
3428 char *name_key;
3429 char *class_key;
3431 CHECK_STRING (attribute);
3432 CHECK_STRING (class);
3434 if (!NILP (component))
3435 CHECK_STRING (component);
3436 if (!NILP (subclass))
3437 CHECK_STRING (subclass);
3438 if (NILP (component) != NILP (subclass))
3439 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3441 validate_x_resource_name ();
3443 /* Allocate space for the components, the dots which separate them,
3444 and the final '\0'. Make them big enough for the worst case. */
3445 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3446 + (STRINGP (component)
3447 ? SBYTES (component) : 0)
3448 + SBYTES (attribute)
3449 + 3);
3451 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3452 + SBYTES (class)
3453 + (STRINGP (subclass)
3454 ? SBYTES (subclass) : 0)
3455 + 3);
3457 /* Start with emacs.FRAMENAME for the name (the specific one)
3458 and with `Emacs' for the class key (the general one). */
3459 strcpy (name_key, SDATA (Vx_resource_name));
3460 strcpy (class_key, SDATA (Vx_resource_class));
3462 strcat (class_key, ".");
3463 strcat (class_key, SDATA (class));
3465 if (!NILP (component))
3467 strcat (class_key, ".");
3468 strcat (class_key, SDATA (subclass));
3470 strcat (name_key, ".");
3471 strcat (name_key, SDATA (component));
3474 strcat (name_key, ".");
3475 strcat (name_key, SDATA (attribute));
3477 value = x_get_string_resource (rdb, name_key, class_key);
3479 if (value != (char *) 0)
3480 return build_string (value);
3481 else
3482 return Qnil;
3486 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3487 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3488 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3489 class, where INSTANCE is the name under which Emacs was invoked, or
3490 the name specified by the `-name' or `-rn' command-line arguments.
3492 The optional arguments COMPONENT and SUBCLASS add to the key and the
3493 class, respectively. You must specify both of them or neither.
3494 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3495 and the class is `Emacs.CLASS.SUBCLASS'. */)
3496 (attribute, class, component, subclass)
3497 Lisp_Object attribute, class, component, subclass;
3499 #ifdef HAVE_X_WINDOWS
3500 check_x ();
3501 #endif
3503 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3504 attribute, class, component, subclass);
3507 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3509 Lisp_Object
3510 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3511 Display_Info *dpyinfo;
3512 Lisp_Object attribute, class, component, subclass;
3514 return xrdb_get_resource (dpyinfo->xrdb,
3515 attribute, class, component, subclass);
3518 /* Used when C code wants a resource value. */
3520 char *
3521 x_get_resource_string (attribute, class)
3522 char *attribute, *class;
3524 char *name_key;
3525 char *class_key;
3526 struct frame *sf = SELECTED_FRAME ();
3528 /* Allocate space for the components, the dots which separate them,
3529 and the final '\0'. */
3530 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3531 + strlen (attribute) + 2);
3532 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3533 + strlen (class) + 2);
3535 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3536 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3538 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3539 name_key, class_key);
3543 /* Return the value of parameter PARAM.
3545 First search ALIST, then Vdefault_frame_alist, then the X defaults
3546 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3548 Convert the resource to the type specified by desired_type.
3550 If no default is specified, return Qunbound. If you call
3551 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3552 and don't let it get stored in any Lisp-visible variables! */
3554 Lisp_Object
3555 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3556 Display_Info *dpyinfo;
3557 Lisp_Object alist, param;
3558 char *attribute;
3559 char *class;
3560 enum resource_types type;
3562 register Lisp_Object tem;
3564 tem = Fassq (param, alist);
3566 if (!NILP (tem))
3568 /* If we find this parm in ALIST, clear it out
3569 so that it won't be "left over" at the end. */
3570 #ifndef WINDOWSNT /* w32fns.c has not yet been changed to cope with this. */
3571 Lisp_Object tail;
3572 XSETCAR (tem, Qnil);
3573 /* In case the parameter appears more than once in the alist,
3574 clear it out. */
3575 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3576 if (CONSP (XCAR (tail))
3577 && EQ (XCAR (XCAR (tail)), param))
3578 XSETCAR (XCAR (tail), Qnil);
3579 #endif
3581 else
3582 tem = Fassq (param, Vdefault_frame_alist);
3584 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3585 look in the X resources. */
3586 if (EQ (tem, Qnil))
3588 if (attribute)
3590 tem = display_x_get_resource (dpyinfo,
3591 build_string (attribute),
3592 build_string (class),
3593 Qnil, Qnil);
3595 if (NILP (tem))
3596 return Qunbound;
3598 switch (type)
3600 case RES_TYPE_NUMBER:
3601 return make_number (atoi (SDATA (tem)));
3603 case RES_TYPE_FLOAT:
3604 return make_float (atof (SDATA (tem)));
3606 case RES_TYPE_BOOLEAN:
3607 tem = Fdowncase (tem);
3608 if (!strcmp (SDATA (tem), "on")
3609 || !strcmp (SDATA (tem), "true"))
3610 return Qt;
3611 else
3612 return Qnil;
3614 case RES_TYPE_STRING:
3615 return tem;
3617 case RES_TYPE_SYMBOL:
3618 /* As a special case, we map the values `true' and `on'
3619 to Qt, and `false' and `off' to Qnil. */
3621 Lisp_Object lower;
3622 lower = Fdowncase (tem);
3623 if (!strcmp (SDATA (lower), "on")
3624 || !strcmp (SDATA (lower), "true"))
3625 return Qt;
3626 else if (!strcmp (SDATA (lower), "off")
3627 || !strcmp (SDATA (lower), "false"))
3628 return Qnil;
3629 else
3630 return Fintern (tem, Qnil);
3633 default:
3634 abort ();
3637 else
3638 return Qunbound;
3640 return Fcdr (tem);
3643 Lisp_Object
3644 x_frame_get_arg (f, alist, param, attribute, class, type)
3645 struct frame *f;
3646 Lisp_Object alist, param;
3647 char *attribute;
3648 char *class;
3649 enum resource_types type;
3651 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
3652 alist, param, attribute, class, type);
3655 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
3657 Lisp_Object
3658 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
3659 struct frame *f;
3660 Lisp_Object alist, param;
3661 char *attribute;
3662 char *class;
3663 enum resource_types type;
3665 Lisp_Object value;
3667 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
3668 attribute, class, type);
3669 if (! NILP (value) && ! EQ (value, Qunbound))
3670 store_frame_param (f, param, value);
3672 return value;
3676 /* Record in frame F the specified or default value according to ALIST
3677 of the parameter named PROP (a Lisp symbol).
3678 If no value is specified for PROP, look for an X default for XPROP
3679 on the frame named NAME.
3680 If that is not found either, use the value DEFLT. */
3682 Lisp_Object
3683 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3684 struct frame *f;
3685 Lisp_Object alist;
3686 Lisp_Object prop;
3687 Lisp_Object deflt;
3688 char *xprop;
3689 char *xclass;
3690 enum resource_types type;
3692 Lisp_Object tem;
3694 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
3695 if (EQ (tem, Qunbound))
3696 tem = deflt;
3697 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3698 return tem;
3704 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3705 doc: /* Parse an X-style geometry string STRING.
3706 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
3707 The properties returned may include `top', `left', `height', and `width'.
3708 The value of `left' or `top' may be an integer,
3709 or a list (+ N) meaning N pixels relative to top/left corner,
3710 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
3711 (string)
3712 Lisp_Object string;
3714 int geometry, x, y;
3715 unsigned int width, height;
3716 Lisp_Object result;
3718 CHECK_STRING (string);
3720 geometry = XParseGeometry ((char *) SDATA (string),
3721 &x, &y, &width, &height);
3723 #if 0
3724 if (!!(geometry & XValue) != !!(geometry & YValue))
3725 error ("Must specify both x and y position, or neither");
3726 #endif
3728 result = Qnil;
3729 if (geometry & XValue)
3731 Lisp_Object element;
3733 if (x >= 0 && (geometry & XNegative))
3734 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3735 else if (x < 0 && ! (geometry & XNegative))
3736 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3737 else
3738 element = Fcons (Qleft, make_number (x));
3739 result = Fcons (element, result);
3742 if (geometry & YValue)
3744 Lisp_Object element;
3746 if (y >= 0 && (geometry & YNegative))
3747 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3748 else if (y < 0 && ! (geometry & YNegative))
3749 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3750 else
3751 element = Fcons (Qtop, make_number (y));
3752 result = Fcons (element, result);
3755 if (geometry & WidthValue)
3756 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3757 if (geometry & HeightValue)
3758 result = Fcons (Fcons (Qheight, make_number (height)), result);
3760 return result;
3763 /* Calculate the desired size and position of frame F.
3764 Return the flags saying which aspects were specified.
3766 Also set the win_gravity and size_hint_flags of F.
3768 Adjust height for toolbar if TOOLBAR_P is 1.
3770 This function does not make the coordinates positive. */
3772 #define DEFAULT_ROWS 40
3773 #define DEFAULT_COLS 80
3776 x_figure_window_size (f, parms, toolbar_p)
3777 struct frame *f;
3778 Lisp_Object parms;
3779 int toolbar_p;
3781 register Lisp_Object tem0, tem1, tem2;
3782 long window_prompting = 0;
3783 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3785 /* Default values if we fall through.
3786 Actually, if that happens we should get
3787 window manager prompting. */
3788 SET_FRAME_COLS (f, DEFAULT_COLS);
3789 FRAME_LINES (f) = DEFAULT_ROWS;
3790 /* Window managers expect that if program-specified
3791 positions are not (0,0), they're intentional, not defaults. */
3792 f->top_pos = 0;
3793 f->left_pos = 0;
3795 /* Ensure that old new_text_cols and new_text_lines will not override the
3796 values set here. */
3797 /* ++KFS: This was specific to W32, but seems ok for all platforms */
3798 f->new_text_cols = f->new_text_lines = 0;
3800 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3801 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3802 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3803 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3805 if (!EQ (tem0, Qunbound))
3807 CHECK_NUMBER (tem0);
3808 FRAME_LINES (f) = XINT (tem0);
3810 if (!EQ (tem1, Qunbound))
3812 CHECK_NUMBER (tem1);
3813 SET_FRAME_COLS (f, XINT (tem1));
3815 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3816 window_prompting |= USSize;
3817 else
3818 window_prompting |= PSize;
3821 f->scroll_bar_actual_width
3822 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
3824 /* This used to be done _before_ calling x_figure_window_size, but
3825 since the height is reset here, this was really a no-op. I
3826 assume that moving it here does what Gerd intended (although he
3827 no longer can remember what that was... ++KFS, 2003-03-25. */
3829 /* Add the tool-bar height to the initial frame height so that the
3830 user gets a text display area of the size he specified with -g or
3831 via .Xdefaults. Later changes of the tool-bar height don't
3832 change the frame size. This is done so that users can create
3833 tall Emacs frames without having to guess how tall the tool-bar
3834 will get. */
3835 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
3837 int margin, relief, bar_height;
3839 relief = (tool_bar_button_relief >= 0
3840 ? tool_bar_button_relief
3841 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
3843 if (INTEGERP (Vtool_bar_button_margin)
3844 && XINT (Vtool_bar_button_margin) > 0)
3845 margin = XFASTINT (Vtool_bar_button_margin);
3846 else if (CONSP (Vtool_bar_button_margin)
3847 && INTEGERP (XCDR (Vtool_bar_button_margin))
3848 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
3849 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
3850 else
3851 margin = 0;
3853 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
3854 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
3857 compute_fringe_widths (f, 0);
3859 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
3860 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3862 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3863 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3864 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3865 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3867 if (EQ (tem0, Qminus))
3869 f->top_pos = 0;
3870 window_prompting |= YNegative;
3872 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3873 && CONSP (XCDR (tem0))
3874 && INTEGERP (XCAR (XCDR (tem0))))
3876 f->top_pos = - XINT (XCAR (XCDR (tem0)));
3877 window_prompting |= YNegative;
3879 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3880 && CONSP (XCDR (tem0))
3881 && INTEGERP (XCAR (XCDR (tem0))))
3883 f->top_pos = XINT (XCAR (XCDR (tem0)));
3885 else if (EQ (tem0, Qunbound))
3886 f->top_pos = 0;
3887 else
3889 CHECK_NUMBER (tem0);
3890 f->top_pos = XINT (tem0);
3891 if (f->top_pos < 0)
3892 window_prompting |= YNegative;
3895 if (EQ (tem1, Qminus))
3897 f->left_pos = 0;
3898 window_prompting |= XNegative;
3900 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3901 && CONSP (XCDR (tem1))
3902 && INTEGERP (XCAR (XCDR (tem1))))
3904 f->left_pos = - XINT (XCAR (XCDR (tem1)));
3905 window_prompting |= XNegative;
3907 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3908 && CONSP (XCDR (tem1))
3909 && INTEGERP (XCAR (XCDR (tem1))))
3911 f->left_pos = XINT (XCAR (XCDR (tem1)));
3913 else if (EQ (tem1, Qunbound))
3914 f->left_pos = 0;
3915 else
3917 CHECK_NUMBER (tem1);
3918 f->left_pos = XINT (tem1);
3919 if (f->left_pos < 0)
3920 window_prompting |= XNegative;
3923 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3924 window_prompting |= USPosition;
3925 else
3926 window_prompting |= PPosition;
3929 if (f->want_fullscreen != FULLSCREEN_NONE)
3931 int left, top;
3932 int width, height;
3934 /* It takes both for some WM:s to place it where we want */
3935 window_prompting = USPosition | PPosition;
3936 x_fullscreen_adjust (f, &width, &height, &top, &left);
3937 FRAME_COLS (f) = width;
3938 FRAME_LINES (f) = height;
3939 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
3940 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
3941 f->left_pos = left;
3942 f->top_pos = top;
3945 if (window_prompting & XNegative)
3947 if (window_prompting & YNegative)
3948 f->win_gravity = SouthEastGravity;
3949 else
3950 f->win_gravity = NorthEastGravity;
3952 else
3954 if (window_prompting & YNegative)
3955 f->win_gravity = SouthWestGravity;
3956 else
3957 f->win_gravity = NorthWestGravity;
3960 f->size_hint_flags = window_prompting;
3962 return window_prompting;
3967 #endif /* HAVE_WINDOW_SYSTEM */
3971 /***********************************************************************
3972 Initialization
3973 ***********************************************************************/
3975 void
3976 syms_of_frame ()
3978 Qframep = intern ("framep");
3979 staticpro (&Qframep);
3980 Qframe_live_p = intern ("frame-live-p");
3981 staticpro (&Qframe_live_p);
3982 Qheight = intern ("height");
3983 staticpro (&Qheight);
3984 Qicon = intern ("icon");
3985 staticpro (&Qicon);
3986 Qminibuffer = intern ("minibuffer");
3987 staticpro (&Qminibuffer);
3988 Qmodeline = intern ("modeline");
3989 staticpro (&Qmodeline);
3990 Qonly = intern ("only");
3991 staticpro (&Qonly);
3992 Qwidth = intern ("width");
3993 staticpro (&Qwidth);
3994 Qgeometry = intern ("geometry");
3995 staticpro (&Qgeometry);
3996 Qicon_left = intern ("icon-left");
3997 staticpro (&Qicon_left);
3998 Qicon_top = intern ("icon-top");
3999 staticpro (&Qicon_top);
4000 Qleft = intern ("left");
4001 staticpro (&Qleft);
4002 Qright = intern ("right");
4003 staticpro (&Qright);
4004 Quser_position = intern ("user-position");
4005 staticpro (&Quser_position);
4006 Quser_size = intern ("user-size");
4007 staticpro (&Quser_size);
4008 Qwindow_id = intern ("window-id");
4009 staticpro (&Qwindow_id);
4010 #ifdef HAVE_X_WINDOWS
4011 Qouter_window_id = intern ("outer-window-id");
4012 staticpro (&Qouter_window_id);
4013 #endif
4014 Qparent_id = intern ("parent-id");
4015 staticpro (&Qparent_id);
4016 Qx = intern ("x");
4017 staticpro (&Qx);
4018 Qw32 = intern ("w32");
4019 staticpro (&Qw32);
4020 Qpc = intern ("pc");
4021 staticpro (&Qpc);
4022 Qmac = intern ("mac");
4023 staticpro (&Qmac);
4024 Qvisible = intern ("visible");
4025 staticpro (&Qvisible);
4026 Qbuffer_predicate = intern ("buffer-predicate");
4027 staticpro (&Qbuffer_predicate);
4028 Qbuffer_list = intern ("buffer-list");
4029 staticpro (&Qbuffer_list);
4030 Qdisplay_type = intern ("display-type");
4031 staticpro (&Qdisplay_type);
4032 Qbackground_mode = intern ("background-mode");
4033 staticpro (&Qbackground_mode);
4034 Qtty_color_mode = intern ("tty-color-mode");
4035 staticpro (&Qtty_color_mode);
4037 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4038 staticpro (&Qface_set_after_frame_default);
4040 Qinhibit_face_set_after_frame_default
4041 = intern ("inhibit-face-set-after-frame-default");
4042 staticpro (&Qinhibit_face_set_after_frame_default);
4044 Qfullwidth = intern ("fullwidth");
4045 staticpro (&Qfullwidth);
4046 Qfullheight = intern ("fullheight");
4047 staticpro (&Qfullheight);
4048 Qfullboth = intern ("fullboth");
4049 staticpro (&Qfullboth);
4050 Qx_resource_name = intern ("x-resource-name");
4051 staticpro (&Qx_resource_name);
4053 Qx_frame_parameter = intern ("x-frame-parameter");
4054 staticpro (&Qx_frame_parameter);
4057 int i;
4059 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4061 Lisp_Object v = intern (frame_parms[i].name);
4062 if (frame_parms[i].variable)
4064 *frame_parms[i].variable = v;
4065 staticpro (frame_parms[i].variable);
4067 Fput (v, Qx_frame_parameter, make_number (i));
4071 #ifdef HAVE_WINDOW_SYSTEM
4072 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4073 doc: /* The name Emacs uses to look up X resources.
4074 `x-get-resource' uses this as the first component of the instance name
4075 when requesting resource values.
4076 Emacs initially sets `x-resource-name' to the name under which Emacs
4077 was invoked, or to the value specified with the `-name' or `-rn'
4078 switches, if present.
4080 It may be useful to bind this variable locally around a call
4081 to `x-get-resource'. See also the variable `x-resource-class'. */);
4082 Vx_resource_name = Qnil;
4084 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4085 doc: /* The class Emacs uses to look up X resources.
4086 `x-get-resource' uses this as the first component of the instance class
4087 when requesting resource values.
4089 Emacs initially sets `x-resource-class' to "Emacs".
4091 Setting this variable permanently is not a reasonable thing to do,
4092 but binding this variable locally around a call to `x-get-resource'
4093 is a reasonable practice. See also the variable `x-resource-name'. */);
4094 Vx_resource_class = build_string (EMACS_CLASS);
4095 #endif
4097 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4098 doc: /* Alist of default values for frame creation.
4099 These may be set in your init file, like this:
4100 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4101 These override values given in window system configuration data,
4102 including X Windows' defaults database.
4103 For values specific to the first Emacs frame, see `initial-frame-alist'.
4104 For values specific to the separate minibuffer frame, see
4105 `minibuffer-frame-alist'.
4106 The `menu-bar-lines' element of the list controls whether new frames
4107 have menu bars; `menu-bar-mode' works by altering this element.
4108 Setting this variable does not affect existing frames, only new ones. */);
4109 Vdefault_frame_alist = Qnil;
4111 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4112 doc: /* Default position of scroll bars on this window-system. */);
4113 #ifdef HAVE_WINDOW_SYSTEM
4114 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4115 /* MS-Windows has scroll bars on the right by default. */
4116 Vdefault_frame_scroll_bars = Qright;
4117 #else
4118 Vdefault_frame_scroll_bars = Qleft;
4119 #endif
4120 #else
4121 Vdefault_frame_scroll_bars = Qnil;
4122 #endif
4124 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4125 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4127 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
4128 doc: /* Non-nil if all of Emacs is iconified and frame updates are not needed. */);
4129 Vemacs_iconified = Qnil;
4131 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4132 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4133 `mouse-position' calls this function, passing its usual return value as
4134 argument, and returns whatever this function returns.
4135 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4136 which need to do mouse handling at the Lisp level. */);
4137 Vmouse_position_function = Qnil;
4139 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4140 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4141 If the value is an integer, highlighting is only shown after moving the
4142 mouse, while keyboard input turns off the highlight even when the mouse
4143 is over the clickable text. However, the mouse shape still indicates
4144 when the mouse is over clickable text. */);
4145 Vmouse_highlight = Qt;
4147 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4148 doc: /* Functions to be run before deleting a frame.
4149 The functions are run with one arg, the frame to be deleted.
4150 See `delete-frame'. */);
4151 Vdelete_frame_functions = Qnil;
4153 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4154 doc: /* Minibufferless frames use this frame's minibuffer.
4156 Emacs cannot create minibufferless frames unless this is set to an
4157 appropriate surrogate.
4159 Emacs consults this variable only when creating minibufferless
4160 frames; once the frame is created, it sticks with its assigned
4161 minibuffer, no matter what this variable is set to. This means that
4162 this variable doesn't necessarily say anything meaningful about the
4163 current set of frames, or where the minibuffer is currently being
4164 displayed.
4166 This variable is local to the current terminal and cannot be buffer-local. */);
4168 staticpro (&Vframe_list);
4170 defsubr (&Sactive_minibuffer_window);
4171 defsubr (&Sframep);
4172 defsubr (&Sframe_live_p);
4173 defsubr (&Smake_terminal_frame);
4174 defsubr (&Shandle_switch_frame);
4175 defsubr (&Sselect_frame);
4176 defsubr (&Sselected_frame);
4177 defsubr (&Swindow_frame);
4178 defsubr (&Sframe_root_window);
4179 defsubr (&Sframe_first_window);
4180 defsubr (&Sframe_selected_window);
4181 defsubr (&Sset_frame_selected_window);
4182 defsubr (&Sframe_list);
4183 defsubr (&Snext_frame);
4184 defsubr (&Sprevious_frame);
4185 defsubr (&Sdelete_frame);
4186 defsubr (&Smouse_position);
4187 defsubr (&Smouse_pixel_position);
4188 defsubr (&Sset_mouse_position);
4189 defsubr (&Sset_mouse_pixel_position);
4190 #if 0
4191 defsubr (&Sframe_configuration);
4192 defsubr (&Srestore_frame_configuration);
4193 #endif
4194 defsubr (&Smake_frame_visible);
4195 defsubr (&Smake_frame_invisible);
4196 defsubr (&Siconify_frame);
4197 defsubr (&Sframe_visible_p);
4198 defsubr (&Svisible_frame_list);
4199 defsubr (&Sraise_frame);
4200 defsubr (&Slower_frame);
4201 defsubr (&Sredirect_frame_focus);
4202 defsubr (&Sframe_focus);
4203 defsubr (&Sframe_parameters);
4204 defsubr (&Sframe_parameter);
4205 defsubr (&Smodify_frame_parameters);
4206 defsubr (&Sframe_char_height);
4207 defsubr (&Sframe_char_width);
4208 defsubr (&Sframe_pixel_height);
4209 defsubr (&Sframe_pixel_width);
4210 defsubr (&Sset_frame_height);
4211 defsubr (&Sset_frame_width);
4212 defsubr (&Sset_frame_size);
4213 defsubr (&Sset_frame_position);
4215 #ifdef HAVE_WINDOW_SYSTEM
4216 defsubr (&Sx_get_resource);
4217 defsubr (&Sx_parse_geometry);
4218 #endif
4222 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4223 (do not change this comment) */