Checked keymaps.texi.
[bpt/emacs.git] / src / frame.c
... / ...
CommitLineData
1/* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20#include <config.h>
21
22#include <stdio.h>
23#include <ctype.h>
24#include "lisp.h"
25#include "character.h"
26#ifdef HAVE_X_WINDOWS
27#include "xterm.h"
28#endif
29#ifdef WINDOWSNT
30#include "w32term.h"
31#endif
32#ifdef HAVE_NS
33#include "nsterm.h"
34#endif
35#include "buffer.h"
36/* These help us bind and responding to switch-frame events. */
37#include "commands.h"
38#include "keyboard.h"
39#include "frame.h"
40#include "blockinput.h"
41#include "termchar.h"
42#include "termhooks.h"
43#include "dispextern.h"
44#include "window.h"
45#ifdef HAVE_WINDOW_SYSTEM
46#include "font.h"
47#include "fontset.h"
48#endif
49#ifdef MSDOS
50#include "msdos.h"
51#include "dosfns.h"
52#endif
53
54
55#ifdef HAVE_WINDOW_SYSTEM
56
57/* The name we're using in resource queries. Most often "emacs". */
58
59Lisp_Object Vx_resource_name;
60
61/* The application class we're using in resource queries.
62 Normally "Emacs". */
63
64Lisp_Object Vx_resource_class;
65
66/* Lower limit value of the frame opacity (alpha transparency). */
67
68Lisp_Object Vframe_alpha_lower_limit;
69
70#endif
71
72#ifdef HAVE_NS
73Lisp_Object Qns_parse_geometry;
74#endif
75
76Lisp_Object Qframep, Qframe_live_p;
77Lisp_Object Qicon, Qmodeline;
78Lisp_Object Qonly;
79Lisp_Object Qx, Qw32, Qmac, Qpc, Qns;
80Lisp_Object Qvisible;
81Lisp_Object Qdisplay_type;
82Lisp_Object Qbackground_mode;
83Lisp_Object Qnoelisp;
84
85Lisp_Object Qx_frame_parameter;
86Lisp_Object Qx_resource_name;
87Lisp_Object Qterminal;
88Lisp_Object Qterminal_live_p;
89
90/* Frame parameters (set or reported). */
91
92Lisp_Object Qauto_raise, Qauto_lower;
93Lisp_Object Qborder_color, Qborder_width;
94Lisp_Object Qcursor_color, Qcursor_type;
95Lisp_Object Qgeometry; /* Not used */
96Lisp_Object Qheight, Qwidth;
97Lisp_Object Qleft, Qright;
98Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
99Lisp_Object Qinternal_border_width;
100Lisp_Object Qmouse_color;
101Lisp_Object Qminibuffer;
102Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
103Lisp_Object Qvisibility;
104Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
105Lisp_Object Qscreen_gamma;
106Lisp_Object Qline_spacing;
107Lisp_Object Quser_position, Quser_size;
108Lisp_Object Qwait_for_wm;
109Lisp_Object Qwindow_id;
110#ifdef HAVE_X_WINDOWS
111Lisp_Object Qouter_window_id;
112#endif
113Lisp_Object Qparent_id;
114Lisp_Object Qtitle, Qname;
115Lisp_Object Qexplicit_name;
116Lisp_Object Qunsplittable;
117Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
118Lisp_Object Qleft_fringe, Qright_fringe;
119Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
120Lisp_Object Qtty_color_mode;
121Lisp_Object Qtty, Qtty_type;
122
123Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
124Lisp_Object Qfont_backend;
125Lisp_Object Qalpha;
126
127Lisp_Object Qface_set_after_frame_default;
128
129Lisp_Object Vterminal_frame;
130Lisp_Object Vdefault_frame_alist;
131Lisp_Object Vdefault_frame_scroll_bars;
132Lisp_Object Vmouse_position_function;
133Lisp_Object Vmouse_highlight;
134static Lisp_Object Vdelete_frame_functions, Qdelete_frame_functions;
135
136int focus_follows_mouse;
137\f
138static void
139set_menu_bar_lines_1 (window, n)
140 Lisp_Object window;
141 int n;
142{
143 struct window *w = XWINDOW (window);
144
145 XSETFASTINT (w->last_modified, 0);
146 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
147 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
148
149 if (INTEGERP (w->orig_top_line))
150 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
151 if (INTEGERP (w->orig_total_lines))
152 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
153
154 /* Handle just the top child in a vertical split. */
155 if (!NILP (w->vchild))
156 set_menu_bar_lines_1 (w->vchild, n);
157
158 /* Adjust all children in a horizontal split. */
159 for (window = w->hchild; !NILP (window); window = w->next)
160 {
161 w = XWINDOW (window);
162 set_menu_bar_lines_1 (window, n);
163 }
164}
165
166void
167set_menu_bar_lines (f, value, oldval)
168 struct frame *f;
169 Lisp_Object value, oldval;
170{
171 int nlines;
172 int olines = FRAME_MENU_BAR_LINES (f);
173
174 /* Right now, menu bars don't work properly in minibuf-only frames;
175 most of the commands try to apply themselves to the minibuffer
176 frame itself, and get an error because you can't switch buffers
177 in or split the minibuffer window. */
178 if (FRAME_MINIBUF_ONLY_P (f))
179 return;
180
181 if (INTEGERP (value))
182 nlines = XINT (value);
183 else
184 nlines = 0;
185
186 if (nlines != olines)
187 {
188 windows_or_buffers_changed++;
189 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
190 FRAME_MENU_BAR_LINES (f) = nlines;
191 set_menu_bar_lines_1 (f->root_window, nlines - olines);
192 adjust_glyphs (f);
193 }
194}
195\f
196Lisp_Object Vframe_list;
197
198extern Lisp_Object Vminibuffer_list;
199extern Lisp_Object get_minibuffer ();
200extern Lisp_Object Fhandle_switch_frame ();
201extern Lisp_Object Fredirect_frame_focus ();
202extern Lisp_Object x_get_focus_frame ();
203\f
204DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
205 doc: /* Return non-nil if OBJECT is a frame.
206Value is t for a termcap frame (a character-only terminal),
207`x' for an Emacs frame that is really an X window,
208`w32' for an Emacs frame that is a window on MS-Windows display,
209`ns' for an Emacs frame on a GNUstep or Macintosh Cocoa display,
210`pc' for a direct-write MS-DOS frame.
211See also `frame-live-p'. */)
212 (object)
213 Lisp_Object object;
214{
215 if (!FRAMEP (object))
216 return Qnil;
217 switch (XFRAME (object)->output_method)
218 {
219 case output_initial: /* The initial frame is like a termcap frame. */
220 case output_termcap:
221 return Qt;
222 case output_x_window:
223 return Qx;
224 case output_w32:
225 return Qw32;
226 case output_msdos_raw:
227 return Qpc;
228 case output_mac:
229 return Qmac;
230 case output_ns:
231 return Qns;
232 default:
233 abort ();
234 }
235}
236
237DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
238 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
239Value is nil if OBJECT is not a live frame. If object is a live
240frame, the return value indicates what sort of terminal device it is
241displayed on. See the documentation of `framep' for possible
242return values. */)
243 (object)
244 Lisp_Object object;
245{
246 return ((FRAMEP (object)
247 && FRAME_LIVE_P (XFRAME (object)))
248 ? Fframep (object)
249 : Qnil);
250}
251
252DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
253 doc: /* The name of the window system that FRAME is displaying through.
254The value is a symbol---for instance, 'x' for X windows.
255The value is nil if Emacs is using a text-only terminal.
256
257FRAME defaults to the currently selected frame. */)
258 (frame)
259 Lisp_Object frame;
260{
261 Lisp_Object type;
262 if (NILP (frame))
263 frame = selected_frame;
264
265 type = Fframep (frame);
266
267 if (NILP (type))
268 wrong_type_argument (Qframep, frame);
269
270 if (EQ (type, Qt))
271 return Qnil;
272 else
273 return type;
274}
275
276struct frame *
277make_frame (mini_p)
278 int mini_p;
279{
280 Lisp_Object frame;
281 register struct frame *f;
282 register Lisp_Object root_window;
283 register Lisp_Object mini_window;
284
285 f = allocate_frame ();
286 XSETFRAME (frame, f);
287
288 f->desired_matrix = 0;
289 f->current_matrix = 0;
290 f->desired_pool = 0;
291 f->current_pool = 0;
292 f->glyphs_initialized_p = 0;
293 f->decode_mode_spec_buffer = 0;
294 f->visible = 0;
295 f->async_visible = 0;
296 f->output_data.nothing = 0;
297 f->iconified = 0;
298 f->async_iconified = 0;
299 f->wants_modeline = 1;
300 f->auto_raise = 0;
301 f->auto_lower = 0;
302 f->no_split = 0;
303 f->garbaged = 1;
304 f->has_minibuffer = mini_p;
305 f->focus_frame = Qnil;
306 f->explicit_name = 0;
307 f->can_have_scroll_bars = 0;
308 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
309 f->param_alist = Qnil;
310 f->scroll_bars = Qnil;
311 f->condemned_scroll_bars = Qnil;
312 f->face_alist = Qnil;
313 f->face_cache = NULL;
314 f->menu_bar_items = Qnil;
315 f->menu_bar_vector = Qnil;
316 f->menu_bar_items_used = 0;
317 f->buffer_predicate = Qnil;
318 f->buffer_list = Qnil;
319 f->buried_buffer_list = Qnil;
320 f->namebuf = 0;
321 f->title = Qnil;
322 f->menu_bar_window = Qnil;
323 f->tool_bar_window = Qnil;
324 f->tool_bar_items = Qnil;
325 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
326 f->n_tool_bar_items = 0;
327 f->left_fringe_width = f->right_fringe_width = 0;
328 f->fringe_cols = 0;
329 f->scroll_bar_actual_width = 0;
330 f->border_width = 0;
331 f->internal_border_width = 0;
332 f->column_width = 1; /* !FRAME_WINDOW_P value */
333 f->line_height = 1; /* !FRAME_WINDOW_P value */
334 f->x_pixels_diff = f->y_pixels_diff = 0;
335#ifdef HAVE_WINDOW_SYSTEM
336 f->want_fullscreen = FULLSCREEN_NONE;
337#endif
338 f->size_hint_flags = 0;
339 f->win_gravity = 0;
340 f->font_driver_list = NULL;
341 f->font_data_list = NULL;
342
343 root_window = make_window ();
344 if (mini_p)
345 {
346 mini_window = make_window ();
347 XWINDOW (root_window)->next = mini_window;
348 XWINDOW (mini_window)->prev = root_window;
349 XWINDOW (mini_window)->mini_p = Qt;
350 XWINDOW (mini_window)->frame = frame;
351 f->minibuffer_window = mini_window;
352 }
353 else
354 {
355 mini_window = Qnil;
356 XWINDOW (root_window)->next = Qnil;
357 f->minibuffer_window = Qnil;
358 }
359
360 XWINDOW (root_window)->frame = frame;
361
362 /* 10 is arbitrary,
363 just so that there is "something there."
364 Correct size will be set up later with change_frame_size. */
365
366 SET_FRAME_COLS (f, 10);
367 FRAME_LINES (f) = 10;
368
369 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
370 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
371
372 if (mini_p)
373 {
374 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
375 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
376 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
377 }
378
379 /* Choose a buffer for the frame's root window. */
380 {
381 Lisp_Object buf;
382
383 XWINDOW (root_window)->buffer = Qt;
384 buf = Fcurrent_buffer ();
385 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
386 a space), try to find another one. */
387 if (SREF (Fbuffer_name (buf), 0) == ' ')
388 buf = Fother_buffer (buf, Qnil, Qnil);
389
390 /* Use set_window_buffer, not Fset_window_buffer, and don't let
391 hooks be run by it. The reason is that the whole frame/window
392 arrangement is not yet fully intialized at this point. Windows
393 don't have the right size, glyph matrices aren't initialized
394 etc. Running Lisp functions at this point surely ends in a
395 SEGV. */
396 set_window_buffer (root_window, buf, 0, 0);
397 f->buffer_list = Fcons (buf, Qnil);
398 }
399
400 if (mini_p)
401 {
402 XWINDOW (mini_window)->buffer = Qt;
403 set_window_buffer (mini_window,
404 (NILP (Vminibuffer_list)
405 ? get_minibuffer (0)
406 : Fcar (Vminibuffer_list)),
407 0, 0);
408 }
409
410 f->root_window = root_window;
411 f->selected_window = root_window;
412 /* Make sure this window seems more recently used than
413 a newly-created, never-selected window. */
414 ++window_select_count;
415 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
416
417 f->default_face_done_p = 0;
418
419 return f;
420}
421\f
422#ifdef HAVE_WINDOW_SYSTEM
423/* Make a frame using a separate minibuffer window on another frame.
424 MINI_WINDOW is the minibuffer window to use. nil means use the
425 default (the global minibuffer). */
426
427struct frame *
428make_frame_without_minibuffer (mini_window, kb, display)
429 register Lisp_Object mini_window;
430 KBOARD *kb;
431 Lisp_Object display;
432{
433 register struct frame *f;
434 struct gcpro gcpro1;
435
436 if (!NILP (mini_window))
437 CHECK_LIVE_WINDOW (mini_window);
438
439 if (!NILP (mini_window)
440 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
441 error ("Frame and minibuffer must be on the same terminal");
442
443 /* Make a frame containing just a root window. */
444 f = make_frame (0);
445
446 if (NILP (mini_window))
447 {
448 /* Use default-minibuffer-frame if possible. */
449 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
450 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
451 {
452 Lisp_Object frame_dummy;
453
454 XSETFRAME (frame_dummy, f);
455 GCPRO1 (frame_dummy);
456 /* If there's no minibuffer frame to use, create one. */
457 kb->Vdefault_minibuffer_frame =
458 call1 (intern ("make-initial-minibuffer-frame"), display);
459 UNGCPRO;
460 }
461
462 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
463 }
464
465 f->minibuffer_window = mini_window;
466
467 /* Make the chosen minibuffer window display the proper minibuffer,
468 unless it is already showing a minibuffer. */
469 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
470 Fset_window_buffer (mini_window,
471 (NILP (Vminibuffer_list)
472 ? get_minibuffer (0)
473 : Fcar (Vminibuffer_list)), Qnil);
474 return f;
475}
476
477/* Make a frame containing only a minibuffer window. */
478
479struct frame *
480make_minibuffer_frame ()
481{
482 /* First make a frame containing just a root window, no minibuffer. */
483
484 register struct frame *f = make_frame (0);
485 register Lisp_Object mini_window;
486 register Lisp_Object frame;
487
488 XSETFRAME (frame, f);
489
490 f->auto_raise = 0;
491 f->auto_lower = 0;
492 f->no_split = 1;
493 f->wants_modeline = 0;
494 f->has_minibuffer = 1;
495
496 /* Now label the root window as also being the minibuffer.
497 Avoid infinite looping on the window chain by marking next pointer
498 as nil. */
499
500 mini_window = f->minibuffer_window = f->root_window;
501 XWINDOW (mini_window)->mini_p = Qt;
502 XWINDOW (mini_window)->next = Qnil;
503 XWINDOW (mini_window)->prev = Qnil;
504 XWINDOW (mini_window)->frame = frame;
505
506 /* Put the proper buffer in that window. */
507
508 Fset_window_buffer (mini_window,
509 (NILP (Vminibuffer_list)
510 ? get_minibuffer (0)
511 : Fcar (Vminibuffer_list)), Qnil);
512 return f;
513}
514#endif /* HAVE_WINDOW_SYSTEM */
515\f
516/* Construct a frame that refers to a terminal. */
517
518static int tty_frame_count;
519
520struct frame *
521make_initial_frame (void)
522{
523 struct frame *f;
524 struct terminal *terminal;
525 Lisp_Object frame;
526
527 eassert (initial_kboard);
528
529 /* The first call must initialize Vframe_list. */
530 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
531 Vframe_list = Qnil;
532
533 terminal = init_initial_terminal ();
534
535 f = make_frame (1);
536 XSETFRAME (frame, f);
537
538 Vframe_list = Fcons (frame, Vframe_list);
539
540 tty_frame_count = 1;
541 f->name = build_string ("F1");
542
543 f->visible = 1;
544 f->async_visible = 1;
545
546 f->output_method = terminal->type;
547 f->terminal = terminal;
548 f->terminal->reference_count++;
549 f->output_data.nothing = 0;
550
551 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
552 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
553
554 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
555 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
556
557#ifdef CANNOT_DUMP
558 if (!noninteractive)
559 init_frame_faces (f);
560#endif
561
562 return f;
563}
564
565
566struct frame *
567make_terminal_frame (struct terminal *terminal)
568{
569 register struct frame *f;
570 Lisp_Object frame;
571 char name[20];
572
573 if (!terminal->name)
574 error ("Terminal is not live, can't create new frames on it");
575
576 f = make_frame (1);
577
578 XSETFRAME (frame, f);
579 Vframe_list = Fcons (frame, Vframe_list);
580
581 tty_frame_count++;
582 sprintf (name, "F%d", tty_frame_count);
583 f->name = build_string (name);
584
585 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
586 f->async_visible = 1; /* Don't let visible be cleared later. */
587 f->terminal = terminal;
588 f->terminal->reference_count++;
589#ifdef MSDOS
590 f->output_data.tty->display_info = &the_only_display_info;
591 if (!inhibit_window_system
592 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
593 || XFRAME (selected_frame)->output_method == output_msdos_raw))
594 f->output_method = output_msdos_raw;
595 else
596 f->output_method = output_termcap;
597#else /* not MSDOS */
598 f->output_method = output_termcap;
599 create_tty_output (f);
600 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
601 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
602#endif /* not MSDOS */
603
604 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
605 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
606
607 /* Set the top frame to the newly created frame. */
608 if (FRAMEP (FRAME_TTY (f)->top_frame)
609 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
610 XFRAME (FRAME_TTY (f)->top_frame)->async_visible = 2; /* obscured */
611
612 FRAME_TTY (f)->top_frame = frame;
613
614 if (!noninteractive)
615 init_frame_faces (f);
616
617 return f;
618}
619
620/* Get a suitable value for frame parameter PARAMETER for a newly
621 created frame, based on (1) the user-supplied frame parameter
622 alist SUPPLIED_PARMS, (2) CURRENT_VALUE, and finally, if all else
623 fails, (3) Vdefault_frame_alist. */
624
625static Lisp_Object
626get_future_frame_param (Lisp_Object parameter,
627 Lisp_Object supplied_parms,
628 char *current_value)
629{
630 Lisp_Object result;
631
632 result = Fassq (parameter, supplied_parms);
633 if (NILP (result))
634 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
635 if (NILP (result) && current_value != NULL)
636 result = build_string (current_value);
637 if (NILP (result))
638 result = Fassq (parameter, Vdefault_frame_alist);
639 if (!NILP (result) && !STRINGP (result))
640 result = XCDR (result);
641 if (NILP (result) || !STRINGP (result))
642 result = Qnil;
643
644 return result;
645}
646
647DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
648 1, 1, 0,
649 doc: /* Create an additional terminal frame, possibly on another terminal.
650This function takes one argument, an alist specifying frame parameters.
651
652You can create multiple frames on a single text-only terminal, but
653only one of them (the selected terminal frame) is actually displayed.
654
655In practice, generally you don't need to specify any parameters,
656except when you want to create a new frame on another terminal.
657In that case, the `tty' parameter specifies the device file to open,
658and the `tty-type' parameter specifies the terminal type. Example:
659
660 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
661
662Note that changing the size of one terminal frame automatically
663affects all frames on the same terminal device. */)
664 (parms)
665 Lisp_Object parms;
666{
667 struct frame *f;
668 struct terminal *t = NULL;
669 Lisp_Object frame, tem;
670 struct frame *sf = SELECTED_FRAME ();
671
672#ifdef MSDOS
673 if (sf->output_method != output_msdos_raw
674 && sf->output_method != output_termcap)
675 abort ();
676#else /* not MSDOS */
677
678#ifdef WINDOWSNT /* This should work now! */
679 if (sf->output_method != output_termcap)
680 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
681#endif
682#endif /* not MSDOS */
683
684 {
685 Lisp_Object terminal;
686
687 terminal = Fassq (Qterminal, parms);
688 if (!NILP (terminal))
689 {
690 terminal = XCDR (terminal);
691 t = get_terminal (terminal, 1);
692 }
693#ifdef MSDOS
694 if (t && t != the_only_display_info.terminal)
695 /* msdos.c assumes a single tty_display_info object. */
696 error ("Multiple terminals are not supported on this platform");
697 if (!t)
698 t = the_only_display_info.terminal;
699#endif
700 }
701
702 if (!t)
703 {
704 char *name = 0, *type = 0;
705 Lisp_Object tty, tty_type;
706
707 tty = get_future_frame_param
708 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
709 ? FRAME_TTY (XFRAME (selected_frame))->name
710 : NULL));
711 if (!NILP (tty))
712 {
713 name = (char *) alloca (SBYTES (tty) + 1);
714 strncpy (name, SDATA (tty), SBYTES (tty));
715 name[SBYTES (tty)] = 0;
716 }
717
718 tty_type = get_future_frame_param
719 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
720 ? FRAME_TTY (XFRAME (selected_frame))->type
721 : NULL));
722 if (!NILP (tty_type))
723 {
724 type = (char *) alloca (SBYTES (tty_type) + 1);
725 strncpy (type, SDATA (tty_type), SBYTES (tty_type));
726 type[SBYTES (tty_type)] = 0;
727 }
728
729 t = init_tty (name, type, 0); /* Errors are not fatal. */
730 }
731
732 f = make_terminal_frame (t);
733
734 {
735 int width, height;
736 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
737 change_frame_size (f, height, width, 0, 0, 0);
738 }
739
740 adjust_glyphs (f);
741 calculate_costs (f);
742 XSETFRAME (frame, f);
743 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
744 Fmodify_frame_parameters (frame, parms);
745 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty_type,
746 build_string (t->display_info.tty->type)),
747 Qnil));
748 if (t->display_info.tty->name != NULL)
749 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty,
750 build_string (t->display_info.tty->name)),
751 Qnil));
752 else
753 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty, Qnil), Qnil));
754
755 /* Make the frame face alist be frame-specific, so that each
756 frame could change its face definitions independently. */
757 f->face_alist = Fcopy_alist (sf->face_alist);
758 /* Simple Fcopy_alist isn't enough, because we need the contents of
759 the vectors which are the CDRs of associations in face_alist to
760 be copied as well. */
761 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
762 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
763 return frame;
764}
765
766\f
767/* Perform the switch to frame FRAME.
768
769 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
770 FRAME1 as frame.
771
772 If TRACK is non-zero and the frame that currently has the focus
773 redirects its focus to the selected frame, redirect that focused
774 frame's focus to FRAME instead.
775
776 FOR_DELETION non-zero means that the selected frame is being
777 deleted, which includes the possibility that the frame's terminal
778 is dead.
779
780 The value of NORECORD is passed as argument to Fselect_window. */
781
782Lisp_Object
783do_switch_frame (frame, track, for_deletion, norecord)
784 Lisp_Object frame, norecord;
785 int track, for_deletion;
786{
787 struct frame *sf = SELECTED_FRAME ();
788
789 /* If FRAME is a switch-frame event, extract the frame we should
790 switch to. */
791 if (CONSP (frame)
792 && EQ (XCAR (frame), Qswitch_frame)
793 && CONSP (XCDR (frame)))
794 frame = XCAR (XCDR (frame));
795
796 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
797 a switch-frame event to arrive after a frame is no longer live,
798 especially when deleting the initial frame during startup. */
799 CHECK_FRAME (frame);
800 if (! FRAME_LIVE_P (XFRAME (frame)))
801 return Qnil;
802
803 if (sf == XFRAME (frame))
804 return frame;
805
806 /* This is too greedy; it causes inappropriate focus redirection
807 that's hard to get rid of. */
808#if 0
809 /* If a frame's focus has been redirected toward the currently
810 selected frame, we should change the redirection to point to the
811 newly selected frame. This means that if the focus is redirected
812 from a minibufferless frame to a surrogate minibuffer frame, we
813 can use `other-window' to switch between all the frames using
814 that minibuffer frame, and the focus redirection will follow us
815 around. */
816 if (track)
817 {
818 Lisp_Object tail;
819
820 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
821 {
822 Lisp_Object focus;
823
824 if (!FRAMEP (XCAR (tail)))
825 abort ();
826
827 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
828
829 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
830 Fredirect_frame_focus (XCAR (tail), frame);
831 }
832 }
833#else /* ! 0 */
834 /* Instead, apply it only to the frame we're pointing to. */
835#ifdef HAVE_WINDOW_SYSTEM
836 if (track && FRAME_WINDOW_P (XFRAME (frame)))
837 {
838 Lisp_Object focus, xfocus;
839
840 xfocus = x_get_focus_frame (XFRAME (frame));
841 if (FRAMEP (xfocus))
842 {
843 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
844 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
845 Fredirect_frame_focus (xfocus, frame);
846 }
847 }
848#endif /* HAVE_X_WINDOWS */
849#endif /* ! 0 */
850
851 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
852 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
853
854 if (FRAME_TERMCAP_P (XFRAME (frame)) || FRAME_MSDOS_P (XFRAME (frame)))
855 {
856 if (FRAMEP (FRAME_TTY (XFRAME (frame))->top_frame))
857 /* Mark previously displayed frame as now obscured. */
858 XFRAME (FRAME_TTY (XFRAME (frame))->top_frame)->async_visible = 2;
859 XFRAME (frame)->async_visible = 1;
860 FRAME_TTY (XFRAME (frame))->top_frame = frame;
861 }
862
863 selected_frame = frame;
864 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
865 last_nonminibuf_frame = XFRAME (selected_frame);
866
867 Fselect_window (XFRAME (frame)->selected_window, norecord);
868
869#ifdef NS_IMPL_COCOA
870 /* term gets no other notification of this */
871 if (for_deletion)
872 Fraise_frame(Qnil);
873#endif
874
875 /* We want to make sure that the next event generates a frame-switch
876 event to the appropriate frame. This seems kludgy to me, but
877 before you take it out, make sure that evaluating something like
878 (select-window (frame-root-window (new-frame))) doesn't end up
879 with your typing being interpreted in the new frame instead of
880 the one you're actually typing in. */
881 internal_last_event_frame = Qnil;
882
883 return frame;
884}
885
886DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
887 doc: /* Select FRAME.
888Subsequent editing commands apply to its selected window.
889Optional argument NORECORD means to neither change the order of
890recently selected windows nor the buffer list.
891
892The selection of FRAME lasts until the next time the user does
893something to select a different frame, or until the next time
894this function is called. If you are using a window system, the
895previously selected frame may be restored as the selected frame
896after return to the command loop, because it still may have the
897window system's input focus. On a text-only terminal, the next
898redisplay will display FRAME.
899
900This function returns FRAME, or nil if FRAME has been deleted. */)
901 (frame, norecord)
902 Lisp_Object frame, norecord;
903{
904 return do_switch_frame (frame, 1, 0, norecord);
905}
906
907
908DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
909 doc: /* Handle a switch-frame event EVENT.
910Switch-frame events are usually bound to this function.
911A switch-frame event tells Emacs that the window manager has requested
912that the user's events be directed to the frame mentioned in the event.
913This function selects the selected window of the frame of EVENT.
914
915If EVENT is frame object, handle it as if it were a switch-frame event
916to that frame. */)
917 (event)
918 Lisp_Object event;
919{
920 /* Preserve prefix arg that the command loop just cleared. */
921 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
922 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
923 return do_switch_frame (event, 0, 0, Qnil);
924}
925
926DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
927 doc: /* Return the frame that is now selected. */)
928 ()
929{
930 return selected_frame;
931}
932\f
933DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
934 doc: /* Return the frame object that window WINDOW is on. */)
935 (window)
936 Lisp_Object window;
937{
938 CHECK_LIVE_WINDOW (window);
939 return XWINDOW (window)->frame;
940}
941
942DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
943 doc: /* Returns the topmost, leftmost window of FRAME.
944If omitted, FRAME defaults to the currently selected frame. */)
945 (frame)
946 Lisp_Object frame;
947{
948 Lisp_Object w;
949
950 if (NILP (frame))
951 w = SELECTED_FRAME ()->root_window;
952 else
953 {
954 CHECK_LIVE_FRAME (frame);
955 w = XFRAME (frame)->root_window;
956 }
957 while (NILP (XWINDOW (w)->buffer))
958 {
959 if (! NILP (XWINDOW (w)->hchild))
960 w = XWINDOW (w)->hchild;
961 else if (! NILP (XWINDOW (w)->vchild))
962 w = XWINDOW (w)->vchild;
963 else
964 abort ();
965 }
966 return w;
967}
968
969DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
970 Sactive_minibuffer_window, 0, 0, 0,
971 doc: /* Return the currently active minibuffer window, or nil if none. */)
972 ()
973{
974 return minibuf_level ? minibuf_window : Qnil;
975}
976
977DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
978 doc: /* Returns the root-window of FRAME.
979If omitted, FRAME defaults to the currently selected frame. */)
980 (frame)
981 Lisp_Object frame;
982{
983 Lisp_Object window;
984
985 if (NILP (frame))
986 window = SELECTED_FRAME ()->root_window;
987 else
988 {
989 CHECK_LIVE_FRAME (frame);
990 window = XFRAME (frame)->root_window;
991 }
992
993 return window;
994}
995
996DEFUN ("frame-selected-window", Fframe_selected_window,
997 Sframe_selected_window, 0, 1, 0,
998 doc: /* Return the selected window of FRAME.
999FRAME defaults to the currently selected frame. */)
1000 (frame)
1001 Lisp_Object frame;
1002{
1003 Lisp_Object window;
1004
1005 if (NILP (frame))
1006 window = SELECTED_FRAME ()->selected_window;
1007 else
1008 {
1009 CHECK_LIVE_FRAME (frame);
1010 window = XFRAME (frame)->selected_window;
1011 }
1012
1013 return window;
1014}
1015
1016DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
1017 Sset_frame_selected_window, 2, 3, 0,
1018 doc: /* Set selected window of FRAME to WINDOW.
1019If FRAME is nil, use the selected frame. If FRAME is the
1020selected frame, this makes WINDOW the selected window.
1021Optional argument NORECORD non-nil means to neither change the
1022order of recently selected windows nor the buffer list.
1023Return WINDOW. */)
1024 (frame, window, norecord)
1025 Lisp_Object frame, window, norecord;
1026{
1027 if (NILP (frame))
1028 frame = selected_frame;
1029
1030 CHECK_LIVE_FRAME (frame);
1031 CHECK_LIVE_WINDOW (window);
1032
1033 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
1034 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
1035
1036 if (EQ (frame, selected_frame))
1037 return Fselect_window (window, norecord);
1038
1039 return XFRAME (frame)->selected_window = window;
1040}
1041
1042\f
1043DEFUN ("frame-list", Fframe_list, Sframe_list,
1044 0, 0, 0,
1045 doc: /* Return a list of all frames. */)
1046 ()
1047{
1048 Lisp_Object frames;
1049 frames = Fcopy_sequence (Vframe_list);
1050#ifdef HAVE_WINDOW_SYSTEM
1051 if (FRAMEP (tip_frame))
1052 frames = Fdelq (tip_frame, frames);
1053#endif
1054 return frames;
1055}
1056
1057/* Return the next frame in the frame list after FRAME.
1058 If MINIBUF is nil, exclude minibuffer-only frames.
1059 If MINIBUF is a window, include only its own frame
1060 and any frame now using that window as the minibuffer.
1061 If MINIBUF is `visible', include all visible frames.
1062 If MINIBUF is 0, include all visible and iconified frames.
1063 Otherwise, include all frames. */
1064
1065static Lisp_Object
1066next_frame (frame, minibuf)
1067 Lisp_Object frame;
1068 Lisp_Object minibuf;
1069{
1070 Lisp_Object tail;
1071 int passed = 0;
1072
1073 /* There must always be at least one frame in Vframe_list. */
1074 if (! CONSP (Vframe_list))
1075 abort ();
1076
1077 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
1078 forever. Forestall that. */
1079 CHECK_LIVE_FRAME (frame);
1080
1081 while (1)
1082 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1083 {
1084 Lisp_Object f;
1085
1086 f = XCAR (tail);
1087
1088 if (passed
1089 && ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1090 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1091 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1092 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame)))))
1093 {
1094 /* Decide whether this frame is eligible to be returned. */
1095
1096 /* If we've looped all the way around without finding any
1097 eligible frames, return the original frame. */
1098 if (EQ (f, frame))
1099 return f;
1100
1101 /* Let minibuf decide if this frame is acceptable. */
1102 if (NILP (minibuf))
1103 {
1104 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1105 return f;
1106 }
1107 else if (EQ (minibuf, Qvisible))
1108 {
1109 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1110 if (FRAME_VISIBLE_P (XFRAME (f)))
1111 return f;
1112 }
1113 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
1114 {
1115 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1116 if (FRAME_VISIBLE_P (XFRAME (f))
1117 || FRAME_ICONIFIED_P (XFRAME (f)))
1118 return f;
1119 }
1120 else if (WINDOWP (minibuf))
1121 {
1122 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1123 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1124 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1125 FRAME_FOCUS_FRAME (XFRAME (f))))
1126 return f;
1127 }
1128 else
1129 return f;
1130 }
1131
1132 if (EQ (frame, f))
1133 passed++;
1134 }
1135}
1136
1137/* Return the previous frame in the frame list before FRAME.
1138 If MINIBUF is nil, exclude minibuffer-only frames.
1139 If MINIBUF is a window, include only its own frame
1140 and any frame now using that window as the minibuffer.
1141 If MINIBUF is `visible', include all visible frames.
1142 If MINIBUF is 0, include all visible and iconified frames.
1143 Otherwise, include all frames. */
1144
1145static Lisp_Object
1146prev_frame (frame, minibuf)
1147 Lisp_Object frame;
1148 Lisp_Object minibuf;
1149{
1150 Lisp_Object tail;
1151 Lisp_Object prev;
1152
1153 /* There must always be at least one frame in Vframe_list. */
1154 if (! CONSP (Vframe_list))
1155 abort ();
1156
1157 prev = Qnil;
1158 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1159 {
1160 Lisp_Object f;
1161
1162 f = XCAR (tail);
1163 if (!FRAMEP (f))
1164 abort ();
1165
1166 if (EQ (frame, f) && !NILP (prev))
1167 return prev;
1168
1169 if ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
1170 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1171 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
1172 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame))))
1173 {
1174 /* Decide whether this frame is eligible to be returned,
1175 according to minibuf. */
1176 if (NILP (minibuf))
1177 {
1178 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1179 prev = f;
1180 }
1181 else if (WINDOWP (minibuf))
1182 {
1183 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1184 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1185 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1186 FRAME_FOCUS_FRAME (XFRAME (f))))
1187 prev = f;
1188 }
1189 else if (EQ (minibuf, Qvisible))
1190 {
1191 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1192 if (FRAME_VISIBLE_P (XFRAME (f)))
1193 prev = f;
1194 }
1195 else if (XFASTINT (minibuf) == 0)
1196 {
1197 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1198 if (FRAME_VISIBLE_P (XFRAME (f))
1199 || FRAME_ICONIFIED_P (XFRAME (f)))
1200 prev = f;
1201 }
1202 else
1203 prev = f;
1204 }
1205 }
1206
1207 /* We've scanned the entire list. */
1208 if (NILP (prev))
1209 /* We went through the whole frame list without finding a single
1210 acceptable frame. Return the original frame. */
1211 return frame;
1212 else
1213 /* There were no acceptable frames in the list before FRAME; otherwise,
1214 we would have returned directly from the loop. Since PREV is the last
1215 acceptable frame in the list, return it. */
1216 return prev;
1217}
1218
1219
1220DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1221 doc: /* Return the next frame in the frame list after FRAME.
1222It considers only frames on the same terminal as FRAME.
1223By default, skip minibuffer-only frames.
1224If omitted, FRAME defaults to the selected frame.
1225If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1226If MINIFRAME is a window, include only its own frame
1227and any frame now using that window as the minibuffer.
1228If MINIFRAME is `visible', include all visible frames.
1229If MINIFRAME is 0, include all visible and iconified frames.
1230Otherwise, include all frames. */)
1231 (frame, miniframe)
1232 Lisp_Object frame, miniframe;
1233{
1234 if (NILP (frame))
1235 frame = selected_frame;
1236
1237 CHECK_LIVE_FRAME (frame);
1238 return next_frame (frame, miniframe);
1239}
1240
1241DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1242 doc: /* Return the previous frame in the frame list before FRAME.
1243It considers only frames on the same terminal as FRAME.
1244By default, skip minibuffer-only frames.
1245If omitted, FRAME defaults to the selected frame.
1246If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1247If MINIFRAME is a window, include only its own frame
1248and any frame now using that window as the minibuffer.
1249If MINIFRAME is `visible', include all visible frames.
1250If MINIFRAME is 0, include all visible and iconified frames.
1251Otherwise, include all frames. */)
1252 (frame, miniframe)
1253 Lisp_Object frame, miniframe;
1254{
1255 if (NILP (frame))
1256 frame = selected_frame;
1257 CHECK_LIVE_FRAME (frame);
1258 return prev_frame (frame, miniframe);
1259}
1260\f
1261/* Return 1 if it is ok to delete frame F;
1262 0 if all frames aside from F are invisible.
1263 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1264
1265int
1266other_visible_frames (f)
1267 FRAME_PTR f;
1268{
1269 /* We know the selected frame is visible,
1270 so if F is some other frame, it can't be the sole visible one. */
1271 if (f == SELECTED_FRAME ())
1272 {
1273 Lisp_Object frames;
1274 int count = 0;
1275
1276 for (frames = Vframe_list;
1277 CONSP (frames);
1278 frames = XCDR (frames))
1279 {
1280 Lisp_Object this;
1281
1282 this = XCAR (frames);
1283 /* Verify that the frame's window still exists
1284 and we can still talk to it. And note any recent change
1285 in visibility. */
1286#ifdef HAVE_WINDOW_SYSTEM
1287 if (FRAME_WINDOW_P (XFRAME (this)))
1288 {
1289 x_sync (XFRAME (this));
1290 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1291 }
1292#endif
1293
1294 if (FRAME_VISIBLE_P (XFRAME (this))
1295 || FRAME_ICONIFIED_P (XFRAME (this))
1296 /* Allow deleting the terminal frame when at least
1297 one X frame exists! */
1298 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1299 count++;
1300 }
1301 return count > 1;
1302 }
1303 return 1;
1304}
1305
1306/* Error handler for `delete-frame-functions'. */
1307static Lisp_Object
1308delete_frame_handler (Lisp_Object arg)
1309{
1310 add_to_log ("Error during `delete-frame': %s", arg, Qnil);
1311 return Qnil;
1312}
1313
1314extern Lisp_Object Qrun_hook_with_args;
1315
1316/* Delete FRAME. When FORCE equals Qnoelisp, delete FRAME
1317 unconditionally. x_connection_closed and delete_terminal use
1318 this. Any other value of FORCE implements the semantics
1319 described for Fdelete_frame. */
1320Lisp_Object
1321delete_frame (frame, force)
1322 register Lisp_Object frame, force;
1323{
1324 struct frame *f;
1325 struct frame *sf = SELECTED_FRAME ();
1326 struct kboard *kb;
1327
1328 int minibuffer_selected;
1329
1330 if (EQ (frame, Qnil))
1331 {
1332 f = sf;
1333 XSETFRAME (frame, f);
1334 }
1335 else
1336 {
1337 CHECK_FRAME (frame);
1338 f = XFRAME (frame);
1339 }
1340
1341 if (! FRAME_LIVE_P (f))
1342 return Qnil;
1343
1344 if (NILP (force) && !other_visible_frames (f))
1345 error ("Attempt to delete the sole visible or iconified frame");
1346
1347 /* x_connection_closed must have set FORCE to `noelisp' in order
1348 to delete the last frame, if it is gone. */
1349 if (NILP (XCDR (Vframe_list)) && !EQ (force, Qnoelisp))
1350 error ("Attempt to delete the only frame");
1351
1352 /* Does this frame have a minibuffer, and is it the surrogate
1353 minibuffer for any other frame? */
1354 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1355 {
1356 Lisp_Object frames;
1357
1358 for (frames = Vframe_list;
1359 CONSP (frames);
1360 frames = XCDR (frames))
1361 {
1362 Lisp_Object this;
1363 this = XCAR (frames);
1364
1365 if (! EQ (this, frame)
1366 && EQ (frame,
1367 WINDOW_FRAME (XWINDOW
1368 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1369 {
1370 /* If we MUST delete this frame, delete the other first.
1371 But do this only if FORCE equals `noelisp'. */
1372 if (EQ (force, Qnoelisp))
1373 delete_frame (this, Qnoelisp);
1374 else
1375 error ("Attempt to delete a surrogate minibuffer frame");
1376 }
1377 }
1378 }
1379
1380 /* Run `delete-frame-functions' unless FORCE is `noelisp' or
1381 frame is a tooltip. FORCE is set to `noelisp' when handling
1382 a disconnect from the terminal, so we don't dare call Lisp
1383 code. */
1384 if (NILP (Vrun_hooks) || !NILP (Fframe_parameter (frame, intern ("tooltip"))))
1385 ;
1386 if (EQ (force, Qnoelisp))
1387 pending_funcalls
1388 = Fcons (list3 (Qrun_hook_with_args, Qdelete_frame_functions, frame),
1389 pending_funcalls);
1390 else
1391 safe_call2 (Qrun_hook_with_args, Qdelete_frame_functions, frame);
1392
1393 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1394 if (! FRAME_LIVE_P (f))
1395 return Qnil;
1396
1397 /* At this point, we are committed to deleting the frame.
1398 There is no more chance for errors to prevent it. */
1399
1400 minibuffer_selected = EQ (minibuf_window, selected_window);
1401
1402 /* Don't let the frame remain selected. */
1403 if (f == sf)
1404 {
1405 Lisp_Object tail, frame1;
1406
1407 /* Look for another visible frame on the same terminal. */
1408 frame1 = next_frame (frame, Qvisible);
1409
1410 /* If there is none, find *some* other frame. */
1411 if (NILP (frame1) || EQ (frame1, frame))
1412 {
1413 FOR_EACH_FRAME (tail, frame1)
1414 {
1415 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
1416 break;
1417 }
1418 }
1419
1420 do_switch_frame (frame1, 0, 1, Qnil);
1421 sf = SELECTED_FRAME ();
1422 }
1423
1424 /* Don't allow minibuf_window to remain on a deleted frame. */
1425 if (EQ (f->minibuffer_window, minibuf_window))
1426 {
1427 Fset_window_buffer (sf->minibuffer_window,
1428 XWINDOW (minibuf_window)->buffer, Qnil);
1429 minibuf_window = sf->minibuffer_window;
1430
1431 /* If the dying minibuffer window was selected,
1432 select the new one. */
1433 if (minibuffer_selected)
1434 Fselect_window (minibuf_window, Qnil);
1435 }
1436
1437 /* Don't let echo_area_window to remain on a deleted frame. */
1438 if (EQ (f->minibuffer_window, echo_area_window))
1439 echo_area_window = sf->minibuffer_window;
1440
1441 /* Clear any X selections for this frame. */
1442#ifdef HAVE_X_WINDOWS
1443 if (FRAME_X_P (f))
1444 x_clear_frame_selections (f);
1445#endif
1446
1447 /* Free glyphs.
1448 This function must be called before the window tree of the
1449 frame is deleted because windows contain dynamically allocated
1450 memory. */
1451 free_glyphs (f);
1452
1453#ifdef HAVE_WINDOW_SYSTEM
1454 /* Give chance to each font driver to free a frame specific data. */
1455 font_update_drivers (f, Qnil);
1456#endif
1457
1458 /* Mark all the windows that used to be on FRAME as deleted, and then
1459 remove the reference to them. */
1460 delete_all_subwindows (XWINDOW (f->root_window));
1461 f->root_window = Qnil;
1462
1463 Vframe_list = Fdelq (frame, Vframe_list);
1464 FRAME_SET_VISIBLE (f, 0);
1465
1466 /* Allow the vector of menu bar contents to be freed in the next
1467 garbage collection. The frame object itself may not be garbage
1468 collected until much later, because recent_keys and other data
1469 structures can still refer to it. */
1470 f->menu_bar_vector = Qnil;
1471
1472 free_font_driver_list (f);
1473 xfree (f->namebuf);
1474 xfree (f->decode_mode_spec_buffer);
1475 xfree (FRAME_INSERT_COST (f));
1476 xfree (FRAME_DELETEN_COST (f));
1477 xfree (FRAME_INSERTN_COST (f));
1478 xfree (FRAME_DELETE_COST (f));
1479 xfree (FRAME_MESSAGE_BUF (f));
1480
1481 /* Since some events are handled at the interrupt level, we may get
1482 an event for f at any time; if we zero out the frame's terminal
1483 now, then we may trip up the event-handling code. Instead, we'll
1484 promise that the terminal of the frame must be valid until we
1485 have called the window-system-dependent frame destruction
1486 routine. */
1487
1488 if (FRAME_TERMINAL (f)->delete_frame_hook)
1489 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
1490
1491 {
1492 struct terminal *terminal = FRAME_TERMINAL (f);
1493 f->output_data.nothing = 0;
1494 f->terminal = 0; /* Now the frame is dead. */
1495
1496 /* If needed, delete the terminal that this frame was on.
1497 (This must be done after the frame is killed.) */
1498 terminal->reference_count--;
1499 if (terminal->reference_count == 0)
1500 {
1501 Lisp_Object tmp;
1502 XSETTERMINAL (tmp, terminal);
1503
1504 kb = NULL;
1505 Fdelete_terminal (tmp, NILP (force) ? Qt : force);
1506 }
1507 else
1508 kb = terminal->kboard;
1509 }
1510
1511 /* If we've deleted the last_nonminibuf_frame, then try to find
1512 another one. */
1513 if (f == last_nonminibuf_frame)
1514 {
1515 Lisp_Object frames;
1516
1517 last_nonminibuf_frame = 0;
1518
1519 for (frames = Vframe_list;
1520 CONSP (frames);
1521 frames = XCDR (frames))
1522 {
1523 f = XFRAME (XCAR (frames));
1524 if (!FRAME_MINIBUF_ONLY_P (f))
1525 {
1526 last_nonminibuf_frame = f;
1527 break;
1528 }
1529 }
1530 }
1531
1532 /* If there's no other frame on the same kboard, get out of
1533 single-kboard state if we're in it for this kboard. */
1534 if (kb != NULL)
1535 {
1536 Lisp_Object frames;
1537 /* Some frame we found on the same kboard, or nil if there are none. */
1538 Lisp_Object frame_on_same_kboard;
1539
1540 frame_on_same_kboard = Qnil;
1541
1542 for (frames = Vframe_list;
1543 CONSP (frames);
1544 frames = XCDR (frames))
1545 {
1546 Lisp_Object this;
1547 struct frame *f1;
1548
1549 this = XCAR (frames);
1550 if (!FRAMEP (this))
1551 abort ();
1552 f1 = XFRAME (this);
1553
1554 if (kb == FRAME_KBOARD (f1))
1555 frame_on_same_kboard = this;
1556 }
1557
1558 if (NILP (frame_on_same_kboard))
1559 not_single_kboard_state (kb);
1560 }
1561
1562
1563 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1564 find another one. Prefer minibuffer-only frames, but also notice
1565 frames with other windows. */
1566 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
1567 {
1568 Lisp_Object frames;
1569
1570 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1571 Lisp_Object frame_with_minibuf;
1572 /* Some frame we found on the same kboard, or nil if there are none. */
1573 Lisp_Object frame_on_same_kboard;
1574
1575 frame_on_same_kboard = Qnil;
1576 frame_with_minibuf = Qnil;
1577
1578 for (frames = Vframe_list;
1579 CONSP (frames);
1580 frames = XCDR (frames))
1581 {
1582 Lisp_Object this;
1583 struct frame *f1;
1584
1585 this = XCAR (frames);
1586 if (!FRAMEP (this))
1587 abort ();
1588 f1 = XFRAME (this);
1589
1590 /* Consider only frames on the same kboard
1591 and only those with minibuffers. */
1592 if (kb == FRAME_KBOARD (f1)
1593 && FRAME_HAS_MINIBUF_P (f1))
1594 {
1595 frame_with_minibuf = this;
1596 if (FRAME_MINIBUF_ONLY_P (f1))
1597 break;
1598 }
1599
1600 if (kb == FRAME_KBOARD (f1))
1601 frame_on_same_kboard = this;
1602 }
1603
1604 if (!NILP (frame_on_same_kboard))
1605 {
1606 /* We know that there must be some frame with a minibuffer out
1607 there. If this were not true, all of the frames present
1608 would have to be minibufferless, which implies that at some
1609 point their minibuffer frames must have been deleted, but
1610 that is prohibited at the top; you can't delete surrogate
1611 minibuffer frames. */
1612 if (NILP (frame_with_minibuf))
1613 abort ();
1614
1615 kb->Vdefault_minibuffer_frame = frame_with_minibuf;
1616 }
1617 else
1618 /* No frames left on this kboard--say no minibuffer either. */
1619 kb->Vdefault_minibuffer_frame = Qnil;
1620 }
1621
1622 /* Cause frame titles to update--necessary if we now have just one frame. */
1623 update_mode_lines = 1;
1624
1625 return Qnil;
1626}
1627
1628DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1629 doc: /* Delete FRAME, permanently eliminating it from use.
1630FRAME defaults to the selected frame.
1631
1632A frame may not be deleted if its minibuffer is used by other frames.
1633Normally, you may not delete a frame if all other frames are invisible,
1634but if the second optional argument FORCE is non-nil, you may do so.
1635
1636This function runs `delete-frame-functions' before actually
1637deleting the frame, unless the frame is a tooltip.
1638The functions are run with one argument, the frame to be deleted. */)
1639 (frame, force)
1640 Lisp_Object frame, force;
1641{
1642 return delete_frame (frame, !NILP (force) ? Qt : Qnil);
1643}
1644
1645\f
1646/* Return mouse position in character cell units. */
1647
1648DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1649 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1650The position is given in character cells, where (0, 0) is the
1651upper-left corner of the frame, X is the horizontal offset, and Y is
1652the vertical offset.
1653If Emacs is running on a mouseless terminal or hasn't been programmed
1654to read the mouse position, it returns the selected frame for FRAME
1655and nil for X and Y.
1656If `mouse-position-function' is non-nil, `mouse-position' calls it,
1657passing the normal return value to that function as an argument,
1658and returns whatever that function returns. */)
1659 ()
1660{
1661 FRAME_PTR f;
1662 Lisp_Object lispy_dummy;
1663 enum scroll_bar_part party_dummy;
1664 Lisp_Object x, y, retval;
1665 int col, row;
1666 unsigned long long_dummy;
1667 struct gcpro gcpro1;
1668
1669 f = SELECTED_FRAME ();
1670 x = y = Qnil;
1671
1672#if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1673 /* It's okay for the hook to refrain from storing anything. */
1674 if (FRAME_TERMINAL (f)->mouse_position_hook)
1675 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1676 &lispy_dummy, &party_dummy,
1677 &x, &y,
1678 &long_dummy);
1679 if (! NILP (x))
1680 {
1681 col = XINT (x);
1682 row = XINT (y);
1683 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1684 XSETINT (x, col);
1685 XSETINT (y, row);
1686 }
1687#endif
1688 XSETFRAME (lispy_dummy, f);
1689 retval = Fcons (lispy_dummy, Fcons (x, y));
1690 GCPRO1 (retval);
1691 if (!NILP (Vmouse_position_function))
1692 retval = call1 (Vmouse_position_function, retval);
1693 RETURN_UNGCPRO (retval);
1694}
1695
1696DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1697 Smouse_pixel_position, 0, 0, 0,
1698 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1699The position is given in pixel units, where (0, 0) is the
1700upper-left corner of the frame, X is the horizontal offset, and Y is
1701the vertical offset.
1702If Emacs is running on a mouseless terminal or hasn't been programmed
1703to read the mouse position, it returns the selected frame for FRAME
1704and nil for X and Y. */)
1705 ()
1706{
1707 FRAME_PTR f;
1708 Lisp_Object lispy_dummy;
1709 enum scroll_bar_part party_dummy;
1710 Lisp_Object x, y;
1711 unsigned long long_dummy;
1712
1713 f = SELECTED_FRAME ();
1714 x = y = Qnil;
1715
1716#if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1717 /* It's okay for the hook to refrain from storing anything. */
1718 if (FRAME_TERMINAL (f)->mouse_position_hook)
1719 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1720 &lispy_dummy, &party_dummy,
1721 &x, &y,
1722 &long_dummy);
1723#endif
1724 XSETFRAME (lispy_dummy, f);
1725 return Fcons (lispy_dummy, Fcons (x, y));
1726}
1727
1728DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1729 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1730Coordinates are relative to the frame, not a window,
1731so the coordinates of the top left character in the frame
1732may be nonzero due to left-hand scroll bars or the menu bar.
1733
1734The position is given in character cells, where (0, 0) is the
1735upper-left corner of the frame, X is the horizontal offset, and Y is
1736the vertical offset.
1737
1738This function is a no-op for an X frame that is not visible.
1739If you have just created a frame, you must wait for it to become visible
1740before calling this function on it, like this.
1741 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1742 (frame, x, y)
1743 Lisp_Object frame, x, y;
1744{
1745 CHECK_LIVE_FRAME (frame);
1746 CHECK_NUMBER (x);
1747 CHECK_NUMBER (y);
1748
1749 /* I think this should be done with a hook. */
1750#ifdef HAVE_WINDOW_SYSTEM
1751 if (FRAME_WINDOW_P (XFRAME (frame)))
1752 /* Warping the mouse will cause enternotify and focus events. */
1753 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1754#else
1755#if defined (MSDOS) && defined (HAVE_MOUSE)
1756 if (FRAME_MSDOS_P (XFRAME (frame)))
1757 {
1758 Fselect_frame (frame, Qnil);
1759 mouse_moveto (XINT (x), XINT (y));
1760 }
1761#else
1762#ifdef HAVE_GPM
1763 {
1764 Fselect_frame (frame, Qnil);
1765 term_mouse_moveto (XINT (x), XINT (y));
1766 }
1767#endif
1768#endif
1769#endif
1770
1771 return Qnil;
1772}
1773
1774DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1775 Sset_mouse_pixel_position, 3, 3, 0,
1776 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1777The position is given in pixels, where (0, 0) is the upper-left corner
1778of the frame, X is the horizontal offset, and Y is the vertical offset.
1779
1780Note, this is a no-op for an X frame that is not visible.
1781If you have just created a frame, you must wait for it to become visible
1782before calling this function on it, like this.
1783 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1784 (frame, x, y)
1785 Lisp_Object frame, x, y;
1786{
1787 CHECK_LIVE_FRAME (frame);
1788 CHECK_NUMBER (x);
1789 CHECK_NUMBER (y);
1790
1791 /* I think this should be done with a hook. */
1792#ifdef HAVE_WINDOW_SYSTEM
1793 if (FRAME_WINDOW_P (XFRAME (frame)))
1794 /* Warping the mouse will cause enternotify and focus events. */
1795 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1796#else
1797#if defined (MSDOS) && defined (HAVE_MOUSE)
1798 if (FRAME_MSDOS_P (XFRAME (frame)))
1799 {
1800 Fselect_frame (frame, Qnil);
1801 mouse_moveto (XINT (x), XINT (y));
1802 }
1803#else
1804#ifdef HAVE_GPM
1805 {
1806 Fselect_frame (frame, Qnil);
1807 term_mouse_moveto (XINT (x), XINT (y));
1808 }
1809#endif
1810#endif
1811#endif
1812
1813 return Qnil;
1814}
1815\f
1816static void make_frame_visible_1 P_ ((Lisp_Object));
1817
1818DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1819 0, 1, "",
1820 doc: /* Make the frame FRAME visible (assuming it is an X window).
1821If omitted, FRAME defaults to the currently selected frame. */)
1822 (frame)
1823 Lisp_Object frame;
1824{
1825 if (NILP (frame))
1826 frame = selected_frame;
1827
1828 CHECK_LIVE_FRAME (frame);
1829
1830 /* I think this should be done with a hook. */
1831#ifdef HAVE_WINDOW_SYSTEM
1832 if (FRAME_WINDOW_P (XFRAME (frame)))
1833 {
1834 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1835 x_make_frame_visible (XFRAME (frame));
1836 }
1837#endif
1838
1839 make_frame_visible_1 (XFRAME (frame)->root_window);
1840
1841 /* Make menu bar update for the Buffers and Frames menus. */
1842 windows_or_buffers_changed++;
1843
1844 return frame;
1845}
1846
1847/* Update the display_time slot of the buffers shown in WINDOW
1848 and all its descendents. */
1849
1850static void
1851make_frame_visible_1 (window)
1852 Lisp_Object window;
1853{
1854 struct window *w;
1855
1856 for (;!NILP (window); window = w->next)
1857 {
1858 w = XWINDOW (window);
1859
1860 if (!NILP (w->buffer))
1861 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1862
1863 if (!NILP (w->vchild))
1864 make_frame_visible_1 (w->vchild);
1865 if (!NILP (w->hchild))
1866 make_frame_visible_1 (w->hchild);
1867 }
1868}
1869
1870DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1871 0, 2, "",
1872 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1873If omitted, FRAME defaults to the currently selected frame.
1874Normally you may not make FRAME invisible if all other frames are invisible,
1875but if the second optional argument FORCE is non-nil, you may do so. */)
1876 (frame, force)
1877 Lisp_Object frame, force;
1878{
1879 if (NILP (frame))
1880 frame = selected_frame;
1881
1882 CHECK_LIVE_FRAME (frame);
1883
1884 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1885 error ("Attempt to make invisible the sole visible or iconified frame");
1886
1887#if 0 /* This isn't logically necessary, and it can do GC. */
1888 /* Don't let the frame remain selected. */
1889 if (EQ (frame, selected_frame))
1890 do_switch_frame (next_frame (frame, Qt), 0, 0, Qnil)
1891#endif
1892
1893 /* Don't allow minibuf_window to remain on a deleted frame. */
1894 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1895 {
1896 struct frame *sf = XFRAME (selected_frame);
1897 Fset_window_buffer (sf->minibuffer_window,
1898 XWINDOW (minibuf_window)->buffer, Qnil);
1899 minibuf_window = sf->minibuffer_window;
1900 }
1901
1902 /* I think this should be done with a hook. */
1903#ifdef HAVE_WINDOW_SYSTEM
1904 if (FRAME_WINDOW_P (XFRAME (frame)))
1905 x_make_frame_invisible (XFRAME (frame));
1906#endif
1907
1908 /* Make menu bar update for the Buffers and Frames menus. */
1909 windows_or_buffers_changed++;
1910
1911 return Qnil;
1912}
1913
1914DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1915 0, 1, "",
1916 doc: /* Make the frame FRAME into an icon.
1917If omitted, FRAME defaults to the currently selected frame. */)
1918 (frame)
1919 Lisp_Object frame;
1920{
1921 if (NILP (frame))
1922 frame = selected_frame;
1923
1924 CHECK_LIVE_FRAME (frame);
1925
1926#if 0 /* This isn't logically necessary, and it can do GC. */
1927 /* Don't let the frame remain selected. */
1928 if (EQ (frame, selected_frame))
1929 Fhandle_switch_frame (next_frame (frame, Qt));
1930#endif
1931
1932 /* Don't allow minibuf_window to remain on a deleted frame. */
1933 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1934 {
1935 struct frame *sf = XFRAME (selected_frame);
1936 Fset_window_buffer (sf->minibuffer_window,
1937 XWINDOW (minibuf_window)->buffer, Qnil);
1938 minibuf_window = sf->minibuffer_window;
1939 }
1940
1941 /* I think this should be done with a hook. */
1942#ifdef HAVE_WINDOW_SYSTEM
1943 if (FRAME_WINDOW_P (XFRAME (frame)))
1944 x_iconify_frame (XFRAME (frame));
1945#endif
1946
1947 /* Make menu bar update for the Buffers and Frames menus. */
1948 windows_or_buffers_changed++;
1949
1950 return Qnil;
1951}
1952
1953DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1954 1, 1, 0,
1955 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1956A frame that is not \"visible\" is not updated and, if it works through
1957a window system, it may not show at all.
1958Return the symbol `icon' if frame is visible only as an icon.
1959
1960On a text-only terminal, all frames are considered visible, whether
1961they are currently being displayed or not, and this function returns t
1962for all frames. */)
1963 (frame)
1964 Lisp_Object frame;
1965{
1966 CHECK_LIVE_FRAME (frame);
1967
1968 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1969
1970 if (FRAME_VISIBLE_P (XFRAME (frame)))
1971 return Qt;
1972 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1973 return Qicon;
1974 return Qnil;
1975}
1976
1977DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1978 0, 0, 0,
1979 doc: /* Return a list of all frames now \"visible\" (being updated). */)
1980 ()
1981{
1982 Lisp_Object tail, frame;
1983 struct frame *f;
1984 Lisp_Object value;
1985
1986 value = Qnil;
1987 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1988 {
1989 frame = XCAR (tail);
1990 if (!FRAMEP (frame))
1991 continue;
1992 f = XFRAME (frame);
1993 if (FRAME_VISIBLE_P (f))
1994 value = Fcons (frame, value);
1995 }
1996 return value;
1997}
1998
1999
2000DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
2001 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
2002If FRAME is invisible or iconified, make it visible.
2003If you don't specify a frame, the selected frame is used.
2004If Emacs is displaying on an ordinary terminal or some other device which
2005doesn't support multiple overlapping frames, this function selects FRAME. */)
2006 (frame)
2007 Lisp_Object frame;
2008{
2009 struct frame *f;
2010 if (NILP (frame))
2011 frame = selected_frame;
2012
2013 CHECK_LIVE_FRAME (frame);
2014
2015 f = XFRAME (frame);
2016
2017 if (FRAME_TERMCAP_P (f))
2018 /* On a text-only terminal select FRAME. */
2019 Fselect_frame (frame, Qnil);
2020 else
2021 /* Do like the documentation says. */
2022 Fmake_frame_visible (frame);
2023
2024 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2025 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
2026
2027 return Qnil;
2028}
2029
2030/* Should we have a corresponding function called Flower_Power? */
2031DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
2032 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
2033If you don't specify a frame, the selected frame is used.
2034If Emacs is displaying on an ordinary terminal or some other device which
2035doesn't support multiple overlapping frames, this function does nothing. */)
2036 (frame)
2037 Lisp_Object frame;
2038{
2039 struct frame *f;
2040
2041 if (NILP (frame))
2042 frame = selected_frame;
2043
2044 CHECK_LIVE_FRAME (frame);
2045
2046 f = XFRAME (frame);
2047
2048 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2049 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
2050
2051 return Qnil;
2052}
2053
2054\f
2055DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
2056 1, 2, 0,
2057 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
2058In other words, switch-frame events caused by events in FRAME will
2059request a switch to FOCUS-FRAME, and `last-event-frame' will be
2060FOCUS-FRAME after reading an event typed at FRAME.
2061
2062If FOCUS-FRAME is omitted or nil, any existing redirection is
2063cancelled, and the frame again receives its own keystrokes.
2064
2065Focus redirection is useful for temporarily redirecting keystrokes to
2066a surrogate minibuffer frame when a frame doesn't have its own
2067minibuffer window.
2068
2069A frame's focus redirection can be changed by `select-frame'. If frame
2070FOO is selected, and then a different frame BAR is selected, any
2071frames redirecting their focus to FOO are shifted to redirect their
2072focus to BAR. This allows focus redirection to work properly when the
2073user switches from one frame to another using `select-window'.
2074
2075This means that a frame whose focus is redirected to itself is treated
2076differently from a frame whose focus is redirected to nil; the former
2077is affected by `select-frame', while the latter is not.
2078
2079The redirection lasts until `redirect-frame-focus' is called to change it. */)
2080 (frame, focus_frame)
2081 Lisp_Object frame, focus_frame;
2082{
2083 struct frame *f;
2084
2085 /* Note that we don't check for a live frame here. It's reasonable
2086 to redirect the focus of a frame you're about to delete, if you
2087 know what other frame should receive those keystrokes. */
2088 CHECK_FRAME (frame);
2089
2090 if (! NILP (focus_frame))
2091 CHECK_LIVE_FRAME (focus_frame);
2092
2093 f = XFRAME (frame);
2094
2095 f->focus_frame = focus_frame;
2096
2097 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
2098 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
2099
2100 return Qnil;
2101}
2102
2103
2104DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
2105 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
2106This returns nil if FRAME's focus is not redirected.
2107See `redirect-frame-focus'. */)
2108 (frame)
2109 Lisp_Object frame;
2110{
2111 CHECK_LIVE_FRAME (frame);
2112
2113 return FRAME_FOCUS_FRAME (XFRAME (frame));
2114}
2115
2116
2117\f
2118/* Return the value of frame parameter PROP in frame FRAME. */
2119
2120Lisp_Object
2121get_frame_param (frame, prop)
2122 register struct frame *frame;
2123 Lisp_Object prop;
2124{
2125 register Lisp_Object tem;
2126
2127 tem = Fassq (prop, frame->param_alist);
2128 if (EQ (tem, Qnil))
2129 return tem;
2130 return Fcdr (tem);
2131}
2132
2133/* Return the buffer-predicate of the selected frame. */
2134
2135Lisp_Object
2136frame_buffer_predicate (frame)
2137 Lisp_Object frame;
2138{
2139 return XFRAME (frame)->buffer_predicate;
2140}
2141
2142/* Return the buffer-list of the selected frame. */
2143
2144Lisp_Object
2145frame_buffer_list (frame)
2146 Lisp_Object frame;
2147{
2148 return XFRAME (frame)->buffer_list;
2149}
2150
2151/* Set the buffer-list of the selected frame. */
2152
2153void
2154set_frame_buffer_list (frame, list)
2155 Lisp_Object frame, list;
2156{
2157 XFRAME (frame)->buffer_list = list;
2158}
2159
2160/* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
2161
2162void
2163frames_discard_buffer (buffer)
2164 Lisp_Object buffer;
2165{
2166 Lisp_Object frame, tail;
2167
2168 FOR_EACH_FRAME (tail, frame)
2169 {
2170 XFRAME (frame)->buffer_list
2171 = Fdelq (buffer, XFRAME (frame)->buffer_list);
2172 XFRAME (frame)->buried_buffer_list
2173 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
2174 }
2175}
2176
2177/* Modify the alist in *ALISTPTR to associate PROP with VAL.
2178 If the alist already has an element for PROP, we change it. */
2179
2180void
2181store_in_alist (alistptr, prop, val)
2182 Lisp_Object *alistptr, val;
2183 Lisp_Object prop;
2184{
2185 register Lisp_Object tem;
2186
2187 tem = Fassq (prop, *alistptr);
2188 if (EQ (tem, Qnil))
2189 *alistptr = Fcons (Fcons (prop, val), *alistptr);
2190 else
2191 Fsetcdr (tem, val);
2192}
2193
2194static int
2195frame_name_fnn_p (str, len)
2196 char *str;
2197 EMACS_INT len;
2198{
2199 if (len > 1 && str[0] == 'F')
2200 {
2201 char *end_ptr;
2202
2203 strtol (str + 1, &end_ptr, 10);
2204
2205 if (end_ptr == str + len)
2206 return 1;
2207 }
2208 return 0;
2209}
2210
2211/* Set the name of the terminal frame. Also used by MSDOS frames.
2212 Modeled after x_set_name which is used for WINDOW frames. */
2213
2214static void
2215set_term_frame_name (f, name)
2216 struct frame *f;
2217 Lisp_Object name;
2218{
2219 f->explicit_name = ! NILP (name);
2220
2221 /* If NAME is nil, set the name to F<num>. */
2222 if (NILP (name))
2223 {
2224 char namebuf[20];
2225
2226 /* Check for no change needed in this very common case
2227 before we do any consing. */
2228 if (frame_name_fnn_p (SDATA (f->name),
2229 SBYTES (f->name)))
2230 return;
2231
2232 tty_frame_count++;
2233 sprintf (namebuf, "F%d", tty_frame_count);
2234 name = build_string (namebuf);
2235 }
2236 else
2237 {
2238 CHECK_STRING (name);
2239
2240 /* Don't change the name if it's already NAME. */
2241 if (! NILP (Fstring_equal (name, f->name)))
2242 return;
2243
2244 /* Don't allow the user to set the frame name to F<num>, so it
2245 doesn't clash with the names we generate for terminal frames. */
2246 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
2247 error ("Frame names of the form F<num> are usurped by Emacs");
2248 }
2249
2250 f->name = name;
2251 update_mode_lines = 1;
2252}
2253
2254void
2255store_frame_param (f, prop, val)
2256 struct frame *f;
2257 Lisp_Object prop, val;
2258{
2259 register Lisp_Object old_alist_elt;
2260
2261 /* The buffer-list parameters are stored in a special place and not
2262 in the alist. */
2263 if (EQ (prop, Qbuffer_list))
2264 {
2265 f->buffer_list = val;
2266 return;
2267 }
2268 if (EQ (prop, Qburied_buffer_list))
2269 {
2270 f->buried_buffer_list = val;
2271 return;
2272 }
2273
2274 /* If PROP is a symbol which is supposed to have frame-local values,
2275 and it is set up based on this frame, switch to the global
2276 binding. That way, we can create or alter the frame-local binding
2277 without messing up the symbol's status. */
2278 if (SYMBOLP (prop))
2279 {
2280 Lisp_Object valcontents;
2281 valcontents = SYMBOL_VALUE (prop);
2282 if ((BUFFER_LOCAL_VALUEP (valcontents))
2283 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2284 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
2285 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2286 swap_in_global_binding (prop);
2287 }
2288
2289 /* The tty color needed to be set before the frame's parameter
2290 alist was updated with the new value. This is not true any more,
2291 but we still do this test early on. */
2292 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode)
2293 && f == FRAME_TTY (f)->previous_frame)
2294 /* Force redisplay of this tty. */
2295 FRAME_TTY (f)->previous_frame = NULL;
2296
2297 /* Update the frame parameter alist. */
2298 old_alist_elt = Fassq (prop, f->param_alist);
2299 if (EQ (old_alist_elt, Qnil))
2300 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2301 else
2302 Fsetcdr (old_alist_elt, val);
2303
2304 /* Update some other special parameters in their special places
2305 in addition to the alist. */
2306
2307 if (EQ (prop, Qbuffer_predicate))
2308 f->buffer_predicate = val;
2309
2310 if (! FRAME_WINDOW_P (f))
2311 {
2312 if (EQ (prop, Qmenu_bar_lines))
2313 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2314 else if (EQ (prop, Qname))
2315 set_term_frame_name (f, val);
2316 }
2317
2318 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2319 {
2320 if (! MINI_WINDOW_P (XWINDOW (val)))
2321 error ("Surrogate minibuffer windows must be minibuffer windows");
2322
2323 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2324 && !EQ (val, f->minibuffer_window))
2325 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2326
2327 /* Install the chosen minibuffer window, with proper buffer. */
2328 f->minibuffer_window = val;
2329 }
2330}
2331
2332DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2333 doc: /* Return the parameters-alist of frame FRAME.
2334It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2335The meaningful PARMs depend on the kind of frame.
2336If FRAME is omitted, return information on the currently selected frame. */)
2337 (frame)
2338 Lisp_Object frame;
2339{
2340 Lisp_Object alist;
2341 FRAME_PTR f;
2342 int height, width;
2343 struct gcpro gcpro1;
2344
2345 if (NILP (frame))
2346 frame = selected_frame;
2347
2348 CHECK_FRAME (frame);
2349 f = XFRAME (frame);
2350
2351 if (!FRAME_LIVE_P (f))
2352 return Qnil;
2353
2354 alist = Fcopy_alist (f->param_alist);
2355 GCPRO1 (alist);
2356
2357 if (!FRAME_WINDOW_P (f))
2358 {
2359 int fg = FRAME_FOREGROUND_PIXEL (f);
2360 int bg = FRAME_BACKGROUND_PIXEL (f);
2361 Lisp_Object elt;
2362
2363 /* If the frame's parameter alist says the colors are
2364 unspecified and reversed, take the frame's background pixel
2365 for foreground and vice versa. */
2366 elt = Fassq (Qforeground_color, alist);
2367 if (CONSP (elt) && STRINGP (XCDR (elt)))
2368 {
2369 if (strncmp (SDATA (XCDR (elt)),
2370 unspecified_bg,
2371 SCHARS (XCDR (elt))) == 0)
2372 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2373 else if (strncmp (SDATA (XCDR (elt)),
2374 unspecified_fg,
2375 SCHARS (XCDR (elt))) == 0)
2376 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2377 }
2378 else
2379 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2380 elt = Fassq (Qbackground_color, alist);
2381 if (CONSP (elt) && STRINGP (XCDR (elt)))
2382 {
2383 if (strncmp (SDATA (XCDR (elt)),
2384 unspecified_fg,
2385 SCHARS (XCDR (elt))) == 0)
2386 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2387 else if (strncmp (SDATA (XCDR (elt)),
2388 unspecified_bg,
2389 SCHARS (XCDR (elt))) == 0)
2390 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2391 }
2392 else
2393 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2394 store_in_alist (&alist, intern ("font"),
2395 build_string (FRAME_MSDOS_P (f)
2396 ? "ms-dos"
2397 : FRAME_W32_P (f) ? "w32term"
2398 :"tty"));
2399 }
2400 store_in_alist (&alist, Qname, f->name);
2401 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2402 store_in_alist (&alist, Qheight, make_number (height));
2403 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2404 store_in_alist (&alist, Qwidth, make_number (width));
2405 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2406 store_in_alist (&alist, Qminibuffer,
2407 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2408 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2409 : FRAME_MINIBUF_WINDOW (f)));
2410 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2411 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2412 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
2413
2414 /* I think this should be done with a hook. */
2415#ifdef HAVE_WINDOW_SYSTEM
2416 if (FRAME_WINDOW_P (f))
2417 x_report_frame_params (f, &alist);
2418 else
2419#endif
2420 {
2421 /* This ought to be correct in f->param_alist for an X frame. */
2422 Lisp_Object lines;
2423 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2424 store_in_alist (&alist, Qmenu_bar_lines, lines);
2425 }
2426
2427 UNGCPRO;
2428 return alist;
2429}
2430
2431
2432DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2433 doc: /* Return FRAME's value for parameter PARAMETER.
2434If FRAME is nil, describe the currently selected frame. */)
2435 (frame, parameter)
2436 Lisp_Object frame, parameter;
2437{
2438 struct frame *f;
2439 Lisp_Object value;
2440
2441 if (NILP (frame))
2442 frame = selected_frame;
2443 else
2444 CHECK_FRAME (frame);
2445 CHECK_SYMBOL (parameter);
2446
2447 f = XFRAME (frame);
2448 value = Qnil;
2449
2450 if (FRAME_LIVE_P (f))
2451 {
2452 /* Avoid consing in frequent cases. */
2453 if (EQ (parameter, Qname))
2454 value = f->name;
2455#ifdef HAVE_X_WINDOWS
2456 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2457 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2458#endif /* HAVE_X_WINDOWS */
2459 else if (EQ (parameter, Qbackground_color)
2460 || EQ (parameter, Qforeground_color))
2461 {
2462 value = Fassq (parameter, f->param_alist);
2463 if (CONSP (value))
2464 {
2465 value = XCDR (value);
2466 /* Fframe_parameters puts the actual fg/bg color names,
2467 even if f->param_alist says otherwise. This is
2468 important when param_alist's notion of colors is
2469 "unspecified". We need to do the same here. */
2470 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2471 {
2472 const char *color_name;
2473 EMACS_INT csz;
2474
2475 if (EQ (parameter, Qbackground_color))
2476 {
2477 color_name = SDATA (value);
2478 csz = SCHARS (value);
2479 if (strncmp (color_name, unspecified_bg, csz) == 0)
2480 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2481 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2482 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2483 }
2484 else if (EQ (parameter, Qforeground_color))
2485 {
2486 color_name = SDATA (value);
2487 csz = SCHARS (value);
2488 if (strncmp (color_name, unspecified_fg, csz) == 0)
2489 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2490 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2491 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2492 }
2493 }
2494 }
2495 else
2496 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2497 }
2498 else if (EQ (parameter, Qdisplay_type)
2499 || EQ (parameter, Qbackground_mode))
2500 value = Fcdr (Fassq (parameter, f->param_alist));
2501 else
2502 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2503 }
2504
2505 return value;
2506}
2507
2508
2509DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2510 Smodify_frame_parameters, 2, 2, 0,
2511 doc: /* Modify the parameters of frame FRAME according to ALIST.
2512If FRAME is nil, it defaults to the selected frame.
2513ALIST is an alist of parameters to change and their new values.
2514Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2515The meaningful PARMs depend on the kind of frame.
2516Undefined PARMs are ignored, but stored in the frame's parameter list
2517so that `frame-parameters' will return them.
2518
2519The value of frame parameter FOO can also be accessed
2520as a frame-local binding for the variable FOO, if you have
2521enabled such bindings for that variable with `make-variable-frame-local'.
2522Note that this functionality is obsolete as of Emacs 22.2, and its
2523use is not recommended. Explicitly check for a frame-parameter instead. */)
2524 (frame, alist)
2525 Lisp_Object frame, alist;
2526{
2527 FRAME_PTR f;
2528 register Lisp_Object tail, prop, val;
2529
2530 if (EQ (frame, Qnil))
2531 frame = selected_frame;
2532 CHECK_LIVE_FRAME (frame);
2533 f = XFRAME (frame);
2534
2535 /* I think this should be done with a hook. */
2536#ifdef HAVE_WINDOW_SYSTEM
2537 if (FRAME_WINDOW_P (f))
2538 x_set_frame_parameters (f, alist);
2539 else
2540#endif
2541#ifdef MSDOS
2542 if (FRAME_MSDOS_P (f))
2543 IT_set_frame_parameters (f, alist);
2544 else
2545#endif
2546
2547 {
2548 int length = XINT (Flength (alist));
2549 int i;
2550 Lisp_Object *parms
2551 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2552 Lisp_Object *values
2553 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2554
2555 /* Extract parm names and values into those vectors. */
2556
2557 i = 0;
2558 for (tail = alist; CONSP (tail); tail = XCDR (tail))
2559 {
2560 Lisp_Object elt;
2561
2562 elt = XCAR (tail);
2563 parms[i] = Fcar (elt);
2564 values[i] = Fcdr (elt);
2565 i++;
2566 }
2567
2568 /* Now process them in reverse of specified order. */
2569 for (i--; i >= 0; i--)
2570 {
2571 prop = parms[i];
2572 val = values[i];
2573 store_frame_param (f, prop, val);
2574
2575 /* Changing the background color might change the background
2576 mode, so that we have to load new defface specs.
2577 Call frame-set-background-mode to do that. */
2578 if (EQ (prop, Qbackground_color))
2579 call1 (Qframe_set_background_mode, frame);
2580 }
2581 }
2582 return Qnil;
2583}
2584\f
2585DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2586 0, 1, 0,
2587 doc: /* Height in pixels of a line in the font in frame FRAME.
2588If FRAME is omitted, the selected frame is used.
2589For a terminal frame, the value is always 1. */)
2590 (frame)
2591 Lisp_Object frame;
2592{
2593 struct frame *f;
2594
2595 if (NILP (frame))
2596 frame = selected_frame;
2597 CHECK_FRAME (frame);
2598 f = XFRAME (frame);
2599
2600#ifdef HAVE_WINDOW_SYSTEM
2601 if (FRAME_WINDOW_P (f))
2602 return make_number (x_char_height (f));
2603 else
2604#endif
2605 return make_number (1);
2606}
2607
2608
2609DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2610 0, 1, 0,
2611 doc: /* Width in pixels of characters in the font in frame FRAME.
2612If FRAME is omitted, the selected frame is used.
2613On a graphical screen, the width is the standard width of the default font.
2614For a terminal screen, the value is always 1. */)
2615 (frame)
2616 Lisp_Object frame;
2617{
2618 struct frame *f;
2619
2620 if (NILP (frame))
2621 frame = selected_frame;
2622 CHECK_FRAME (frame);
2623 f = XFRAME (frame);
2624
2625#ifdef HAVE_WINDOW_SYSTEM
2626 if (FRAME_WINDOW_P (f))
2627 return make_number (x_char_width (f));
2628 else
2629#endif
2630 return make_number (1);
2631}
2632
2633DEFUN ("frame-pixel-height", Fframe_pixel_height,
2634 Sframe_pixel_height, 0, 1, 0,
2635 doc: /* Return a FRAME's height in pixels.
2636This counts only the height available for text lines,
2637not menu bars on window-system Emacs frames.
2638For a terminal frame, the result really gives the height in characters.
2639If FRAME is omitted, the selected frame is used. */)
2640 (frame)
2641 Lisp_Object frame;
2642{
2643 struct frame *f;
2644
2645 if (NILP (frame))
2646 frame = selected_frame;
2647 CHECK_FRAME (frame);
2648 f = XFRAME (frame);
2649
2650#ifdef HAVE_WINDOW_SYSTEM
2651 if (FRAME_WINDOW_P (f))
2652 return make_number (x_pixel_height (f));
2653 else
2654#endif
2655 return make_number (FRAME_LINES (f));
2656}
2657
2658DEFUN ("frame-pixel-width", Fframe_pixel_width,
2659 Sframe_pixel_width, 0, 1, 0,
2660 doc: /* Return FRAME's width in pixels.
2661For a terminal frame, the result really gives the width in characters.
2662If FRAME is omitted, the selected frame is used. */)
2663 (frame)
2664 Lisp_Object frame;
2665{
2666 struct frame *f;
2667
2668 if (NILP (frame))
2669 frame = selected_frame;
2670 CHECK_FRAME (frame);
2671 f = XFRAME (frame);
2672
2673#ifdef HAVE_WINDOW_SYSTEM
2674 if (FRAME_WINDOW_P (f))
2675 return make_number (x_pixel_width (f));
2676 else
2677#endif
2678 return make_number (FRAME_COLS (f));
2679}
2680\f
2681DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2682 doc: /* Specify that the frame FRAME has LINES lines.
2683Optional third arg non-nil means that redisplay should use LINES lines
2684but that the idea of the actual height of the frame should not be changed. */)
2685 (frame, lines, pretend)
2686 Lisp_Object frame, lines, pretend;
2687{
2688 register struct frame *f;
2689
2690 CHECK_NUMBER (lines);
2691 if (NILP (frame))
2692 frame = selected_frame;
2693 CHECK_LIVE_FRAME (frame);
2694 f = XFRAME (frame);
2695
2696 /* I think this should be done with a hook. */
2697#ifdef HAVE_WINDOW_SYSTEM
2698 if (FRAME_WINDOW_P (f))
2699 {
2700 if (XINT (lines) != FRAME_LINES (f))
2701 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2702 do_pending_window_change (0);
2703 }
2704 else
2705#endif
2706 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2707 return Qnil;
2708}
2709
2710DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2711 doc: /* Specify that the frame FRAME has COLS columns.
2712Optional third arg non-nil means that redisplay should use COLS columns
2713but that the idea of the actual width of the frame should not be changed. */)
2714 (frame, cols, pretend)
2715 Lisp_Object frame, cols, pretend;
2716{
2717 register struct frame *f;
2718 CHECK_NUMBER (cols);
2719 if (NILP (frame))
2720 frame = selected_frame;
2721 CHECK_LIVE_FRAME (frame);
2722 f = XFRAME (frame);
2723
2724 /* I think this should be done with a hook. */
2725#ifdef HAVE_WINDOW_SYSTEM
2726 if (FRAME_WINDOW_P (f))
2727 {
2728 if (XINT (cols) != FRAME_COLS (f))
2729 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2730 do_pending_window_change (0);
2731 }
2732 else
2733#endif
2734 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2735 return Qnil;
2736}
2737
2738DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2739 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2740 (frame, cols, rows)
2741 Lisp_Object frame, cols, rows;
2742{
2743 register struct frame *f;
2744
2745 CHECK_LIVE_FRAME (frame);
2746 CHECK_NUMBER (cols);
2747 CHECK_NUMBER (rows);
2748 f = XFRAME (frame);
2749
2750 /* I think this should be done with a hook. */
2751#ifdef HAVE_WINDOW_SYSTEM
2752 if (FRAME_WINDOW_P (f))
2753 {
2754 if (XINT (rows) != FRAME_LINES (f)
2755 || XINT (cols) != FRAME_COLS (f)
2756 || f->new_text_lines || f->new_text_cols)
2757 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2758 do_pending_window_change (0);
2759 }
2760 else
2761#endif
2762 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2763
2764 return Qnil;
2765}
2766
2767DEFUN ("set-frame-position", Fset_frame_position,
2768 Sset_frame_position, 3, 3, 0,
2769 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2770This is actually the position of the upper left corner of the frame.
2771Negative values for XOFFSET or YOFFSET are interpreted relative to
2772the rightmost or bottommost possible position (that stays within the screen). */)
2773 (frame, xoffset, yoffset)
2774 Lisp_Object frame, xoffset, yoffset;
2775{
2776 register struct frame *f;
2777
2778 CHECK_LIVE_FRAME (frame);
2779 CHECK_NUMBER (xoffset);
2780 CHECK_NUMBER (yoffset);
2781 f = XFRAME (frame);
2782
2783 /* I think this should be done with a hook. */
2784#ifdef HAVE_WINDOW_SYSTEM
2785 if (FRAME_WINDOW_P (f))
2786 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2787#endif
2788
2789 return Qt;
2790}
2791
2792\f
2793/***********************************************************************
2794 Frame Parameters
2795 ***********************************************************************/
2796
2797/* Connect the frame-parameter names for X frames
2798 to the ways of passing the parameter values to the window system.
2799
2800 The name of a parameter, as a Lisp symbol,
2801 has an `x-frame-parameter' property which is an integer in Lisp
2802 that is an index in this table. */
2803
2804struct frame_parm_table {
2805 char *name;
2806 Lisp_Object *variable;
2807};
2808
2809static struct frame_parm_table frame_parms[] =
2810{
2811 {"auto-raise", &Qauto_raise},
2812 {"auto-lower", &Qauto_lower},
2813 {"background-color", 0},
2814 {"border-color", &Qborder_color},
2815 {"border-width", &Qborder_width},
2816 {"cursor-color", &Qcursor_color},
2817 {"cursor-type", &Qcursor_type},
2818 {"font", 0},
2819 {"foreground-color", 0},
2820 {"icon-name", &Qicon_name},
2821 {"icon-type", &Qicon_type},
2822 {"internal-border-width", &Qinternal_border_width},
2823 {"menu-bar-lines", &Qmenu_bar_lines},
2824 {"mouse-color", &Qmouse_color},
2825 {"name", &Qname},
2826 {"scroll-bar-width", &Qscroll_bar_width},
2827 {"title", &Qtitle},
2828 {"unsplittable", &Qunsplittable},
2829 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2830 {"visibility", &Qvisibility},
2831 {"tool-bar-lines", &Qtool_bar_lines},
2832 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2833 {"scroll-bar-background", &Qscroll_bar_background},
2834 {"screen-gamma", &Qscreen_gamma},
2835 {"line-spacing", &Qline_spacing},
2836 {"left-fringe", &Qleft_fringe},
2837 {"right-fringe", &Qright_fringe},
2838 {"wait-for-wm", &Qwait_for_wm},
2839 {"fullscreen", &Qfullscreen},
2840 {"font-backend", &Qfont_backend},
2841 {"alpha", &Qalpha}
2842};
2843
2844#ifdef HAVE_WINDOW_SYSTEM
2845
2846extern Lisp_Object Qbox;
2847extern Lisp_Object Qtop;
2848
2849/* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2850 wanted positions of the WM window (not Emacs window).
2851 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2852 window (FRAME_X_WINDOW).
2853 */
2854
2855void
2856x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2857 struct frame *f;
2858 int *width;
2859 int *height;
2860 int *top_pos;
2861 int *left_pos;
2862{
2863 int newwidth = FRAME_COLS (f);
2864 int newheight = FRAME_LINES (f);
2865 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2866
2867 *top_pos = f->top_pos;
2868 *left_pos = f->left_pos;
2869
2870 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2871 {
2872 int ph;
2873
2874 ph = x_display_pixel_height (dpyinfo);
2875 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2876 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2877 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2878 *top_pos = 0;
2879 }
2880
2881 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2882 {
2883 int pw;
2884
2885 pw = x_display_pixel_width (dpyinfo);
2886 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2887 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2888 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2889 *left_pos = 0;
2890 }
2891
2892 *width = newwidth;
2893 *height = newheight;
2894}
2895
2896
2897/* Change the parameters of frame F as specified by ALIST.
2898 If a parameter is not specially recognized, do nothing special;
2899 otherwise call the `x_set_...' function for that parameter.
2900 Except for certain geometry properties, always call store_frame_param
2901 to store the new value in the parameter alist. */
2902
2903void
2904x_set_frame_parameters (f, alist)
2905 FRAME_PTR f;
2906 Lisp_Object alist;
2907{
2908 Lisp_Object tail;
2909
2910 /* If both of these parameters are present, it's more efficient to
2911 set them both at once. So we wait until we've looked at the
2912 entire list before we set them. */
2913 int width, height;
2914
2915 /* Same here. */
2916 Lisp_Object left, top;
2917
2918 /* Same with these. */
2919 Lisp_Object icon_left, icon_top;
2920
2921 /* Record in these vectors all the parms specified. */
2922 Lisp_Object *parms;
2923 Lisp_Object *values;
2924 int i, p;
2925 int left_no_change = 0, top_no_change = 0;
2926 int icon_left_no_change = 0, icon_top_no_change = 0;
2927 int fullscreen_is_being_set = 0;
2928 int height_for_full_width = 0;
2929 int width_for_full_height = 0;
2930 enum fullscreen_type fullscreen_wanted = FULLSCREEN_NONE;
2931
2932 struct gcpro gcpro1, gcpro2;
2933
2934 i = 0;
2935 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2936 i++;
2937
2938 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2939 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2940
2941 /* Extract parm names and values into those vectors. */
2942
2943 i = 0;
2944 for (tail = alist; CONSP (tail); tail = XCDR (tail))
2945 {
2946 Lisp_Object elt;
2947
2948 elt = XCAR (tail);
2949 parms[i] = Fcar (elt);
2950 values[i] = Fcdr (elt);
2951 i++;
2952 }
2953 /* TAIL and ALIST are not used again below here. */
2954 alist = tail = Qnil;
2955
2956 GCPRO2 (*parms, *values);
2957 gcpro1.nvars = i;
2958 gcpro2.nvars = i;
2959
2960 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2961 because their values appear in VALUES and strings are not valid. */
2962 top = left = Qunbound;
2963 icon_left = icon_top = Qunbound;
2964
2965 /* Provide default values for HEIGHT and WIDTH. */
2966 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2967 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2968
2969 /* Process foreground_color and background_color before anything else.
2970 They are independent of other properties, but other properties (e.g.,
2971 cursor_color) are dependent upon them. */
2972 /* Process default font as well, since fringe widths depends on it. */
2973 /* Also, process fullscreen, width and height depend upon that. */
2974 for (p = 0; p < i; p++)
2975 {
2976 Lisp_Object prop, val;
2977
2978 prop = parms[p];
2979 val = values[p];
2980 if (EQ (prop, Qforeground_color)
2981 || EQ (prop, Qbackground_color)
2982 || EQ (prop, Qfont)
2983 || EQ (prop, Qfullscreen))
2984 {
2985 register Lisp_Object param_index, old_value;
2986
2987 if (EQ (prop, Qfullscreen))
2988 {
2989 /* The parameter handler can reset f->want_fullscreen to
2990 FULLSCREEN_NONE. But we need the requested value later
2991 to decide whether a height or width parameter shall be
2992 applied. Therefore, we remember the requested value in
2993 fullscreen_wanted for the following two cases. */
2994 if (EQ (val, Qfullheight))
2995 fullscreen_wanted = FULLSCREEN_HEIGHT;
2996 else if (EQ (val, Qfullwidth))
2997 fullscreen_wanted = FULLSCREEN_WIDTH;
2998 }
2999
3000 old_value = get_frame_param (f, prop);
3001 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
3002 if (NILP (Fequal (val, old_value)))
3003 {
3004 store_frame_param (f, prop, val);
3005
3006 param_index = Fget (prop, Qx_frame_parameter);
3007 if (NATNUMP (param_index)
3008 && (XFASTINT (param_index)
3009 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3010 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3011 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3012 }
3013 }
3014 }
3015
3016 /* Now process them in reverse of specified order. */
3017 for (i--; i >= 0; i--)
3018 {
3019 Lisp_Object prop, val;
3020
3021 prop = parms[i];
3022 val = values[i];
3023
3024 if (EQ (prop, Qwidth) && NATNUMP (val))
3025 width_for_full_height = width = XFASTINT (val);
3026 else if (EQ (prop, Qheight) && NATNUMP (val))
3027 height_for_full_width = height = XFASTINT (val);
3028 else if (EQ (prop, Qtop))
3029 top = val;
3030 else if (EQ (prop, Qleft))
3031 left = val;
3032 else if (EQ (prop, Qicon_top))
3033 icon_top = val;
3034 else if (EQ (prop, Qicon_left))
3035 icon_left = val;
3036 else if (EQ (prop, Qforeground_color)
3037 || EQ (prop, Qbackground_color)
3038 || EQ (prop, Qfont)
3039 || EQ (prop, Qfullscreen))
3040 /* Processed above. */
3041 continue;
3042 else
3043 {
3044 register Lisp_Object param_index, old_value;
3045
3046 old_value = get_frame_param (f, prop);
3047
3048 store_frame_param (f, prop, val);
3049
3050 param_index = Fget (prop, Qx_frame_parameter);
3051 if (NATNUMP (param_index)
3052 && (XFASTINT (param_index)
3053 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3054 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3055 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3056 }
3057 }
3058
3059 /* Don't die if just one of these was set. */
3060 if (EQ (left, Qunbound))
3061 {
3062 left_no_change = 1;
3063 if (f->left_pos < 0)
3064 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
3065 else
3066 XSETINT (left, f->left_pos);
3067 }
3068 if (EQ (top, Qunbound))
3069 {
3070 top_no_change = 1;
3071 if (f->top_pos < 0)
3072 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
3073 else
3074 XSETINT (top, f->top_pos);
3075 }
3076
3077 /* If one of the icon positions was not set, preserve or default it. */
3078 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3079 {
3080 icon_left_no_change = 1;
3081 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3082 if (NILP (icon_left))
3083 XSETINT (icon_left, 0);
3084 }
3085 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3086 {
3087 icon_top_no_change = 1;
3088 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3089 if (NILP (icon_top))
3090 XSETINT (icon_top, 0);
3091 }
3092
3093 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3094 {
3095 /* If the frame is visible already and the fullscreen parameter is
3096 being set, it is too late to set WM manager hints to specify
3097 size and position.
3098 Here we first get the width, height and position that applies to
3099 fullscreen. We then move the frame to the appropriate
3100 position. Resize of the frame is taken care of in the code after
3101 this if-statement. */
3102 int new_left, new_top;
3103
3104 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
3105 if (new_top != f->top_pos || new_left != f->left_pos)
3106 x_set_offset (f, new_left, new_top, 1);
3107
3108 /* When both height and fullwidth were requested, make sure the
3109 requested value for height gets applied. */
3110 if (height_for_full_width && fullscreen_wanted == FULLSCREEN_WIDTH)
3111 height = height_for_full_width;
3112 /* When both width and fullheight were requested, make sure the
3113 requested value for width gets applied. */
3114 if (width_for_full_height && fullscreen_wanted == FULLSCREEN_HEIGHT)
3115 width = width_for_full_height;
3116 }
3117
3118 /* Don't set these parameters unless they've been explicitly
3119 specified. The window might be mapped or resized while we're in
3120 this function, and we don't want to override that unless the lisp
3121 code has asked for it.
3122
3123 Don't set these parameters unless they actually differ from the
3124 window's current parameters; the window may not actually exist
3125 yet. */
3126 {
3127 Lisp_Object frame;
3128
3129 check_frame_size (f, &height, &width);
3130
3131 XSETFRAME (frame, f);
3132
3133 if (width != FRAME_COLS (f)
3134 || height != FRAME_LINES (f)
3135 || f->new_text_lines || f->new_text_cols)
3136 Fset_frame_size (frame, make_number (width), make_number (height));
3137
3138 if ((!NILP (left) || !NILP (top))
3139 && ! (left_no_change && top_no_change)
3140 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3141 && NUMBERP (top) && XINT (top) == f->top_pos))
3142 {
3143 int leftpos = 0;
3144 int toppos = 0;
3145
3146 /* Record the signs. */
3147 f->size_hint_flags &= ~ (XNegative | YNegative);
3148 if (EQ (left, Qminus))
3149 f->size_hint_flags |= XNegative;
3150 else if (INTEGERP (left))
3151 {
3152 leftpos = XINT (left);
3153 if (leftpos < 0)
3154 f->size_hint_flags |= XNegative;
3155 }
3156 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3157 && CONSP (XCDR (left))
3158 && INTEGERP (XCAR (XCDR (left))))
3159 {
3160 leftpos = - XINT (XCAR (XCDR (left)));
3161 f->size_hint_flags |= XNegative;
3162 }
3163 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3164 && CONSP (XCDR (left))
3165 && INTEGERP (XCAR (XCDR (left))))
3166 {
3167 leftpos = XINT (XCAR (XCDR (left)));
3168 }
3169
3170 if (EQ (top, Qminus))
3171 f->size_hint_flags |= YNegative;
3172 else if (INTEGERP (top))
3173 {
3174 toppos = XINT (top);
3175 if (toppos < 0)
3176 f->size_hint_flags |= YNegative;
3177 }
3178 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3179 && CONSP (XCDR (top))
3180 && INTEGERP (XCAR (XCDR (top))))
3181 {
3182 toppos = - XINT (XCAR (XCDR (top)));
3183 f->size_hint_flags |= YNegative;
3184 }
3185 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3186 && CONSP (XCDR (top))
3187 && INTEGERP (XCAR (XCDR (top))))
3188 {
3189 toppos = XINT (XCAR (XCDR (top)));
3190 }
3191
3192
3193 /* Store the numeric value of the position. */
3194 f->top_pos = toppos;
3195 f->left_pos = leftpos;
3196
3197 f->win_gravity = NorthWestGravity;
3198
3199 /* Actually set that position, and convert to absolute. */
3200 x_set_offset (f, leftpos, toppos, -1);
3201 }
3202
3203 if ((!NILP (icon_left) || !NILP (icon_top))
3204 && ! (icon_left_no_change && icon_top_no_change))
3205 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3206 }
3207
3208 UNGCPRO;
3209}
3210
3211
3212/* Insert a description of internally-recorded parameters of frame X
3213 into the parameter alist *ALISTPTR that is to be given to the user.
3214 Only parameters that are specific to the X window system
3215 and whose values are not correctly recorded in the frame's
3216 param_alist need to be considered here. */
3217
3218void
3219x_report_frame_params (f, alistptr)
3220 struct frame *f;
3221 Lisp_Object *alistptr;
3222{
3223 char buf[16];
3224 Lisp_Object tem;
3225
3226 /* Represent negative positions (off the top or left screen edge)
3227 in a way that Fmodify_frame_parameters will understand correctly. */
3228 XSETINT (tem, f->left_pos);
3229 if (f->left_pos >= 0)
3230 store_in_alist (alistptr, Qleft, tem);
3231 else
3232 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3233
3234 XSETINT (tem, f->top_pos);
3235 if (f->top_pos >= 0)
3236 store_in_alist (alistptr, Qtop, tem);
3237 else
3238 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3239
3240 store_in_alist (alistptr, Qborder_width,
3241 make_number (f->border_width));
3242 store_in_alist (alistptr, Qinternal_border_width,
3243 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
3244 store_in_alist (alistptr, Qleft_fringe,
3245 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
3246 store_in_alist (alistptr, Qright_fringe,
3247 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
3248 store_in_alist (alistptr, Qscroll_bar_width,
3249 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3250 ? make_number (0)
3251 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3252 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3253 /* nil means "use default width"
3254 for non-toolkit scroll bar.
3255 ruler-mode.el depends on this. */
3256 : Qnil));
3257 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3258 store_in_alist (alistptr, Qwindow_id,
3259 build_string (buf));
3260#ifdef HAVE_X_WINDOWS
3261#ifdef USE_X_TOOLKIT
3262 /* Tooltip frame may not have this widget. */
3263 if (FRAME_X_OUTPUT (f)->widget)
3264#endif
3265 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3266 store_in_alist (alistptr, Qouter_window_id,
3267 build_string (buf));
3268#endif
3269 store_in_alist (alistptr, Qicon_name, f->icon_name);
3270 FRAME_SAMPLE_VISIBILITY (f);
3271 store_in_alist (alistptr, Qvisibility,
3272 (FRAME_VISIBLE_P (f) ? Qt
3273 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3274 store_in_alist (alistptr, Qdisplay,
3275 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3276
3277 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3278 tem = Qnil;
3279 else
3280 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
3281 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
3282 store_in_alist (alistptr, Qparent_id, tem);
3283}
3284
3285
3286/* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3287 the previous value of that parameter, NEW_VALUE is the new value. */
3288
3289void
3290x_set_fullscreen (f, new_value, old_value)
3291 struct frame *f;
3292 Lisp_Object new_value, old_value;
3293{
3294 if (NILP (new_value))
3295 f->want_fullscreen = FULLSCREEN_NONE;
3296 else if (EQ (new_value, Qfullboth))
3297 f->want_fullscreen = FULLSCREEN_BOTH;
3298 else if (EQ (new_value, Qfullwidth))
3299 f->want_fullscreen = FULLSCREEN_WIDTH;
3300 else if (EQ (new_value, Qfullheight))
3301 f->want_fullscreen = FULLSCREEN_HEIGHT;
3302
3303 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
3304 FRAME_TERMINAL (f)->fullscreen_hook (f);
3305}
3306
3307
3308/* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3309 the previous value of that parameter, NEW_VALUE is the new value. */
3310
3311void
3312x_set_line_spacing (f, new_value, old_value)
3313 struct frame *f;
3314 Lisp_Object new_value, old_value;
3315{
3316 if (NILP (new_value))
3317 f->extra_line_spacing = 0;
3318 else if (NATNUMP (new_value))
3319 f->extra_line_spacing = XFASTINT (new_value);
3320 else
3321 signal_error ("Invalid line-spacing", new_value);
3322 if (FRAME_VISIBLE_P (f))
3323 redraw_frame (f);
3324}
3325
3326
3327/* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3328 the previous value of that parameter, NEW_VALUE is the new value. */
3329
3330void
3331x_set_screen_gamma (f, new_value, old_value)
3332 struct frame *f;
3333 Lisp_Object new_value, old_value;
3334{
3335 Lisp_Object bgcolor;
3336
3337 if (NILP (new_value))
3338 f->gamma = 0;
3339 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3340 /* The value 0.4545 is the normal viewing gamma. */
3341 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3342 else
3343 signal_error ("Invalid screen-gamma", new_value);
3344
3345 /* Apply the new gamma value to the frame background. */
3346 bgcolor = Fassq (Qbackground_color, f->param_alist);
3347 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3348 {
3349 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3350 if (NATNUMP (index)
3351 && (XFASTINT (index)
3352 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3353 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3354 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3355 (f, bgcolor, Qnil);
3356 }
3357
3358 Fclear_face_cache (Qnil);
3359}
3360
3361
3362void
3363x_set_font (f, arg, oldval)
3364 struct frame *f;
3365 Lisp_Object arg, oldval;
3366{
3367 Lisp_Object frame;
3368 int fontset = -1;
3369 Lisp_Object font_object;
3370
3371 /* Set the frame parameter back to the old value because we may
3372 fail to use ARG as the new parameter value. */
3373 store_frame_param (f, Qfont, oldval);
3374
3375 /* ARG is a fontset name, a font name, a cons of fontset name and a
3376 font object, or a font object. In the last case, this function
3377 never fail. */
3378 if (STRINGP (arg))
3379 {
3380 fontset = fs_query_fontset (arg, 0);
3381 if (fontset < 0)
3382 {
3383 font_object = font_open_by_name (f, SDATA (arg));
3384 if (NILP (font_object))
3385 error ("Font `%s' is not defined", SDATA (arg));
3386 arg = AREF (font_object, FONT_NAME_INDEX);
3387 }
3388 else if (fontset > 0)
3389 {
3390 Lisp_Object ascii_font = fontset_ascii (fontset);
3391
3392 font_object = font_open_by_name (f, SDATA (ascii_font));
3393 if (NILP (font_object))
3394 error ("Font `%s' is not defined", SDATA (arg));
3395 arg = AREF (font_object, FONT_NAME_INDEX);
3396 }
3397 else
3398 error ("The default fontset can't be used for a frame font");
3399 }
3400 else if (CONSP (arg) && STRINGP (XCAR (arg)) && FONT_OBJECT_P (XCDR (arg)))
3401 {
3402 /* This is the case that the ASCII font of F's fontset XCAR
3403 (arg) is changed to the font XCDR (arg) by
3404 `set-fontset-font'. */
3405 fontset = fs_query_fontset (XCAR (arg), 0);
3406 if (fontset < 0)
3407 error ("Unknown fontset: %s", SDATA (XCAR (arg)));
3408 font_object = XCDR (arg);
3409 arg = AREF (font_object, FONT_NAME_INDEX);
3410 }
3411 else if (FONT_OBJECT_P (arg))
3412 {
3413 font_object = arg;
3414 /* This is to store the XLFD font name in the frame parameter for
3415 backward compatiblity. We should store the font-object
3416 itself in the future. */
3417 arg = AREF (font_object, FONT_NAME_INDEX);
3418 fontset = FRAME_FONTSET (f);
3419 }
3420 else
3421 signal_error ("Invalid font", arg);
3422
3423 if (! NILP (Fequal (font_object, oldval)))
3424 return;
3425
3426
3427 Lisp_Object lval = Fassq (Qfullscreen, f->param_alist);
3428 if (CONSP (lval)) lval = CDR (lval);
3429
3430 x_new_font (f, font_object, fontset);
3431 /* If the fullscreen property is non-nil, adjust lines and columns so we
3432 keep the same pixel height and width. */
3433 if (! NILP (lval))
3434 {
3435 int height = FRAME_LINES (f), width = FRAME_COLS (f);
3436 if (EQ (lval, Qfullboth) || EQ (lval, Qfullwidth))
3437 width = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
3438 if (EQ (lval, Qfullboth) || EQ (lval, Qfullheight))
3439 height = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, FRAME_PIXEL_HEIGHT (f));
3440
3441 change_frame_size (f, height, width, 0, 0, 1);
3442 }
3443
3444 store_frame_param (f, Qfont, arg);
3445 /* Recalculate toolbar height. */
3446 f->n_tool_bar_rows = 0;
3447 /* Ensure we redraw it. */
3448 clear_current_matrices (f);
3449
3450 recompute_basic_faces (f);
3451
3452 do_pending_window_change (0);
3453
3454 /* We used to call face-set-after-frame-default here, but it leads to
3455 recursive calls (since that function can set the `default' face's
3456 font which in turns changes the frame's `font' parameter).
3457 Also I don't know what this call is meant to do, but it seems the
3458 wrong way to do it anyway (it does a lot more work than what seems
3459 reasonable in response to a change to `font'). */
3460}
3461
3462
3463void
3464x_set_font_backend (f, new_value, old_value)
3465 struct frame *f;
3466 Lisp_Object new_value, old_value;
3467{
3468 if (! NILP (new_value)
3469 && !CONSP (new_value))
3470 {
3471 char *p0, *p1;
3472
3473 CHECK_STRING (new_value);
3474 p0 = p1 = SDATA (new_value);
3475 new_value = Qnil;
3476 while (*p0)
3477 {
3478 while (*p1 && ! isspace (*p1) && *p1 != ',') p1++;
3479 if (p0 < p1)
3480 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3481 new_value);
3482 if (*p1)
3483 {
3484 int c;
3485
3486 while ((c = *++p1) && isspace (c));
3487 }
3488 p0 = p1;
3489 }
3490 new_value = Fnreverse (new_value);
3491 }
3492
3493 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3494 return;
3495
3496 if (FRAME_FONT (f))
3497 free_all_realized_faces (Qnil);
3498
3499 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
3500 if (NILP (new_value))
3501 {
3502 if (NILP (old_value))
3503 error ("No font backend available");
3504 font_update_drivers (f, old_value);
3505 error ("None of specified font backends are available");
3506 }
3507 store_frame_param (f, Qfont_backend, new_value);
3508
3509 if (FRAME_FONT (f))
3510 {
3511 Lisp_Object frame;
3512
3513 XSETFRAME (frame, f);
3514 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3515 ++face_change_count;
3516 ++windows_or_buffers_changed;
3517 }
3518}
3519
3520
3521void
3522x_set_fringe_width (f, new_value, old_value)
3523 struct frame *f;
3524 Lisp_Object new_value, old_value;
3525{
3526 compute_fringe_widths (f, 1);
3527}
3528
3529void
3530x_set_border_width (f, arg, oldval)
3531 struct frame *f;
3532 Lisp_Object arg, oldval;
3533{
3534 CHECK_NUMBER (arg);
3535
3536 if (XINT (arg) == f->border_width)
3537 return;
3538
3539 if (FRAME_X_WINDOW (f) != 0)
3540 error ("Cannot change the border width of a frame");
3541
3542 f->border_width = XINT (arg);
3543}
3544
3545void
3546x_set_internal_border_width (f, arg, oldval)
3547 struct frame *f;
3548 Lisp_Object arg, oldval;
3549{
3550 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3551
3552 CHECK_NUMBER (arg);
3553 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3554 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3555 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3556
3557#ifdef USE_X_TOOLKIT
3558 if (FRAME_X_OUTPUT (f)->edit_widget)
3559 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3560#endif
3561
3562 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3563 return;
3564
3565 if (FRAME_X_WINDOW (f) != 0)
3566 {
3567 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3568 SET_FRAME_GARBAGED (f);
3569 do_pending_window_change (0);
3570 }
3571 else
3572 SET_FRAME_GARBAGED (f);
3573}
3574
3575void
3576x_set_visibility (f, value, oldval)
3577 struct frame *f;
3578 Lisp_Object value, oldval;
3579{
3580 Lisp_Object frame;
3581 XSETFRAME (frame, f);
3582
3583 if (NILP (value))
3584 Fmake_frame_invisible (frame, Qt);
3585 else if (EQ (value, Qicon))
3586 Ficonify_frame (frame);
3587 else
3588 Fmake_frame_visible (frame);
3589}
3590
3591void
3592x_set_autoraise (f, arg, oldval)
3593 struct frame *f;
3594 Lisp_Object arg, oldval;
3595{
3596 f->auto_raise = !EQ (Qnil, arg);
3597}
3598
3599void
3600x_set_autolower (f, arg, oldval)
3601 struct frame *f;
3602 Lisp_Object arg, oldval;
3603{
3604 f->auto_lower = !EQ (Qnil, arg);
3605}
3606
3607void
3608x_set_unsplittable (f, arg, oldval)
3609 struct frame *f;
3610 Lisp_Object arg, oldval;
3611{
3612 f->no_split = !NILP (arg);
3613}
3614
3615void
3616x_set_vertical_scroll_bars (f, arg, oldval)
3617 struct frame *f;
3618 Lisp_Object arg, oldval;
3619{
3620 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3621 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3622 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3623 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3624 {
3625 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3626 = (NILP (arg)
3627 ? vertical_scroll_bar_none
3628 : EQ (Qleft, arg)
3629 ? vertical_scroll_bar_left
3630 : EQ (Qright, arg)
3631 ? vertical_scroll_bar_right
3632 : EQ (Qleft, Vdefault_frame_scroll_bars)
3633 ? vertical_scroll_bar_left
3634 : EQ (Qright, Vdefault_frame_scroll_bars)
3635 ? vertical_scroll_bar_right
3636 : vertical_scroll_bar_none);
3637
3638 /* We set this parameter before creating the X window for the
3639 frame, so we can get the geometry right from the start.
3640 However, if the window hasn't been created yet, we shouldn't
3641 call x_set_window_size. */
3642 if (FRAME_X_WINDOW (f))
3643 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3644 do_pending_window_change (0);
3645 }
3646}
3647
3648void
3649x_set_scroll_bar_width (f, arg, oldval)
3650 struct frame *f;
3651 Lisp_Object arg, oldval;
3652{
3653 int wid = FRAME_COLUMN_WIDTH (f);
3654
3655 if (NILP (arg))
3656 {
3657 x_set_scroll_bar_default_width (f);
3658
3659 if (FRAME_X_WINDOW (f))
3660 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3661 do_pending_window_change (0);
3662 }
3663 else if (INTEGERP (arg) && XINT (arg) > 0
3664 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3665 {
3666 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3667 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3668
3669 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3670 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3671 if (FRAME_X_WINDOW (f))
3672 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3673 do_pending_window_change (0);
3674 }
3675
3676 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3677 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3678 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3679}
3680
3681
3682
3683/* Return non-nil if frame F wants a bitmap icon. */
3684
3685Lisp_Object
3686x_icon_type (f)
3687 FRAME_PTR f;
3688{
3689 Lisp_Object tem;
3690
3691 tem = assq_no_quit (Qicon_type, f->param_alist);
3692 if (CONSP (tem))
3693 return XCDR (tem);
3694 else
3695 return Qnil;
3696}
3697
3698void
3699x_set_alpha (f, arg, oldval)
3700 struct frame *f;
3701 Lisp_Object arg, oldval;
3702{
3703 double alpha = 1.0;
3704 double newval[2];
3705 int i, ialpha;
3706 Lisp_Object item;
3707
3708 for (i = 0; i < 2; i++)
3709 {
3710 newval[i] = 1.0;
3711 if (CONSP (arg))
3712 {
3713 item = CAR (arg);
3714 arg = CDR (arg);
3715 }
3716 else
3717 item = arg;
3718
3719 if (NILP (item))
3720 alpha = - 1.0;
3721 else if (FLOATP (item))
3722 {
3723 alpha = XFLOAT_DATA (item);
3724 if (alpha < 0.0 || 1.0 < alpha)
3725 args_out_of_range (make_float (0.0), make_float (1.0));
3726 }
3727 else if (INTEGERP (item))
3728 {
3729 ialpha = XINT (item);
3730 if (ialpha < 0 || 100 < ialpha)
3731 args_out_of_range (make_number (0), make_number (100));
3732 else
3733 alpha = ialpha / 100.0;
3734 }
3735 else
3736 wrong_type_argument (Qnumberp, item);
3737 newval[i] = alpha;
3738 }
3739
3740 for (i = 0; i < 2; i++)
3741 f->alpha[i] = newval[i];
3742
3743#if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA)
3744 BLOCK_INPUT;
3745 x_set_frame_alpha (f);
3746 UNBLOCK_INPUT;
3747#endif
3748
3749 return;
3750}
3751
3752\f
3753/* Subroutines of creating an X frame. */
3754
3755/* Make sure that Vx_resource_name is set to a reasonable value.
3756 Fix it up, or set it to `emacs' if it is too hopeless. */
3757
3758void
3759validate_x_resource_name ()
3760{
3761 int len = 0;
3762 /* Number of valid characters in the resource name. */
3763 int good_count = 0;
3764 /* Number of invalid characters in the resource name. */
3765 int bad_count = 0;
3766 Lisp_Object new;
3767 int i;
3768
3769 if (!STRINGP (Vx_resource_class))
3770 Vx_resource_class = build_string (EMACS_CLASS);
3771
3772 if (STRINGP (Vx_resource_name))
3773 {
3774 unsigned char *p = SDATA (Vx_resource_name);
3775 int i;
3776
3777 len = SBYTES (Vx_resource_name);
3778
3779 /* Only letters, digits, - and _ are valid in resource names.
3780 Count the valid characters and count the invalid ones. */
3781 for (i = 0; i < len; i++)
3782 {
3783 int c = p[i];
3784 if (! ((c >= 'a' && c <= 'z')
3785 || (c >= 'A' && c <= 'Z')
3786 || (c >= '0' && c <= '9')
3787 || c == '-' || c == '_'))
3788 bad_count++;
3789 else
3790 good_count++;
3791 }
3792 }
3793 else
3794 /* Not a string => completely invalid. */
3795 bad_count = 5, good_count = 0;
3796
3797 /* If name is valid already, return. */
3798 if (bad_count == 0)
3799 return;
3800
3801 /* If name is entirely invalid, or nearly so, use `emacs'. */
3802 if (good_count == 0
3803 || (good_count == 1 && bad_count > 0))
3804 {
3805 Vx_resource_name = build_string ("emacs");
3806 return;
3807 }
3808
3809 /* Name is partly valid. Copy it and replace the invalid characters
3810 with underscores. */
3811
3812 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3813
3814 for (i = 0; i < len; i++)
3815 {
3816 int c = SREF (new, i);
3817 if (! ((c >= 'a' && c <= 'z')
3818 || (c >= 'A' && c <= 'Z')
3819 || (c >= '0' && c <= '9')
3820 || c == '-' || c == '_'))
3821 SSET (new, i, '_');
3822 }
3823}
3824
3825
3826extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3827extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3828
3829
3830/* Get specified attribute from resource database RDB.
3831 See Fx_get_resource below for other parameters. */
3832
3833static Lisp_Object
3834xrdb_get_resource (rdb, attribute, class, component, subclass)
3835 XrmDatabase rdb;
3836 Lisp_Object attribute, class, component, subclass;
3837{
3838 register char *value;
3839 char *name_key;
3840 char *class_key;
3841
3842 CHECK_STRING (attribute);
3843 CHECK_STRING (class);
3844
3845 if (!NILP (component))
3846 CHECK_STRING (component);
3847 if (!NILP (subclass))
3848 CHECK_STRING (subclass);
3849 if (NILP (component) != NILP (subclass))
3850 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3851
3852 validate_x_resource_name ();
3853
3854 /* Allocate space for the components, the dots which separate them,
3855 and the final '\0'. Make them big enough for the worst case. */
3856 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3857 + (STRINGP (component)
3858 ? SBYTES (component) : 0)
3859 + SBYTES (attribute)
3860 + 3);
3861
3862 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3863 + SBYTES (class)
3864 + (STRINGP (subclass)
3865 ? SBYTES (subclass) : 0)
3866 + 3);
3867
3868 /* Start with emacs.FRAMENAME for the name (the specific one)
3869 and with `Emacs' for the class key (the general one). */
3870 strcpy (name_key, SDATA (Vx_resource_name));
3871 strcpy (class_key, SDATA (Vx_resource_class));
3872
3873 strcat (class_key, ".");
3874 strcat (class_key, SDATA (class));
3875
3876 if (!NILP (component))
3877 {
3878 strcat (class_key, ".");
3879 strcat (class_key, SDATA (subclass));
3880
3881 strcat (name_key, ".");
3882 strcat (name_key, SDATA (component));
3883 }
3884
3885 strcat (name_key, ".");
3886 strcat (name_key, SDATA (attribute));
3887
3888 value = x_get_string_resource (rdb, name_key, class_key);
3889
3890 if (value != (char *) 0)
3891 return build_string (value);
3892 else
3893 return Qnil;
3894}
3895
3896
3897DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3898 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3899This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3900class, where INSTANCE is the name under which Emacs was invoked, or
3901the name specified by the `-name' or `-rn' command-line arguments.
3902
3903The optional arguments COMPONENT and SUBCLASS add to the key and the
3904class, respectively. You must specify both of them or neither.
3905If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3906and the class is `Emacs.CLASS.SUBCLASS'. */)
3907 (attribute, class, component, subclass)
3908 Lisp_Object attribute, class, component, subclass;
3909{
3910#ifdef HAVE_X_WINDOWS
3911 check_x ();
3912#endif
3913
3914 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3915 attribute, class, component, subclass);
3916}
3917
3918/* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3919
3920Lisp_Object
3921display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3922 Display_Info *dpyinfo;
3923 Lisp_Object attribute, class, component, subclass;
3924{
3925 return xrdb_get_resource (dpyinfo->xrdb,
3926 attribute, class, component, subclass);
3927}
3928
3929/* Used when C code wants a resource value. */
3930
3931char *
3932x_get_resource_string (attribute, class)
3933 char *attribute, *class;
3934{
3935 char *name_key;
3936 char *class_key;
3937 struct frame *sf = SELECTED_FRAME ();
3938
3939 /* Allocate space for the components, the dots which separate them,
3940 and the final '\0'. */
3941 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3942 + strlen (attribute) + 2);
3943 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3944 + strlen (class) + 2);
3945
3946 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3947 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3948
3949 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3950 name_key, class_key);
3951}
3952
3953
3954/* Return the value of parameter PARAM.
3955
3956 First search ALIST, then Vdefault_frame_alist, then the X defaults
3957 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3958
3959 Convert the resource to the type specified by desired_type.
3960
3961 If no default is specified, return Qunbound. If you call
3962 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3963 and don't let it get stored in any Lisp-visible variables! */
3964
3965Lisp_Object
3966x_get_arg (dpyinfo, alist, param, attribute, class, type)
3967 Display_Info *dpyinfo;
3968 Lisp_Object alist, param;
3969 char *attribute;
3970 char *class;
3971 enum resource_types type;
3972{
3973 register Lisp_Object tem;
3974
3975 tem = Fassq (param, alist);
3976
3977 if (!NILP (tem))
3978 {
3979 /* If we find this parm in ALIST, clear it out
3980 so that it won't be "left over" at the end. */
3981 Lisp_Object tail;
3982 XSETCAR (tem, Qnil);
3983 /* In case the parameter appears more than once in the alist,
3984 clear it out. */
3985 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3986 if (CONSP (XCAR (tail))
3987 && EQ (XCAR (XCAR (tail)), param))
3988 XSETCAR (XCAR (tail), Qnil);
3989 }
3990 else
3991 tem = Fassq (param, Vdefault_frame_alist);
3992
3993 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3994 look in the X resources. */
3995 if (EQ (tem, Qnil))
3996 {
3997 if (attribute)
3998 {
3999 tem = display_x_get_resource (dpyinfo,
4000 build_string (attribute),
4001 build_string (class),
4002 Qnil, Qnil);
4003
4004 if (NILP (tem))
4005 return Qunbound;
4006
4007 switch (type)
4008 {
4009 case RES_TYPE_NUMBER:
4010 return make_number (atoi (SDATA (tem)));
4011
4012 case RES_TYPE_FLOAT:
4013 return make_float (atof (SDATA (tem)));
4014
4015 case RES_TYPE_BOOLEAN:
4016 tem = Fdowncase (tem);
4017 if (!strcmp (SDATA (tem), "on")
4018#ifdef HAVE_NS
4019 || !strcmp(SDATA(tem), "yes")
4020#endif
4021 || !strcmp (SDATA (tem), "true"))
4022 return Qt;
4023 else
4024 return Qnil;
4025
4026 case RES_TYPE_STRING:
4027 return tem;
4028
4029 case RES_TYPE_SYMBOL:
4030 /* As a special case, we map the values `true' and `on'
4031 to Qt, and `false' and `off' to Qnil. */
4032 {
4033 Lisp_Object lower;
4034 lower = Fdowncase (tem);
4035 if (!strcmp (SDATA (lower), "on")
4036#ifdef HAVE_NS
4037 || !strcmp(SDATA(lower), "yes")
4038#endif
4039 || !strcmp (SDATA (lower), "true"))
4040 return Qt;
4041 else if (!strcmp (SDATA (lower), "off")
4042#ifdef HAVE_NS
4043 || !strcmp(SDATA(lower), "no")
4044#endif
4045 || !strcmp (SDATA (lower), "false"))
4046 return Qnil;
4047 else
4048 return Fintern (tem, Qnil);
4049 }
4050
4051 default:
4052 abort ();
4053 }
4054 }
4055 else
4056 return Qunbound;
4057 }
4058 return Fcdr (tem);
4059}
4060
4061Lisp_Object
4062x_frame_get_arg (f, alist, param, attribute, class, type)
4063 struct frame *f;
4064 Lisp_Object alist, param;
4065 char *attribute;
4066 char *class;
4067 enum resource_types type;
4068{
4069 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
4070 alist, param, attribute, class, type);
4071}
4072
4073/* Like x_frame_get_arg, but also record the value in f->param_alist. */
4074
4075Lisp_Object
4076x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
4077 struct frame *f;
4078 Lisp_Object alist, param;
4079 char *attribute;
4080 char *class;
4081 enum resource_types type;
4082{
4083 Lisp_Object value;
4084
4085 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
4086 attribute, class, type);
4087 if (! NILP (value) && ! EQ (value, Qunbound))
4088 store_frame_param (f, param, value);
4089
4090 return value;
4091}
4092
4093
4094/* Record in frame F the specified or default value according to ALIST
4095 of the parameter named PROP (a Lisp symbol).
4096 If no value is specified for PROP, look for an X default for XPROP
4097 on the frame named NAME.
4098 If that is not found either, use the value DEFLT. */
4099
4100Lisp_Object
4101x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
4102 struct frame *f;
4103 Lisp_Object alist;
4104 Lisp_Object prop;
4105 Lisp_Object deflt;
4106 char *xprop;
4107 char *xclass;
4108 enum resource_types type;
4109{
4110 Lisp_Object tem;
4111
4112 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4113 if (EQ (tem, Qunbound))
4114 tem = deflt;
4115 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
4116 return tem;
4117}
4118
4119
4120
4121\f
4122#ifdef HAVE_NS
4123
4124/* We used to define x-parse-geometry directly in ns-win.el, but that
4125 confused make-docfile: the documentation string in ns-win.el was
4126 used for x-parse-geometry even in non-NS builds.. */
4127
4128DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4129 doc: /* Parse a Nextstep-style geometry string STRING.
4130Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4131The properties returned may include `top', `left', `height', and `width'.
4132This works by calling `ns-parse-geometry'. */)
4133 (string)
4134 Lisp_Object string;
4135{
4136 call1 (Qns_parse_geometry, string);
4137}
4138
4139#else /* !HAVE_NS */
4140
4141DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4142 doc: /* Parse an X-style geometry string STRING.
4143Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4144The properties returned may include `top', `left', `height', and `width'.
4145The value of `left' or `top' may be an integer,
4146or a list (+ N) meaning N pixels relative to top/left corner,
4147or a list (- N) meaning -N pixels relative to bottom/right corner. */)
4148 (string)
4149 Lisp_Object string;
4150{
4151 int geometry, x, y;
4152 unsigned int width, height;
4153 Lisp_Object result;
4154
4155 CHECK_STRING (string);
4156
4157 geometry = XParseGeometry ((char *) SDATA (string),
4158 &x, &y, &width, &height);
4159 result = Qnil;
4160 if (geometry & XValue)
4161 {
4162 Lisp_Object element;
4163
4164 if (x >= 0 && (geometry & XNegative))
4165 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
4166 else if (x < 0 && ! (geometry & XNegative))
4167 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
4168 else
4169 element = Fcons (Qleft, make_number (x));
4170 result = Fcons (element, result);
4171 }
4172
4173 if (geometry & YValue)
4174 {
4175 Lisp_Object element;
4176
4177 if (y >= 0 && (geometry & YNegative))
4178 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
4179 else if (y < 0 && ! (geometry & YNegative))
4180 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4181 else
4182 element = Fcons (Qtop, make_number (y));
4183 result = Fcons (element, result);
4184 }
4185
4186 if (geometry & WidthValue)
4187 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4188 if (geometry & HeightValue)
4189 result = Fcons (Fcons (Qheight, make_number (height)), result);
4190
4191 return result;
4192}
4193#endif /* HAVE_NS */
4194
4195
4196/* Calculate the desired size and position of frame F.
4197 Return the flags saying which aspects were specified.
4198
4199 Also set the win_gravity and size_hint_flags of F.
4200
4201 Adjust height for toolbar if TOOLBAR_P is 1.
4202
4203 This function does not make the coordinates positive. */
4204
4205#define DEFAULT_ROWS 40
4206#define DEFAULT_COLS 80
4207
4208int
4209x_figure_window_size (f, parms, toolbar_p)
4210 struct frame *f;
4211 Lisp_Object parms;
4212 int toolbar_p;
4213{
4214 register Lisp_Object tem0, tem1, tem2;
4215 long window_prompting = 0;
4216 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4217
4218 /* Default values if we fall through.
4219 Actually, if that happens we should get
4220 window manager prompting. */
4221 SET_FRAME_COLS (f, DEFAULT_COLS);
4222 FRAME_LINES (f) = DEFAULT_ROWS;
4223 /* Window managers expect that if program-specified
4224 positions are not (0,0), they're intentional, not defaults. */
4225 f->top_pos = 0;
4226 f->left_pos = 0;
4227
4228 /* Ensure that old new_text_cols and new_text_lines will not override the
4229 values set here. */
4230 /* ++KFS: This was specific to W32, but seems ok for all platforms */
4231 f->new_text_cols = f->new_text_lines = 0;
4232
4233 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4234 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4235 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4236 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4237 {
4238 if (!EQ (tem0, Qunbound))
4239 {
4240 CHECK_NUMBER (tem0);
4241 FRAME_LINES (f) = XINT (tem0);
4242 }
4243 if (!EQ (tem1, Qunbound))
4244 {
4245 CHECK_NUMBER (tem1);
4246 SET_FRAME_COLS (f, XINT (tem1));
4247 }
4248 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4249 window_prompting |= USSize;
4250 else
4251 window_prompting |= PSize;
4252 }
4253
4254 f->scroll_bar_actual_width
4255 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
4256
4257 /* This used to be done _before_ calling x_figure_window_size, but
4258 since the height is reset here, this was really a no-op. I
4259 assume that moving it here does what Gerd intended (although he
4260 no longer can remember what that was... ++KFS, 2003-03-25. */
4261
4262 /* Add the tool-bar height to the initial frame height so that the
4263 user gets a text display area of the size he specified with -g or
4264 via .Xdefaults. Later changes of the tool-bar height don't
4265 change the frame size. This is done so that users can create
4266 tall Emacs frames without having to guess how tall the tool-bar
4267 will get. */
4268 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4269 {
4270 int margin, relief, bar_height;
4271
4272 relief = (tool_bar_button_relief >= 0
4273 ? tool_bar_button_relief
4274 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4275
4276 if (INTEGERP (Vtool_bar_button_margin)
4277 && XINT (Vtool_bar_button_margin) > 0)
4278 margin = XFASTINT (Vtool_bar_button_margin);
4279 else if (CONSP (Vtool_bar_button_margin)
4280 && INTEGERP (XCDR (Vtool_bar_button_margin))
4281 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4282 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4283 else
4284 margin = 0;
4285
4286 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4287 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
4288 }
4289
4290 compute_fringe_widths (f, 0);
4291
4292 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4293 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
4294
4295 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4296 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4297 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4298 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4299 {
4300 if (EQ (tem0, Qminus))
4301 {
4302 f->top_pos = 0;
4303 window_prompting |= YNegative;
4304 }
4305 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4306 && CONSP (XCDR (tem0))
4307 && INTEGERP (XCAR (XCDR (tem0))))
4308 {
4309 f->top_pos = - XINT (XCAR (XCDR (tem0)));
4310 window_prompting |= YNegative;
4311 }
4312 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4313 && CONSP (XCDR (tem0))
4314 && INTEGERP (XCAR (XCDR (tem0))))
4315 {
4316 f->top_pos = XINT (XCAR (XCDR (tem0)));
4317 }
4318 else if (EQ (tem0, Qunbound))
4319 f->top_pos = 0;
4320 else
4321 {
4322 CHECK_NUMBER (tem0);
4323 f->top_pos = XINT (tem0);
4324 if (f->top_pos < 0)
4325 window_prompting |= YNegative;
4326 }
4327
4328 if (EQ (tem1, Qminus))
4329 {
4330 f->left_pos = 0;
4331 window_prompting |= XNegative;
4332 }
4333 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4334 && CONSP (XCDR (tem1))
4335 && INTEGERP (XCAR (XCDR (tem1))))
4336 {
4337 f->left_pos = - XINT (XCAR (XCDR (tem1)));
4338 window_prompting |= XNegative;
4339 }
4340 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4341 && CONSP (XCDR (tem1))
4342 && INTEGERP (XCAR (XCDR (tem1))))
4343 {
4344 f->left_pos = XINT (XCAR (XCDR (tem1)));
4345 }
4346 else if (EQ (tem1, Qunbound))
4347 f->left_pos = 0;
4348 else
4349 {
4350 CHECK_NUMBER (tem1);
4351 f->left_pos = XINT (tem1);
4352 if (f->left_pos < 0)
4353 window_prompting |= XNegative;
4354 }
4355
4356 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4357 window_prompting |= USPosition;
4358 else
4359 window_prompting |= PPosition;
4360 }
4361
4362 if (f->want_fullscreen != FULLSCREEN_NONE)
4363 {
4364 int left, top;
4365 int width, height;
4366
4367 /* It takes both for some WM:s to place it where we want */
4368 window_prompting |= USPosition | PPosition;
4369 x_fullscreen_adjust (f, &width, &height, &top, &left);
4370 FRAME_COLS (f) = width;
4371 FRAME_LINES (f) = height;
4372 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4373 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4374 f->left_pos = left;
4375 f->top_pos = top;
4376 }
4377
4378 if (window_prompting & XNegative)
4379 {
4380 if (window_prompting & YNegative)
4381 f->win_gravity = SouthEastGravity;
4382 else
4383 f->win_gravity = NorthEastGravity;
4384 }
4385 else
4386 {
4387 if (window_prompting & YNegative)
4388 f->win_gravity = SouthWestGravity;
4389 else
4390 f->win_gravity = NorthWestGravity;
4391 }
4392
4393 f->size_hint_flags = window_prompting;
4394
4395 return window_prompting;
4396}
4397
4398
4399
4400#endif /* HAVE_WINDOW_SYSTEM */
4401
4402
4403\f
4404/***********************************************************************
4405 Initialization
4406 ***********************************************************************/
4407
4408void
4409syms_of_frame ()
4410{
4411 Qframep = intern ("framep");
4412 staticpro (&Qframep);
4413 Qframe_live_p = intern ("frame-live-p");
4414 staticpro (&Qframe_live_p);
4415 Qexplicit_name = intern ("explicit-name");
4416 staticpro (&Qexplicit_name);
4417 Qheight = intern ("height");
4418 staticpro (&Qheight);
4419 Qicon = intern ("icon");
4420 staticpro (&Qicon);
4421 Qminibuffer = intern ("minibuffer");
4422 staticpro (&Qminibuffer);
4423 Qmodeline = intern ("modeline");
4424 staticpro (&Qmodeline);
4425 Qonly = intern ("only");
4426 staticpro (&Qonly);
4427 Qwidth = intern ("width");
4428 staticpro (&Qwidth);
4429 Qgeometry = intern ("geometry");
4430 staticpro (&Qgeometry);
4431 Qicon_left = intern ("icon-left");
4432 staticpro (&Qicon_left);
4433 Qicon_top = intern ("icon-top");
4434 staticpro (&Qicon_top);
4435 Qleft = intern ("left");
4436 staticpro (&Qleft);
4437 Qright = intern ("right");
4438 staticpro (&Qright);
4439 Quser_position = intern ("user-position");
4440 staticpro (&Quser_position);
4441 Quser_size = intern ("user-size");
4442 staticpro (&Quser_size);
4443 Qwindow_id = intern ("window-id");
4444 staticpro (&Qwindow_id);
4445#ifdef HAVE_X_WINDOWS
4446 Qouter_window_id = intern ("outer-window-id");
4447 staticpro (&Qouter_window_id);
4448#endif
4449 Qparent_id = intern ("parent-id");
4450 staticpro (&Qparent_id);
4451 Qx = intern ("x");
4452 staticpro (&Qx);
4453 Qw32 = intern ("w32");
4454 staticpro (&Qw32);
4455 Qpc = intern ("pc");
4456 staticpro (&Qpc);
4457 Qmac = intern ("mac");
4458 staticpro (&Qmac);
4459 Qns = intern ("ns");
4460 staticpro (&Qns);
4461 Qvisible = intern ("visible");
4462 staticpro (&Qvisible);
4463 Qbuffer_predicate = intern ("buffer-predicate");
4464 staticpro (&Qbuffer_predicate);
4465 Qbuffer_list = intern ("buffer-list");
4466 staticpro (&Qbuffer_list);
4467 Qburied_buffer_list = intern ("buried-buffer-list");
4468 staticpro (&Qburied_buffer_list);
4469 Qdisplay_type = intern ("display-type");
4470 staticpro (&Qdisplay_type);
4471 Qbackground_mode = intern ("background-mode");
4472 staticpro (&Qbackground_mode);
4473 Qnoelisp = intern ("noelisp");
4474 staticpro (&Qnoelisp);
4475 Qtty_color_mode = intern ("tty-color-mode");
4476 staticpro (&Qtty_color_mode);
4477 Qtty = intern ("tty");
4478 staticpro (&Qtty);
4479 Qtty_type = intern ("tty-type");
4480 staticpro (&Qtty_type);
4481
4482 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4483 staticpro (&Qface_set_after_frame_default);
4484
4485 Qfullwidth = intern ("fullwidth");
4486 staticpro (&Qfullwidth);
4487 Qfullheight = intern ("fullheight");
4488 staticpro (&Qfullheight);
4489 Qfullboth = intern ("fullboth");
4490 staticpro (&Qfullboth);
4491 Qx_resource_name = intern ("x-resource-name");
4492 staticpro (&Qx_resource_name);
4493
4494 Qx_frame_parameter = intern ("x-frame-parameter");
4495 staticpro (&Qx_frame_parameter);
4496
4497 Qterminal = intern ("terminal");
4498 staticpro (&Qterminal);
4499 Qterminal_live_p = intern ("terminal-live-p");
4500 staticpro (&Qterminal_live_p);
4501
4502#ifdef HAVE_NS
4503 Qns_parse_geometry = intern ("ns-parse-geometry");
4504 staticpro (&Qns_parse_geometry);
4505#endif
4506
4507 {
4508 int i;
4509
4510 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4511 {
4512 Lisp_Object v = intern (frame_parms[i].name);
4513 if (frame_parms[i].variable)
4514 {
4515 *frame_parms[i].variable = v;
4516 staticpro (frame_parms[i].variable);
4517 }
4518 Fput (v, Qx_frame_parameter, make_number (i));
4519 }
4520 }
4521
4522#ifdef HAVE_WINDOW_SYSTEM
4523 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4524 doc: /* The name Emacs uses to look up X resources.
4525`x-get-resource' uses this as the first component of the instance name
4526when requesting resource values.
4527Emacs initially sets `x-resource-name' to the name under which Emacs
4528was invoked, or to the value specified with the `-name' or `-rn'
4529switches, if present.
4530
4531It may be useful to bind this variable locally around a call
4532to `x-get-resource'. See also the variable `x-resource-class'. */);
4533 Vx_resource_name = Qnil;
4534
4535 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4536 doc: /* The class Emacs uses to look up X resources.
4537`x-get-resource' uses this as the first component of the instance class
4538when requesting resource values.
4539
4540Emacs initially sets `x-resource-class' to "Emacs".
4541
4542Setting this variable permanently is not a reasonable thing to do,
4543but binding this variable locally around a call to `x-get-resource'
4544is a reasonable practice. See also the variable `x-resource-name'. */);
4545 Vx_resource_class = build_string (EMACS_CLASS);
4546
4547 DEFVAR_LISP ("frame-alpha-lower-limit", &Vframe_alpha_lower_limit,
4548 doc: /* The lower limit of the frame opacity (alpha transparency).
4549The value should range from 0 (invisible) to 100 (completely opaque).
4550You can also use a floating number between 0.0 and 1.0.
4551The default is 20. */);
4552 Vframe_alpha_lower_limit = make_number (20);
4553#endif
4554
4555 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4556 doc: /* Alist of default values for frame creation.
4557These may be set in your init file, like this:
4558 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4559These override values given in window system configuration data,
4560 including X Windows' defaults database.
4561For values specific to the first Emacs frame, see `initial-frame-alist'.
4562For window-system specific values, see `window-system-default-frame-alist'.
4563For values specific to the separate minibuffer frame, see
4564 `minibuffer-frame-alist'.
4565The `menu-bar-lines' element of the list controls whether new frames
4566 have menu bars; `menu-bar-mode' works by altering this element.
4567Setting this variable does not affect existing frames, only new ones. */);
4568 Vdefault_frame_alist = Qnil;
4569
4570 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4571 doc: /* Default position of scroll bars on this window-system. */);
4572#ifdef HAVE_WINDOW_SYSTEM
4573#if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
4574 /* MS-Windows and Mac OS X have scroll bars on the right by default. */
4575 Vdefault_frame_scroll_bars = Qright;
4576#else
4577 Vdefault_frame_scroll_bars = Qleft;
4578#endif
4579#else
4580 Vdefault_frame_scroll_bars = Qnil;
4581#endif
4582
4583 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4584 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4585
4586 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4587 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4588`mouse-position' calls this function, passing its usual return value as
4589argument, and returns whatever this function returns.
4590This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4591which need to do mouse handling at the Lisp level. */);
4592 Vmouse_position_function = Qnil;
4593
4594 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4595 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4596If the value is an integer, highlighting is only shown after moving the
4597mouse, while keyboard input turns off the highlight even when the mouse
4598is over the clickable text. However, the mouse shape still indicates
4599when the mouse is over clickable text. */);
4600 Vmouse_highlight = Qt;
4601
4602 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4603 doc: /* Functions to be run before deleting a frame.
4604The functions are run with one arg, the frame to be deleted.
4605See `delete-frame'.
4606
4607Note that functions in this list may be called just before the frame is
4608actually deleted, or some time later (or even both when an earlier function
4609in `delete-frame-functions' (indirectly) calls `delete-frame'
4610recursively). */);
4611 Vdelete_frame_functions = Qnil;
4612 Qdelete_frame_functions = intern ("delete-frame-functions");
4613 staticpro (&Qdelete_frame_functions);
4614
4615 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4616 doc: /* Minibufferless frames use this frame's minibuffer.
4617
4618Emacs cannot create minibufferless frames unless this is set to an
4619appropriate surrogate.
4620
4621Emacs consults this variable only when creating minibufferless
4622frames; once the frame is created, it sticks with its assigned
4623minibuffer, no matter what this variable is set to. This means that
4624this variable doesn't necessarily say anything meaningful about the
4625current set of frames, or where the minibuffer is currently being
4626displayed.
4627
4628This variable is local to the current terminal and cannot be buffer-local. */);
4629
4630 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4631 doc: /* Non-nil if window system changes focus when you move the mouse.
4632You should set this variable to tell Emacs how your window manager
4633handles focus, since there is no way in general for Emacs to find out
4634automatically. */);
4635#ifdef HAVE_WINDOW_SYSTEM
4636#if defined(HAVE_NTGUI) || defined(HAVE_NS)
4637 focus_follows_mouse = 0;
4638#else
4639 focus_follows_mouse = 1;
4640#endif
4641#else
4642 focus_follows_mouse = 0;
4643#endif
4644
4645 staticpro (&Vframe_list);
4646
4647 defsubr (&Sactive_minibuffer_window);
4648 defsubr (&Sframep);
4649 defsubr (&Sframe_live_p);
4650 defsubr (&Swindow_system);
4651 defsubr (&Smake_terminal_frame);
4652 defsubr (&Shandle_switch_frame);
4653 defsubr (&Sselect_frame);
4654 defsubr (&Sselected_frame);
4655 defsubr (&Swindow_frame);
4656 defsubr (&Sframe_root_window);
4657 defsubr (&Sframe_first_window);
4658 defsubr (&Sframe_selected_window);
4659 defsubr (&Sset_frame_selected_window);
4660 defsubr (&Sframe_list);
4661 defsubr (&Snext_frame);
4662 defsubr (&Sprevious_frame);
4663 defsubr (&Sdelete_frame);
4664 defsubr (&Smouse_position);
4665 defsubr (&Smouse_pixel_position);
4666 defsubr (&Sset_mouse_position);
4667 defsubr (&Sset_mouse_pixel_position);
4668#if 0
4669 defsubr (&Sframe_configuration);
4670 defsubr (&Srestore_frame_configuration);
4671#endif
4672 defsubr (&Smake_frame_visible);
4673 defsubr (&Smake_frame_invisible);
4674 defsubr (&Siconify_frame);
4675 defsubr (&Sframe_visible_p);
4676 defsubr (&Svisible_frame_list);
4677 defsubr (&Sraise_frame);
4678 defsubr (&Slower_frame);
4679 defsubr (&Sredirect_frame_focus);
4680 defsubr (&Sframe_focus);
4681 defsubr (&Sframe_parameters);
4682 defsubr (&Sframe_parameter);
4683 defsubr (&Smodify_frame_parameters);
4684 defsubr (&Sframe_char_height);
4685 defsubr (&Sframe_char_width);
4686 defsubr (&Sframe_pixel_height);
4687 defsubr (&Sframe_pixel_width);
4688 defsubr (&Sset_frame_height);
4689 defsubr (&Sset_frame_width);
4690 defsubr (&Sset_frame_size);
4691 defsubr (&Sset_frame_position);
4692
4693#ifdef HAVE_WINDOW_SYSTEM
4694 defsubr (&Sx_get_resource);
4695 defsubr (&Sx_parse_geometry);
4696#endif
4697
4698}
4699
4700/* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4701 (do not change this comment) */