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