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