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