Add bug reference.
[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 /* If we use `register' here, gcc-4.0.2 on amd64 using
1323 -DUSE_LISP_UNION_TYPE complains further down that we're getting the
1324 address of `force'. Go figure. */
1325 Lisp_Object frame, force;
1326 {
1327 struct frame *f;
1328 struct frame *sf = SELECTED_FRAME ();
1329 struct kboard *kb;
1330
1331 int minibuffer_selected;
1332
1333 if (EQ (frame, Qnil))
1334 {
1335 f = sf;
1336 XSETFRAME (frame, f);
1337 }
1338 else
1339 {
1340 CHECK_FRAME (frame);
1341 f = XFRAME (frame);
1342 }
1343
1344 if (! FRAME_LIVE_P (f))
1345 return Qnil;
1346
1347 if (NILP (force) && !other_visible_frames (f))
1348 error ("Attempt to delete the sole visible or iconified frame");
1349
1350 /* x_connection_closed must have set FORCE to `noelisp' in order
1351 to delete the last frame, if it is gone. */
1352 if (NILP (XCDR (Vframe_list)) && !EQ (force, Qnoelisp))
1353 error ("Attempt to delete the only frame");
1354
1355 /* Does this frame have a minibuffer, and is it the surrogate
1356 minibuffer for any other frame? */
1357 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1358 {
1359 Lisp_Object frames;
1360
1361 for (frames = Vframe_list;
1362 CONSP (frames);
1363 frames = XCDR (frames))
1364 {
1365 Lisp_Object this;
1366 this = XCAR (frames);
1367
1368 if (! EQ (this, frame)
1369 && EQ (frame,
1370 WINDOW_FRAME (XWINDOW
1371 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1372 {
1373 /* If we MUST delete this frame, delete the other first.
1374 But do this only if FORCE equals `noelisp'. */
1375 if (EQ (force, Qnoelisp))
1376 delete_frame (this, Qnoelisp);
1377 else
1378 error ("Attempt to delete a surrogate minibuffer frame");
1379 }
1380 }
1381 }
1382
1383 /* Run `delete-frame-functions' unless FORCE is `noelisp' or
1384 frame is a tooltip. FORCE is set to `noelisp' when handling
1385 a disconnect from the terminal, so we don't dare call Lisp
1386 code. */
1387 if (NILP (Vrun_hooks) || !NILP (Fframe_parameter (frame, intern ("tooltip"))))
1388 ;
1389 if (EQ (force, Qnoelisp))
1390 pending_funcalls
1391 = Fcons (list3 (Qrun_hook_with_args, Qdelete_frame_functions, frame),
1392 pending_funcalls);
1393 else
1394 safe_call2 (Qrun_hook_with_args, Qdelete_frame_functions, frame);
1395
1396 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
1397 if (! FRAME_LIVE_P (f))
1398 return Qnil;
1399
1400 /* At this point, we are committed to deleting the frame.
1401 There is no more chance for errors to prevent it. */
1402
1403 minibuffer_selected = EQ (minibuf_window, selected_window);
1404
1405 /* Don't let the frame remain selected. */
1406 if (f == sf)
1407 {
1408 Lisp_Object tail, frame1;
1409
1410 /* Look for another visible frame on the same terminal. */
1411 frame1 = next_frame (frame, Qvisible);
1412
1413 /* If there is none, find *some* other frame. */
1414 if (NILP (frame1) || EQ (frame1, frame))
1415 {
1416 FOR_EACH_FRAME (tail, frame1)
1417 {
1418 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
1419 break;
1420 }
1421 }
1422
1423 do_switch_frame (frame1, 0, 1, Qnil);
1424 sf = SELECTED_FRAME ();
1425 }
1426
1427 /* Don't allow minibuf_window to remain on a deleted frame. */
1428 if (EQ (f->minibuffer_window, minibuf_window))
1429 {
1430 Fset_window_buffer (sf->minibuffer_window,
1431 XWINDOW (minibuf_window)->buffer, Qnil);
1432 minibuf_window = sf->minibuffer_window;
1433
1434 /* If the dying minibuffer window was selected,
1435 select the new one. */
1436 if (minibuffer_selected)
1437 Fselect_window (minibuf_window, Qnil);
1438 }
1439
1440 /* Don't let echo_area_window to remain on a deleted frame. */
1441 if (EQ (f->minibuffer_window, echo_area_window))
1442 echo_area_window = sf->minibuffer_window;
1443
1444 /* Clear any X selections for this frame. */
1445 #ifdef HAVE_X_WINDOWS
1446 if (FRAME_X_P (f))
1447 x_clear_frame_selections (f);
1448 #endif
1449
1450 /* Free glyphs.
1451 This function must be called before the window tree of the
1452 frame is deleted because windows contain dynamically allocated
1453 memory. */
1454 free_glyphs (f);
1455
1456 #ifdef HAVE_WINDOW_SYSTEM
1457 /* Give chance to each font driver to free a frame specific data. */
1458 font_update_drivers (f, Qnil);
1459 #endif
1460
1461 /* Mark all the windows that used to be on FRAME as deleted, and then
1462 remove the reference to them. */
1463 delete_all_subwindows (XWINDOW (f->root_window));
1464 f->root_window = Qnil;
1465
1466 Vframe_list = Fdelq (frame, Vframe_list);
1467 FRAME_SET_VISIBLE (f, 0);
1468
1469 /* Allow the vector of menu bar contents to be freed in the next
1470 garbage collection. The frame object itself may not be garbage
1471 collected until much later, because recent_keys and other data
1472 structures can still refer to it. */
1473 f->menu_bar_vector = Qnil;
1474
1475 free_font_driver_list (f);
1476 xfree (f->namebuf);
1477 xfree (f->decode_mode_spec_buffer);
1478 xfree (FRAME_INSERT_COST (f));
1479 xfree (FRAME_DELETEN_COST (f));
1480 xfree (FRAME_INSERTN_COST (f));
1481 xfree (FRAME_DELETE_COST (f));
1482 xfree (FRAME_MESSAGE_BUF (f));
1483
1484 /* Since some events are handled at the interrupt level, we may get
1485 an event for f at any time; if we zero out the frame's terminal
1486 now, then we may trip up the event-handling code. Instead, we'll
1487 promise that the terminal of the frame must be valid until we
1488 have called the window-system-dependent frame destruction
1489 routine. */
1490
1491 if (FRAME_TERMINAL (f)->delete_frame_hook)
1492 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
1493
1494 {
1495 struct terminal *terminal = FRAME_TERMINAL (f);
1496 f->output_data.nothing = 0;
1497 f->terminal = 0; /* Now the frame is dead. */
1498
1499 /* If needed, delete the terminal that this frame was on.
1500 (This must be done after the frame is killed.) */
1501 terminal->reference_count--;
1502 if (terminal->reference_count == 0)
1503 {
1504 Lisp_Object tmp;
1505 XSETTERMINAL (tmp, terminal);
1506
1507 kb = NULL;
1508 Fdelete_terminal (tmp, NILP (force) ? Qt : force);
1509 }
1510 else
1511 kb = terminal->kboard;
1512 }
1513
1514 /* If we've deleted the last_nonminibuf_frame, then try to find
1515 another one. */
1516 if (f == last_nonminibuf_frame)
1517 {
1518 Lisp_Object frames;
1519
1520 last_nonminibuf_frame = 0;
1521
1522 for (frames = Vframe_list;
1523 CONSP (frames);
1524 frames = XCDR (frames))
1525 {
1526 f = XFRAME (XCAR (frames));
1527 if (!FRAME_MINIBUF_ONLY_P (f))
1528 {
1529 last_nonminibuf_frame = f;
1530 break;
1531 }
1532 }
1533 }
1534
1535 /* If there's no other frame on the same kboard, get out of
1536 single-kboard state if we're in it for this kboard. */
1537 if (kb != NULL)
1538 {
1539 Lisp_Object frames;
1540 /* Some frame we found on the same kboard, or nil if there are none. */
1541 Lisp_Object frame_on_same_kboard;
1542
1543 frame_on_same_kboard = Qnil;
1544
1545 for (frames = Vframe_list;
1546 CONSP (frames);
1547 frames = XCDR (frames))
1548 {
1549 Lisp_Object this;
1550 struct frame *f1;
1551
1552 this = XCAR (frames);
1553 if (!FRAMEP (this))
1554 abort ();
1555 f1 = XFRAME (this);
1556
1557 if (kb == FRAME_KBOARD (f1))
1558 frame_on_same_kboard = this;
1559 }
1560
1561 if (NILP (frame_on_same_kboard))
1562 not_single_kboard_state (kb);
1563 }
1564
1565
1566 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1567 find another one. Prefer minibuffer-only frames, but also notice
1568 frames with other windows. */
1569 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
1570 {
1571 Lisp_Object frames;
1572
1573 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1574 Lisp_Object frame_with_minibuf;
1575 /* Some frame we found on the same kboard, or nil if there are none. */
1576 Lisp_Object frame_on_same_kboard;
1577
1578 frame_on_same_kboard = Qnil;
1579 frame_with_minibuf = Qnil;
1580
1581 for (frames = Vframe_list;
1582 CONSP (frames);
1583 frames = XCDR (frames))
1584 {
1585 Lisp_Object this;
1586 struct frame *f1;
1587
1588 this = XCAR (frames);
1589 if (!FRAMEP (this))
1590 abort ();
1591 f1 = XFRAME (this);
1592
1593 /* Consider only frames on the same kboard
1594 and only those with minibuffers. */
1595 if (kb == FRAME_KBOARD (f1)
1596 && FRAME_HAS_MINIBUF_P (f1))
1597 {
1598 frame_with_minibuf = this;
1599 if (FRAME_MINIBUF_ONLY_P (f1))
1600 break;
1601 }
1602
1603 if (kb == FRAME_KBOARD (f1))
1604 frame_on_same_kboard = this;
1605 }
1606
1607 if (!NILP (frame_on_same_kboard))
1608 {
1609 /* We know that there must be some frame with a minibuffer out
1610 there. If this were not true, all of the frames present
1611 would have to be minibufferless, which implies that at some
1612 point their minibuffer frames must have been deleted, but
1613 that is prohibited at the top; you can't delete surrogate
1614 minibuffer frames. */
1615 if (NILP (frame_with_minibuf))
1616 abort ();
1617
1618 kb->Vdefault_minibuffer_frame = frame_with_minibuf;
1619 }
1620 else
1621 /* No frames left on this kboard--say no minibuffer either. */
1622 kb->Vdefault_minibuffer_frame = Qnil;
1623 }
1624
1625 /* Cause frame titles to update--necessary if we now have just one frame. */
1626 update_mode_lines = 1;
1627
1628 return Qnil;
1629 }
1630
1631 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1632 doc: /* Delete FRAME, permanently eliminating it from use.
1633 FRAME defaults to the selected frame.
1634
1635 A frame may not be deleted if its minibuffer is used by other frames.
1636 Normally, you may not delete a frame if all other frames are invisible,
1637 but if the second optional argument FORCE is non-nil, you may do so.
1638
1639 This function runs `delete-frame-functions' before actually
1640 deleting the frame, unless the frame is a tooltip.
1641 The functions are run with one argument, the frame to be deleted. */)
1642 (frame, force)
1643 Lisp_Object frame, force;
1644 {
1645 return delete_frame (frame, !NILP (force) ? Qt : Qnil);
1646 }
1647
1648 \f
1649 /* Return mouse position in character cell units. */
1650
1651 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1652 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1653 The position is given in character cells, where (0, 0) is the
1654 upper-left corner of the frame, X is the horizontal offset, and Y is
1655 the vertical offset.
1656 If Emacs is running on a mouseless terminal or hasn't been programmed
1657 to read the mouse position, it returns the selected frame for FRAME
1658 and nil for X and Y.
1659 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1660 passing the normal return value to that function as an argument,
1661 and returns whatever that function returns. */)
1662 ()
1663 {
1664 FRAME_PTR f;
1665 Lisp_Object lispy_dummy;
1666 enum scroll_bar_part party_dummy;
1667 Lisp_Object x, y, retval;
1668 int col, row;
1669 unsigned long long_dummy;
1670 struct gcpro gcpro1;
1671
1672 f = SELECTED_FRAME ();
1673 x = y = Qnil;
1674
1675 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1676 /* It's okay for the hook to refrain from storing anything. */
1677 if (FRAME_TERMINAL (f)->mouse_position_hook)
1678 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1679 &lispy_dummy, &party_dummy,
1680 &x, &y,
1681 &long_dummy);
1682 if (! NILP (x))
1683 {
1684 col = XINT (x);
1685 row = XINT (y);
1686 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1687 XSETINT (x, col);
1688 XSETINT (y, row);
1689 }
1690 #endif
1691 XSETFRAME (lispy_dummy, f);
1692 retval = Fcons (lispy_dummy, Fcons (x, y));
1693 GCPRO1 (retval);
1694 if (!NILP (Vmouse_position_function))
1695 retval = call1 (Vmouse_position_function, retval);
1696 RETURN_UNGCPRO (retval);
1697 }
1698
1699 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1700 Smouse_pixel_position, 0, 0, 0,
1701 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1702 The position is given in pixel units, where (0, 0) is the
1703 upper-left corner of the frame, X is the horizontal offset, and Y is
1704 the vertical offset.
1705 If Emacs is running on a mouseless terminal or hasn't been programmed
1706 to read the mouse position, it returns the selected frame for FRAME
1707 and nil for X and Y. */)
1708 ()
1709 {
1710 FRAME_PTR f;
1711 Lisp_Object lispy_dummy;
1712 enum scroll_bar_part party_dummy;
1713 Lisp_Object x, y;
1714 unsigned long long_dummy;
1715
1716 f = SELECTED_FRAME ();
1717 x = y = Qnil;
1718
1719 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1720 /* It's okay for the hook to refrain from storing anything. */
1721 if (FRAME_TERMINAL (f)->mouse_position_hook)
1722 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
1723 &lispy_dummy, &party_dummy,
1724 &x, &y,
1725 &long_dummy);
1726 #endif
1727 XSETFRAME (lispy_dummy, f);
1728 return Fcons (lispy_dummy, Fcons (x, y));
1729 }
1730
1731 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1732 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1733 Coordinates are relative to the frame, not a window,
1734 so the coordinates of the top left character in the frame
1735 may be nonzero due to left-hand scroll bars or the menu bar.
1736
1737 The position is given in character cells, where (0, 0) is the
1738 upper-left corner of the frame, X is the horizontal offset, and Y is
1739 the vertical offset.
1740
1741 This function is a no-op for an X frame that is not visible.
1742 If you have just created a frame, you must wait for it to become visible
1743 before calling this function on it, like this.
1744 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1745 (frame, x, y)
1746 Lisp_Object frame, x, y;
1747 {
1748 CHECK_LIVE_FRAME (frame);
1749 CHECK_NUMBER (x);
1750 CHECK_NUMBER (y);
1751
1752 /* I think this should be done with a hook. */
1753 #ifdef HAVE_WINDOW_SYSTEM
1754 if (FRAME_WINDOW_P (XFRAME (frame)))
1755 /* Warping the mouse will cause enternotify and focus events. */
1756 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1757 #else
1758 #if defined (MSDOS) && defined (HAVE_MOUSE)
1759 if (FRAME_MSDOS_P (XFRAME (frame)))
1760 {
1761 Fselect_frame (frame, Qnil);
1762 mouse_moveto (XINT (x), XINT (y));
1763 }
1764 #else
1765 #ifdef HAVE_GPM
1766 {
1767 Fselect_frame (frame, Qnil);
1768 term_mouse_moveto (XINT (x), XINT (y));
1769 }
1770 #endif
1771 #endif
1772 #endif
1773
1774 return Qnil;
1775 }
1776
1777 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1778 Sset_mouse_pixel_position, 3, 3, 0,
1779 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1780 The position is given in pixels, where (0, 0) is the upper-left corner
1781 of the frame, X is the horizontal offset, and Y is the vertical offset.
1782
1783 Note, this is a no-op for an X frame that is not visible.
1784 If you have just created a frame, you must wait for it to become visible
1785 before calling this function on it, like this.
1786 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1787 (frame, x, y)
1788 Lisp_Object frame, x, y;
1789 {
1790 CHECK_LIVE_FRAME (frame);
1791 CHECK_NUMBER (x);
1792 CHECK_NUMBER (y);
1793
1794 /* I think this should be done with a hook. */
1795 #ifdef HAVE_WINDOW_SYSTEM
1796 if (FRAME_WINDOW_P (XFRAME (frame)))
1797 /* Warping the mouse will cause enternotify and focus events. */
1798 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1799 #else
1800 #if defined (MSDOS) && defined (HAVE_MOUSE)
1801 if (FRAME_MSDOS_P (XFRAME (frame)))
1802 {
1803 Fselect_frame (frame, Qnil);
1804 mouse_moveto (XINT (x), XINT (y));
1805 }
1806 #else
1807 #ifdef HAVE_GPM
1808 {
1809 Fselect_frame (frame, Qnil);
1810 term_mouse_moveto (XINT (x), XINT (y));
1811 }
1812 #endif
1813 #endif
1814 #endif
1815
1816 return Qnil;
1817 }
1818 \f
1819 static void make_frame_visible_1 P_ ((Lisp_Object));
1820
1821 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1822 0, 1, "",
1823 doc: /* Make the frame FRAME visible (assuming it is an X window).
1824 If omitted, FRAME defaults to the currently selected frame. */)
1825 (frame)
1826 Lisp_Object frame;
1827 {
1828 if (NILP (frame))
1829 frame = selected_frame;
1830
1831 CHECK_LIVE_FRAME (frame);
1832
1833 /* I think this should be done with a hook. */
1834 #ifdef HAVE_WINDOW_SYSTEM
1835 if (FRAME_WINDOW_P (XFRAME (frame)))
1836 {
1837 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1838 x_make_frame_visible (XFRAME (frame));
1839 }
1840 #endif
1841
1842 make_frame_visible_1 (XFRAME (frame)->root_window);
1843
1844 /* Make menu bar update for the Buffers and Frames menus. */
1845 windows_or_buffers_changed++;
1846
1847 return frame;
1848 }
1849
1850 /* Update the display_time slot of the buffers shown in WINDOW
1851 and all its descendents. */
1852
1853 static void
1854 make_frame_visible_1 (window)
1855 Lisp_Object window;
1856 {
1857 struct window *w;
1858
1859 for (;!NILP (window); window = w->next)
1860 {
1861 w = XWINDOW (window);
1862
1863 if (!NILP (w->buffer))
1864 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1865
1866 if (!NILP (w->vchild))
1867 make_frame_visible_1 (w->vchild);
1868 if (!NILP (w->hchild))
1869 make_frame_visible_1 (w->hchild);
1870 }
1871 }
1872
1873 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1874 0, 2, "",
1875 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1876 If omitted, FRAME defaults to the currently selected frame.
1877 Normally you may not make FRAME invisible if all other frames are invisible,
1878 but if the second optional argument FORCE is non-nil, you may do so. */)
1879 (frame, force)
1880 Lisp_Object frame, force;
1881 {
1882 if (NILP (frame))
1883 frame = selected_frame;
1884
1885 CHECK_LIVE_FRAME (frame);
1886
1887 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1888 error ("Attempt to make invisible the sole visible or iconified frame");
1889
1890 #if 0 /* This isn't logically necessary, and it can do GC. */
1891 /* Don't let the frame remain selected. */
1892 if (EQ (frame, selected_frame))
1893 do_switch_frame (next_frame (frame, Qt), 0, 0, Qnil)
1894 #endif
1895
1896 /* Don't allow minibuf_window to remain on a deleted frame. */
1897 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1898 {
1899 struct frame *sf = XFRAME (selected_frame);
1900 Fset_window_buffer (sf->minibuffer_window,
1901 XWINDOW (minibuf_window)->buffer, Qnil);
1902 minibuf_window = sf->minibuffer_window;
1903 }
1904
1905 /* I think this should be done with a hook. */
1906 #ifdef HAVE_WINDOW_SYSTEM
1907 if (FRAME_WINDOW_P (XFRAME (frame)))
1908 x_make_frame_invisible (XFRAME (frame));
1909 #endif
1910
1911 /* Make menu bar update for the Buffers and Frames menus. */
1912 windows_or_buffers_changed++;
1913
1914 return Qnil;
1915 }
1916
1917 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1918 0, 1, "",
1919 doc: /* Make the frame FRAME into an icon.
1920 If omitted, FRAME defaults to the currently selected frame. */)
1921 (frame)
1922 Lisp_Object frame;
1923 {
1924 if (NILP (frame))
1925 frame = selected_frame;
1926
1927 CHECK_LIVE_FRAME (frame);
1928
1929 #if 0 /* This isn't logically necessary, and it can do GC. */
1930 /* Don't let the frame remain selected. */
1931 if (EQ (frame, selected_frame))
1932 Fhandle_switch_frame (next_frame (frame, Qt));
1933 #endif
1934
1935 /* Don't allow minibuf_window to remain on a deleted frame. */
1936 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1937 {
1938 struct frame *sf = XFRAME (selected_frame);
1939 Fset_window_buffer (sf->minibuffer_window,
1940 XWINDOW (minibuf_window)->buffer, Qnil);
1941 minibuf_window = sf->minibuffer_window;
1942 }
1943
1944 /* I think this should be done with a hook. */
1945 #ifdef HAVE_WINDOW_SYSTEM
1946 if (FRAME_WINDOW_P (XFRAME (frame)))
1947 x_iconify_frame (XFRAME (frame));
1948 #endif
1949
1950 /* Make menu bar update for the Buffers and Frames menus. */
1951 windows_or_buffers_changed++;
1952
1953 return Qnil;
1954 }
1955
1956 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1957 1, 1, 0,
1958 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1959 A frame that is not \"visible\" is not updated and, if it works through
1960 a window system, it may not show at all.
1961 Return the symbol `icon' if frame is visible only as an icon.
1962
1963 On a text-only terminal, all frames are considered visible, whether
1964 they are currently being displayed or not, and this function returns t
1965 for all frames. */)
1966 (frame)
1967 Lisp_Object frame;
1968 {
1969 CHECK_LIVE_FRAME (frame);
1970
1971 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1972
1973 if (FRAME_VISIBLE_P (XFRAME (frame)))
1974 return Qt;
1975 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1976 return Qicon;
1977 return Qnil;
1978 }
1979
1980 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1981 0, 0, 0,
1982 doc: /* Return a list of all frames now \"visible\" (being updated). */)
1983 ()
1984 {
1985 Lisp_Object tail, frame;
1986 struct frame *f;
1987 Lisp_Object value;
1988
1989 value = Qnil;
1990 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1991 {
1992 frame = XCAR (tail);
1993 if (!FRAMEP (frame))
1994 continue;
1995 f = XFRAME (frame);
1996 if (FRAME_VISIBLE_P (f))
1997 value = Fcons (frame, value);
1998 }
1999 return value;
2000 }
2001
2002
2003 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
2004 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
2005 If FRAME is invisible or iconified, make it visible.
2006 If you don't specify a frame, the selected frame is used.
2007 If Emacs is displaying on an ordinary terminal or some other device which
2008 doesn't support multiple overlapping frames, this function selects FRAME. */)
2009 (frame)
2010 Lisp_Object frame;
2011 {
2012 struct frame *f;
2013 if (NILP (frame))
2014 frame = selected_frame;
2015
2016 CHECK_LIVE_FRAME (frame);
2017
2018 f = XFRAME (frame);
2019
2020 if (FRAME_TERMCAP_P (f))
2021 /* On a text-only terminal select FRAME. */
2022 Fselect_frame (frame, Qnil);
2023 else
2024 /* Do like the documentation says. */
2025 Fmake_frame_visible (frame);
2026
2027 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2028 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
2029
2030 return Qnil;
2031 }
2032
2033 /* Should we have a corresponding function called Flower_Power? */
2034 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
2035 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
2036 If you don't specify a frame, the selected frame is used.
2037 If Emacs is displaying on an ordinary terminal or some other device which
2038 doesn't support multiple overlapping frames, this function does nothing. */)
2039 (frame)
2040 Lisp_Object frame;
2041 {
2042 struct frame *f;
2043
2044 if (NILP (frame))
2045 frame = selected_frame;
2046
2047 CHECK_LIVE_FRAME (frame);
2048
2049 f = XFRAME (frame);
2050
2051 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
2052 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
2053
2054 return Qnil;
2055 }
2056
2057 \f
2058 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
2059 1, 2, 0,
2060 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
2061 In other words, switch-frame events caused by events in FRAME will
2062 request a switch to FOCUS-FRAME, and `last-event-frame' will be
2063 FOCUS-FRAME after reading an event typed at FRAME.
2064
2065 If FOCUS-FRAME is omitted or nil, any existing redirection is
2066 cancelled, and the frame again receives its own keystrokes.
2067
2068 Focus redirection is useful for temporarily redirecting keystrokes to
2069 a surrogate minibuffer frame when a frame doesn't have its own
2070 minibuffer window.
2071
2072 A frame's focus redirection can be changed by `select-frame'. If frame
2073 FOO is selected, and then a different frame BAR is selected, any
2074 frames redirecting their focus to FOO are shifted to redirect their
2075 focus to BAR. This allows focus redirection to work properly when the
2076 user switches from one frame to another using `select-window'.
2077
2078 This means that a frame whose focus is redirected to itself is treated
2079 differently from a frame whose focus is redirected to nil; the former
2080 is affected by `select-frame', while the latter is not.
2081
2082 The redirection lasts until `redirect-frame-focus' is called to change it. */)
2083 (frame, focus_frame)
2084 Lisp_Object frame, focus_frame;
2085 {
2086 struct frame *f;
2087
2088 /* Note that we don't check for a live frame here. It's reasonable
2089 to redirect the focus of a frame you're about to delete, if you
2090 know what other frame should receive those keystrokes. */
2091 CHECK_FRAME (frame);
2092
2093 if (! NILP (focus_frame))
2094 CHECK_LIVE_FRAME (focus_frame);
2095
2096 f = XFRAME (frame);
2097
2098 f->focus_frame = focus_frame;
2099
2100 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
2101 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
2102
2103 return Qnil;
2104 }
2105
2106
2107 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
2108 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
2109 This returns nil if FRAME's focus is not redirected.
2110 See `redirect-frame-focus'. */)
2111 (frame)
2112 Lisp_Object frame;
2113 {
2114 CHECK_LIVE_FRAME (frame);
2115
2116 return FRAME_FOCUS_FRAME (XFRAME (frame));
2117 }
2118
2119
2120 \f
2121 /* Return the value of frame parameter PROP in frame FRAME. */
2122
2123 Lisp_Object
2124 get_frame_param (frame, prop)
2125 register struct frame *frame;
2126 Lisp_Object prop;
2127 {
2128 register Lisp_Object tem;
2129
2130 tem = Fassq (prop, frame->param_alist);
2131 if (EQ (tem, Qnil))
2132 return tem;
2133 return Fcdr (tem);
2134 }
2135
2136 /* Return the buffer-predicate of the selected frame. */
2137
2138 Lisp_Object
2139 frame_buffer_predicate (frame)
2140 Lisp_Object frame;
2141 {
2142 return XFRAME (frame)->buffer_predicate;
2143 }
2144
2145 /* Return the buffer-list of the selected frame. */
2146
2147 Lisp_Object
2148 frame_buffer_list (frame)
2149 Lisp_Object frame;
2150 {
2151 return XFRAME (frame)->buffer_list;
2152 }
2153
2154 /* Set the buffer-list of the selected frame. */
2155
2156 void
2157 set_frame_buffer_list (frame, list)
2158 Lisp_Object frame, list;
2159 {
2160 XFRAME (frame)->buffer_list = list;
2161 }
2162
2163 /* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
2164
2165 void
2166 frames_discard_buffer (buffer)
2167 Lisp_Object buffer;
2168 {
2169 Lisp_Object frame, tail;
2170
2171 FOR_EACH_FRAME (tail, frame)
2172 {
2173 XFRAME (frame)->buffer_list
2174 = Fdelq (buffer, XFRAME (frame)->buffer_list);
2175 XFRAME (frame)->buried_buffer_list
2176 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
2177 }
2178 }
2179
2180 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
2181 If the alist already has an element for PROP, we change it. */
2182
2183 void
2184 store_in_alist (alistptr, prop, val)
2185 Lisp_Object *alistptr, val;
2186 Lisp_Object prop;
2187 {
2188 register Lisp_Object tem;
2189
2190 tem = Fassq (prop, *alistptr);
2191 if (EQ (tem, Qnil))
2192 *alistptr = Fcons (Fcons (prop, val), *alistptr);
2193 else
2194 Fsetcdr (tem, val);
2195 }
2196
2197 static int
2198 frame_name_fnn_p (str, len)
2199 char *str;
2200 EMACS_INT len;
2201 {
2202 if (len > 1 && str[0] == 'F')
2203 {
2204 char *end_ptr;
2205
2206 strtol (str + 1, &end_ptr, 10);
2207
2208 if (end_ptr == str + len)
2209 return 1;
2210 }
2211 return 0;
2212 }
2213
2214 /* Set the name of the terminal frame. Also used by MSDOS frames.
2215 Modeled after x_set_name which is used for WINDOW frames. */
2216
2217 static void
2218 set_term_frame_name (f, name)
2219 struct frame *f;
2220 Lisp_Object name;
2221 {
2222 f->explicit_name = ! NILP (name);
2223
2224 /* If NAME is nil, set the name to F<num>. */
2225 if (NILP (name))
2226 {
2227 char namebuf[20];
2228
2229 /* Check for no change needed in this very common case
2230 before we do any consing. */
2231 if (frame_name_fnn_p (SDATA (f->name),
2232 SBYTES (f->name)))
2233 return;
2234
2235 tty_frame_count++;
2236 sprintf (namebuf, "F%d", tty_frame_count);
2237 name = build_string (namebuf);
2238 }
2239 else
2240 {
2241 CHECK_STRING (name);
2242
2243 /* Don't change the name if it's already NAME. */
2244 if (! NILP (Fstring_equal (name, f->name)))
2245 return;
2246
2247 /* Don't allow the user to set the frame name to F<num>, so it
2248 doesn't clash with the names we generate for terminal frames. */
2249 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
2250 error ("Frame names of the form F<num> are usurped by Emacs");
2251 }
2252
2253 f->name = name;
2254 update_mode_lines = 1;
2255 }
2256
2257 void
2258 store_frame_param (f, prop, val)
2259 struct frame *f;
2260 Lisp_Object prop, val;
2261 {
2262 register Lisp_Object old_alist_elt;
2263
2264 /* The buffer-list parameters are stored in a special place and not
2265 in the alist. */
2266 if (EQ (prop, Qbuffer_list))
2267 {
2268 f->buffer_list = val;
2269 return;
2270 }
2271 if (EQ (prop, Qburied_buffer_list))
2272 {
2273 f->buried_buffer_list = val;
2274 return;
2275 }
2276
2277 /* If PROP is a symbol which is supposed to have frame-local values,
2278 and it is set up based on this frame, switch to the global
2279 binding. That way, we can create or alter the frame-local binding
2280 without messing up the symbol's status. */
2281 if (SYMBOLP (prop))
2282 {
2283 Lisp_Object valcontents;
2284 valcontents = SYMBOL_VALUE (prop);
2285 if ((BUFFER_LOCAL_VALUEP (valcontents))
2286 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2287 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
2288 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2289 swap_in_global_binding (prop);
2290 }
2291
2292 /* The tty color needed to be set before the frame's parameter
2293 alist was updated with the new value. This is not true any more,
2294 but we still do this test early on. */
2295 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode)
2296 && f == FRAME_TTY (f)->previous_frame)
2297 /* Force redisplay of this tty. */
2298 FRAME_TTY (f)->previous_frame = NULL;
2299
2300 /* Update the frame parameter alist. */
2301 old_alist_elt = Fassq (prop, f->param_alist);
2302 if (EQ (old_alist_elt, Qnil))
2303 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2304 else
2305 Fsetcdr (old_alist_elt, val);
2306
2307 /* Update some other special parameters in their special places
2308 in addition to the alist. */
2309
2310 if (EQ (prop, Qbuffer_predicate))
2311 f->buffer_predicate = val;
2312
2313 if (! FRAME_WINDOW_P (f))
2314 {
2315 if (EQ (prop, Qmenu_bar_lines))
2316 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2317 else if (EQ (prop, Qname))
2318 set_term_frame_name (f, val);
2319 }
2320
2321 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2322 {
2323 if (! MINI_WINDOW_P (XWINDOW (val)))
2324 error ("Surrogate minibuffer windows must be minibuffer windows");
2325
2326 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2327 && !EQ (val, f->minibuffer_window))
2328 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2329
2330 /* Install the chosen minibuffer window, with proper buffer. */
2331 f->minibuffer_window = val;
2332 }
2333 }
2334
2335 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2336 doc: /* Return the parameters-alist of frame FRAME.
2337 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2338 The meaningful PARMs depend on the kind of frame.
2339 If FRAME is omitted, return information on the currently selected frame. */)
2340 (frame)
2341 Lisp_Object frame;
2342 {
2343 Lisp_Object alist;
2344 FRAME_PTR f;
2345 int height, width;
2346 struct gcpro gcpro1;
2347
2348 if (NILP (frame))
2349 frame = selected_frame;
2350
2351 CHECK_FRAME (frame);
2352 f = XFRAME (frame);
2353
2354 if (!FRAME_LIVE_P (f))
2355 return Qnil;
2356
2357 alist = Fcopy_alist (f->param_alist);
2358 GCPRO1 (alist);
2359
2360 if (!FRAME_WINDOW_P (f))
2361 {
2362 int fg = FRAME_FOREGROUND_PIXEL (f);
2363 int bg = FRAME_BACKGROUND_PIXEL (f);
2364 Lisp_Object elt;
2365
2366 /* If the frame's parameter alist says the colors are
2367 unspecified and reversed, take the frame's background pixel
2368 for foreground and vice versa. */
2369 elt = Fassq (Qforeground_color, alist);
2370 if (CONSP (elt) && STRINGP (XCDR (elt)))
2371 {
2372 if (strncmp (SDATA (XCDR (elt)),
2373 unspecified_bg,
2374 SCHARS (XCDR (elt))) == 0)
2375 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2376 else if (strncmp (SDATA (XCDR (elt)),
2377 unspecified_fg,
2378 SCHARS (XCDR (elt))) == 0)
2379 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2380 }
2381 else
2382 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2383 elt = Fassq (Qbackground_color, alist);
2384 if (CONSP (elt) && STRINGP (XCDR (elt)))
2385 {
2386 if (strncmp (SDATA (XCDR (elt)),
2387 unspecified_fg,
2388 SCHARS (XCDR (elt))) == 0)
2389 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2390 else if (strncmp (SDATA (XCDR (elt)),
2391 unspecified_bg,
2392 SCHARS (XCDR (elt))) == 0)
2393 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2394 }
2395 else
2396 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2397 store_in_alist (&alist, intern ("font"),
2398 build_string (FRAME_MSDOS_P (f)
2399 ? "ms-dos"
2400 : FRAME_W32_P (f) ? "w32term"
2401 :"tty"));
2402 }
2403 store_in_alist (&alist, Qname, f->name);
2404 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2405 store_in_alist (&alist, Qheight, make_number (height));
2406 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2407 store_in_alist (&alist, Qwidth, make_number (width));
2408 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2409 store_in_alist (&alist, Qminibuffer,
2410 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2411 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2412 : FRAME_MINIBUF_WINDOW (f)));
2413 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2414 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2415 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
2416
2417 /* I think this should be done with a hook. */
2418 #ifdef HAVE_WINDOW_SYSTEM
2419 if (FRAME_WINDOW_P (f))
2420 x_report_frame_params (f, &alist);
2421 else
2422 #endif
2423 {
2424 /* This ought to be correct in f->param_alist for an X frame. */
2425 Lisp_Object lines;
2426 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2427 store_in_alist (&alist, Qmenu_bar_lines, lines);
2428 }
2429
2430 UNGCPRO;
2431 return alist;
2432 }
2433
2434
2435 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2436 doc: /* Return FRAME's value for parameter PARAMETER.
2437 If FRAME is nil, describe the currently selected frame. */)
2438 (frame, parameter)
2439 Lisp_Object frame, parameter;
2440 {
2441 struct frame *f;
2442 Lisp_Object value;
2443
2444 if (NILP (frame))
2445 frame = selected_frame;
2446 else
2447 CHECK_FRAME (frame);
2448 CHECK_SYMBOL (parameter);
2449
2450 f = XFRAME (frame);
2451 value = Qnil;
2452
2453 if (FRAME_LIVE_P (f))
2454 {
2455 /* Avoid consing in frequent cases. */
2456 if (EQ (parameter, Qname))
2457 value = f->name;
2458 #ifdef HAVE_X_WINDOWS
2459 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2460 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2461 #endif /* HAVE_X_WINDOWS */
2462 else if (EQ (parameter, Qbackground_color)
2463 || EQ (parameter, Qforeground_color))
2464 {
2465 value = Fassq (parameter, f->param_alist);
2466 if (CONSP (value))
2467 {
2468 value = XCDR (value);
2469 /* Fframe_parameters puts the actual fg/bg color names,
2470 even if f->param_alist says otherwise. This is
2471 important when param_alist's notion of colors is
2472 "unspecified". We need to do the same here. */
2473 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2474 {
2475 const char *color_name;
2476 EMACS_INT csz;
2477
2478 if (EQ (parameter, Qbackground_color))
2479 {
2480 color_name = SDATA (value);
2481 csz = SCHARS (value);
2482 if (strncmp (color_name, unspecified_bg, csz) == 0)
2483 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2484 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2485 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2486 }
2487 else if (EQ (parameter, Qforeground_color))
2488 {
2489 color_name = SDATA (value);
2490 csz = SCHARS (value);
2491 if (strncmp (color_name, unspecified_fg, csz) == 0)
2492 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2493 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2494 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2495 }
2496 }
2497 }
2498 else
2499 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2500 }
2501 else if (EQ (parameter, Qdisplay_type)
2502 || EQ (parameter, Qbackground_mode))
2503 value = Fcdr (Fassq (parameter, f->param_alist));
2504 else
2505 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2506 }
2507
2508 return value;
2509 }
2510
2511
2512 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2513 Smodify_frame_parameters, 2, 2, 0,
2514 doc: /* Modify the parameters of frame FRAME according to ALIST.
2515 If FRAME is nil, it defaults to the selected frame.
2516 ALIST is an alist of parameters to change and their new values.
2517 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2518 The meaningful PARMs depend on the kind of frame.
2519 Undefined PARMs are ignored, but stored in the frame's parameter list
2520 so that `frame-parameters' will return them.
2521
2522 The value of frame parameter FOO can also be accessed
2523 as a frame-local binding for the variable FOO, if you have
2524 enabled such bindings for that variable with `make-variable-frame-local'.
2525 Note that this functionality is obsolete as of Emacs 22.2, and its
2526 use is not recommended. Explicitly check for a frame-parameter instead. */)
2527 (frame, alist)
2528 Lisp_Object frame, alist;
2529 {
2530 FRAME_PTR f;
2531 register Lisp_Object tail, prop, val;
2532
2533 if (EQ (frame, Qnil))
2534 frame = selected_frame;
2535 CHECK_LIVE_FRAME (frame);
2536 f = XFRAME (frame);
2537
2538 /* I think this should be done with a hook. */
2539 #ifdef HAVE_WINDOW_SYSTEM
2540 if (FRAME_WINDOW_P (f))
2541 x_set_frame_parameters (f, alist);
2542 else
2543 #endif
2544 #ifdef MSDOS
2545 if (FRAME_MSDOS_P (f))
2546 IT_set_frame_parameters (f, alist);
2547 else
2548 #endif
2549
2550 {
2551 int length = XINT (Flength (alist));
2552 int i;
2553 Lisp_Object *parms
2554 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2555 Lisp_Object *values
2556 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2557
2558 /* Extract parm names and values into those vectors. */
2559
2560 i = 0;
2561 for (tail = alist; CONSP (tail); tail = XCDR (tail))
2562 {
2563 Lisp_Object elt;
2564
2565 elt = XCAR (tail);
2566 parms[i] = Fcar (elt);
2567 values[i] = Fcdr (elt);
2568 i++;
2569 }
2570
2571 /* Now process them in reverse of specified order. */
2572 for (i--; i >= 0; i--)
2573 {
2574 prop = parms[i];
2575 val = values[i];
2576 store_frame_param (f, prop, val);
2577
2578 /* Changing the background color might change the background
2579 mode, so that we have to load new defface specs.
2580 Call frame-set-background-mode to do that. */
2581 if (EQ (prop, Qbackground_color))
2582 call1 (Qframe_set_background_mode, frame);
2583 }
2584 }
2585 return Qnil;
2586 }
2587 \f
2588 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2589 0, 1, 0,
2590 doc: /* Height in pixels of a line in the font in frame FRAME.
2591 If FRAME is omitted, the selected frame is used.
2592 For a terminal frame, the value is always 1. */)
2593 (frame)
2594 Lisp_Object frame;
2595 {
2596 struct frame *f;
2597
2598 if (NILP (frame))
2599 frame = selected_frame;
2600 CHECK_FRAME (frame);
2601 f = XFRAME (frame);
2602
2603 #ifdef HAVE_WINDOW_SYSTEM
2604 if (FRAME_WINDOW_P (f))
2605 return make_number (x_char_height (f));
2606 else
2607 #endif
2608 return make_number (1);
2609 }
2610
2611
2612 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2613 0, 1, 0,
2614 doc: /* Width in pixels of characters in the font in frame FRAME.
2615 If FRAME is omitted, the selected frame is used.
2616 On a graphical screen, the width is the standard width of the default font.
2617 For a terminal screen, the value is always 1. */)
2618 (frame)
2619 Lisp_Object frame;
2620 {
2621 struct frame *f;
2622
2623 if (NILP (frame))
2624 frame = selected_frame;
2625 CHECK_FRAME (frame);
2626 f = XFRAME (frame);
2627
2628 #ifdef HAVE_WINDOW_SYSTEM
2629 if (FRAME_WINDOW_P (f))
2630 return make_number (x_char_width (f));
2631 else
2632 #endif
2633 return make_number (1);
2634 }
2635
2636 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2637 Sframe_pixel_height, 0, 1, 0,
2638 doc: /* Return a FRAME's height in pixels.
2639 This counts only the height available for text lines,
2640 not menu bars on window-system Emacs frames.
2641 For a terminal frame, the result really gives the height in characters.
2642 If FRAME is omitted, the selected frame is used. */)
2643 (frame)
2644 Lisp_Object frame;
2645 {
2646 struct frame *f;
2647
2648 if (NILP (frame))
2649 frame = selected_frame;
2650 CHECK_FRAME (frame);
2651 f = XFRAME (frame);
2652
2653 #ifdef HAVE_WINDOW_SYSTEM
2654 if (FRAME_WINDOW_P (f))
2655 return make_number (x_pixel_height (f));
2656 else
2657 #endif
2658 return make_number (FRAME_LINES (f));
2659 }
2660
2661 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2662 Sframe_pixel_width, 0, 1, 0,
2663 doc: /* Return FRAME's width in pixels.
2664 For a terminal frame, the result really gives the width in characters.
2665 If FRAME is omitted, the selected frame is used. */)
2666 (frame)
2667 Lisp_Object frame;
2668 {
2669 struct frame *f;
2670
2671 if (NILP (frame))
2672 frame = selected_frame;
2673 CHECK_FRAME (frame);
2674 f = XFRAME (frame);
2675
2676 #ifdef HAVE_WINDOW_SYSTEM
2677 if (FRAME_WINDOW_P (f))
2678 return make_number (x_pixel_width (f));
2679 else
2680 #endif
2681 return make_number (FRAME_COLS (f));
2682 }
2683 \f
2684 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2685 doc: /* Specify that the frame FRAME has LINES lines.
2686 Optional third arg non-nil means that redisplay should use LINES lines
2687 but that the idea of the actual height of the frame should not be changed. */)
2688 (frame, lines, pretend)
2689 Lisp_Object frame, lines, pretend;
2690 {
2691 register struct frame *f;
2692
2693 CHECK_NUMBER (lines);
2694 if (NILP (frame))
2695 frame = selected_frame;
2696 CHECK_LIVE_FRAME (frame);
2697 f = XFRAME (frame);
2698
2699 /* I think this should be done with a hook. */
2700 #ifdef HAVE_WINDOW_SYSTEM
2701 if (FRAME_WINDOW_P (f))
2702 {
2703 if (XINT (lines) != FRAME_LINES (f))
2704 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2705 do_pending_window_change (0);
2706 }
2707 else
2708 #endif
2709 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2710 return Qnil;
2711 }
2712
2713 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2714 doc: /* Specify that the frame FRAME has COLS columns.
2715 Optional third arg non-nil means that redisplay should use COLS columns
2716 but that the idea of the actual width of the frame should not be changed. */)
2717 (frame, cols, pretend)
2718 Lisp_Object frame, cols, pretend;
2719 {
2720 register struct frame *f;
2721 CHECK_NUMBER (cols);
2722 if (NILP (frame))
2723 frame = selected_frame;
2724 CHECK_LIVE_FRAME (frame);
2725 f = XFRAME (frame);
2726
2727 /* I think this should be done with a hook. */
2728 #ifdef HAVE_WINDOW_SYSTEM
2729 if (FRAME_WINDOW_P (f))
2730 {
2731 if (XINT (cols) != FRAME_COLS (f))
2732 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2733 do_pending_window_change (0);
2734 }
2735 else
2736 #endif
2737 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2738 return Qnil;
2739 }
2740
2741 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2742 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2743 (frame, cols, rows)
2744 Lisp_Object frame, cols, rows;
2745 {
2746 register struct frame *f;
2747
2748 CHECK_LIVE_FRAME (frame);
2749 CHECK_NUMBER (cols);
2750 CHECK_NUMBER (rows);
2751 f = XFRAME (frame);
2752
2753 /* I think this should be done with a hook. */
2754 #ifdef HAVE_WINDOW_SYSTEM
2755 if (FRAME_WINDOW_P (f))
2756 {
2757 if (XINT (rows) != FRAME_LINES (f)
2758 || XINT (cols) != FRAME_COLS (f)
2759 || f->new_text_lines || f->new_text_cols)
2760 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2761 do_pending_window_change (0);
2762 }
2763 else
2764 #endif
2765 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2766
2767 return Qnil;
2768 }
2769
2770 DEFUN ("set-frame-position", Fset_frame_position,
2771 Sset_frame_position, 3, 3, 0,
2772 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2773 This is actually the position of the upper left corner of the frame.
2774 Negative values for XOFFSET or YOFFSET are interpreted relative to
2775 the rightmost or bottommost possible position (that stays within the screen). */)
2776 (frame, xoffset, yoffset)
2777 Lisp_Object frame, xoffset, yoffset;
2778 {
2779 register struct frame *f;
2780
2781 CHECK_LIVE_FRAME (frame);
2782 CHECK_NUMBER (xoffset);
2783 CHECK_NUMBER (yoffset);
2784 f = XFRAME (frame);
2785
2786 /* I think this should be done with a hook. */
2787 #ifdef HAVE_WINDOW_SYSTEM
2788 if (FRAME_WINDOW_P (f))
2789 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2790 #endif
2791
2792 return Qt;
2793 }
2794
2795 \f
2796 /***********************************************************************
2797 Frame Parameters
2798 ***********************************************************************/
2799
2800 /* Connect the frame-parameter names for X frames
2801 to the ways of passing the parameter values to the window system.
2802
2803 The name of a parameter, as a Lisp symbol,
2804 has an `x-frame-parameter' property which is an integer in Lisp
2805 that is an index in this table. */
2806
2807 struct frame_parm_table {
2808 char *name;
2809 Lisp_Object *variable;
2810 };
2811
2812 static struct frame_parm_table frame_parms[] =
2813 {
2814 {"auto-raise", &Qauto_raise},
2815 {"auto-lower", &Qauto_lower},
2816 {"background-color", 0},
2817 {"border-color", &Qborder_color},
2818 {"border-width", &Qborder_width},
2819 {"cursor-color", &Qcursor_color},
2820 {"cursor-type", &Qcursor_type},
2821 {"font", 0},
2822 {"foreground-color", 0},
2823 {"icon-name", &Qicon_name},
2824 {"icon-type", &Qicon_type},
2825 {"internal-border-width", &Qinternal_border_width},
2826 {"menu-bar-lines", &Qmenu_bar_lines},
2827 {"mouse-color", &Qmouse_color},
2828 {"name", &Qname},
2829 {"scroll-bar-width", &Qscroll_bar_width},
2830 {"title", &Qtitle},
2831 {"unsplittable", &Qunsplittable},
2832 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2833 {"visibility", &Qvisibility},
2834 {"tool-bar-lines", &Qtool_bar_lines},
2835 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2836 {"scroll-bar-background", &Qscroll_bar_background},
2837 {"screen-gamma", &Qscreen_gamma},
2838 {"line-spacing", &Qline_spacing},
2839 {"left-fringe", &Qleft_fringe},
2840 {"right-fringe", &Qright_fringe},
2841 {"wait-for-wm", &Qwait_for_wm},
2842 {"fullscreen", &Qfullscreen},
2843 {"font-backend", &Qfont_backend},
2844 {"alpha", &Qalpha}
2845 };
2846
2847 #ifdef HAVE_WINDOW_SYSTEM
2848
2849 extern Lisp_Object Qbox;
2850 extern Lisp_Object Qtop;
2851
2852 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2853 wanted positions of the WM window (not Emacs window).
2854 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2855 window (FRAME_X_WINDOW).
2856 */
2857
2858 void
2859 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2860 struct frame *f;
2861 int *width;
2862 int *height;
2863 int *top_pos;
2864 int *left_pos;
2865 {
2866 int newwidth = FRAME_COLS (f);
2867 int newheight = FRAME_LINES (f);
2868 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2869
2870 *top_pos = f->top_pos;
2871 *left_pos = f->left_pos;
2872
2873 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2874 {
2875 int ph;
2876
2877 ph = x_display_pixel_height (dpyinfo);
2878 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2879 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2880 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2881 *top_pos = 0;
2882 }
2883
2884 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2885 {
2886 int pw;
2887
2888 pw = x_display_pixel_width (dpyinfo);
2889 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2890 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2891 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2892 *left_pos = 0;
2893 }
2894
2895 *width = newwidth;
2896 *height = newheight;
2897 }
2898
2899
2900 /* Change the parameters of frame F as specified by ALIST.
2901 If a parameter is not specially recognized, do nothing special;
2902 otherwise call the `x_set_...' function for that parameter.
2903 Except for certain geometry properties, always call store_frame_param
2904 to store the new value in the parameter alist. */
2905
2906 void
2907 x_set_frame_parameters (f, alist)
2908 FRAME_PTR f;
2909 Lisp_Object alist;
2910 {
2911 Lisp_Object tail;
2912
2913 /* If both of these parameters are present, it's more efficient to
2914 set them both at once. So we wait until we've looked at the
2915 entire list before we set them. */
2916 int width, height;
2917
2918 /* Same here. */
2919 Lisp_Object left, top;
2920
2921 /* Same with these. */
2922 Lisp_Object icon_left, icon_top;
2923
2924 /* Record in these vectors all the parms specified. */
2925 Lisp_Object *parms;
2926 Lisp_Object *values;
2927 int i, p;
2928 int left_no_change = 0, top_no_change = 0;
2929 int icon_left_no_change = 0, icon_top_no_change = 0;
2930 int fullscreen_is_being_set = 0;
2931 int height_for_full_width = 0;
2932 int width_for_full_height = 0;
2933 enum fullscreen_type fullscreen_wanted = FULLSCREEN_NONE;
2934
2935 struct gcpro gcpro1, gcpro2;
2936
2937 i = 0;
2938 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2939 i++;
2940
2941 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2942 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2943
2944 /* Extract parm names and values into those vectors. */
2945
2946 i = 0;
2947 for (tail = alist; CONSP (tail); tail = XCDR (tail))
2948 {
2949 Lisp_Object elt;
2950
2951 elt = XCAR (tail);
2952 parms[i] = Fcar (elt);
2953 values[i] = Fcdr (elt);
2954 i++;
2955 }
2956 /* TAIL and ALIST are not used again below here. */
2957 alist = tail = Qnil;
2958
2959 GCPRO2 (*parms, *values);
2960 gcpro1.nvars = i;
2961 gcpro2.nvars = i;
2962
2963 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2964 because their values appear in VALUES and strings are not valid. */
2965 top = left = Qunbound;
2966 icon_left = icon_top = Qunbound;
2967
2968 /* Provide default values for HEIGHT and WIDTH. */
2969 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2970 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2971
2972 /* Process foreground_color and background_color before anything else.
2973 They are independent of other properties, but other properties (e.g.,
2974 cursor_color) are dependent upon them. */
2975 /* Process default font as well, since fringe widths depends on it. */
2976 /* Also, process fullscreen, width and height depend upon that. */
2977 for (p = 0; p < i; p++)
2978 {
2979 Lisp_Object prop, val;
2980
2981 prop = parms[p];
2982 val = values[p];
2983 if (EQ (prop, Qforeground_color)
2984 || EQ (prop, Qbackground_color)
2985 || EQ (prop, Qfont)
2986 || EQ (prop, Qfullscreen))
2987 {
2988 register Lisp_Object param_index, old_value;
2989
2990 if (EQ (prop, Qfullscreen))
2991 {
2992 /* The parameter handler can reset f->want_fullscreen to
2993 FULLSCREEN_NONE. But we need the requested value later
2994 to decide whether a height or width parameter shall be
2995 applied. Therefore, we remember the requested value in
2996 fullscreen_wanted for the following two cases. */
2997 if (EQ (val, Qfullheight))
2998 fullscreen_wanted = FULLSCREEN_HEIGHT;
2999 else if (EQ (val, Qfullwidth))
3000 fullscreen_wanted = FULLSCREEN_WIDTH;
3001 }
3002
3003 old_value = get_frame_param (f, prop);
3004 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
3005 if (NILP (Fequal (val, old_value)))
3006 {
3007 store_frame_param (f, prop, val);
3008
3009 param_index = Fget (prop, Qx_frame_parameter);
3010 if (NATNUMP (param_index)
3011 && (XFASTINT (param_index)
3012 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3013 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3014 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3015 }
3016 }
3017 }
3018
3019 /* Now process them in reverse of specified order. */
3020 for (i--; i >= 0; i--)
3021 {
3022 Lisp_Object prop, val;
3023
3024 prop = parms[i];
3025 val = values[i];
3026
3027 if (EQ (prop, Qwidth) && NATNUMP (val))
3028 width_for_full_height = width = XFASTINT (val);
3029 else if (EQ (prop, Qheight) && NATNUMP (val))
3030 height_for_full_width = height = XFASTINT (val);
3031 else if (EQ (prop, Qtop))
3032 top = val;
3033 else if (EQ (prop, Qleft))
3034 left = val;
3035 else if (EQ (prop, Qicon_top))
3036 icon_top = val;
3037 else if (EQ (prop, Qicon_left))
3038 icon_left = val;
3039 else if (EQ (prop, Qforeground_color)
3040 || EQ (prop, Qbackground_color)
3041 || EQ (prop, Qfont)
3042 || EQ (prop, Qfullscreen))
3043 /* Processed above. */
3044 continue;
3045 else
3046 {
3047 register Lisp_Object param_index, old_value;
3048
3049 old_value = get_frame_param (f, prop);
3050
3051 store_frame_param (f, prop, val);
3052
3053 param_index = Fget (prop, Qx_frame_parameter);
3054 if (NATNUMP (param_index)
3055 && (XFASTINT (param_index)
3056 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3057 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3058 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
3059 }
3060 }
3061
3062 /* Don't die if just one of these was set. */
3063 if (EQ (left, Qunbound))
3064 {
3065 left_no_change = 1;
3066 if (f->left_pos < 0)
3067 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
3068 else
3069 XSETINT (left, f->left_pos);
3070 }
3071 if (EQ (top, Qunbound))
3072 {
3073 top_no_change = 1;
3074 if (f->top_pos < 0)
3075 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
3076 else
3077 XSETINT (top, f->top_pos);
3078 }
3079
3080 /* If one of the icon positions was not set, preserve or default it. */
3081 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3082 {
3083 icon_left_no_change = 1;
3084 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3085 if (NILP (icon_left))
3086 XSETINT (icon_left, 0);
3087 }
3088 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3089 {
3090 icon_top_no_change = 1;
3091 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3092 if (NILP (icon_top))
3093 XSETINT (icon_top, 0);
3094 }
3095
3096 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3097 {
3098 /* If the frame is visible already and the fullscreen parameter is
3099 being set, it is too late to set WM manager hints to specify
3100 size and position.
3101 Here we first get the width, height and position that applies to
3102 fullscreen. We then move the frame to the appropriate
3103 position. Resize of the frame is taken care of in the code after
3104 this if-statement. */
3105 int new_left, new_top;
3106
3107 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
3108 if (new_top != f->top_pos || new_left != f->left_pos)
3109 x_set_offset (f, new_left, new_top, 1);
3110
3111 /* When both height and fullwidth were requested, make sure the
3112 requested value for height gets applied. */
3113 if (height_for_full_width && fullscreen_wanted == FULLSCREEN_WIDTH)
3114 height = height_for_full_width;
3115 /* When both width and fullheight were requested, make sure the
3116 requested value for width gets applied. */
3117 if (width_for_full_height && fullscreen_wanted == FULLSCREEN_HEIGHT)
3118 width = width_for_full_height;
3119 }
3120
3121 /* Don't set these parameters unless they've been explicitly
3122 specified. The window might be mapped or resized while we're in
3123 this function, and we don't want to override that unless the lisp
3124 code has asked for it.
3125
3126 Don't set these parameters unless they actually differ from the
3127 window's current parameters; the window may not actually exist
3128 yet. */
3129 {
3130 Lisp_Object frame;
3131
3132 check_frame_size (f, &height, &width);
3133
3134 XSETFRAME (frame, f);
3135
3136 if (width != FRAME_COLS (f)
3137 || height != FRAME_LINES (f)
3138 || f->new_text_lines || f->new_text_cols)
3139 Fset_frame_size (frame, make_number (width), make_number (height));
3140
3141 if ((!NILP (left) || !NILP (top))
3142 && ! (left_no_change && top_no_change)
3143 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3144 && NUMBERP (top) && XINT (top) == f->top_pos))
3145 {
3146 int leftpos = 0;
3147 int toppos = 0;
3148
3149 /* Record the signs. */
3150 f->size_hint_flags &= ~ (XNegative | YNegative);
3151 if (EQ (left, Qminus))
3152 f->size_hint_flags |= XNegative;
3153 else if (INTEGERP (left))
3154 {
3155 leftpos = XINT (left);
3156 if (leftpos < 0)
3157 f->size_hint_flags |= XNegative;
3158 }
3159 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3160 && CONSP (XCDR (left))
3161 && INTEGERP (XCAR (XCDR (left))))
3162 {
3163 leftpos = - XINT (XCAR (XCDR (left)));
3164 f->size_hint_flags |= XNegative;
3165 }
3166 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3167 && CONSP (XCDR (left))
3168 && INTEGERP (XCAR (XCDR (left))))
3169 {
3170 leftpos = XINT (XCAR (XCDR (left)));
3171 }
3172
3173 if (EQ (top, Qminus))
3174 f->size_hint_flags |= YNegative;
3175 else if (INTEGERP (top))
3176 {
3177 toppos = XINT (top);
3178 if (toppos < 0)
3179 f->size_hint_flags |= YNegative;
3180 }
3181 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3182 && CONSP (XCDR (top))
3183 && INTEGERP (XCAR (XCDR (top))))
3184 {
3185 toppos = - XINT (XCAR (XCDR (top)));
3186 f->size_hint_flags |= YNegative;
3187 }
3188 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3189 && CONSP (XCDR (top))
3190 && INTEGERP (XCAR (XCDR (top))))
3191 {
3192 toppos = XINT (XCAR (XCDR (top)));
3193 }
3194
3195
3196 /* Store the numeric value of the position. */
3197 f->top_pos = toppos;
3198 f->left_pos = leftpos;
3199
3200 f->win_gravity = NorthWestGravity;
3201
3202 /* Actually set that position, and convert to absolute. */
3203 x_set_offset (f, leftpos, toppos, -1);
3204 }
3205
3206 if ((!NILP (icon_left) || !NILP (icon_top))
3207 && ! (icon_left_no_change && icon_top_no_change))
3208 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3209 }
3210
3211 UNGCPRO;
3212 }
3213
3214
3215 /* Insert a description of internally-recorded parameters of frame X
3216 into the parameter alist *ALISTPTR that is to be given to the user.
3217 Only parameters that are specific to the X window system
3218 and whose values are not correctly recorded in the frame's
3219 param_alist need to be considered here. */
3220
3221 void
3222 x_report_frame_params (f, alistptr)
3223 struct frame *f;
3224 Lisp_Object *alistptr;
3225 {
3226 char buf[16];
3227 Lisp_Object tem;
3228
3229 /* Represent negative positions (off the top or left screen edge)
3230 in a way that Fmodify_frame_parameters will understand correctly. */
3231 XSETINT (tem, f->left_pos);
3232 if (f->left_pos >= 0)
3233 store_in_alist (alistptr, Qleft, tem);
3234 else
3235 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3236
3237 XSETINT (tem, f->top_pos);
3238 if (f->top_pos >= 0)
3239 store_in_alist (alistptr, Qtop, tem);
3240 else
3241 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3242
3243 store_in_alist (alistptr, Qborder_width,
3244 make_number (f->border_width));
3245 store_in_alist (alistptr, Qinternal_border_width,
3246 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
3247 store_in_alist (alistptr, Qleft_fringe,
3248 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
3249 store_in_alist (alistptr, Qright_fringe,
3250 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
3251 store_in_alist (alistptr, Qscroll_bar_width,
3252 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3253 ? make_number (0)
3254 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3255 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3256 /* nil means "use default width"
3257 for non-toolkit scroll bar.
3258 ruler-mode.el depends on this. */
3259 : Qnil));
3260 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3261 store_in_alist (alistptr, Qwindow_id,
3262 build_string (buf));
3263 #ifdef HAVE_X_WINDOWS
3264 #ifdef USE_X_TOOLKIT
3265 /* Tooltip frame may not have this widget. */
3266 if (FRAME_X_OUTPUT (f)->widget)
3267 #endif
3268 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3269 store_in_alist (alistptr, Qouter_window_id,
3270 build_string (buf));
3271 #endif
3272 store_in_alist (alistptr, Qicon_name, f->icon_name);
3273 FRAME_SAMPLE_VISIBILITY (f);
3274 store_in_alist (alistptr, Qvisibility,
3275 (FRAME_VISIBLE_P (f) ? Qt
3276 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3277 store_in_alist (alistptr, Qdisplay,
3278 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3279
3280 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3281 tem = Qnil;
3282 else
3283 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
3284 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
3285 store_in_alist (alistptr, Qparent_id, tem);
3286 }
3287
3288
3289 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3290 the previous value of that parameter, NEW_VALUE is the new value. */
3291
3292 void
3293 x_set_fullscreen (f, new_value, old_value)
3294 struct frame *f;
3295 Lisp_Object new_value, old_value;
3296 {
3297 if (NILP (new_value))
3298 f->want_fullscreen = FULLSCREEN_NONE;
3299 else if (EQ (new_value, Qfullboth))
3300 f->want_fullscreen = FULLSCREEN_BOTH;
3301 else if (EQ (new_value, Qfullwidth))
3302 f->want_fullscreen = FULLSCREEN_WIDTH;
3303 else if (EQ (new_value, Qfullheight))
3304 f->want_fullscreen = FULLSCREEN_HEIGHT;
3305
3306 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
3307 FRAME_TERMINAL (f)->fullscreen_hook (f);
3308 }
3309
3310
3311 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3312 the previous value of that parameter, NEW_VALUE is the new value. */
3313
3314 void
3315 x_set_line_spacing (f, new_value, old_value)
3316 struct frame *f;
3317 Lisp_Object new_value, old_value;
3318 {
3319 if (NILP (new_value))
3320 f->extra_line_spacing = 0;
3321 else if (NATNUMP (new_value))
3322 f->extra_line_spacing = XFASTINT (new_value);
3323 else
3324 signal_error ("Invalid line-spacing", new_value);
3325 if (FRAME_VISIBLE_P (f))
3326 redraw_frame (f);
3327 }
3328
3329
3330 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3331 the previous value of that parameter, NEW_VALUE is the new value. */
3332
3333 void
3334 x_set_screen_gamma (f, new_value, old_value)
3335 struct frame *f;
3336 Lisp_Object new_value, old_value;
3337 {
3338 Lisp_Object bgcolor;
3339
3340 if (NILP (new_value))
3341 f->gamma = 0;
3342 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3343 /* The value 0.4545 is the normal viewing gamma. */
3344 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3345 else
3346 signal_error ("Invalid screen-gamma", new_value);
3347
3348 /* Apply the new gamma value to the frame background. */
3349 bgcolor = Fassq (Qbackground_color, f->param_alist);
3350 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3351 {
3352 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3353 if (NATNUMP (index)
3354 && (XFASTINT (index)
3355 < sizeof (frame_parms)/sizeof (frame_parms[0]))
3356 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3357 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3358 (f, bgcolor, Qnil);
3359 }
3360
3361 Fclear_face_cache (Qnil);
3362 }
3363
3364
3365 void
3366 x_set_font (f, arg, oldval)
3367 struct frame *f;
3368 Lisp_Object arg, oldval;
3369 {
3370 Lisp_Object frame, font_object, lval;
3371 int fontset = -1;
3372
3373 /* Set the frame parameter back to the old value because we may
3374 fail to use ARG as the new parameter value. */
3375 store_frame_param (f, Qfont, oldval);
3376
3377 /* ARG is a fontset name, a font name, a cons of fontset name and a
3378 font object, or a font object. In the last case, this function
3379 never fail. */
3380 if (STRINGP (arg))
3381 {
3382 fontset = fs_query_fontset (arg, 0);
3383 if (fontset < 0)
3384 {
3385 font_object = font_open_by_name (f, SDATA (arg));
3386 if (NILP (font_object))
3387 error ("Font `%s' is not defined", SDATA (arg));
3388 arg = AREF (font_object, FONT_NAME_INDEX);
3389 }
3390 else if (fontset > 0)
3391 {
3392 Lisp_Object ascii_font = fontset_ascii (fontset);
3393
3394 font_object = font_open_by_name (f, SDATA (ascii_font));
3395 if (NILP (font_object))
3396 error ("Font `%s' is not defined", SDATA (arg));
3397 arg = AREF (font_object, FONT_NAME_INDEX);
3398 }
3399 else
3400 error ("The default fontset can't be used for a frame font");
3401 }
3402 else if (CONSP (arg) && STRINGP (XCAR (arg)) && FONT_OBJECT_P (XCDR (arg)))
3403 {
3404 /* This is the case that the ASCII font of F's fontset XCAR
3405 (arg) is changed to the font XCDR (arg) by
3406 `set-fontset-font'. */
3407 fontset = fs_query_fontset (XCAR (arg), 0);
3408 if (fontset < 0)
3409 error ("Unknown fontset: %s", SDATA (XCAR (arg)));
3410 font_object = XCDR (arg);
3411 arg = AREF (font_object, FONT_NAME_INDEX);
3412 }
3413 else if (FONT_OBJECT_P (arg))
3414 {
3415 font_object = arg;
3416 /* This is to store the XLFD font name in the frame parameter for
3417 backward compatiblity. We should store the font-object
3418 itself in the future. */
3419 arg = AREF (font_object, FONT_NAME_INDEX);
3420 fontset = FRAME_FONTSET (f);
3421 }
3422 else
3423 signal_error ("Invalid font", arg);
3424
3425 if (! NILP (Fequal (font_object, oldval)))
3426 return;
3427
3428
3429 lval = Fassq (Qfullscreen, f->param_alist);
3430 if (CONSP (lval)) lval = CDR (lval);
3431
3432 x_new_font (f, font_object, fontset);
3433 /* If the fullscreen property is non-nil, adjust lines and columns so we
3434 keep the same pixel height and width. */
3435 if (! NILP (lval))
3436 {
3437 int height = FRAME_LINES (f), width = FRAME_COLS (f);
3438 if (EQ (lval, Qfullboth) || EQ (lval, Qfullwidth))
3439 width = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
3440 if (EQ (lval, Qfullboth) || EQ (lval, Qfullheight))
3441 height = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, FRAME_PIXEL_HEIGHT (f));
3442
3443 change_frame_size (f, height, width, 0, 0, 1);
3444 }
3445
3446 store_frame_param (f, Qfont, arg);
3447 /* Recalculate toolbar height. */
3448 f->n_tool_bar_rows = 0;
3449 /* Ensure we redraw it. */
3450 clear_current_matrices (f);
3451
3452 recompute_basic_faces (f);
3453
3454 do_pending_window_change (0);
3455
3456 /* We used to call face-set-after-frame-default here, but it leads to
3457 recursive calls (since that function can set the `default' face's
3458 font which in turns changes the frame's `font' parameter).
3459 Also I don't know what this call is meant to do, but it seems the
3460 wrong way to do it anyway (it does a lot more work than what seems
3461 reasonable in response to a change to `font'). */
3462 }
3463
3464
3465 void
3466 x_set_font_backend (f, new_value, old_value)
3467 struct frame *f;
3468 Lisp_Object new_value, old_value;
3469 {
3470 if (! NILP (new_value)
3471 && !CONSP (new_value))
3472 {
3473 char *p0, *p1;
3474
3475 CHECK_STRING (new_value);
3476 p0 = p1 = SDATA (new_value);
3477 new_value = Qnil;
3478 while (*p0)
3479 {
3480 while (*p1 && ! isspace (*p1) && *p1 != ',') p1++;
3481 if (p0 < p1)
3482 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3483 new_value);
3484 if (*p1)
3485 {
3486 int c;
3487
3488 while ((c = *++p1) && isspace (c));
3489 }
3490 p0 = p1;
3491 }
3492 new_value = Fnreverse (new_value);
3493 }
3494
3495 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3496 return;
3497
3498 if (FRAME_FONT (f))
3499 free_all_realized_faces (Qnil);
3500
3501 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
3502 if (NILP (new_value))
3503 {
3504 if (NILP (old_value))
3505 error ("No font backend available");
3506 font_update_drivers (f, old_value);
3507 error ("None of specified font backends are available");
3508 }
3509 store_frame_param (f, Qfont_backend, new_value);
3510
3511 if (FRAME_FONT (f))
3512 {
3513 Lisp_Object frame;
3514
3515 XSETFRAME (frame, f);
3516 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3517 ++face_change_count;
3518 ++windows_or_buffers_changed;
3519 }
3520 }
3521
3522
3523 void
3524 x_set_fringe_width (f, new_value, old_value)
3525 struct frame *f;
3526 Lisp_Object new_value, old_value;
3527 {
3528 compute_fringe_widths (f, 1);
3529 }
3530
3531 void
3532 x_set_border_width (f, arg, oldval)
3533 struct frame *f;
3534 Lisp_Object arg, oldval;
3535 {
3536 CHECK_NUMBER (arg);
3537
3538 if (XINT (arg) == f->border_width)
3539 return;
3540
3541 if (FRAME_X_WINDOW (f) != 0)
3542 error ("Cannot change the border width of a frame");
3543
3544 f->border_width = XINT (arg);
3545 }
3546
3547 void
3548 x_set_internal_border_width (f, arg, oldval)
3549 struct frame *f;
3550 Lisp_Object arg, oldval;
3551 {
3552 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3553
3554 CHECK_NUMBER (arg);
3555 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3556 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3557 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3558
3559 #ifdef USE_X_TOOLKIT
3560 if (FRAME_X_OUTPUT (f)->edit_widget)
3561 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3562 #endif
3563
3564 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3565 return;
3566
3567 if (FRAME_X_WINDOW (f) != 0)
3568 {
3569 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3570 SET_FRAME_GARBAGED (f);
3571 do_pending_window_change (0);
3572 }
3573 else
3574 SET_FRAME_GARBAGED (f);
3575 }
3576
3577 void
3578 x_set_visibility (f, value, oldval)
3579 struct frame *f;
3580 Lisp_Object value, oldval;
3581 {
3582 Lisp_Object frame;
3583 XSETFRAME (frame, f);
3584
3585 if (NILP (value))
3586 Fmake_frame_invisible (frame, Qt);
3587 else if (EQ (value, Qicon))
3588 Ficonify_frame (frame);
3589 else
3590 Fmake_frame_visible (frame);
3591 }
3592
3593 void
3594 x_set_autoraise (f, arg, oldval)
3595 struct frame *f;
3596 Lisp_Object arg, oldval;
3597 {
3598 f->auto_raise = !EQ (Qnil, arg);
3599 }
3600
3601 void
3602 x_set_autolower (f, arg, oldval)
3603 struct frame *f;
3604 Lisp_Object arg, oldval;
3605 {
3606 f->auto_lower = !EQ (Qnil, arg);
3607 }
3608
3609 void
3610 x_set_unsplittable (f, arg, oldval)
3611 struct frame *f;
3612 Lisp_Object arg, oldval;
3613 {
3614 f->no_split = !NILP (arg);
3615 }
3616
3617 void
3618 x_set_vertical_scroll_bars (f, arg, oldval)
3619 struct frame *f;
3620 Lisp_Object arg, oldval;
3621 {
3622 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3623 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3624 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3625 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3626 {
3627 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3628 = (NILP (arg)
3629 ? vertical_scroll_bar_none
3630 : EQ (Qleft, arg)
3631 ? vertical_scroll_bar_left
3632 : EQ (Qright, arg)
3633 ? vertical_scroll_bar_right
3634 : EQ (Qleft, Vdefault_frame_scroll_bars)
3635 ? vertical_scroll_bar_left
3636 : EQ (Qright, Vdefault_frame_scroll_bars)
3637 ? vertical_scroll_bar_right
3638 : vertical_scroll_bar_none);
3639
3640 /* We set this parameter before creating the X window for the
3641 frame, so we can get the geometry right from the start.
3642 However, if the window hasn't been created yet, we shouldn't
3643 call x_set_window_size. */
3644 if (FRAME_X_WINDOW (f))
3645 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3646 do_pending_window_change (0);
3647 }
3648 }
3649
3650 void
3651 x_set_scroll_bar_width (f, arg, oldval)
3652 struct frame *f;
3653 Lisp_Object arg, oldval;
3654 {
3655 int wid = FRAME_COLUMN_WIDTH (f);
3656
3657 if (NILP (arg))
3658 {
3659 x_set_scroll_bar_default_width (f);
3660
3661 if (FRAME_X_WINDOW (f))
3662 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3663 do_pending_window_change (0);
3664 }
3665 else if (INTEGERP (arg) && XINT (arg) > 0
3666 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3667 {
3668 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3669 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3670
3671 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3672 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3673 if (FRAME_X_WINDOW (f))
3674 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3675 do_pending_window_change (0);
3676 }
3677
3678 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3679 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3680 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3681 }
3682
3683
3684
3685 /* Return non-nil if frame F wants a bitmap icon. */
3686
3687 Lisp_Object
3688 x_icon_type (f)
3689 FRAME_PTR f;
3690 {
3691 Lisp_Object tem;
3692
3693 tem = assq_no_quit (Qicon_type, f->param_alist);
3694 if (CONSP (tem))
3695 return XCDR (tem);
3696 else
3697 return Qnil;
3698 }
3699
3700 void
3701 x_set_alpha (f, arg, oldval)
3702 struct frame *f;
3703 Lisp_Object arg, oldval;
3704 {
3705 double alpha = 1.0;
3706 double newval[2];
3707 int i, ialpha;
3708 Lisp_Object item;
3709
3710 for (i = 0; i < 2; i++)
3711 {
3712 newval[i] = 1.0;
3713 if (CONSP (arg))
3714 {
3715 item = CAR (arg);
3716 arg = CDR (arg);
3717 }
3718 else
3719 item = arg;
3720
3721 if (NILP (item))
3722 alpha = - 1.0;
3723 else if (FLOATP (item))
3724 {
3725 alpha = XFLOAT_DATA (item);
3726 if (alpha < 0.0 || 1.0 < alpha)
3727 args_out_of_range (make_float (0.0), make_float (1.0));
3728 }
3729 else if (INTEGERP (item))
3730 {
3731 ialpha = XINT (item);
3732 if (ialpha < 0 || 100 < ialpha)
3733 args_out_of_range (make_number (0), make_number (100));
3734 else
3735 alpha = ialpha / 100.0;
3736 }
3737 else
3738 wrong_type_argument (Qnumberp, item);
3739 newval[i] = alpha;
3740 }
3741
3742 for (i = 0; i < 2; i++)
3743 f->alpha[i] = newval[i];
3744
3745 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA)
3746 BLOCK_INPUT;
3747 x_set_frame_alpha (f);
3748 UNBLOCK_INPUT;
3749 #endif
3750
3751 return;
3752 }
3753
3754 \f
3755 /* Subroutines of creating an X frame. */
3756
3757 /* Make sure that Vx_resource_name is set to a reasonable value.
3758 Fix it up, or set it to `emacs' if it is too hopeless. */
3759
3760 void
3761 validate_x_resource_name ()
3762 {
3763 int len = 0;
3764 /* Number of valid characters in the resource name. */
3765 int good_count = 0;
3766 /* Number of invalid characters in the resource name. */
3767 int bad_count = 0;
3768 Lisp_Object new;
3769 int i;
3770
3771 if (!STRINGP (Vx_resource_class))
3772 Vx_resource_class = build_string (EMACS_CLASS);
3773
3774 if (STRINGP (Vx_resource_name))
3775 {
3776 unsigned char *p = SDATA (Vx_resource_name);
3777 int i;
3778
3779 len = SBYTES (Vx_resource_name);
3780
3781 /* Only letters, digits, - and _ are valid in resource names.
3782 Count the valid characters and count the invalid ones. */
3783 for (i = 0; i < len; i++)
3784 {
3785 int c = p[i];
3786 if (! ((c >= 'a' && c <= 'z')
3787 || (c >= 'A' && c <= 'Z')
3788 || (c >= '0' && c <= '9')
3789 || c == '-' || c == '_'))
3790 bad_count++;
3791 else
3792 good_count++;
3793 }
3794 }
3795 else
3796 /* Not a string => completely invalid. */
3797 bad_count = 5, good_count = 0;
3798
3799 /* If name is valid already, return. */
3800 if (bad_count == 0)
3801 return;
3802
3803 /* If name is entirely invalid, or nearly so, use `emacs'. */
3804 if (good_count == 0
3805 || (good_count == 1 && bad_count > 0))
3806 {
3807 Vx_resource_name = build_string ("emacs");
3808 return;
3809 }
3810
3811 /* Name is partly valid. Copy it and replace the invalid characters
3812 with underscores. */
3813
3814 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3815
3816 for (i = 0; i < len; i++)
3817 {
3818 int c = SREF (new, i);
3819 if (! ((c >= 'a' && c <= 'z')
3820 || (c >= 'A' && c <= 'Z')
3821 || (c >= '0' && c <= '9')
3822 || c == '-' || c == '_'))
3823 SSET (new, i, '_');
3824 }
3825 }
3826
3827
3828 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3829 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3830
3831
3832 /* Get specified attribute from resource database RDB.
3833 See Fx_get_resource below for other parameters. */
3834
3835 static Lisp_Object
3836 xrdb_get_resource (rdb, attribute, class, component, subclass)
3837 XrmDatabase rdb;
3838 Lisp_Object attribute, class, component, subclass;
3839 {
3840 register char *value;
3841 char *name_key;
3842 char *class_key;
3843
3844 CHECK_STRING (attribute);
3845 CHECK_STRING (class);
3846
3847 if (!NILP (component))
3848 CHECK_STRING (component);
3849 if (!NILP (subclass))
3850 CHECK_STRING (subclass);
3851 if (NILP (component) != NILP (subclass))
3852 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3853
3854 validate_x_resource_name ();
3855
3856 /* Allocate space for the components, the dots which separate them,
3857 and the final '\0'. Make them big enough for the worst case. */
3858 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3859 + (STRINGP (component)
3860 ? SBYTES (component) : 0)
3861 + SBYTES (attribute)
3862 + 3);
3863
3864 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3865 + SBYTES (class)
3866 + (STRINGP (subclass)
3867 ? SBYTES (subclass) : 0)
3868 + 3);
3869
3870 /* Start with emacs.FRAMENAME for the name (the specific one)
3871 and with `Emacs' for the class key (the general one). */
3872 strcpy (name_key, SDATA (Vx_resource_name));
3873 strcpy (class_key, SDATA (Vx_resource_class));
3874
3875 strcat (class_key, ".");
3876 strcat (class_key, SDATA (class));
3877
3878 if (!NILP (component))
3879 {
3880 strcat (class_key, ".");
3881 strcat (class_key, SDATA (subclass));
3882
3883 strcat (name_key, ".");
3884 strcat (name_key, SDATA (component));
3885 }
3886
3887 strcat (name_key, ".");
3888 strcat (name_key, SDATA (attribute));
3889
3890 value = x_get_string_resource (rdb, name_key, class_key);
3891
3892 if (value != (char *) 0)
3893 return build_string (value);
3894 else
3895 return Qnil;
3896 }
3897
3898
3899 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3900 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3901 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3902 class, where INSTANCE is the name under which Emacs was invoked, or
3903 the name specified by the `-name' or `-rn' command-line arguments.
3904
3905 The optional arguments COMPONENT and SUBCLASS add to the key and the
3906 class, respectively. You must specify both of them or neither.
3907 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3908 and the class is `Emacs.CLASS.SUBCLASS'. */)
3909 (attribute, class, component, subclass)
3910 Lisp_Object attribute, class, component, subclass;
3911 {
3912 #ifdef HAVE_X_WINDOWS
3913 check_x ();
3914 #endif
3915
3916 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3917 attribute, class, component, subclass);
3918 }
3919
3920 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3921
3922 Lisp_Object
3923 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3924 Display_Info *dpyinfo;
3925 Lisp_Object attribute, class, component, subclass;
3926 {
3927 return xrdb_get_resource (dpyinfo->xrdb,
3928 attribute, class, component, subclass);
3929 }
3930
3931 /* Used when C code wants a resource value. */
3932
3933 char *
3934 x_get_resource_string (attribute, class)
3935 char *attribute, *class;
3936 {
3937 char *name_key;
3938 char *class_key;
3939 struct frame *sf = SELECTED_FRAME ();
3940
3941 /* Allocate space for the components, the dots which separate them,
3942 and the final '\0'. */
3943 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3944 + strlen (attribute) + 2);
3945 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3946 + strlen (class) + 2);
3947
3948 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3949 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3950
3951 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3952 name_key, class_key);
3953 }
3954
3955
3956 /* Return the value of parameter PARAM.
3957
3958 First search ALIST, then Vdefault_frame_alist, then the X defaults
3959 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3960
3961 Convert the resource to the type specified by desired_type.
3962
3963 If no default is specified, return Qunbound. If you call
3964 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3965 and don't let it get stored in any Lisp-visible variables! */
3966
3967 Lisp_Object
3968 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3969 Display_Info *dpyinfo;
3970 Lisp_Object alist, param;
3971 char *attribute;
3972 char *class;
3973 enum resource_types type;
3974 {
3975 register Lisp_Object tem;
3976
3977 tem = Fassq (param, alist);
3978
3979 if (!NILP (tem))
3980 {
3981 /* If we find this parm in ALIST, clear it out
3982 so that it won't be "left over" at the end. */
3983 Lisp_Object tail;
3984 XSETCAR (tem, Qnil);
3985 /* In case the parameter appears more than once in the alist,
3986 clear it out. */
3987 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3988 if (CONSP (XCAR (tail))
3989 && EQ (XCAR (XCAR (tail)), param))
3990 XSETCAR (XCAR (tail), Qnil);
3991 }
3992 else
3993 tem = Fassq (param, Vdefault_frame_alist);
3994
3995 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3996 look in the X resources. */
3997 if (EQ (tem, Qnil))
3998 {
3999 if (attribute)
4000 {
4001 tem = display_x_get_resource (dpyinfo,
4002 build_string (attribute),
4003 build_string (class),
4004 Qnil, Qnil);
4005
4006 if (NILP (tem))
4007 return Qunbound;
4008
4009 switch (type)
4010 {
4011 case RES_TYPE_NUMBER:
4012 return make_number (atoi (SDATA (tem)));
4013
4014 case RES_TYPE_FLOAT:
4015 return make_float (atof (SDATA (tem)));
4016
4017 case RES_TYPE_BOOLEAN:
4018 tem = Fdowncase (tem);
4019 if (!strcmp (SDATA (tem), "on")
4020 #ifdef HAVE_NS
4021 || !strcmp(SDATA(tem), "yes")
4022 #endif
4023 || !strcmp (SDATA (tem), "true"))
4024 return Qt;
4025 else
4026 return Qnil;
4027
4028 case RES_TYPE_STRING:
4029 return tem;
4030
4031 case RES_TYPE_SYMBOL:
4032 /* As a special case, we map the values `true' and `on'
4033 to Qt, and `false' and `off' to Qnil. */
4034 {
4035 Lisp_Object lower;
4036 lower = Fdowncase (tem);
4037 if (!strcmp (SDATA (lower), "on")
4038 #ifdef HAVE_NS
4039 || !strcmp(SDATA(lower), "yes")
4040 #endif
4041 || !strcmp (SDATA (lower), "true"))
4042 return Qt;
4043 else if (!strcmp (SDATA (lower), "off")
4044 #ifdef HAVE_NS
4045 || !strcmp(SDATA(lower), "no")
4046 #endif
4047 || !strcmp (SDATA (lower), "false"))
4048 return Qnil;
4049 else
4050 return Fintern (tem, Qnil);
4051 }
4052
4053 default:
4054 abort ();
4055 }
4056 }
4057 else
4058 return Qunbound;
4059 }
4060 return Fcdr (tem);
4061 }
4062
4063 Lisp_Object
4064 x_frame_get_arg (f, alist, param, attribute, class, type)
4065 struct frame *f;
4066 Lisp_Object alist, param;
4067 char *attribute;
4068 char *class;
4069 enum resource_types type;
4070 {
4071 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
4072 alist, param, attribute, class, type);
4073 }
4074
4075 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
4076
4077 Lisp_Object
4078 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
4079 struct frame *f;
4080 Lisp_Object alist, param;
4081 char *attribute;
4082 char *class;
4083 enum resource_types type;
4084 {
4085 Lisp_Object value;
4086
4087 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
4088 attribute, class, type);
4089 if (! NILP (value) && ! EQ (value, Qunbound))
4090 store_frame_param (f, param, value);
4091
4092 return value;
4093 }
4094
4095
4096 /* Record in frame F the specified or default value according to ALIST
4097 of the parameter named PROP (a Lisp symbol).
4098 If no value is specified for PROP, look for an X default for XPROP
4099 on the frame named NAME.
4100 If that is not found either, use the value DEFLT. */
4101
4102 Lisp_Object
4103 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
4104 struct frame *f;
4105 Lisp_Object alist;
4106 Lisp_Object prop;
4107 Lisp_Object deflt;
4108 char *xprop;
4109 char *xclass;
4110 enum resource_types type;
4111 {
4112 Lisp_Object tem;
4113
4114 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4115 if (EQ (tem, Qunbound))
4116 tem = deflt;
4117 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
4118 return tem;
4119 }
4120
4121
4122
4123 \f
4124 #ifdef HAVE_NS
4125
4126 /* We used to define x-parse-geometry directly in ns-win.el, but that
4127 confused make-docfile: the documentation string in ns-win.el was
4128 used for x-parse-geometry even in non-NS builds.. */
4129
4130 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4131 doc: /* Parse a Nextstep-style geometry string STRING.
4132 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4133 The properties returned may include `top', `left', `height', and `width'.
4134 This works by calling `ns-parse-geometry'. */)
4135 (string)
4136 Lisp_Object string;
4137 {
4138 call1 (Qns_parse_geometry, string);
4139 }
4140
4141 #else /* !HAVE_NS */
4142
4143 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4144 doc: /* Parse an X-style geometry string STRING.
4145 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4146 The properties returned may include `top', `left', `height', and `width'.
4147 The value of `left' or `top' may be an integer,
4148 or a list (+ N) meaning N pixels relative to top/left corner,
4149 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
4150 (string)
4151 Lisp_Object string;
4152 {
4153 int geometry, x, y;
4154 unsigned int width, height;
4155 Lisp_Object result;
4156
4157 CHECK_STRING (string);
4158
4159 geometry = XParseGeometry ((char *) SDATA (string),
4160 &x, &y, &width, &height);
4161 result = Qnil;
4162 if (geometry & XValue)
4163 {
4164 Lisp_Object element;
4165
4166 if (x >= 0 && (geometry & XNegative))
4167 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
4168 else if (x < 0 && ! (geometry & XNegative))
4169 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
4170 else
4171 element = Fcons (Qleft, make_number (x));
4172 result = Fcons (element, result);
4173 }
4174
4175 if (geometry & YValue)
4176 {
4177 Lisp_Object element;
4178
4179 if (y >= 0 && (geometry & YNegative))
4180 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
4181 else if (y < 0 && ! (geometry & YNegative))
4182 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4183 else
4184 element = Fcons (Qtop, make_number (y));
4185 result = Fcons (element, result);
4186 }
4187
4188 if (geometry & WidthValue)
4189 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4190 if (geometry & HeightValue)
4191 result = Fcons (Fcons (Qheight, make_number (height)), result);
4192
4193 return result;
4194 }
4195 #endif /* HAVE_NS */
4196
4197
4198 /* Calculate the desired size and position of frame F.
4199 Return the flags saying which aspects were specified.
4200
4201 Also set the win_gravity and size_hint_flags of F.
4202
4203 Adjust height for toolbar if TOOLBAR_P is 1.
4204
4205 This function does not make the coordinates positive. */
4206
4207 #define DEFAULT_ROWS 40
4208 #define DEFAULT_COLS 80
4209
4210 int
4211 x_figure_window_size (f, parms, toolbar_p)
4212 struct frame *f;
4213 Lisp_Object parms;
4214 int toolbar_p;
4215 {
4216 register Lisp_Object tem0, tem1, tem2;
4217 long window_prompting = 0;
4218 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4219
4220 /* Default values if we fall through.
4221 Actually, if that happens we should get
4222 window manager prompting. */
4223 SET_FRAME_COLS (f, DEFAULT_COLS);
4224 FRAME_LINES (f) = DEFAULT_ROWS;
4225 /* Window managers expect that if program-specified
4226 positions are not (0,0), they're intentional, not defaults. */
4227 f->top_pos = 0;
4228 f->left_pos = 0;
4229
4230 /* Ensure that old new_text_cols and new_text_lines will not override the
4231 values set here. */
4232 /* ++KFS: This was specific to W32, but seems ok for all platforms */
4233 f->new_text_cols = f->new_text_lines = 0;
4234
4235 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4236 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4237 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4238 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4239 {
4240 if (!EQ (tem0, Qunbound))
4241 {
4242 CHECK_NUMBER (tem0);
4243 FRAME_LINES (f) = XINT (tem0);
4244 }
4245 if (!EQ (tem1, Qunbound))
4246 {
4247 CHECK_NUMBER (tem1);
4248 SET_FRAME_COLS (f, XINT (tem1));
4249 }
4250 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4251 window_prompting |= USSize;
4252 else
4253 window_prompting |= PSize;
4254 }
4255
4256 f->scroll_bar_actual_width
4257 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
4258
4259 /* This used to be done _before_ calling x_figure_window_size, but
4260 since the height is reset here, this was really a no-op. I
4261 assume that moving it here does what Gerd intended (although he
4262 no longer can remember what that was... ++KFS, 2003-03-25. */
4263
4264 /* Add the tool-bar height to the initial frame height so that the
4265 user gets a text display area of the size he specified with -g or
4266 via .Xdefaults. Later changes of the tool-bar height don't
4267 change the frame size. This is done so that users can create
4268 tall Emacs frames without having to guess how tall the tool-bar
4269 will get. */
4270 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4271 {
4272 int margin, relief, bar_height;
4273
4274 relief = (tool_bar_button_relief >= 0
4275 ? tool_bar_button_relief
4276 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4277
4278 if (INTEGERP (Vtool_bar_button_margin)
4279 && XINT (Vtool_bar_button_margin) > 0)
4280 margin = XFASTINT (Vtool_bar_button_margin);
4281 else if (CONSP (Vtool_bar_button_margin)
4282 && INTEGERP (XCDR (Vtool_bar_button_margin))
4283 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4284 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4285 else
4286 margin = 0;
4287
4288 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4289 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
4290 }
4291
4292 compute_fringe_widths (f, 0);
4293
4294 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4295 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
4296
4297 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4298 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4299 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4300 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4301 {
4302 if (EQ (tem0, Qminus))
4303 {
4304 f->top_pos = 0;
4305 window_prompting |= YNegative;
4306 }
4307 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4308 && CONSP (XCDR (tem0))
4309 && INTEGERP (XCAR (XCDR (tem0))))
4310 {
4311 f->top_pos = - XINT (XCAR (XCDR (tem0)));
4312 window_prompting |= YNegative;
4313 }
4314 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4315 && CONSP (XCDR (tem0))
4316 && INTEGERP (XCAR (XCDR (tem0))))
4317 {
4318 f->top_pos = XINT (XCAR (XCDR (tem0)));
4319 }
4320 else if (EQ (tem0, Qunbound))
4321 f->top_pos = 0;
4322 else
4323 {
4324 CHECK_NUMBER (tem0);
4325 f->top_pos = XINT (tem0);
4326 if (f->top_pos < 0)
4327 window_prompting |= YNegative;
4328 }
4329
4330 if (EQ (tem1, Qminus))
4331 {
4332 f->left_pos = 0;
4333 window_prompting |= XNegative;
4334 }
4335 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4336 && CONSP (XCDR (tem1))
4337 && INTEGERP (XCAR (XCDR (tem1))))
4338 {
4339 f->left_pos = - XINT (XCAR (XCDR (tem1)));
4340 window_prompting |= XNegative;
4341 }
4342 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4343 && CONSP (XCDR (tem1))
4344 && INTEGERP (XCAR (XCDR (tem1))))
4345 {
4346 f->left_pos = XINT (XCAR (XCDR (tem1)));
4347 }
4348 else if (EQ (tem1, Qunbound))
4349 f->left_pos = 0;
4350 else
4351 {
4352 CHECK_NUMBER (tem1);
4353 f->left_pos = XINT (tem1);
4354 if (f->left_pos < 0)
4355 window_prompting |= XNegative;
4356 }
4357
4358 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4359 window_prompting |= USPosition;
4360 else
4361 window_prompting |= PPosition;
4362 }
4363
4364 if (f->want_fullscreen != FULLSCREEN_NONE)
4365 {
4366 int left, top;
4367 int width, height;
4368
4369 /* It takes both for some WM:s to place it where we want */
4370 window_prompting |= USPosition | PPosition;
4371 x_fullscreen_adjust (f, &width, &height, &top, &left);
4372 FRAME_COLS (f) = width;
4373 FRAME_LINES (f) = height;
4374 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4375 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4376 f->left_pos = left;
4377 f->top_pos = top;
4378 }
4379
4380 if (window_prompting & XNegative)
4381 {
4382 if (window_prompting & YNegative)
4383 f->win_gravity = SouthEastGravity;
4384 else
4385 f->win_gravity = NorthEastGravity;
4386 }
4387 else
4388 {
4389 if (window_prompting & YNegative)
4390 f->win_gravity = SouthWestGravity;
4391 else
4392 f->win_gravity = NorthWestGravity;
4393 }
4394
4395 f->size_hint_flags = window_prompting;
4396
4397 return window_prompting;
4398 }
4399
4400
4401
4402 #endif /* HAVE_WINDOW_SYSTEM */
4403
4404
4405 \f
4406 /***********************************************************************
4407 Initialization
4408 ***********************************************************************/
4409
4410 void
4411 syms_of_frame ()
4412 {
4413 Qframep = intern ("framep");
4414 staticpro (&Qframep);
4415 Qframe_live_p = intern ("frame-live-p");
4416 staticpro (&Qframe_live_p);
4417 Qexplicit_name = intern ("explicit-name");
4418 staticpro (&Qexplicit_name);
4419 Qheight = intern ("height");
4420 staticpro (&Qheight);
4421 Qicon = intern ("icon");
4422 staticpro (&Qicon);
4423 Qminibuffer = intern ("minibuffer");
4424 staticpro (&Qminibuffer);
4425 Qmodeline = intern ("modeline");
4426 staticpro (&Qmodeline);
4427 Qonly = intern ("only");
4428 staticpro (&Qonly);
4429 Qwidth = intern ("width");
4430 staticpro (&Qwidth);
4431 Qgeometry = intern ("geometry");
4432 staticpro (&Qgeometry);
4433 Qicon_left = intern ("icon-left");
4434 staticpro (&Qicon_left);
4435 Qicon_top = intern ("icon-top");
4436 staticpro (&Qicon_top);
4437 Qleft = intern ("left");
4438 staticpro (&Qleft);
4439 Qright = intern ("right");
4440 staticpro (&Qright);
4441 Quser_position = intern ("user-position");
4442 staticpro (&Quser_position);
4443 Quser_size = intern ("user-size");
4444 staticpro (&Quser_size);
4445 Qwindow_id = intern ("window-id");
4446 staticpro (&Qwindow_id);
4447 #ifdef HAVE_X_WINDOWS
4448 Qouter_window_id = intern ("outer-window-id");
4449 staticpro (&Qouter_window_id);
4450 #endif
4451 Qparent_id = intern ("parent-id");
4452 staticpro (&Qparent_id);
4453 Qx = intern ("x");
4454 staticpro (&Qx);
4455 Qw32 = intern ("w32");
4456 staticpro (&Qw32);
4457 Qpc = intern ("pc");
4458 staticpro (&Qpc);
4459 Qmac = intern ("mac");
4460 staticpro (&Qmac);
4461 Qns = intern ("ns");
4462 staticpro (&Qns);
4463 Qvisible = intern ("visible");
4464 staticpro (&Qvisible);
4465 Qbuffer_predicate = intern ("buffer-predicate");
4466 staticpro (&Qbuffer_predicate);
4467 Qbuffer_list = intern ("buffer-list");
4468 staticpro (&Qbuffer_list);
4469 Qburied_buffer_list = intern ("buried-buffer-list");
4470 staticpro (&Qburied_buffer_list);
4471 Qdisplay_type = intern ("display-type");
4472 staticpro (&Qdisplay_type);
4473 Qbackground_mode = intern ("background-mode");
4474 staticpro (&Qbackground_mode);
4475 Qnoelisp = intern ("noelisp");
4476 staticpro (&Qnoelisp);
4477 Qtty_color_mode = intern ("tty-color-mode");
4478 staticpro (&Qtty_color_mode);
4479 Qtty = intern ("tty");
4480 staticpro (&Qtty);
4481 Qtty_type = intern ("tty-type");
4482 staticpro (&Qtty_type);
4483
4484 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4485 staticpro (&Qface_set_after_frame_default);
4486
4487 Qfullwidth = intern ("fullwidth");
4488 staticpro (&Qfullwidth);
4489 Qfullheight = intern ("fullheight");
4490 staticpro (&Qfullheight);
4491 Qfullboth = intern ("fullboth");
4492 staticpro (&Qfullboth);
4493 Qx_resource_name = intern ("x-resource-name");
4494 staticpro (&Qx_resource_name);
4495
4496 Qx_frame_parameter = intern ("x-frame-parameter");
4497 staticpro (&Qx_frame_parameter);
4498
4499 Qterminal = intern ("terminal");
4500 staticpro (&Qterminal);
4501 Qterminal_live_p = intern ("terminal-live-p");
4502 staticpro (&Qterminal_live_p);
4503
4504 #ifdef HAVE_NS
4505 Qns_parse_geometry = intern ("ns-parse-geometry");
4506 staticpro (&Qns_parse_geometry);
4507 #endif
4508
4509 {
4510 int i;
4511
4512 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4513 {
4514 Lisp_Object v = intern (frame_parms[i].name);
4515 if (frame_parms[i].variable)
4516 {
4517 *frame_parms[i].variable = v;
4518 staticpro (frame_parms[i].variable);
4519 }
4520 Fput (v, Qx_frame_parameter, make_number (i));
4521 }
4522 }
4523
4524 #ifdef HAVE_WINDOW_SYSTEM
4525 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4526 doc: /* The name Emacs uses to look up X resources.
4527 `x-get-resource' uses this as the first component of the instance name
4528 when requesting resource values.
4529 Emacs initially sets `x-resource-name' to the name under which Emacs
4530 was invoked, or to the value specified with the `-name' or `-rn'
4531 switches, if present.
4532
4533 It may be useful to bind this variable locally around a call
4534 to `x-get-resource'. See also the variable `x-resource-class'. */);
4535 Vx_resource_name = Qnil;
4536
4537 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4538 doc: /* The class Emacs uses to look up X resources.
4539 `x-get-resource' uses this as the first component of the instance class
4540 when requesting resource values.
4541
4542 Emacs initially sets `x-resource-class' to "Emacs".
4543
4544 Setting this variable permanently is not a reasonable thing to do,
4545 but binding this variable locally around a call to `x-get-resource'
4546 is a reasonable practice. See also the variable `x-resource-name'. */);
4547 Vx_resource_class = build_string (EMACS_CLASS);
4548
4549 DEFVAR_LISP ("frame-alpha-lower-limit", &Vframe_alpha_lower_limit,
4550 doc: /* The lower limit of the frame opacity (alpha transparency).
4551 The value should range from 0 (invisible) to 100 (completely opaque).
4552 You can also use a floating number between 0.0 and 1.0.
4553 The default is 20. */);
4554 Vframe_alpha_lower_limit = make_number (20);
4555 #endif
4556
4557 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4558 doc: /* Alist of default values for frame creation.
4559 These may be set in your init file, like this:
4560 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4561 These override values given in window system configuration data,
4562 including X Windows' defaults database.
4563 For values specific to the first Emacs frame, see `initial-frame-alist'.
4564 For window-system specific values, see `window-system-default-frame-alist'.
4565 For values specific to the separate minibuffer frame, see
4566 `minibuffer-frame-alist'.
4567 The `menu-bar-lines' element of the list controls whether new frames
4568 have menu bars; `menu-bar-mode' works by altering this element.
4569 Setting this variable does not affect existing frames, only new ones. */);
4570 Vdefault_frame_alist = Qnil;
4571
4572 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4573 doc: /* Default position of scroll bars on this window-system. */);
4574 #ifdef HAVE_WINDOW_SYSTEM
4575 #if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
4576 /* MS-Windows and Mac OS X have scroll bars on the right by default. */
4577 Vdefault_frame_scroll_bars = Qright;
4578 #else
4579 Vdefault_frame_scroll_bars = Qleft;
4580 #endif
4581 #else
4582 Vdefault_frame_scroll_bars = Qnil;
4583 #endif
4584
4585 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4586 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4587
4588 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4589 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4590 `mouse-position' calls this function, passing its usual return value as
4591 argument, and returns whatever this function returns.
4592 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4593 which need to do mouse handling at the Lisp level. */);
4594 Vmouse_position_function = Qnil;
4595
4596 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4597 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4598 If the value is an integer, highlighting is only shown after moving the
4599 mouse, while keyboard input turns off the highlight even when the mouse
4600 is over the clickable text. However, the mouse shape still indicates
4601 when the mouse is over clickable text. */);
4602 Vmouse_highlight = Qt;
4603
4604 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4605 doc: /* Functions to be run before deleting a frame.
4606 The functions are run with one arg, the frame to be deleted.
4607 See `delete-frame'.
4608
4609 Note that functions in this list may be called just before the frame is
4610 actually deleted, or some time later (or even both when an earlier function
4611 in `delete-frame-functions' (indirectly) calls `delete-frame'
4612 recursively). */);
4613 Vdelete_frame_functions = Qnil;
4614 Qdelete_frame_functions = intern ("delete-frame-functions");
4615 staticpro (&Qdelete_frame_functions);
4616
4617 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4618 doc: /* Minibufferless frames use this frame's minibuffer.
4619
4620 Emacs cannot create minibufferless frames unless this is set to an
4621 appropriate surrogate.
4622
4623 Emacs consults this variable only when creating minibufferless
4624 frames; once the frame is created, it sticks with its assigned
4625 minibuffer, no matter what this variable is set to. This means that
4626 this variable doesn't necessarily say anything meaningful about the
4627 current set of frames, or where the minibuffer is currently being
4628 displayed.
4629
4630 This variable is local to the current terminal and cannot be buffer-local. */);
4631
4632 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4633 doc: /* Non-nil if window system changes focus when you move the mouse.
4634 You should set this variable to tell Emacs how your window manager
4635 handles focus, since there is no way in general for Emacs to find out
4636 automatically. */);
4637 #ifdef HAVE_WINDOW_SYSTEM
4638 #if defined(HAVE_NTGUI) || defined(HAVE_NS)
4639 focus_follows_mouse = 0;
4640 #else
4641 focus_follows_mouse = 1;
4642 #endif
4643 #else
4644 focus_follows_mouse = 0;
4645 #endif
4646
4647 staticpro (&Vframe_list);
4648
4649 defsubr (&Sactive_minibuffer_window);
4650 defsubr (&Sframep);
4651 defsubr (&Sframe_live_p);
4652 defsubr (&Swindow_system);
4653 defsubr (&Smake_terminal_frame);
4654 defsubr (&Shandle_switch_frame);
4655 defsubr (&Sselect_frame);
4656 defsubr (&Sselected_frame);
4657 defsubr (&Swindow_frame);
4658 defsubr (&Sframe_root_window);
4659 defsubr (&Sframe_first_window);
4660 defsubr (&Sframe_selected_window);
4661 defsubr (&Sset_frame_selected_window);
4662 defsubr (&Sframe_list);
4663 defsubr (&Snext_frame);
4664 defsubr (&Sprevious_frame);
4665 defsubr (&Sdelete_frame);
4666 defsubr (&Smouse_position);
4667 defsubr (&Smouse_pixel_position);
4668 defsubr (&Sset_mouse_position);
4669 defsubr (&Sset_mouse_pixel_position);
4670 #if 0
4671 defsubr (&Sframe_configuration);
4672 defsubr (&Srestore_frame_configuration);
4673 #endif
4674 defsubr (&Smake_frame_visible);
4675 defsubr (&Smake_frame_invisible);
4676 defsubr (&Siconify_frame);
4677 defsubr (&Sframe_visible_p);
4678 defsubr (&Svisible_frame_list);
4679 defsubr (&Sraise_frame);
4680 defsubr (&Slower_frame);
4681 defsubr (&Sredirect_frame_focus);
4682 defsubr (&Sframe_focus);
4683 defsubr (&Sframe_parameters);
4684 defsubr (&Sframe_parameter);
4685 defsubr (&Smodify_frame_parameters);
4686 defsubr (&Sframe_char_height);
4687 defsubr (&Sframe_char_width);
4688 defsubr (&Sframe_pixel_height);
4689 defsubr (&Sframe_pixel_width);
4690 defsubr (&Sset_frame_height);
4691 defsubr (&Sset_frame_width);
4692 defsubr (&Sset_frame_size);
4693 defsubr (&Sset_frame_position);
4694
4695 #ifdef HAVE_WINDOW_SYSTEM
4696 defsubr (&Sx_get_resource);
4697 defsubr (&Sx_parse_geometry);
4698 #endif
4699
4700 }
4701
4702 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4703 (do not change this comment) */