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