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