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