*** empty log message ***
[emacs.git] / src / frame.c
blob36014df23c170f8680450603de997086b09203f0
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2003, 2004
3 Free Software Foundation.
5 This file is part of GNU Emacs.
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.
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.
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., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include <config.h>
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
54 #ifdef HAVE_WINDOW_SYSTEM
56 /* The name we're using in resource queries. Most often "emacs". */
58 Lisp_Object Vx_resource_name;
60 /* The application class we're using in resource queries.
61 Normally "Emacs". */
63 Lisp_Object Vx_resource_class;
65 #endif
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 Lisp_Object Qinhibit_default_face_x_resources;
76 Lisp_Object Qx_frame_parameter;
77 Lisp_Object Qx_resource_name;
79 /* Frame parameters (set or reported). */
81 Lisp_Object Qauto_raise, Qauto_lower;
82 Lisp_Object Qborder_color, Qborder_width;
83 Lisp_Object Qcursor_color, Qcursor_type;
84 Lisp_Object Qgeometry; /* Not used */
85 Lisp_Object Qheight, Qwidth;
86 Lisp_Object Qleft, Qright;
87 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
88 Lisp_Object Qinternal_border_width;
89 Lisp_Object Qmouse_color;
90 Lisp_Object Qminibuffer;
91 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
92 Lisp_Object Qvisibility;
93 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
94 Lisp_Object Qscreen_gamma;
95 Lisp_Object Qline_spacing;
96 Lisp_Object Quser_position, Quser_size;
97 Lisp_Object Qwait_for_wm;
98 Lisp_Object Qwindow_id;
99 #ifdef HAVE_X_WINDOWS
100 Lisp_Object Qouter_window_id;
101 #endif
102 Lisp_Object Qparent_id;
103 Lisp_Object Qtitle, Qname;
104 Lisp_Object Qunsplittable;
105 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
106 Lisp_Object Qleft_fringe, Qright_fringe;
107 Lisp_Object Qbuffer_predicate, Qbuffer_list;
108 Lisp_Object Qtty_color_mode;
110 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
112 Lisp_Object Qface_set_after_frame_default;
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;
122 static void
123 set_menu_bar_lines_1 (window, n)
124 Lisp_Object window;
125 int n;
127 struct window *w = XWINDOW (window);
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);
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);
138 /* Handle just the top child in a vertical split. */
139 if (!NILP (w->vchild))
140 set_menu_bar_lines_1 (w->vchild, n);
142 /* Adjust all children in a horizontal split. */
143 for (window = w->hchild; !NILP (window); window = w->next)
145 w = XWINDOW (window);
146 set_menu_bar_lines_1 (window, n);
150 void
151 set_menu_bar_lines (f, value, oldval)
152 struct frame *f;
153 Lisp_Object value, oldval;
155 int nlines;
156 int olines = FRAME_MENU_BAR_LINES (f);
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;
165 if (INTEGERP (value))
166 nlines = XINT (value);
167 else
168 nlines = 0;
170 if (nlines != olines)
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);
180 Lisp_Object Vemacs_iconified;
181 Lisp_Object Vframe_list;
183 struct x_output tty_display;
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 ();
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;
202 if (!FRAMEP (object))
203 return Qnil;
204 switch (XFRAME (object)->output_method)
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 ();
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;
230 return ((FRAMEP (object)
231 && FRAME_LIVE_P (XFRAME (object)))
232 ? Fframep (object)
233 : Qnil);
236 struct frame *
237 make_frame (mini_p)
238 int mini_p;
240 Lisp_Object frame;
241 register struct frame *f;
242 register Lisp_Object root_window;
243 register Lisp_Object mini_window;
245 f = allocate_frame ();
246 XSETFRAME (frame, f);
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;
303 root_window = make_window ();
304 if (mini_p)
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;
313 else
315 mini_window = Qnil;
316 XWINDOW (root_window)->next = Qnil;
317 f->minibuffer_window = Qnil;
320 XWINDOW (root_window)->frame = frame;
322 /* 10 is arbitrary,
323 just so that there is "something there."
324 Correct size will be set up later with change_frame_size. */
326 SET_FRAME_COLS (f, 10);
327 FRAME_LINES (f) = 10;
329 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
330 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
332 if (mini_p)
334 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
335 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
336 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
339 /* Choose a buffer for the frame's root window. */
341 Lisp_Object buf;
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);
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);
360 if (mini_p)
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);
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);
377 f->default_face_done_p = 0;
379 return 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). */
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;
393 register struct frame *f;
394 struct gcpro gcpro1;
396 if (!NILP (mini_window))
397 CHECK_LIVE_WINDOW (mini_window);
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
405 /* Make a frame containing just a root window. */
406 f = make_frame (0);
408 if (NILP (mini_window))
410 /* Use default-minibuffer-frame if possible. */
411 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
412 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
414 Lisp_Object frame_dummy;
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;
424 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
427 f->minibuffer_window = mini_window;
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;
439 /* Make a frame containing only a minibuffer window. */
441 struct frame *
442 make_minibuffer_frame ()
444 /* First make a frame containing just a root window, no minibuffer. */
446 register struct frame *f = make_frame (0);
447 register Lisp_Object mini_window;
448 register Lisp_Object frame;
450 XSETFRAME (frame, f);
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;
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. */
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;
468 /* Put the proper buffer in that window. */
470 Fset_window_buffer (mini_window,
471 (NILP (Vminibuffer_list)
472 ? get_minibuffer (0)
473 : Fcar (Vminibuffer_list)), Qnil);
474 return f;
476 #endif /* HAVE_WINDOW_SYSTEM */
478 /* Construct a frame that refers to the terminal (stdin and stdout). */
480 static int terminal_frame_count;
482 struct frame *
483 make_terminal_frame ()
485 register struct frame *f;
486 Lisp_Object frame;
487 char name[20];
489 #ifdef MULTI_KBOARD
490 if (!initial_kboard)
492 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
493 init_kboard (initial_kboard);
494 initial_kboard->next_kboard = all_kboards;
495 all_kboards = initial_kboard;
497 #endif
499 /* The first call must initialize Vframe_list. */
500 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
501 Vframe_list = Qnil;
503 f = make_frame (1);
505 XSETFRAME (frame, f);
506 Vframe_list = Fcons (frame, Vframe_list);
508 terminal_frame_count++;
509 sprintf (name, "F%d", terminal_frame_count);
510 f->name = build_string (name);
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))
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)
532 f->output_data.x->background_pixel = FACE_TTY_DEFAULT_BG_COLOR;
533 f->output_data.x->foreground_pixel = FACE_TTY_DEFAULT_FG_COLOR;
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 */
555 if (!noninteractive)
556 init_frame_faces (f);
558 return f;
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;
572 struct frame *f;
573 Lisp_Object frame, tem;
574 struct frame *sf = SELECTED_FRAME ();
576 #ifdef MSDOS
577 if (sf->output_method != output_msdos_raw
578 && sf->output_method != output_termcap)
579 abort ();
580 #else /* not MSDOS */
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 */
591 f = make_terminal_frame ();
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);
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;
613 /* Perform the switch to frame FRAME.
615 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
616 FRAME1 as frame.
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.
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. */
626 Lisp_Object
627 do_switch_frame (frame, track, for_deletion)
628 Lisp_Object frame;
629 int track, for_deletion;
631 struct frame *sf = SELECTED_FRAME ();
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));
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;
647 if (sf == XFRAME (frame))
648 return frame;
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)
662 Lisp_Object tail;
664 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
666 Lisp_Object focus;
668 if (!FRAMEP (XCAR (tail)))
669 abort ();
671 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
673 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
674 Fredirect_frame_focus (XCAR (tail), frame);
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)))
682 Lisp_Object focus, xfocus;
684 xfocus = x_get_focus_frame (XFRAME (frame));
685 if (FRAMEP (xfocus))
687 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
688 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
689 Fredirect_frame_focus (xfocus, frame);
692 #endif /* HAVE_X_WINDOWS */
693 #endif /* ! 0 */
695 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
696 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
698 selected_frame = frame;
699 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
700 last_nonminibuf_frame = XFRAME (selected_frame);
702 Fselect_window (XFRAME (frame)->selected_window, Qnil);
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))
710 Lisp_Object color_mode_spec, color_mode;
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);
719 #endif /* !WINDOWSNT */
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;
729 return frame;
732 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "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.
742 This function returns FRAME, or nil if FRAME has been deleted. */)
743 (frame, no_enter)
744 Lisp_Object frame, no_enter;
746 return do_switch_frame (frame, 1, 0);
750 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 2, "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.
757 If EVENT is frame object, handle it as if it were a switch-frame event
758 to that frame. */)
759 (event, no_enter)
760 Lisp_Object event, no_enter;
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);
768 DEFUN ("ignore-event", Fignore_event, Signore_event, 0, 0, "",
769 doc: /* Do nothing, but preserve any prefix argument already specified.
770 This is a suitable binding for `iconify-frame' and `make-frame-visible'. */)
773 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
774 return Qnil;
777 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
778 doc: /* Return the frame that is now selected. */)
781 return selected_frame;
784 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
785 doc: /* Return the frame object that window WINDOW is on. */)
786 (window)
787 Lisp_Object window;
789 CHECK_LIVE_WINDOW (window);
790 return XWINDOW (window)->frame;
793 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
794 doc: /* Returns the topmost, leftmost window of FRAME.
795 If omitted, FRAME defaults to the currently selected frame. */)
796 (frame)
797 Lisp_Object frame;
799 Lisp_Object w;
801 if (NILP (frame))
802 w = SELECTED_FRAME ()->root_window;
803 else
805 CHECK_LIVE_FRAME (frame);
806 w = XFRAME (frame)->root_window;
808 while (NILP (XWINDOW (w)->buffer))
810 if (! NILP (XWINDOW (w)->hchild))
811 w = XWINDOW (w)->hchild;
812 else if (! NILP (XWINDOW (w)->vchild))
813 w = XWINDOW (w)->vchild;
814 else
815 abort ();
817 return w;
820 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
821 Sactive_minibuffer_window, 0, 0, 0,
822 doc: /* Return the currently active minibuffer window, or nil if none. */)
825 return minibuf_level ? minibuf_window : Qnil;
828 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
829 doc: /* Returns the root-window of FRAME.
830 If omitted, FRAME defaults to the currently selected frame. */)
831 (frame)
832 Lisp_Object frame;
834 Lisp_Object window;
836 if (NILP (frame))
837 window = SELECTED_FRAME ()->root_window;
838 else
840 CHECK_LIVE_FRAME (frame);
841 window = XFRAME (frame)->root_window;
844 return window;
847 DEFUN ("frame-selected-window", Fframe_selected_window,
848 Sframe_selected_window, 0, 1, 0,
849 doc: /* Return the selected window of frame object FRAME.
850 If omitted, FRAME defaults to the currently selected frame. */)
851 (frame)
852 Lisp_Object frame;
854 Lisp_Object window;
856 if (NILP (frame))
857 window = SELECTED_FRAME ()->selected_window;
858 else
860 CHECK_LIVE_FRAME (frame);
861 window = XFRAME (frame)->selected_window;
864 return window;
867 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
868 Sset_frame_selected_window, 2, 2, 0,
869 doc: /* Set the selected window of frame object FRAME to WINDOW.
870 Return WINDOW.
871 If FRAME is nil, the selected frame is used.
872 If FRAME is the selected frame, this makes WINDOW the selected window. */)
873 (frame, window)
874 Lisp_Object frame, window;
876 if (NILP (frame))
877 frame = selected_frame;
879 CHECK_LIVE_FRAME (frame);
880 CHECK_LIVE_WINDOW (window);
882 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
883 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
885 if (EQ (frame, selected_frame))
886 return Fselect_window (window, Qnil);
888 return XFRAME (frame)->selected_window = window;
891 DEFUN ("frame-list", Fframe_list, Sframe_list,
892 0, 0, 0,
893 doc: /* Return a list of all frames. */)
896 Lisp_Object frames;
897 frames = Fcopy_sequence (Vframe_list);
898 #ifdef HAVE_WINDOW_SYSTEM
899 if (FRAMEP (tip_frame))
900 frames = Fdelq (tip_frame, frames);
901 #endif
902 return frames;
905 /* Return the next frame in the frame list after FRAME.
906 If MINIBUF is nil, exclude minibuffer-only frames.
907 If MINIBUF is a window, include only its own frame
908 and any frame now using that window as the minibuffer.
909 If MINIBUF is `visible', include all visible frames.
910 If MINIBUF is 0, include all visible and iconified frames.
911 Otherwise, include all frames. */
913 Lisp_Object
914 next_frame (frame, minibuf)
915 Lisp_Object frame;
916 Lisp_Object minibuf;
918 Lisp_Object tail;
919 int passed = 0;
921 /* There must always be at least one frame in Vframe_list. */
922 if (! CONSP (Vframe_list))
923 abort ();
925 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
926 forever. Forestall that. */
927 CHECK_LIVE_FRAME (frame);
929 while (1)
930 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
932 Lisp_Object f;
934 f = XCAR (tail);
936 if (passed
937 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
939 /* Decide whether this frame is eligible to be returned. */
941 /* If we've looped all the way around without finding any
942 eligible frames, return the original frame. */
943 if (EQ (f, frame))
944 return f;
946 /* Let minibuf decide if this frame is acceptable. */
947 if (NILP (minibuf))
949 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
950 return f;
952 else if (EQ (minibuf, Qvisible))
954 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
955 if (FRAME_VISIBLE_P (XFRAME (f)))
956 return f;
958 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
960 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
961 if (FRAME_VISIBLE_P (XFRAME (f))
962 || FRAME_ICONIFIED_P (XFRAME (f)))
963 return f;
965 else if (WINDOWP (minibuf))
967 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
968 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
969 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
970 FRAME_FOCUS_FRAME (XFRAME (f))))
971 return f;
973 else
974 return f;
977 if (EQ (frame, f))
978 passed++;
982 /* Return the previous frame in the frame list before FRAME.
983 If MINIBUF is nil, exclude minibuffer-only frames.
984 If MINIBUF is a window, include only its own frame
985 and any frame now using that window as the minibuffer.
986 If MINIBUF is `visible', include all visible frames.
987 If MINIBUF is 0, include all visible and iconified frames.
988 Otherwise, include all frames. */
990 Lisp_Object
991 prev_frame (frame, minibuf)
992 Lisp_Object frame;
993 Lisp_Object minibuf;
995 Lisp_Object tail;
996 Lisp_Object prev;
998 /* There must always be at least one frame in Vframe_list. */
999 if (! CONSP (Vframe_list))
1000 abort ();
1002 prev = Qnil;
1003 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1005 Lisp_Object f;
1007 f = XCAR (tail);
1008 if (!FRAMEP (f))
1009 abort ();
1011 if (EQ (frame, f) && !NILP (prev))
1012 return prev;
1014 if (FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1016 /* Decide whether this frame is eligible to be returned,
1017 according to minibuf. */
1018 if (NILP (minibuf))
1020 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
1021 prev = f;
1023 else if (WINDOWP (minibuf))
1025 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
1026 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
1027 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
1028 FRAME_FOCUS_FRAME (XFRAME (f))))
1029 prev = f;
1031 else if (EQ (minibuf, Qvisible))
1033 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1034 if (FRAME_VISIBLE_P (XFRAME (f)))
1035 prev = f;
1037 else if (XFASTINT (minibuf) == 0)
1039 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
1040 if (FRAME_VISIBLE_P (XFRAME (f))
1041 || FRAME_ICONIFIED_P (XFRAME (f)))
1042 prev = f;
1044 else
1045 prev = f;
1049 /* We've scanned the entire list. */
1050 if (NILP (prev))
1051 /* We went through the whole frame list without finding a single
1052 acceptable frame. Return the original frame. */
1053 return frame;
1054 else
1055 /* There were no acceptable frames in the list before FRAME; otherwise,
1056 we would have returned directly from the loop. Since PREV is the last
1057 acceptable frame in the list, return it. */
1058 return prev;
1062 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
1063 doc: /* Return the next frame in the frame list after FRAME.
1064 It considers only frames on the same terminal as FRAME.
1065 By default, skip minibuffer-only frames.
1066 If omitted, FRAME defaults to the selected frame.
1067 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1068 If MINIFRAME is a window, include only its own frame
1069 and any frame now using that window as the minibuffer.
1070 If MINIFRAME is `visible', include all visible frames.
1071 If MINIFRAME is 0, include all visible and iconified frames.
1072 Otherwise, include all frames. */)
1073 (frame, miniframe)
1074 Lisp_Object frame, miniframe;
1076 if (NILP (frame))
1077 frame = selected_frame;
1079 CHECK_LIVE_FRAME (frame);
1080 return next_frame (frame, miniframe);
1083 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
1084 doc: /* Return the previous frame in the frame list before FRAME.
1085 It considers only frames on the same terminal as FRAME.
1086 By default, skip minibuffer-only frames.
1087 If omitted, FRAME defaults to the selected frame.
1088 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1089 If MINIFRAME is a window, include only its own frame
1090 and any frame now using that window as the minibuffer.
1091 If MINIFRAME is `visible', include all visible frames.
1092 If MINIFRAME is 0, include all visible and iconified frames.
1093 Otherwise, include all frames. */)
1094 (frame, miniframe)
1095 Lisp_Object frame, miniframe;
1097 if (NILP (frame))
1098 frame = selected_frame;
1099 CHECK_LIVE_FRAME (frame);
1100 return prev_frame (frame, miniframe);
1103 /* Return 1 if it is ok to delete frame F;
1104 0 if all frames aside from F are invisible.
1105 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1108 other_visible_frames (f)
1109 FRAME_PTR f;
1111 /* We know the selected frame is visible,
1112 so if F is some other frame, it can't be the sole visible one. */
1113 if (f == SELECTED_FRAME ())
1115 Lisp_Object frames;
1116 int count = 0;
1118 for (frames = Vframe_list;
1119 CONSP (frames);
1120 frames = XCDR (frames))
1122 Lisp_Object this;
1124 this = XCAR (frames);
1125 /* Verify that the frame's window still exists
1126 and we can still talk to it. And note any recent change
1127 in visibility. */
1128 #ifdef HAVE_WINDOW_SYSTEM
1129 if (FRAME_WINDOW_P (XFRAME (this)))
1131 x_sync (XFRAME (this));
1132 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1134 #endif
1136 if (FRAME_VISIBLE_P (XFRAME (this))
1137 || FRAME_ICONIFIED_P (XFRAME (this))
1138 /* Allow deleting the terminal frame when at least
1139 one X frame exists! */
1140 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1141 count++;
1143 return count > 1;
1145 return 1;
1148 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1149 doc: /* Delete FRAME, permanently eliminating it from use.
1150 If omitted, FRAME defaults to the selected frame.
1151 A frame may not be deleted if its minibuffer is used by other frames.
1152 Normally, you may not delete a frame if all other frames are invisible,
1153 but if the second optional argument FORCE is non-nil, you may do so.
1155 This function runs `delete-frame-functions' before actually deleting the
1156 frame, unless the frame is a tooltip.
1157 The functions are run with one arg, the frame to be deleted. */)
1158 (frame, force)
1159 Lisp_Object frame, force;
1161 struct frame *f;
1162 struct frame *sf = SELECTED_FRAME ();
1163 int minibuffer_selected;
1165 if (EQ (frame, Qnil))
1167 f = sf;
1168 XSETFRAME (frame, f);
1170 else
1172 CHECK_FRAME (frame);
1173 f = XFRAME (frame);
1176 if (! FRAME_LIVE_P (f))
1177 return Qnil;
1179 if (NILP (force) && !other_visible_frames (f)
1180 #ifdef MAC_OS8
1181 /* Terminal frame deleted before any other visible frames are
1182 created. */
1183 && strcmp (SDATA (f->name), "F1") != 0
1184 #endif
1186 error ("Attempt to delete the sole visible or iconified frame");
1188 #if 0
1189 /* This is a nice idea, but x_connection_closed needs to be able
1190 to delete the last frame, if it is gone. */
1191 if (NILP (XCDR (Vframe_list)))
1192 error ("Attempt to delete the only frame");
1193 #endif
1195 /* Does this frame have a minibuffer, and is it the surrogate
1196 minibuffer for any other frame? */
1197 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1199 Lisp_Object frames;
1201 for (frames = Vframe_list;
1202 CONSP (frames);
1203 frames = XCDR (frames))
1205 Lisp_Object this;
1206 this = XCAR (frames);
1208 if (! EQ (this, frame)
1209 && EQ (frame,
1210 WINDOW_FRAME (XWINDOW
1211 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1212 error ("Attempt to delete a surrogate minibuffer frame");
1216 /* Run `delete-frame-functions' unless frame is a tooltip. */
1217 if (!NILP (Vrun_hooks)
1218 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
1220 Lisp_Object args[2];
1221 args[0] = intern ("delete-frame-functions");
1222 args[1] = frame;
1223 Frun_hook_with_args (2, args);
1226 minibuffer_selected = EQ (minibuf_window, selected_window);
1228 /* Don't let the frame remain selected. */
1229 if (f == sf)
1231 Lisp_Object tail, frame1;
1233 /* Look for another visible frame on the same terminal. */
1234 frame1 = next_frame (frame, Qvisible);
1236 /* If there is none, find *some* other frame. */
1237 if (NILP (frame1) || EQ (frame1, frame))
1239 FOR_EACH_FRAME (tail, frame1)
1241 if (! EQ (frame, frame1))
1242 break;
1246 do_switch_frame (frame1, 0, 1);
1247 sf = SELECTED_FRAME ();
1250 /* Don't allow minibuf_window to remain on a deleted frame. */
1251 if (EQ (f->minibuffer_window, minibuf_window))
1253 Fset_window_buffer (sf->minibuffer_window,
1254 XWINDOW (minibuf_window)->buffer, Qnil);
1255 minibuf_window = sf->minibuffer_window;
1257 /* If the dying minibuffer window was selected,
1258 select the new one. */
1259 if (minibuffer_selected)
1260 Fselect_window (minibuf_window, Qnil);
1263 /* Don't let echo_area_window to remain on a deleted frame. */
1264 if (EQ (f->minibuffer_window, echo_area_window))
1265 echo_area_window = sf->minibuffer_window;
1267 /* Clear any X selections for this frame. */
1268 #ifdef HAVE_X_WINDOWS
1269 if (FRAME_X_P (f))
1270 x_clear_frame_selections (f);
1271 #endif
1273 /* Free glyphs.
1274 This function must be called before the window tree of the
1275 frame is deleted because windows contain dynamically allocated
1276 memory. */
1277 free_glyphs (f);
1279 /* Mark all the windows that used to be on FRAME as deleted, and then
1280 remove the reference to them. */
1281 delete_all_subwindows (XWINDOW (f->root_window));
1282 f->root_window = Qnil;
1284 Vframe_list = Fdelq (frame, Vframe_list);
1285 FRAME_SET_VISIBLE (f, 0);
1287 if (f->namebuf)
1288 xfree (f->namebuf);
1289 if (f->decode_mode_spec_buffer)
1290 xfree (f->decode_mode_spec_buffer);
1291 if (FRAME_INSERT_COST (f))
1292 xfree (FRAME_INSERT_COST (f));
1293 if (FRAME_DELETEN_COST (f))
1294 xfree (FRAME_DELETEN_COST (f));
1295 if (FRAME_INSERTN_COST (f))
1296 xfree (FRAME_INSERTN_COST (f));
1297 if (FRAME_DELETE_COST (f))
1298 xfree (FRAME_DELETE_COST (f));
1299 if (FRAME_MESSAGE_BUF (f))
1300 xfree (FRAME_MESSAGE_BUF (f));
1302 /* Since some events are handled at the interrupt level, we may get
1303 an event for f at any time; if we zero out the frame's display
1304 now, then we may trip up the event-handling code. Instead, we'll
1305 promise that the display of the frame must be valid until we have
1306 called the window-system-dependent frame destruction routine. */
1308 /* I think this should be done with a hook. */
1309 #ifdef HAVE_WINDOW_SYSTEM
1310 if (FRAME_WINDOW_P (f))
1311 x_destroy_window (f);
1312 #endif
1314 f->output_data.nothing = 0;
1316 /* If we've deleted the last_nonminibuf_frame, then try to find
1317 another one. */
1318 if (f == last_nonminibuf_frame)
1320 Lisp_Object frames;
1322 last_nonminibuf_frame = 0;
1324 for (frames = Vframe_list;
1325 CONSP (frames);
1326 frames = XCDR (frames))
1328 f = XFRAME (XCAR (frames));
1329 if (!FRAME_MINIBUF_ONLY_P (f))
1331 last_nonminibuf_frame = f;
1332 break;
1337 /* If there's no other frame on the same kboard, get out of
1338 single-kboard state if we're in it for this kboard. */
1340 Lisp_Object frames;
1341 /* Some frame we found on the same kboard, or nil if there are none. */
1342 Lisp_Object frame_on_same_kboard;
1344 frame_on_same_kboard = Qnil;
1346 for (frames = Vframe_list;
1347 CONSP (frames);
1348 frames = XCDR (frames))
1350 Lisp_Object this;
1351 struct frame *f1;
1353 this = XCAR (frames);
1354 if (!FRAMEP (this))
1355 abort ();
1356 f1 = XFRAME (this);
1358 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1359 frame_on_same_kboard = this;
1362 if (NILP (frame_on_same_kboard))
1363 not_single_kboard_state (FRAME_KBOARD (f));
1367 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1368 find another one. Prefer minibuffer-only frames, but also notice
1369 frames with other windows. */
1370 if (EQ (frame, FRAME_KBOARD (f)->Vdefault_minibuffer_frame))
1372 Lisp_Object frames;
1374 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1375 Lisp_Object frame_with_minibuf;
1376 /* Some frame we found on the same kboard, or nil if there are none. */
1377 Lisp_Object frame_on_same_kboard;
1379 frame_on_same_kboard = Qnil;
1380 frame_with_minibuf = Qnil;
1382 for (frames = Vframe_list;
1383 CONSP (frames);
1384 frames = XCDR (frames))
1386 Lisp_Object this;
1387 struct frame *f1;
1389 this = XCAR (frames);
1390 if (!FRAMEP (this))
1391 abort ();
1392 f1 = XFRAME (this);
1394 /* Consider only frames on the same kboard
1395 and only those with minibuffers. */
1396 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1)
1397 && FRAME_HAS_MINIBUF_P (f1))
1399 frame_with_minibuf = this;
1400 if (FRAME_MINIBUF_ONLY_P (f1))
1401 break;
1404 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1405 frame_on_same_kboard = this;
1408 if (!NILP (frame_on_same_kboard))
1410 /* We know that there must be some frame with a minibuffer out
1411 there. If this were not true, all of the frames present
1412 would have to be minibufferless, which implies that at some
1413 point their minibuffer frames must have been deleted, but
1414 that is prohibited at the top; you can't delete surrogate
1415 minibuffer frames. */
1416 if (NILP (frame_with_minibuf))
1417 abort ();
1419 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = frame_with_minibuf;
1421 else
1422 /* No frames left on this kboard--say no minibuffer either. */
1423 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
1426 /* Cause frame titles to update--necessary if we now have just one frame. */
1427 update_mode_lines = 1;
1429 return Qnil;
1432 /* Return mouse position in character cell units. */
1434 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1435 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1436 The position is given in character cells, where (0, 0) is the
1437 upper-left corner.
1438 If Emacs is running on a mouseless terminal or hasn't been programmed
1439 to read the mouse position, it returns the selected frame for FRAME
1440 and nil for X and Y.
1441 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1442 passing the normal return value to that function as an argument,
1443 and returns whatever that function returns. */)
1446 FRAME_PTR f;
1447 Lisp_Object lispy_dummy;
1448 enum scroll_bar_part party_dummy;
1449 Lisp_Object x, y, retval;
1450 int col, row;
1451 unsigned long long_dummy;
1452 struct gcpro gcpro1;
1454 f = SELECTED_FRAME ();
1455 x = y = Qnil;
1457 #ifdef HAVE_MOUSE
1458 /* It's okay for the hook to refrain from storing anything. */
1459 if (mouse_position_hook)
1460 (*mouse_position_hook) (&f, -1,
1461 &lispy_dummy, &party_dummy,
1462 &x, &y,
1463 &long_dummy);
1464 if (! NILP (x))
1466 col = XINT (x);
1467 row = XINT (y);
1468 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1469 XSETINT (x, col);
1470 XSETINT (y, row);
1472 #endif
1473 XSETFRAME (lispy_dummy, f);
1474 retval = Fcons (lispy_dummy, Fcons (x, y));
1475 GCPRO1 (retval);
1476 if (!NILP (Vmouse_position_function))
1477 retval = call1 (Vmouse_position_function, retval);
1478 RETURN_UNGCPRO (retval);
1481 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1482 Smouse_pixel_position, 0, 0, 0,
1483 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1484 The position is given in pixel units, where (0, 0) is the
1485 upper-left corner.
1486 If Emacs is running on a mouseless terminal or hasn't been programmed
1487 to read the mouse position, it returns the selected frame for FRAME
1488 and nil for X and Y. */)
1491 FRAME_PTR f;
1492 Lisp_Object lispy_dummy;
1493 enum scroll_bar_part party_dummy;
1494 Lisp_Object x, y;
1495 unsigned long long_dummy;
1497 f = SELECTED_FRAME ();
1498 x = y = Qnil;
1500 #ifdef HAVE_MOUSE
1501 /* It's okay for the hook to refrain from storing anything. */
1502 if (mouse_position_hook)
1503 (*mouse_position_hook) (&f, -1,
1504 &lispy_dummy, &party_dummy,
1505 &x, &y,
1506 &long_dummy);
1507 #endif
1508 XSETFRAME (lispy_dummy, f);
1509 return Fcons (lispy_dummy, Fcons (x, y));
1512 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1513 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1514 Coordinates are relative to the frame, not a window,
1515 so the coordinates of the top left character in the frame
1516 may be nonzero due to left-hand scroll bars or the menu bar.
1518 This function is a no-op for an X frame that is not visible.
1519 If you have just created a frame, you must wait for it to become visible
1520 before calling this function on it, like this.
1521 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1522 (frame, x, y)
1523 Lisp_Object frame, x, y;
1525 CHECK_LIVE_FRAME (frame);
1526 CHECK_NUMBER (x);
1527 CHECK_NUMBER (y);
1529 /* I think this should be done with a hook. */
1530 #ifdef HAVE_WINDOW_SYSTEM
1531 if (FRAME_WINDOW_P (XFRAME (frame)))
1532 /* Warping the mouse will cause enternotify and focus events. */
1533 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
1534 #else
1535 #if defined (MSDOS) && defined (HAVE_MOUSE)
1536 if (FRAME_MSDOS_P (XFRAME (frame)))
1538 Fselect_frame (frame, Qnil);
1539 mouse_moveto (XINT (x), XINT (y));
1541 #endif
1542 #endif
1544 return Qnil;
1547 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1548 Sset_mouse_pixel_position, 3, 3, 0,
1549 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1550 Note, this is a no-op for an X frame that is not visible.
1551 If you have just created a frame, you must wait for it to become visible
1552 before calling this function on it, like this.
1553 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1554 (frame, x, y)
1555 Lisp_Object frame, x, y;
1557 CHECK_LIVE_FRAME (frame);
1558 CHECK_NUMBER (x);
1559 CHECK_NUMBER (y);
1561 /* I think this should be done with a hook. */
1562 #ifdef HAVE_WINDOW_SYSTEM
1563 if (FRAME_WINDOW_P (XFRAME (frame)))
1564 /* Warping the mouse will cause enternotify and focus events. */
1565 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
1566 #else
1567 #if defined (MSDOS) && defined (HAVE_MOUSE)
1568 if (FRAME_MSDOS_P (XFRAME (frame)))
1570 Fselect_frame (frame, Qnil);
1571 mouse_moveto (XINT (x), XINT (y));
1573 #endif
1574 #endif
1576 return Qnil;
1579 static void make_frame_visible_1 P_ ((Lisp_Object));
1581 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1582 0, 1, "",
1583 doc: /* Make the frame FRAME visible (assuming it is an X window).
1584 If omitted, FRAME defaults to the currently selected frame. */)
1585 (frame)
1586 Lisp_Object frame;
1588 if (NILP (frame))
1589 frame = selected_frame;
1591 CHECK_LIVE_FRAME (frame);
1593 /* I think this should be done with a hook. */
1594 #ifdef HAVE_WINDOW_SYSTEM
1595 if (FRAME_WINDOW_P (XFRAME (frame)))
1597 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1598 x_make_frame_visible (XFRAME (frame));
1600 #endif
1602 make_frame_visible_1 (XFRAME (frame)->root_window);
1604 /* Make menu bar update for the Buffers and Frames menus. */
1605 windows_or_buffers_changed++;
1607 return frame;
1610 /* Update the display_time slot of the buffers shown in WINDOW
1611 and all its descendents. */
1613 static void
1614 make_frame_visible_1 (window)
1615 Lisp_Object window;
1617 struct window *w;
1619 for (;!NILP (window); window = w->next)
1621 w = XWINDOW (window);
1623 if (!NILP (w->buffer))
1624 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
1626 if (!NILP (w->vchild))
1627 make_frame_visible_1 (w->vchild);
1628 if (!NILP (w->hchild))
1629 make_frame_visible_1 (w->hchild);
1633 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1634 0, 2, "",
1635 doc: /* Make the frame FRAME invisible (assuming it is an X window).
1636 If omitted, FRAME defaults to the currently selected frame.
1637 Normally you may not make FRAME invisible if all other frames are invisible,
1638 but if the second optional argument FORCE is non-nil, you may do so. */)
1639 (frame, force)
1640 Lisp_Object frame, force;
1642 if (NILP (frame))
1643 frame = selected_frame;
1645 CHECK_LIVE_FRAME (frame);
1647 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1648 error ("Attempt to make invisible the sole visible or iconified frame");
1650 #if 0 /* This isn't logically necessary, and it can do GC. */
1651 /* Don't let the frame remain selected. */
1652 if (EQ (frame, selected_frame))
1653 do_switch_frame (next_frame (frame, Qt), 0, 0)
1654 #endif
1656 /* Don't allow minibuf_window to remain on a deleted frame. */
1657 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1659 struct frame *sf = XFRAME (selected_frame);
1660 Fset_window_buffer (sf->minibuffer_window,
1661 XWINDOW (minibuf_window)->buffer, Qnil);
1662 minibuf_window = sf->minibuffer_window;
1665 /* I think this should be done with a hook. */
1666 #ifdef HAVE_WINDOW_SYSTEM
1667 if (FRAME_WINDOW_P (XFRAME (frame)))
1668 x_make_frame_invisible (XFRAME (frame));
1669 #endif
1671 /* Make menu bar update for the Buffers and Frames menus. */
1672 windows_or_buffers_changed++;
1674 return Qnil;
1677 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1678 0, 1, "",
1679 doc: /* Make the frame FRAME into an icon.
1680 If omitted, FRAME defaults to the currently selected frame. */)
1681 (frame)
1682 Lisp_Object frame;
1684 if (NILP (frame))
1685 frame = selected_frame;
1687 CHECK_LIVE_FRAME (frame);
1689 #if 0 /* This isn't logically necessary, and it can do GC. */
1690 /* Don't let the frame remain selected. */
1691 if (EQ (frame, selected_frame))
1692 Fhandle_switch_frame (next_frame (frame, Qt), Qnil);
1693 #endif
1695 /* Don't allow minibuf_window to remain on a deleted frame. */
1696 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1698 struct frame *sf = XFRAME (selected_frame);
1699 Fset_window_buffer (sf->minibuffer_window,
1700 XWINDOW (minibuf_window)->buffer, Qnil);
1701 minibuf_window = sf->minibuffer_window;
1704 /* I think this should be done with a hook. */
1705 #ifdef HAVE_WINDOW_SYSTEM
1706 if (FRAME_WINDOW_P (XFRAME (frame)))
1707 x_iconify_frame (XFRAME (frame));
1708 #endif
1710 /* Make menu bar update for the Buffers and Frames menus. */
1711 windows_or_buffers_changed++;
1713 return Qnil;
1716 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1717 1, 1, 0,
1718 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
1719 A frame that is not \"visible\" is not updated and, if it works through
1720 a window system, it may not show at all.
1721 Return the symbol `icon' if frame is visible only as an icon.
1723 On a text-only terminal, all frames are considered visible, whether
1724 they are currently being displayed or not, and this function returns t
1725 for all frames. */)
1726 (frame)
1727 Lisp_Object frame;
1729 CHECK_LIVE_FRAME (frame);
1731 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1733 if (FRAME_VISIBLE_P (XFRAME (frame)))
1734 return Qt;
1735 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1736 return Qicon;
1737 return Qnil;
1740 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1741 0, 0, 0,
1742 doc: /* Return a list of all frames now \"visible\" (being updated). */)
1745 Lisp_Object tail, frame;
1746 struct frame *f;
1747 Lisp_Object value;
1749 value = Qnil;
1750 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1752 frame = XCAR (tail);
1753 if (!FRAMEP (frame))
1754 continue;
1755 f = XFRAME (frame);
1756 if (FRAME_VISIBLE_P (f))
1757 value = Fcons (frame, value);
1759 return value;
1763 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
1764 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
1765 If FRAME is invisible or iconified, make it visible.
1766 If you don't specify a frame, the selected frame is used.
1767 If Emacs is displaying on an ordinary terminal or some other device which
1768 doesn't support multiple overlapping frames, this function does nothing. */)
1769 (frame)
1770 Lisp_Object frame;
1772 if (NILP (frame))
1773 frame = selected_frame;
1775 CHECK_LIVE_FRAME (frame);
1777 /* Do like the documentation says. */
1778 Fmake_frame_visible (frame);
1780 if (frame_raise_lower_hook)
1781 (*frame_raise_lower_hook) (XFRAME (frame), 1);
1783 return Qnil;
1786 /* Should we have a corresponding function called Flower_Power? */
1787 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
1788 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
1789 If you don't specify a frame, the selected frame is used.
1790 If Emacs is displaying on an ordinary terminal or some other device which
1791 doesn't support multiple overlapping frames, this function does nothing. */)
1792 (frame)
1793 Lisp_Object frame;
1795 if (NILP (frame))
1796 frame = selected_frame;
1798 CHECK_LIVE_FRAME (frame);
1800 if (frame_raise_lower_hook)
1801 (*frame_raise_lower_hook) (XFRAME (frame), 0);
1803 return Qnil;
1807 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
1808 1, 2, 0,
1809 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
1810 In other words, switch-frame events caused by events in FRAME will
1811 request a switch to FOCUS-FRAME, and `last-event-frame' will be
1812 FOCUS-FRAME after reading an event typed at FRAME.
1814 If FOCUS-FRAME is omitted or nil, any existing redirection is
1815 cancelled, and the frame again receives its own keystrokes.
1817 Focus redirection is useful for temporarily redirecting keystrokes to
1818 a surrogate minibuffer frame when a frame doesn't have its own
1819 minibuffer window.
1821 A frame's focus redirection can be changed by select-frame. If frame
1822 FOO is selected, and then a different frame BAR is selected, any
1823 frames redirecting their focus to FOO are shifted to redirect their
1824 focus to BAR. This allows focus redirection to work properly when the
1825 user switches from one frame to another using `select-window'.
1827 This means that a frame whose focus is redirected to itself is treated
1828 differently from a frame whose focus is redirected to nil; the former
1829 is affected by select-frame, while the latter is not.
1831 The redirection lasts until `redirect-frame-focus' is called to change it. */)
1832 (frame, focus_frame)
1833 Lisp_Object frame, focus_frame;
1835 /* Note that we don't check for a live frame here. It's reasonable
1836 to redirect the focus of a frame you're about to delete, if you
1837 know what other frame should receive those keystrokes. */
1838 CHECK_FRAME (frame);
1840 if (! NILP (focus_frame))
1841 CHECK_LIVE_FRAME (focus_frame);
1843 XFRAME (frame)->focus_frame = focus_frame;
1845 if (frame_rehighlight_hook)
1846 (*frame_rehighlight_hook) (XFRAME (frame));
1848 return Qnil;
1852 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
1853 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
1854 This returns nil if FRAME's focus is not redirected.
1855 See `redirect-frame-focus'. */)
1856 (frame)
1857 Lisp_Object frame;
1859 CHECK_LIVE_FRAME (frame);
1861 return FRAME_FOCUS_FRAME (XFRAME (frame));
1866 /* Return the value of frame parameter PROP in frame FRAME. */
1868 Lisp_Object
1869 get_frame_param (frame, prop)
1870 register struct frame *frame;
1871 Lisp_Object prop;
1873 register Lisp_Object tem;
1875 tem = Fassq (prop, frame->param_alist);
1876 if (EQ (tem, Qnil))
1877 return tem;
1878 return Fcdr (tem);
1881 /* Return the buffer-predicate of the selected frame. */
1883 Lisp_Object
1884 frame_buffer_predicate (frame)
1885 Lisp_Object frame;
1887 return XFRAME (frame)->buffer_predicate;
1890 /* Return the buffer-list of the selected frame. */
1892 Lisp_Object
1893 frame_buffer_list (frame)
1894 Lisp_Object frame;
1896 return XFRAME (frame)->buffer_list;
1899 /* Set the buffer-list of the selected frame. */
1901 void
1902 set_frame_buffer_list (frame, list)
1903 Lisp_Object frame, list;
1905 XFRAME (frame)->buffer_list = list;
1908 /* Discard BUFFER from the buffer-list of each frame. */
1910 void
1911 frames_discard_buffer (buffer)
1912 Lisp_Object buffer;
1914 Lisp_Object frame, tail;
1916 FOR_EACH_FRAME (tail, frame)
1918 XFRAME (frame)->buffer_list
1919 = Fdelq (buffer, XFRAME (frame)->buffer_list);
1923 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
1924 If the alist already has an element for PROP, we change it. */
1926 void
1927 store_in_alist (alistptr, prop, val)
1928 Lisp_Object *alistptr, val;
1929 Lisp_Object prop;
1931 register Lisp_Object tem;
1933 tem = Fassq (prop, *alistptr);
1934 if (EQ (tem, Qnil))
1935 *alistptr = Fcons (Fcons (prop, val), *alistptr);
1936 else
1937 Fsetcdr (tem, val);
1940 static int
1941 frame_name_fnn_p (str, len)
1942 char *str;
1943 int len;
1945 if (len > 1 && str[0] == 'F')
1947 char *end_ptr;
1949 strtol (str + 1, &end_ptr, 10);
1951 if (end_ptr == str + len)
1952 return 1;
1954 return 0;
1957 /* Set the name of the terminal frame. Also used by MSDOS frames.
1958 Modeled after x_set_name which is used for WINDOW frames. */
1960 void
1961 set_term_frame_name (f, name)
1962 struct frame *f;
1963 Lisp_Object name;
1965 f->explicit_name = ! NILP (name);
1967 /* If NAME is nil, set the name to F<num>. */
1968 if (NILP (name))
1970 char namebuf[20];
1972 /* Check for no change needed in this very common case
1973 before we do any consing. */
1974 if (frame_name_fnn_p (SDATA (f->name),
1975 SBYTES (f->name)))
1976 return;
1978 terminal_frame_count++;
1979 sprintf (namebuf, "F%d", terminal_frame_count);
1980 name = build_string (namebuf);
1982 else
1984 CHECK_STRING (name);
1986 /* Don't change the name if it's already NAME. */
1987 if (! NILP (Fstring_equal (name, f->name)))
1988 return;
1990 /* Don't allow the user to set the frame name to F<num>, so it
1991 doesn't clash with the names we generate for terminal frames. */
1992 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
1993 error ("Frame names of the form F<num> are usurped by Emacs");
1996 f->name = name;
1997 update_mode_lines = 1;
2000 void
2001 store_frame_param (f, prop, val)
2002 struct frame *f;
2003 Lisp_Object prop, val;
2005 register Lisp_Object old_alist_elt;
2007 /* The buffer-alist parameter is stored in a special place and is
2008 not in the alist. */
2009 if (EQ (prop, Qbuffer_list))
2011 f->buffer_list = val;
2012 return;
2015 /* If PROP is a symbol which is supposed to have frame-local values,
2016 and it is set up based on this frame, switch to the global
2017 binding. That way, we can create or alter the frame-local binding
2018 without messing up the symbol's status. */
2019 if (SYMBOLP (prop))
2021 Lisp_Object valcontents;
2022 valcontents = SYMBOL_VALUE (prop);
2023 if ((BUFFER_LOCAL_VALUEP (valcontents)
2024 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
2025 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
2026 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
2027 swap_in_global_binding (prop);
2030 #ifndef WINDOWSNT
2031 /* The tty color mode needs to be set before the frame's parameter
2032 alist is updated with the new value, because set_tty_color_mode
2033 wants to look at the old mode. */
2034 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode))
2035 set_tty_color_mode (f, val);
2036 #endif
2038 /* Update the frame parameter alist. */
2039 old_alist_elt = Fassq (prop, f->param_alist);
2040 if (EQ (old_alist_elt, Qnil))
2041 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
2042 else
2043 Fsetcdr (old_alist_elt, val);
2045 /* Update some other special parameters in their special places
2046 in addition to the alist. */
2048 if (EQ (prop, Qbuffer_predicate))
2049 f->buffer_predicate = val;
2051 if (! FRAME_WINDOW_P (f))
2053 if (EQ (prop, Qmenu_bar_lines))
2054 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
2055 else if (EQ (prop, Qname))
2056 set_term_frame_name (f, val);
2059 if (EQ (prop, Qminibuffer) && WINDOWP (val))
2061 if (! MINI_WINDOW_P (XWINDOW (val)))
2062 error ("Surrogate minibuffer windows must be minibuffer windows");
2064 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
2065 && !EQ (val, f->minibuffer_window))
2066 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
2068 /* Install the chosen minibuffer window, with proper buffer. */
2069 f->minibuffer_window = val;
2073 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
2074 doc: /* Return the parameters-alist of frame FRAME.
2075 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
2076 The meaningful PARMs depend on the kind of frame.
2077 If FRAME is omitted, return information on the currently selected frame. */)
2078 (frame)
2079 Lisp_Object frame;
2081 Lisp_Object alist;
2082 FRAME_PTR f;
2083 int height, width;
2084 struct gcpro gcpro1;
2086 if (NILP (frame))
2087 frame = selected_frame;
2089 CHECK_FRAME (frame);
2090 f = XFRAME (frame);
2092 if (!FRAME_LIVE_P (f))
2093 return Qnil;
2095 alist = Fcopy_alist (f->param_alist);
2096 GCPRO1 (alist);
2098 if (!FRAME_WINDOW_P (f))
2100 int fg = FRAME_FOREGROUND_PIXEL (f);
2101 int bg = FRAME_BACKGROUND_PIXEL (f);
2102 Lisp_Object elt;
2104 /* If the frame's parameter alist says the colors are
2105 unspecified and reversed, take the frame's background pixel
2106 for foreground and vice versa. */
2107 elt = Fassq (Qforeground_color, alist);
2108 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
2110 if (strncmp (SDATA (XCDR (elt)),
2111 unspecified_bg,
2112 SCHARS (XCDR (elt))) == 0)
2113 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
2114 else if (strncmp (SDATA (XCDR (elt)),
2115 unspecified_fg,
2116 SCHARS (XCDR (elt))) == 0)
2117 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2119 else
2120 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
2121 elt = Fassq (Qbackground_color, alist);
2122 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
2124 if (strncmp (SDATA (XCDR (elt)),
2125 unspecified_fg,
2126 SCHARS (XCDR (elt))) == 0)
2127 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
2128 else if (strncmp (SDATA (XCDR (elt)),
2129 unspecified_bg,
2130 SCHARS (XCDR (elt))) == 0)
2131 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2133 else
2134 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
2135 store_in_alist (&alist, intern ("font"),
2136 build_string (FRAME_MSDOS_P (f)
2137 ? "ms-dos"
2138 : FRAME_W32_P (f) ? "w32term"
2139 :"tty"));
2141 store_in_alist (&alist, Qname, f->name);
2142 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2143 store_in_alist (&alist, Qheight, make_number (height));
2144 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2145 store_in_alist (&alist, Qwidth, make_number (width));
2146 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
2147 store_in_alist (&alist, Qminibuffer,
2148 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
2149 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
2150 : FRAME_MINIBUF_WINDOW (f)));
2151 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
2152 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
2154 /* I think this should be done with a hook. */
2155 #ifdef HAVE_WINDOW_SYSTEM
2156 if (FRAME_WINDOW_P (f))
2157 x_report_frame_params (f, &alist);
2158 else
2159 #endif
2161 /* This ought to be correct in f->param_alist for an X frame. */
2162 Lisp_Object lines;
2163 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
2164 store_in_alist (&alist, Qmenu_bar_lines, lines);
2167 UNGCPRO;
2168 return alist;
2172 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
2173 doc: /* Return FRAME's value for parameter PARAMETER.
2174 If FRAME is nil, describe the currently selected frame. */)
2175 (frame, parameter)
2176 Lisp_Object frame, parameter;
2178 struct frame *f;
2179 Lisp_Object value;
2181 if (NILP (frame))
2182 frame = selected_frame;
2183 else
2184 CHECK_FRAME (frame);
2185 CHECK_SYMBOL (parameter);
2187 f = XFRAME (frame);
2188 value = Qnil;
2190 if (FRAME_LIVE_P (f))
2192 /* Avoid consing in frequent cases. */
2193 if (EQ (parameter, Qname))
2194 value = f->name;
2195 #ifdef HAVE_X_WINDOWS
2196 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
2197 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
2198 #endif /* HAVE_X_WINDOWS */
2199 else if (EQ (parameter, Qbackground_color)
2200 || EQ (parameter, Qforeground_color))
2202 value = Fassq (parameter, f->param_alist);
2203 if (CONSP (value))
2205 value = XCDR (value);
2206 /* Fframe_parameters puts the actual fg/bg color names,
2207 even if f->param_alist says otherwise. This is
2208 important when param_alist's notion of colors is
2209 "unspecified". We need to do the same here. */
2210 if (STRINGP (value) && !FRAME_WINDOW_P (f))
2212 const char *color_name;
2213 EMACS_INT csz;
2215 if (EQ (parameter, Qbackground_color))
2217 color_name = SDATA (value);
2218 csz = SCHARS (value);
2219 if (strncmp (color_name, unspecified_bg, csz) == 0)
2220 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2221 else if (strncmp (color_name, unspecified_fg, csz) == 0)
2222 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2224 else if (EQ (parameter, Qforeground_color))
2226 color_name = SDATA (value);
2227 csz = SCHARS (value);
2228 if (strncmp (color_name, unspecified_fg, csz) == 0)
2229 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
2230 else if (strncmp (color_name, unspecified_bg, csz) == 0)
2231 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
2235 else
2236 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2238 else if (EQ (parameter, Qdisplay_type)
2239 || EQ (parameter, Qbackground_mode))
2240 value = Fcdr (Fassq (parameter, f->param_alist));
2241 else
2242 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
2245 return value;
2249 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
2250 Smodify_frame_parameters, 2, 2, 0,
2251 doc: /* Modify the parameters of frame FRAME according to ALIST.
2252 If FRAME is nil, it defaults to the selected frame.
2253 ALIST is an alist of parameters to change and their new values.
2254 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2255 The meaningful PARMs depend on the kind of frame.
2256 Undefined PARMs are ignored, but stored in the frame's parameter list
2257 so that `frame-parameters' will return them.
2259 The value of frame parameter FOO can also be accessed
2260 as a frame-local binding for the variable FOO, if you have
2261 enabled such bindings for that variable with `make-variable-frame-local'. */)
2262 (frame, alist)
2263 Lisp_Object frame, alist;
2265 FRAME_PTR f;
2266 register Lisp_Object tail, prop, val;
2267 int count = SPECPDL_INDEX ();
2269 /* Bind this to t to inhibit initialization of the default face from
2270 X resources in face-set-after-frame-default. If we don't inhibit
2271 this, modifying the `font' frame parameter, for example, while
2272 there is a `default.attributeFont' X resource, won't work,
2273 because `default's font is reset to the value of the X resource
2274 and that resets the `font' frame parameter. */
2275 specbind (Qinhibit_default_face_x_resources, Qt);
2277 if (EQ (frame, Qnil))
2278 frame = selected_frame;
2279 CHECK_LIVE_FRAME (frame);
2280 f = XFRAME (frame);
2282 /* I think this should be done with a hook. */
2283 #ifdef HAVE_WINDOW_SYSTEM
2284 if (FRAME_WINDOW_P (f))
2285 x_set_frame_parameters (f, alist);
2286 else
2287 #endif
2288 #ifdef MSDOS
2289 if (FRAME_MSDOS_P (f))
2290 IT_set_frame_parameters (f, alist);
2291 else
2292 #endif
2295 int length = XINT (Flength (alist));
2296 int i;
2297 Lisp_Object *parms
2298 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2299 Lisp_Object *values
2300 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
2302 /* Extract parm names and values into those vectors. */
2304 i = 0;
2305 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2307 Lisp_Object elt;
2309 elt = Fcar (tail);
2310 parms[i] = Fcar (elt);
2311 values[i] = Fcdr (elt);
2312 i++;
2315 /* Now process them in reverse of specified order. */
2316 for (i--; i >= 0; i--)
2318 prop = parms[i];
2319 val = values[i];
2320 store_frame_param (f, prop, val);
2324 return unbind_to (count, Qnil);
2327 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
2328 0, 1, 0,
2329 doc: /* Height in pixels of a line in the font in frame FRAME.
2330 If FRAME is omitted, the selected frame is used.
2331 For a terminal frame, the value is always 1. */)
2332 (frame)
2333 Lisp_Object frame;
2335 struct frame *f;
2337 if (NILP (frame))
2338 frame = selected_frame;
2339 CHECK_FRAME (frame);
2340 f = XFRAME (frame);
2342 #ifdef HAVE_WINDOW_SYSTEM
2343 if (FRAME_WINDOW_P (f))
2344 return make_number (x_char_height (f));
2345 else
2346 #endif
2347 return make_number (1);
2351 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
2352 0, 1, 0,
2353 doc: /* Width in pixels of characters in the font in frame FRAME.
2354 If FRAME is omitted, the selected frame is used.
2355 The width is the same for all characters, because
2356 currently Emacs supports only fixed-width fonts.
2357 For a terminal screen, the value is always 1. */)
2358 (frame)
2359 Lisp_Object frame;
2361 struct frame *f;
2363 if (NILP (frame))
2364 frame = selected_frame;
2365 CHECK_FRAME (frame);
2366 f = XFRAME (frame);
2368 #ifdef HAVE_WINDOW_SYSTEM
2369 if (FRAME_WINDOW_P (f))
2370 return make_number (x_char_width (f));
2371 else
2372 #endif
2373 return make_number (1);
2376 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2377 Sframe_pixel_height, 0, 1, 0,
2378 doc: /* Return a FRAME's height in pixels.
2379 This counts only the height available for text lines,
2380 not menu bars on window-system Emacs frames.
2381 For a terminal frame, the result really gives the height in characters.
2382 If FRAME is omitted, the selected frame is used. */)
2383 (frame)
2384 Lisp_Object frame;
2386 struct frame *f;
2388 if (NILP (frame))
2389 frame = selected_frame;
2390 CHECK_FRAME (frame);
2391 f = XFRAME (frame);
2393 #ifdef HAVE_WINDOW_SYSTEM
2394 if (FRAME_WINDOW_P (f))
2395 return make_number (x_pixel_height (f));
2396 else
2397 #endif
2398 return make_number (FRAME_LINES (f));
2401 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2402 Sframe_pixel_width, 0, 1, 0,
2403 doc: /* Return FRAME's width in pixels.
2404 For a terminal frame, the result really gives the width in characters.
2405 If FRAME is omitted, the selected frame is used. */)
2406 (frame)
2407 Lisp_Object frame;
2409 struct frame *f;
2411 if (NILP (frame))
2412 frame = selected_frame;
2413 CHECK_FRAME (frame);
2414 f = XFRAME (frame);
2416 #ifdef HAVE_WINDOW_SYSTEM
2417 if (FRAME_WINDOW_P (f))
2418 return make_number (x_pixel_width (f));
2419 else
2420 #endif
2421 return make_number (FRAME_COLS (f));
2424 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2425 doc: /* Specify that the frame FRAME has LINES lines.
2426 Optional third arg non-nil means that redisplay should use LINES lines
2427 but that the idea of the actual height of the frame should not be changed. */)
2428 (frame, lines, pretend)
2429 Lisp_Object frame, lines, pretend;
2431 register struct frame *f;
2433 CHECK_NUMBER (lines);
2434 if (NILP (frame))
2435 frame = selected_frame;
2436 CHECK_LIVE_FRAME (frame);
2437 f = XFRAME (frame);
2439 /* I think this should be done with a hook. */
2440 #ifdef HAVE_WINDOW_SYSTEM
2441 if (FRAME_WINDOW_P (f))
2443 if (XINT (lines) != FRAME_LINES (f))
2444 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
2445 do_pending_window_change (0);
2447 else
2448 #endif
2449 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
2450 return Qnil;
2453 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2454 doc: /* Specify that the frame FRAME has COLS columns.
2455 Optional third arg non-nil means that redisplay should use COLS columns
2456 but that the idea of the actual width of the frame should not be changed. */)
2457 (frame, cols, pretend)
2458 Lisp_Object frame, cols, pretend;
2460 register struct frame *f;
2461 CHECK_NUMBER (cols);
2462 if (NILP (frame))
2463 frame = selected_frame;
2464 CHECK_LIVE_FRAME (frame);
2465 f = XFRAME (frame);
2467 /* I think this should be done with a hook. */
2468 #ifdef HAVE_WINDOW_SYSTEM
2469 if (FRAME_WINDOW_P (f))
2471 if (XINT (cols) != FRAME_COLS (f))
2472 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
2473 do_pending_window_change (0);
2475 else
2476 #endif
2477 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
2478 return Qnil;
2481 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2482 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2483 (frame, cols, rows)
2484 Lisp_Object frame, cols, rows;
2486 register struct frame *f;
2488 CHECK_LIVE_FRAME (frame);
2489 CHECK_NUMBER (cols);
2490 CHECK_NUMBER (rows);
2491 f = XFRAME (frame);
2493 /* I think this should be done with a hook. */
2494 #ifdef HAVE_WINDOW_SYSTEM
2495 if (FRAME_WINDOW_P (f))
2497 if (XINT (rows) != FRAME_LINES (f)
2498 || XINT (cols) != FRAME_COLS (f)
2499 || f->new_text_lines || f->new_text_cols)
2500 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2501 do_pending_window_change (0);
2503 else
2504 #endif
2505 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
2507 return Qnil;
2510 DEFUN ("set-frame-position", Fset_frame_position,
2511 Sset_frame_position, 3, 3, 0,
2512 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2513 This is actually the position of the upper left corner of the frame.
2514 Negative values for XOFFSET or YOFFSET are interpreted relative to
2515 the rightmost or bottommost possible position (that stays within the screen). */)
2516 (frame, xoffset, yoffset)
2517 Lisp_Object frame, xoffset, yoffset;
2519 register struct frame *f;
2521 CHECK_LIVE_FRAME (frame);
2522 CHECK_NUMBER (xoffset);
2523 CHECK_NUMBER (yoffset);
2524 f = XFRAME (frame);
2526 /* I think this should be done with a hook. */
2527 #ifdef HAVE_WINDOW_SYSTEM
2528 if (FRAME_WINDOW_P (f))
2529 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2530 #endif
2532 return Qt;
2536 /***********************************************************************
2537 Frame Parameters
2538 ***********************************************************************/
2540 /* Connect the frame-parameter names for X frames
2541 to the ways of passing the parameter values to the window system.
2543 The name of a parameter, as a Lisp symbol,
2544 has an `x-frame-parameter' property which is an integer in Lisp
2545 that is an index in this table. */
2547 struct frame_parm_table {
2548 char *name;
2549 Lisp_Object *variable;
2552 static struct frame_parm_table frame_parms[] =
2554 {"auto-raise", &Qauto_raise},
2555 {"auto-lower", &Qauto_lower},
2556 {"background-color", 0},
2557 {"border-color", &Qborder_color},
2558 {"border-width", &Qborder_width},
2559 {"cursor-color", &Qcursor_color},
2560 {"cursor-type", &Qcursor_type},
2561 {"font", 0},
2562 {"foreground-color", 0},
2563 {"icon-name", &Qicon_name},
2564 {"icon-type", &Qicon_type},
2565 {"internal-border-width", &Qinternal_border_width},
2566 {"menu-bar-lines", &Qmenu_bar_lines},
2567 {"mouse-color", &Qmouse_color},
2568 {"name", &Qname},
2569 {"scroll-bar-width", &Qscroll_bar_width},
2570 {"title", &Qtitle},
2571 {"unsplittable", &Qunsplittable},
2572 {"vertical-scroll-bars", &Qvertical_scroll_bars},
2573 {"visibility", &Qvisibility},
2574 {"tool-bar-lines", &Qtool_bar_lines},
2575 {"scroll-bar-foreground", &Qscroll_bar_foreground},
2576 {"scroll-bar-background", &Qscroll_bar_background},
2577 {"screen-gamma", &Qscreen_gamma},
2578 {"line-spacing", &Qline_spacing},
2579 {"left-fringe", &Qleft_fringe},
2580 {"right-fringe", &Qright_fringe},
2581 {"wait-for-wm", &Qwait_for_wm},
2582 {"fullscreen", &Qfullscreen},
2585 #ifdef HAVE_WINDOW_SYSTEM
2587 extern Lisp_Object Qbox;
2588 extern Lisp_Object Qtop;
2590 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
2591 wanted positions of the WM window (not emacs window).
2592 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
2593 window (FRAME_X_WINDOW).
2596 void
2597 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
2598 struct frame *f;
2599 int *width;
2600 int *height;
2601 int *top_pos;
2602 int *left_pos;
2604 int newwidth = FRAME_COLS (f);
2605 int newheight = FRAME_LINES (f);
2607 *top_pos = f->top_pos;
2608 *left_pos = f->left_pos;
2610 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
2612 int ph;
2614 ph = FRAME_X_DISPLAY_INFO (f)->height;
2615 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2616 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2617 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2618 *top_pos = 0;
2621 if (f->want_fullscreen & FULLSCREEN_WIDTH)
2623 int pw;
2625 pw = FRAME_X_DISPLAY_INFO (f)->width;
2626 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2627 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2628 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2629 *left_pos = 0;
2632 *width = newwidth;
2633 *height = newheight;
2637 /* Change the parameters of frame F as specified by ALIST.
2638 If a parameter is not specially recognized, do nothing special;
2639 otherwise call the `x_set_...' function for that parameter.
2640 Except for certain geometry properties, always call store_frame_param
2641 to store the new value in the parameter alist. */
2643 void
2644 x_set_frame_parameters (f, alist)
2645 FRAME_PTR f;
2646 Lisp_Object alist;
2648 Lisp_Object tail;
2650 /* If both of these parameters are present, it's more efficient to
2651 set them both at once. So we wait until we've looked at the
2652 entire list before we set them. */
2653 int width, height;
2655 /* Same here. */
2656 Lisp_Object left, top;
2658 /* Same with these. */
2659 Lisp_Object icon_left, icon_top;
2661 /* Record in these vectors all the parms specified. */
2662 Lisp_Object *parms;
2663 Lisp_Object *values;
2664 int i, p;
2665 int left_no_change = 0, top_no_change = 0;
2666 int icon_left_no_change = 0, icon_top_no_change = 0;
2667 int fullscreen_is_being_set = 0;
2669 struct gcpro gcpro1, gcpro2;
2671 i = 0;
2672 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2673 i++;
2675 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2676 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2678 /* Extract parm names and values into those vectors. */
2680 i = 0;
2681 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2683 Lisp_Object elt;
2685 elt = Fcar (tail);
2686 parms[i] = Fcar (elt);
2687 values[i] = Fcdr (elt);
2688 i++;
2690 /* TAIL and ALIST are not used again below here. */
2691 alist = tail = Qnil;
2693 GCPRO2 (*parms, *values);
2694 gcpro1.nvars = i;
2695 gcpro2.nvars = i;
2697 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2698 because their values appear in VALUES and strings are not valid. */
2699 top = left = Qunbound;
2700 icon_left = icon_top = Qunbound;
2702 /* Provide default values for HEIGHT and WIDTH. */
2703 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2704 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
2706 /* Process foreground_color and background_color before anything else.
2707 They are independent of other properties, but other properties (e.g.,
2708 cursor_color) are dependent upon them. */
2709 /* Process default font as well, since fringe widths depends on it. */
2710 /* Also, process fullscreen, width and height depend upon that */
2711 for (p = 0; p < i; p++)
2713 Lisp_Object prop, val;
2715 prop = parms[p];
2716 val = values[p];
2717 if (EQ (prop, Qforeground_color)
2718 || EQ (prop, Qbackground_color)
2719 || EQ (prop, Qfont)
2720 || EQ (prop, Qfullscreen))
2722 register Lisp_Object param_index, old_value;
2724 old_value = get_frame_param (f, prop);
2725 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
2727 if (NILP (Fequal (val, old_value)))
2729 store_frame_param (f, prop, val);
2731 param_index = Fget (prop, Qx_frame_parameter);
2732 if (NATNUMP (param_index)
2733 && (XFASTINT (param_index)
2734 < sizeof (frame_parms)/sizeof (frame_parms[0]))
2735 && rif->frame_parm_handlers[XINT (param_index)])
2736 (*(rif->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
2741 /* Now process them in reverse of specified order. */
2742 for (i--; i >= 0; i--)
2744 Lisp_Object prop, val;
2746 prop = parms[i];
2747 val = values[i];
2749 if (EQ (prop, Qwidth) && NUMBERP (val))
2750 width = XFASTINT (val);
2751 else if (EQ (prop, Qheight) && NUMBERP (val))
2752 height = XFASTINT (val);
2753 else if (EQ (prop, Qtop))
2754 top = val;
2755 else if (EQ (prop, Qleft))
2756 left = val;
2757 else if (EQ (prop, Qicon_top))
2758 icon_top = val;
2759 else if (EQ (prop, Qicon_left))
2760 icon_left = val;
2761 else if (EQ (prop, Qforeground_color)
2762 || EQ (prop, Qbackground_color)
2763 || EQ (prop, Qfont)
2764 || EQ (prop, Qfullscreen))
2765 /* Processed above. */
2766 continue;
2767 else
2769 register Lisp_Object param_index, old_value;
2771 old_value = get_frame_param (f, prop);
2773 store_frame_param (f, prop, val);
2775 param_index = Fget (prop, Qx_frame_parameter);
2776 if (NATNUMP (param_index)
2777 && (XFASTINT (param_index)
2778 < sizeof (frame_parms)/sizeof (frame_parms[0]))
2779 && rif->frame_parm_handlers[XINT (param_index)])
2780 (*(rif->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
2784 /* Don't die if just one of these was set. */
2785 if (EQ (left, Qunbound))
2787 left_no_change = 1;
2788 if (f->left_pos < 0)
2789 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
2790 else
2791 XSETINT (left, f->left_pos);
2793 if (EQ (top, Qunbound))
2795 top_no_change = 1;
2796 if (f->top_pos < 0)
2797 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
2798 else
2799 XSETINT (top, f->top_pos);
2802 /* If one of the icon positions was not set, preserve or default it. */
2803 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
2805 icon_left_no_change = 1;
2806 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
2807 if (NILP (icon_left))
2808 XSETINT (icon_left, 0);
2810 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
2812 icon_top_no_change = 1;
2813 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
2814 if (NILP (icon_top))
2815 XSETINT (icon_top, 0);
2818 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
2820 /* If the frame is visible already and the fullscreen parameter is
2821 being set, it is too late to set WM manager hints to specify
2822 size and position.
2823 Here we first get the width, height and position that applies to
2824 fullscreen. We then move the frame to the appropriate
2825 position. Resize of the frame is taken care of in the code after
2826 this if-statement. */
2827 int new_left, new_top;
2829 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
2830 if (new_top != f->top_pos || new_left != f->left_pos)
2831 x_set_offset (f, new_left, new_top, 1);
2834 /* Don't set these parameters unless they've been explicitly
2835 specified. The window might be mapped or resized while we're in
2836 this function, and we don't want to override that unless the lisp
2837 code has asked for it.
2839 Don't set these parameters unless they actually differ from the
2840 window's current parameters; the window may not actually exist
2841 yet. */
2843 Lisp_Object frame;
2845 check_frame_size (f, &height, &width);
2847 XSETFRAME (frame, f);
2849 if (width != FRAME_COLS (f)
2850 || height != FRAME_LINES (f)
2851 || f->new_text_lines || f->new_text_cols)
2852 Fset_frame_size (frame, make_number (width), make_number (height));
2854 if ((!NILP (left) || !NILP (top))
2855 && ! (left_no_change && top_no_change)
2856 && ! (NUMBERP (left) && XINT (left) == f->left_pos
2857 && NUMBERP (top) && XINT (top) == f->top_pos))
2859 int leftpos = 0;
2860 int toppos = 0;
2862 /* Record the signs. */
2863 f->size_hint_flags &= ~ (XNegative | YNegative);
2864 if (EQ (left, Qminus))
2865 f->size_hint_flags |= XNegative;
2866 else if (INTEGERP (left))
2868 leftpos = XINT (left);
2869 if (leftpos < 0)
2870 f->size_hint_flags |= XNegative;
2872 else if (CONSP (left) && EQ (XCAR (left), Qminus)
2873 && CONSP (XCDR (left))
2874 && INTEGERP (XCAR (XCDR (left))))
2876 leftpos = - XINT (XCAR (XCDR (left)));
2877 f->size_hint_flags |= XNegative;
2879 else if (CONSP (left) && EQ (XCAR (left), Qplus)
2880 && CONSP (XCDR (left))
2881 && INTEGERP (XCAR (XCDR (left))))
2883 leftpos = XINT (XCAR (XCDR (left)));
2886 if (EQ (top, Qminus))
2887 f->size_hint_flags |= YNegative;
2888 else if (INTEGERP (top))
2890 toppos = XINT (top);
2891 if (toppos < 0)
2892 f->size_hint_flags |= YNegative;
2894 else if (CONSP (top) && EQ (XCAR (top), Qminus)
2895 && CONSP (XCDR (top))
2896 && INTEGERP (XCAR (XCDR (top))))
2898 toppos = - XINT (XCAR (XCDR (top)));
2899 f->size_hint_flags |= YNegative;
2901 else if (CONSP (top) && EQ (XCAR (top), Qplus)
2902 && CONSP (XCDR (top))
2903 && INTEGERP (XCAR (XCDR (top))))
2905 toppos = XINT (XCAR (XCDR (top)));
2909 /* Store the numeric value of the position. */
2910 f->top_pos = toppos;
2911 f->left_pos = leftpos;
2913 f->win_gravity = NorthWestGravity;
2915 /* Actually set that position, and convert to absolute. */
2916 x_set_offset (f, leftpos, toppos, -1);
2919 if ((!NILP (icon_left) || !NILP (icon_top))
2920 && ! (icon_left_no_change && icon_top_no_change))
2921 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
2924 UNGCPRO;
2928 /* Insert a description of internally-recorded parameters of frame X
2929 into the parameter alist *ALISTPTR that is to be given to the user.
2930 Only parameters that are specific to the X window system
2931 and whose values are not correctly recorded in the frame's
2932 param_alist need to be considered here. */
2934 void
2935 x_report_frame_params (f, alistptr)
2936 struct frame *f;
2937 Lisp_Object *alistptr;
2939 char buf[16];
2940 Lisp_Object tem;
2942 /* Represent negative positions (off the top or left screen edge)
2943 in a way that Fmodify_frame_parameters will understand correctly. */
2944 XSETINT (tem, f->left_pos);
2945 if (f->left_pos >= 0)
2946 store_in_alist (alistptr, Qleft, tem);
2947 else
2948 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
2950 XSETINT (tem, f->top_pos);
2951 if (f->top_pos >= 0)
2952 store_in_alist (alistptr, Qtop, tem);
2953 else
2954 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
2956 store_in_alist (alistptr, Qborder_width,
2957 make_number (f->border_width));
2958 store_in_alist (alistptr, Qinternal_border_width,
2959 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
2960 store_in_alist (alistptr, Qleft_fringe,
2961 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
2962 store_in_alist (alistptr, Qright_fringe,
2963 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
2964 store_in_alist (alistptr, Qscroll_bar_width,
2965 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
2966 ? make_number (0)
2967 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
2968 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
2969 /* nil means "use default width"
2970 for non-toolkit scroll bar.
2971 ruler-mode.el depends on this. */
2972 : Qnil));
2973 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
2974 store_in_alist (alistptr, Qwindow_id,
2975 build_string (buf));
2976 #ifdef HAVE_X_WINDOWS
2977 #ifdef USE_X_TOOLKIT
2978 /* Tooltip frame may not have this widget. */
2979 if (FRAME_X_OUTPUT (f)->widget)
2980 #endif
2981 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
2982 store_in_alist (alistptr, Qouter_window_id,
2983 build_string (buf));
2984 #endif
2985 store_in_alist (alistptr, Qicon_name, f->icon_name);
2986 FRAME_SAMPLE_VISIBILITY (f);
2987 store_in_alist (alistptr, Qvisibility,
2988 (FRAME_VISIBLE_P (f) ? Qt
2989 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
2990 store_in_alist (alistptr, Qdisplay,
2991 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
2993 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
2994 tem = Qnil;
2995 else
2996 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
2997 store_in_alist (alistptr, Qparent_id, tem);
3001 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3002 the previous value of that parameter, NEW_VALUE is the new value. */
3004 void
3005 x_set_fullscreen (f, new_value, old_value)
3006 struct frame *f;
3007 Lisp_Object new_value, old_value;
3009 if (NILP (new_value))
3010 f->want_fullscreen = FULLSCREEN_NONE;
3011 else if (EQ (new_value, Qfullboth))
3012 f->want_fullscreen = FULLSCREEN_BOTH;
3013 else if (EQ (new_value, Qfullwidth))
3014 f->want_fullscreen = FULLSCREEN_WIDTH;
3015 else if (EQ (new_value, Qfullheight))
3016 f->want_fullscreen = FULLSCREEN_HEIGHT;
3020 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3021 the previous value of that parameter, NEW_VALUE is the new value. */
3023 void
3024 x_set_line_spacing (f, new_value, old_value)
3025 struct frame *f;
3026 Lisp_Object new_value, old_value;
3028 if (NILP (new_value))
3029 f->extra_line_spacing = 0;
3030 else if (NATNUMP (new_value))
3031 f->extra_line_spacing = XFASTINT (new_value);
3032 else
3033 Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
3034 Fcons (new_value, Qnil)));
3035 if (FRAME_VISIBLE_P (f))
3036 redraw_frame (f);
3040 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3041 the previous value of that parameter, NEW_VALUE is the new value. */
3043 void
3044 x_set_screen_gamma (f, new_value, old_value)
3045 struct frame *f;
3046 Lisp_Object new_value, old_value;
3048 if (NILP (new_value))
3049 f->gamma = 0;
3050 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
3051 /* The value 0.4545 is the normal viewing gamma. */
3052 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
3053 else
3054 Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
3055 Fcons (new_value, Qnil)));
3057 clear_face_cache (0);
3061 void
3062 x_set_font (f, arg, oldval)
3063 struct frame *f;
3064 Lisp_Object arg, oldval;
3066 Lisp_Object result;
3067 Lisp_Object fontset_name;
3068 Lisp_Object frame;
3069 int old_fontset = FRAME_FONTSET(f);
3071 CHECK_STRING (arg);
3073 fontset_name = Fquery_fontset (arg, Qnil);
3075 BLOCK_INPUT;
3076 result = (STRINGP (fontset_name)
3077 ? x_new_fontset (f, SDATA (fontset_name))
3078 : x_new_font (f, SDATA (arg)));
3079 UNBLOCK_INPUT;
3081 if (EQ (result, Qnil))
3082 error ("Font `%s' is not defined", SDATA (arg));
3083 else if (EQ (result, Qt))
3084 error ("The characters of the given font have varying widths");
3085 else if (STRINGP (result))
3087 if (STRINGP (fontset_name))
3089 /* Fontset names are built from ASCII font names, so the
3090 names may be equal despite there was a change. */
3091 if (old_fontset == FRAME_FONTSET (f))
3092 return;
3094 else if (!NILP (Fequal (result, oldval)))
3095 return;
3097 store_frame_param (f, Qfont, result);
3098 recompute_basic_faces (f);
3100 else
3101 abort ();
3103 do_pending_window_change (0);
3105 /* Don't call `face-set-after-frame-default' when faces haven't been
3106 initialized yet. This is the case when called from
3107 Fx_create_frame. In that case, the X widget or window doesn't
3108 exist either, and we can end up in x_report_frame_params with a
3109 null widget which gives a segfault. */
3110 if (FRAME_FACE_CACHE (f))
3112 XSETFRAME (frame, f);
3113 call1 (Qface_set_after_frame_default, frame);
3118 void
3119 x_set_fringe_width (f, new_value, old_value)
3120 struct frame *f;
3121 Lisp_Object new_value, old_value;
3123 compute_fringe_widths (f, 1);
3126 void
3127 x_set_border_width (f, arg, oldval)
3128 struct frame *f;
3129 Lisp_Object arg, oldval;
3131 CHECK_NUMBER (arg);
3133 if (XINT (arg) == f->border_width)
3134 return;
3136 #ifndef MAC_OS
3137 if (FRAME_X_WINDOW (f) != 0)
3138 error ("Cannot change the border width of a window");
3139 #endif /* MAC_TODO */
3141 f->border_width = XINT (arg);
3144 void
3145 x_set_internal_border_width (f, arg, oldval)
3146 struct frame *f;
3147 Lisp_Object arg, oldval;
3149 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
3151 CHECK_NUMBER (arg);
3152 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3153 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3154 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
3156 #ifdef USE_X_TOOLKIT
3157 if (FRAME_X_OUTPUT (f)->edit_widget)
3158 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3159 #endif
3161 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
3162 return;
3164 if (FRAME_X_WINDOW (f) != 0)
3166 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3167 SET_FRAME_GARBAGED (f);
3168 do_pending_window_change (0);
3170 else
3171 SET_FRAME_GARBAGED (f);
3174 void
3175 x_set_visibility (f, value, oldval)
3176 struct frame *f;
3177 Lisp_Object value, oldval;
3179 Lisp_Object frame;
3180 XSETFRAME (frame, f);
3182 if (NILP (value))
3183 Fmake_frame_invisible (frame, Qt);
3184 else if (EQ (value, Qicon))
3185 Ficonify_frame (frame);
3186 else
3187 Fmake_frame_visible (frame);
3190 void
3191 x_set_autoraise (f, arg, oldval)
3192 struct frame *f;
3193 Lisp_Object arg, oldval;
3195 f->auto_raise = !EQ (Qnil, arg);
3198 void
3199 x_set_autolower (f, arg, oldval)
3200 struct frame *f;
3201 Lisp_Object arg, oldval;
3203 f->auto_lower = !EQ (Qnil, arg);
3206 void
3207 x_set_unsplittable (f, arg, oldval)
3208 struct frame *f;
3209 Lisp_Object arg, oldval;
3211 f->no_split = !NILP (arg);
3214 void
3215 x_set_vertical_scroll_bars (f, arg, oldval)
3216 struct frame *f;
3217 Lisp_Object arg, oldval;
3219 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3220 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3221 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3222 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3224 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3225 = (NILP (arg)
3226 ? vertical_scroll_bar_none
3227 : EQ (Qleft, arg)
3228 ? vertical_scroll_bar_left
3229 : EQ (Qright, arg)
3230 ? vertical_scroll_bar_right
3231 : EQ (Qleft, Vdefault_frame_scroll_bars)
3232 ? vertical_scroll_bar_left
3233 : EQ (Qright, Vdefault_frame_scroll_bars)
3234 ? vertical_scroll_bar_right
3235 : vertical_scroll_bar_none);
3237 /* We set this parameter before creating the X window for the
3238 frame, so we can get the geometry right from the start.
3239 However, if the window hasn't been created yet, we shouldn't
3240 call x_set_window_size. */
3241 if (FRAME_X_WINDOW (f))
3242 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3243 do_pending_window_change (0);
3247 void
3248 x_set_scroll_bar_width (f, arg, oldval)
3249 struct frame *f;
3250 Lisp_Object arg, oldval;
3252 int wid = FRAME_COLUMN_WIDTH (f);
3254 if (NILP (arg))
3256 x_set_scroll_bar_default_width (f);
3258 if (FRAME_X_WINDOW (f))
3259 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3260 do_pending_window_change (0);
3262 else if (INTEGERP (arg) && XINT (arg) > 0
3263 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
3265 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3266 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3268 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3269 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
3270 if (FRAME_X_WINDOW (f))
3271 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
3272 do_pending_window_change (0);
3275 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
3276 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3277 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3282 /* Return non-nil if frame F wants a bitmap icon. */
3284 Lisp_Object
3285 x_icon_type (f)
3286 FRAME_PTR f;
3288 Lisp_Object tem;
3290 tem = assq_no_quit (Qicon_type, f->param_alist);
3291 if (CONSP (tem))
3292 return XCDR (tem);
3293 else
3294 return Qnil;
3298 /* Subroutines of creating an X frame. */
3300 /* Make sure that Vx_resource_name is set to a reasonable value.
3301 Fix it up, or set it to `emacs' if it is too hopeless. */
3303 void
3304 validate_x_resource_name ()
3306 int len = 0;
3307 /* Number of valid characters in the resource name. */
3308 int good_count = 0;
3309 /* Number of invalid characters in the resource name. */
3310 int bad_count = 0;
3311 Lisp_Object new;
3312 int i;
3314 if (!STRINGP (Vx_resource_class))
3315 Vx_resource_class = build_string (EMACS_CLASS);
3317 if (STRINGP (Vx_resource_name))
3319 unsigned char *p = SDATA (Vx_resource_name);
3320 int i;
3322 len = SBYTES (Vx_resource_name);
3324 /* Only letters, digits, - and _ are valid in resource names.
3325 Count the valid characters and count the invalid ones. */
3326 for (i = 0; i < len; i++)
3328 int c = p[i];
3329 if (! ((c >= 'a' && c <= 'z')
3330 || (c >= 'A' && c <= 'Z')
3331 || (c >= '0' && c <= '9')
3332 || c == '-' || c == '_'))
3333 bad_count++;
3334 else
3335 good_count++;
3338 else
3339 /* Not a string => completely invalid. */
3340 bad_count = 5, good_count = 0;
3342 /* If name is valid already, return. */
3343 if (bad_count == 0)
3344 return;
3346 /* If name is entirely invalid, or nearly so, use `emacs'. */
3347 if (good_count == 0
3348 || (good_count == 1 && bad_count > 0))
3350 Vx_resource_name = build_string ("emacs");
3351 return;
3354 /* Name is partly valid. Copy it and replace the invalid characters
3355 with underscores. */
3357 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3359 for (i = 0; i < len; i++)
3361 int c = SREF (new, i);
3362 if (! ((c >= 'a' && c <= 'z')
3363 || (c >= 'A' && c <= 'Z')
3364 || (c >= '0' && c <= '9')
3365 || c == '-' || c == '_'))
3366 SSET (new, i, '_');
3371 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3372 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3375 /* Get specified attribute from resource database RDB.
3376 See Fx_get_resource below for other parameters. */
3378 static Lisp_Object
3379 xrdb_get_resource (rdb, attribute, class, component, subclass)
3380 XrmDatabase rdb;
3381 Lisp_Object attribute, class, component, subclass;
3383 register char *value;
3384 char *name_key;
3385 char *class_key;
3387 CHECK_STRING (attribute);
3388 CHECK_STRING (class);
3390 if (!NILP (component))
3391 CHECK_STRING (component);
3392 if (!NILP (subclass))
3393 CHECK_STRING (subclass);
3394 if (NILP (component) != NILP (subclass))
3395 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3397 validate_x_resource_name ();
3399 /* Allocate space for the components, the dots which separate them,
3400 and the final '\0'. Make them big enough for the worst case. */
3401 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3402 + (STRINGP (component)
3403 ? SBYTES (component) : 0)
3404 + SBYTES (attribute)
3405 + 3);
3407 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3408 + SBYTES (class)
3409 + (STRINGP (subclass)
3410 ? SBYTES (subclass) : 0)
3411 + 3);
3413 /* Start with emacs.FRAMENAME for the name (the specific one)
3414 and with `Emacs' for the class key (the general one). */
3415 strcpy (name_key, SDATA (Vx_resource_name));
3416 strcpy (class_key, SDATA (Vx_resource_class));
3418 strcat (class_key, ".");
3419 strcat (class_key, SDATA (class));
3421 if (!NILP (component))
3423 strcat (class_key, ".");
3424 strcat (class_key, SDATA (subclass));
3426 strcat (name_key, ".");
3427 strcat (name_key, SDATA (component));
3430 strcat (name_key, ".");
3431 strcat (name_key, SDATA (attribute));
3433 value = x_get_string_resource (rdb, name_key, class_key);
3435 if (value != (char *) 0)
3436 return build_string (value);
3437 else
3438 return Qnil;
3442 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3443 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3444 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3445 class, where INSTANCE is the name under which Emacs was invoked, or
3446 the name specified by the `-name' or `-rn' command-line arguments.
3448 The optional arguments COMPONENT and SUBCLASS add to the key and the
3449 class, respectively. You must specify both of them or neither.
3450 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3451 and the class is `Emacs.CLASS.SUBCLASS'. */)
3452 (attribute, class, component, subclass)
3453 Lisp_Object attribute, class, component, subclass;
3455 #ifdef HAVE_X_WINDOWS
3456 check_x ();
3457 #endif
3459 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3460 attribute, class, component, subclass);
3463 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3465 Lisp_Object
3466 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
3467 Display_Info *dpyinfo;
3468 Lisp_Object attribute, class, component, subclass;
3470 return xrdb_get_resource (dpyinfo->xrdb,
3471 attribute, class, component, subclass);
3474 /* Used when C code wants a resource value. */
3476 char *
3477 x_get_resource_string (attribute, class)
3478 char *attribute, *class;
3480 char *name_key;
3481 char *class_key;
3482 struct frame *sf = SELECTED_FRAME ();
3484 /* Allocate space for the components, the dots which separate them,
3485 and the final '\0'. */
3486 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3487 + strlen (attribute) + 2);
3488 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3489 + strlen (class) + 2);
3491 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3492 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3494 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3495 name_key, class_key);
3499 /* Return the value of parameter PARAM.
3501 First search ALIST, then Vdefault_frame_alist, then the X defaults
3502 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3504 Convert the resource to the type specified by desired_type.
3506 If no default is specified, return Qunbound. If you call
3507 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3508 and don't let it get stored in any Lisp-visible variables! */
3510 Lisp_Object
3511 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3512 Display_Info *dpyinfo;
3513 Lisp_Object alist, param;
3514 char *attribute;
3515 char *class;
3516 enum resource_types type;
3518 register Lisp_Object tem;
3520 tem = Fassq (param, alist);
3521 if (EQ (tem, Qnil))
3522 tem = Fassq (param, Vdefault_frame_alist);
3523 if (EQ (tem, Qnil))
3525 if (attribute)
3527 tem = display_x_get_resource (dpyinfo,
3528 build_string (attribute),
3529 build_string (class),
3530 Qnil, Qnil);
3532 if (NILP (tem))
3533 return Qunbound;
3535 switch (type)
3537 case RES_TYPE_NUMBER:
3538 return make_number (atoi (SDATA (tem)));
3540 case RES_TYPE_FLOAT:
3541 return make_float (atof (SDATA (tem)));
3543 case RES_TYPE_BOOLEAN:
3544 tem = Fdowncase (tem);
3545 if (!strcmp (SDATA (tem), "on")
3546 || !strcmp (SDATA (tem), "true"))
3547 return Qt;
3548 else
3549 return Qnil;
3551 case RES_TYPE_STRING:
3552 return tem;
3554 case RES_TYPE_SYMBOL:
3555 /* As a special case, we map the values `true' and `on'
3556 to Qt, and `false' and `off' to Qnil. */
3558 Lisp_Object lower;
3559 lower = Fdowncase (tem);
3560 if (!strcmp (SDATA (lower), "on")
3561 || !strcmp (SDATA (lower), "true"))
3562 return Qt;
3563 else if (!strcmp (SDATA (lower), "off")
3564 || !strcmp (SDATA (lower), "false"))
3565 return Qnil;
3566 else
3567 return Fintern (tem, Qnil);
3570 default:
3571 abort ();
3574 else
3575 return Qunbound;
3577 return Fcdr (tem);
3580 Lisp_Object
3581 x_frame_get_arg (f, alist, param, attribute, class, type)
3582 struct frame *f;
3583 Lisp_Object alist, param;
3584 char *attribute;
3585 char *class;
3586 enum resource_types type;
3588 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
3589 alist, param, attribute, class, type);
3592 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
3594 Lisp_Object
3595 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
3596 struct frame *f;
3597 Lisp_Object alist, param;
3598 char *attribute;
3599 char *class;
3600 enum resource_types type;
3602 Lisp_Object value;
3604 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
3605 attribute, class, type);
3606 if (! NILP (value))
3607 store_frame_param (f, param, value);
3609 return value;
3613 /* Record in frame F the specified or default value according to ALIST
3614 of the parameter named PROP (a Lisp symbol).
3615 If no value is specified for PROP, look for an X default for XPROP
3616 on the frame named NAME.
3617 If that is not found either, use the value DEFLT. */
3619 Lisp_Object
3620 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3621 struct frame *f;
3622 Lisp_Object alist;
3623 Lisp_Object prop;
3624 Lisp_Object deflt;
3625 char *xprop;
3626 char *xclass;
3627 enum resource_types type;
3629 Lisp_Object tem;
3631 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
3632 if (EQ (tem, Qunbound))
3633 tem = deflt;
3634 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3635 return tem;
3641 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3642 doc: /* Parse an X-style geometry string STRING.
3643 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
3644 The properties returned may include `top', `left', `height', and `width'.
3645 The value of `left' or `top' may be an integer,
3646 or a list (+ N) meaning N pixels relative to top/left corner,
3647 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
3648 (string)
3649 Lisp_Object string;
3651 int geometry, x, y;
3652 unsigned int width, height;
3653 Lisp_Object result;
3655 CHECK_STRING (string);
3657 geometry = XParseGeometry ((char *) SDATA (string),
3658 &x, &y, &width, &height);
3660 #if 0
3661 if (!!(geometry & XValue) != !!(geometry & YValue))
3662 error ("Must specify both x and y position, or neither");
3663 #endif
3665 result = Qnil;
3666 if (geometry & XValue)
3668 Lisp_Object element;
3670 if (x >= 0 && (geometry & XNegative))
3671 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3672 else if (x < 0 && ! (geometry & XNegative))
3673 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3674 else
3675 element = Fcons (Qleft, make_number (x));
3676 result = Fcons (element, result);
3679 if (geometry & YValue)
3681 Lisp_Object element;
3683 if (y >= 0 && (geometry & YNegative))
3684 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3685 else if (y < 0 && ! (geometry & YNegative))
3686 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3687 else
3688 element = Fcons (Qtop, make_number (y));
3689 result = Fcons (element, result);
3692 if (geometry & WidthValue)
3693 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3694 if (geometry & HeightValue)
3695 result = Fcons (Fcons (Qheight, make_number (height)), result);
3697 return result;
3700 /* Calculate the desired size and position of frame F.
3701 Return the flags saying which aspects were specified.
3703 Also set the win_gravity and size_hint_flags of F.
3705 Adjust height for toolbar if TOOLBAR_P is 1.
3707 This function does not make the coordinates positive. */
3709 #define DEFAULT_ROWS 40
3710 #define DEFAULT_COLS 80
3713 x_figure_window_size (f, parms, toolbar_p)
3714 struct frame *f;
3715 Lisp_Object parms;
3716 int toolbar_p;
3718 register Lisp_Object tem0, tem1, tem2;
3719 long window_prompting = 0;
3720 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3722 /* Default values if we fall through.
3723 Actually, if that happens we should get
3724 window manager prompting. */
3725 SET_FRAME_COLS (f, DEFAULT_COLS);
3726 FRAME_LINES (f) = DEFAULT_ROWS;
3727 /* Window managers expect that if program-specified
3728 positions are not (0,0), they're intentional, not defaults. */
3729 f->top_pos = 0;
3730 f->left_pos = 0;
3732 /* Ensure that old new_text_cols and new_text_lines will not override the
3733 values set here. */
3734 /* ++KFS: This was specific to W32, but seems ok for all platforms */
3735 f->new_text_cols = f->new_text_lines = 0;
3737 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3738 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3739 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3740 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3742 if (!EQ (tem0, Qunbound))
3744 CHECK_NUMBER (tem0);
3745 FRAME_LINES (f) = XINT (tem0);
3747 if (!EQ (tem1, Qunbound))
3749 CHECK_NUMBER (tem1);
3750 SET_FRAME_COLS (f, XINT (tem1));
3752 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3753 window_prompting |= USSize;
3754 else
3755 window_prompting |= PSize;
3758 f->scroll_bar_actual_width
3759 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
3761 /* This used to be done _before_ calling x_figure_window_size, but
3762 since the height is reset here, this was really a no-op. I
3763 assume that moving it here does what Gerd intended (although he
3764 no longer can remember what that was... ++KFS, 2003-03-25. */
3766 /* Add the tool-bar height to the initial frame height so that the
3767 user gets a text display area of the size he specified with -g or
3768 via .Xdefaults. Later changes of the tool-bar height don't
3769 change the frame size. This is done so that users can create
3770 tall Emacs frames without having to guess how tall the tool-bar
3771 will get. */
3772 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
3774 int margin, relief, bar_height;
3776 relief = (tool_bar_button_relief >= 0
3777 ? tool_bar_button_relief
3778 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
3780 if (INTEGERP (Vtool_bar_button_margin)
3781 && XINT (Vtool_bar_button_margin) > 0)
3782 margin = XFASTINT (Vtool_bar_button_margin);
3783 else if (CONSP (Vtool_bar_button_margin)
3784 && INTEGERP (XCDR (Vtool_bar_button_margin))
3785 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
3786 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
3787 else
3788 margin = 0;
3790 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
3791 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
3794 compute_fringe_widths (f, 0);
3796 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
3797 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3799 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3800 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3801 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3802 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3804 if (EQ (tem0, Qminus))
3806 f->top_pos = 0;
3807 window_prompting |= YNegative;
3809 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3810 && CONSP (XCDR (tem0))
3811 && INTEGERP (XCAR (XCDR (tem0))))
3813 f->top_pos = - XINT (XCAR (XCDR (tem0)));
3814 window_prompting |= YNegative;
3816 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3817 && CONSP (XCDR (tem0))
3818 && INTEGERP (XCAR (XCDR (tem0))))
3820 f->top_pos = XINT (XCAR (XCDR (tem0)));
3822 else if (EQ (tem0, Qunbound))
3823 f->top_pos = 0;
3824 else
3826 CHECK_NUMBER (tem0);
3827 f->top_pos = XINT (tem0);
3828 if (f->top_pos < 0)
3829 window_prompting |= YNegative;
3832 if (EQ (tem1, Qminus))
3834 f->left_pos = 0;
3835 window_prompting |= XNegative;
3837 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3838 && CONSP (XCDR (tem1))
3839 && INTEGERP (XCAR (XCDR (tem1))))
3841 f->left_pos = - XINT (XCAR (XCDR (tem1)));
3842 window_prompting |= XNegative;
3844 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3845 && CONSP (XCDR (tem1))
3846 && INTEGERP (XCAR (XCDR (tem1))))
3848 f->left_pos = XINT (XCAR (XCDR (tem1)));
3850 else if (EQ (tem1, Qunbound))
3851 f->left_pos = 0;
3852 else
3854 CHECK_NUMBER (tem1);
3855 f->left_pos = XINT (tem1);
3856 if (f->left_pos < 0)
3857 window_prompting |= XNegative;
3860 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3861 window_prompting |= USPosition;
3862 else
3863 window_prompting |= PPosition;
3866 if (f->want_fullscreen != FULLSCREEN_NONE)
3868 int left, top;
3869 int width, height;
3871 /* It takes both for some WM:s to place it where we want */
3872 window_prompting = USPosition | PPosition;
3873 x_fullscreen_adjust (f, &width, &height, &top, &left);
3874 FRAME_COLS (f) = width;
3875 FRAME_LINES (f) = height;
3876 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
3877 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
3878 f->left_pos = left;
3879 f->top_pos = top;
3882 if (window_prompting & XNegative)
3884 if (window_prompting & YNegative)
3885 f->win_gravity = SouthEastGravity;
3886 else
3887 f->win_gravity = NorthEastGravity;
3889 else
3891 if (window_prompting & YNegative)
3892 f->win_gravity = SouthWestGravity;
3893 else
3894 f->win_gravity = NorthWestGravity;
3897 f->size_hint_flags = window_prompting;
3899 return window_prompting;
3904 #endif /* HAVE_WINDOW_SYSTEM */
3908 /***********************************************************************
3909 Initialization
3910 ***********************************************************************/
3912 void
3913 syms_of_frame ()
3915 Qframep = intern ("framep");
3916 staticpro (&Qframep);
3917 Qframe_live_p = intern ("frame-live-p");
3918 staticpro (&Qframe_live_p);
3919 Qheight = intern ("height");
3920 staticpro (&Qheight);
3921 Qicon = intern ("icon");
3922 staticpro (&Qicon);
3923 Qminibuffer = intern ("minibuffer");
3924 staticpro (&Qminibuffer);
3925 Qmodeline = intern ("modeline");
3926 staticpro (&Qmodeline);
3927 Qonly = intern ("only");
3928 staticpro (&Qonly);
3929 Qwidth = intern ("width");
3930 staticpro (&Qwidth);
3931 Qgeometry = intern ("geometry");
3932 staticpro (&Qgeometry);
3933 Qicon_left = intern ("icon-left");
3934 staticpro (&Qicon_left);
3935 Qicon_top = intern ("icon-top");
3936 staticpro (&Qicon_top);
3937 Qleft = intern ("left");
3938 staticpro (&Qleft);
3939 Qright = intern ("right");
3940 staticpro (&Qright);
3941 Quser_position = intern ("user-position");
3942 staticpro (&Quser_position);
3943 Quser_size = intern ("user-size");
3944 staticpro (&Quser_size);
3945 Qwindow_id = intern ("window-id");
3946 staticpro (&Qwindow_id);
3947 #ifdef HAVE_X_WINDOWS
3948 Qouter_window_id = intern ("outer-window-id");
3949 staticpro (&Qouter_window_id);
3950 #endif
3951 Qparent_id = intern ("parent-id");
3952 staticpro (&Qparent_id);
3953 Qx = intern ("x");
3954 staticpro (&Qx);
3955 Qw32 = intern ("w32");
3956 staticpro (&Qw32);
3957 Qpc = intern ("pc");
3958 staticpro (&Qpc);
3959 Qmac = intern ("mac");
3960 staticpro (&Qmac);
3961 Qvisible = intern ("visible");
3962 staticpro (&Qvisible);
3963 Qbuffer_predicate = intern ("buffer-predicate");
3964 staticpro (&Qbuffer_predicate);
3965 Qbuffer_list = intern ("buffer-list");
3966 staticpro (&Qbuffer_list);
3967 Qdisplay_type = intern ("display-type");
3968 staticpro (&Qdisplay_type);
3969 Qbackground_mode = intern ("background-mode");
3970 staticpro (&Qbackground_mode);
3971 Qtty_color_mode = intern ("tty-color-mode");
3972 staticpro (&Qtty_color_mode);
3974 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
3975 staticpro (&Qface_set_after_frame_default);
3977 Qfullwidth = intern ("fullwidth");
3978 staticpro (&Qfullwidth);
3979 Qfullheight = intern ("fullheight");
3980 staticpro (&Qfullheight);
3981 Qfullboth = intern ("fullboth");
3982 staticpro (&Qfullboth);
3983 Qx_resource_name = intern ("x-resource-name");
3984 staticpro (&Qx_resource_name);
3986 Qx_frame_parameter = intern ("x-frame-parameter");
3987 staticpro (&Qx_frame_parameter);
3990 int i;
3992 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
3994 Lisp_Object v = intern (frame_parms[i].name);
3995 if (frame_parms[i].variable)
3997 *frame_parms[i].variable = v;
3998 staticpro (frame_parms[i].variable);
4000 Fput (v, Qx_frame_parameter, make_number (i));
4004 #ifdef HAVE_WINDOW_SYSTEM
4005 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4006 doc: /* The name Emacs uses to look up X resources.
4007 `x-get-resource' uses this as the first component of the instance name
4008 when requesting resource values.
4009 Emacs initially sets `x-resource-name' to the name under which Emacs
4010 was invoked, or to the value specified with the `-name' or `-rn'
4011 switches, if present.
4013 It may be useful to bind this variable locally around a call
4014 to `x-get-resource'. See also the variable `x-resource-class'. */);
4015 Vx_resource_name = Qnil;
4017 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4018 doc: /* The class Emacs uses to look up X resources.
4019 `x-get-resource' uses this as the first component of the instance class
4020 when requesting resource values.
4022 Emacs initially sets `x-resource-class' to "Emacs".
4024 Setting this variable permanently is not a reasonable thing to do,
4025 but binding this variable locally around a call to `x-get-resource'
4026 is a reasonable practice. See also the variable `x-resource-name'. */);
4027 Vx_resource_class = build_string (EMACS_CLASS);
4028 #endif
4030 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4031 doc: /* Alist of default values for frame creation.
4032 These may be set in your init file, like this:
4033 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
4034 These override values given in window system configuration data,
4035 including X Windows' defaults database.
4036 For values specific to the first Emacs frame, see `initial-frame-alist'.
4037 For values specific to the separate minibuffer frame, see
4038 `minibuffer-frame-alist'.
4039 The `menu-bar-lines' element of the list controls whether new frames
4040 have menu bars; `menu-bar-mode' works by altering this element.
4041 Setting this variable does not affect existing frames, only new ones. */);
4042 Vdefault_frame_alist = Qnil;
4044 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4045 doc: /* Default position of scroll bars on this window-system. */);
4046 #ifdef HAVE_WINDOW_SYSTEM
4047 #if defined(HAVE_NTGUI) || defined(MAC_OS)
4048 /* MS-Windows has scroll bars on the right by default. */
4049 Vdefault_frame_scroll_bars = Qright;
4050 #else
4051 Vdefault_frame_scroll_bars = Qleft;
4052 #endif
4053 #else
4054 Vdefault_frame_scroll_bars = Qnil;
4055 #endif
4057 Qinhibit_default_face_x_resources
4058 = intern ("inhibit-default-face-x-resources");
4059 staticpro (&Qinhibit_default_face_x_resources);
4061 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
4062 doc: /* The initial frame-object, which represents Emacs's stdout. */);
4064 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
4065 doc: /* Non-nil if all of emacs is iconified and frame updates are not needed. */);
4066 Vemacs_iconified = Qnil;
4068 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4069 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4070 `mouse-position' calls this function, passing its usual return value as
4071 argument, and returns whatever this function returns.
4072 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4073 which need to do mouse handling at the Lisp level. */);
4074 Vmouse_position_function = Qnil;
4076 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4077 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4078 If the value is an integer, highlighting is only shown after moving the
4079 mouse, while keyboard input turns off the highlight even when the mouse
4080 is over the clickable text. However, the mouse shape still indicates
4081 when the mouse is over clickable text. */);
4082 Vmouse_highlight = Qt;
4084 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4085 doc: /* Functions to be run before deleting a frame.
4086 The functions are run with one arg, the frame to be deleted.
4087 See `delete-frame'. */);
4088 Vdelete_frame_functions = Qnil;
4090 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4091 doc: /* Minibufferless frames use this frame's minibuffer.
4093 Emacs cannot create minibufferless frames unless this is set to an
4094 appropriate surrogate.
4096 Emacs consults this variable only when creating minibufferless
4097 frames; once the frame is created, it sticks with its assigned
4098 minibuffer, no matter what this variable is set to. This means that
4099 this variable doesn't necessarily say anything meaningful about the
4100 current set of frames, or where the minibuffer is currently being
4101 displayed.
4103 This variable is local to the current terminal and cannot be buffer-local. */);
4105 staticpro (&Vframe_list);
4107 defsubr (&Sactive_minibuffer_window);
4108 defsubr (&Sframep);
4109 defsubr (&Sframe_live_p);
4110 defsubr (&Smake_terminal_frame);
4111 defsubr (&Shandle_switch_frame);
4112 defsubr (&Signore_event);
4113 defsubr (&Sselect_frame);
4114 defsubr (&Sselected_frame);
4115 defsubr (&Swindow_frame);
4116 defsubr (&Sframe_root_window);
4117 defsubr (&Sframe_first_window);
4118 defsubr (&Sframe_selected_window);
4119 defsubr (&Sset_frame_selected_window);
4120 defsubr (&Sframe_list);
4121 defsubr (&Snext_frame);
4122 defsubr (&Sprevious_frame);
4123 defsubr (&Sdelete_frame);
4124 defsubr (&Smouse_position);
4125 defsubr (&Smouse_pixel_position);
4126 defsubr (&Sset_mouse_position);
4127 defsubr (&Sset_mouse_pixel_position);
4128 #if 0
4129 defsubr (&Sframe_configuration);
4130 defsubr (&Srestore_frame_configuration);
4131 #endif
4132 defsubr (&Smake_frame_visible);
4133 defsubr (&Smake_frame_invisible);
4134 defsubr (&Siconify_frame);
4135 defsubr (&Sframe_visible_p);
4136 defsubr (&Svisible_frame_list);
4137 defsubr (&Sraise_frame);
4138 defsubr (&Slower_frame);
4139 defsubr (&Sredirect_frame_focus);
4140 defsubr (&Sframe_focus);
4141 defsubr (&Sframe_parameters);
4142 defsubr (&Sframe_parameter);
4143 defsubr (&Smodify_frame_parameters);
4144 defsubr (&Sframe_char_height);
4145 defsubr (&Sframe_char_width);
4146 defsubr (&Sframe_pixel_height);
4147 defsubr (&Sframe_pixel_width);
4148 defsubr (&Sset_frame_height);
4149 defsubr (&Sset_frame_width);
4150 defsubr (&Sset_frame_size);
4151 defsubr (&Sset_frame_position);
4153 #ifdef HAVE_WINDOW_SYSTEM
4154 defsubr (&Sx_get_resource);
4155 defsubr (&Sx_parse_geometry);
4156 #endif
4160 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4161 (do not change this comment) */