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