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