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