(pop-up-frames): Add choice graphic-only.
[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);
05eb7cdc 2865 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
dc6f92b8 2866
5af5757b
KS
2867 *top_pos = f->top_pos;
2868 *left_pos = f->left_pos;
3df1fda2 2869
5af5757b 2870 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
972f4259
KS
2871 {
2872 int ph;
2873
a0fe6cca 2874 ph = x_display_pixel_height (dpyinfo);
5af5757b
KS
2875 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
2876 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
2877 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
972f4259
KS
2878 *top_pos = 0;
2879 }
dc6f92b8 2880
5af5757b 2881 if (f->want_fullscreen & FULLSCREEN_WIDTH)
972f4259
KS
2882 {
2883 int pw;
2884
a0fe6cca 2885 pw = x_display_pixel_width (dpyinfo);
5af5757b
KS
2886 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
2887 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
2888 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
972f4259
KS
2889 *left_pos = 0;
2890 }
dc6f92b8 2891
972f4259
KS
2892 *width = newwidth;
2893 *height = newheight;
2894}
dc6f92b8 2895
beb0bc36 2896
972f4259
KS
2897/* Change the parameters of frame F as specified by ALIST.
2898 If a parameter is not specially recognized, do nothing special;
2899 otherwise call the `x_set_...' function for that parameter.
2900 Except for certain geometry properties, always call store_frame_param
2901 to store the new value in the parameter alist. */
14ff1ee0 2902
972f4259
KS
2903void
2904x_set_frame_parameters (f, alist)
2905 FRAME_PTR f;
2906 Lisp_Object alist;
2907{
2908 Lisp_Object tail;
dc6f92b8 2909
972f4259
KS
2910 /* If both of these parameters are present, it's more efficient to
2911 set them both at once. So we wait until we've looked at the
2912 entire list before we set them. */
2913 int width, height;
3df1fda2 2914
972f4259
KS
2915 /* Same here. */
2916 Lisp_Object left, top;
2917
2918 /* Same with these. */
2919 Lisp_Object icon_left, icon_top;
2920
2921 /* Record in these vectors all the parms specified. */
2922 Lisp_Object *parms;
2923 Lisp_Object *values;
2924 int i, p;
2925 int left_no_change = 0, top_no_change = 0;
2926 int icon_left_no_change = 0, icon_top_no_change = 0;
2927 int fullscreen_is_being_set = 0;
2928
2929 struct gcpro gcpro1, gcpro2;
2930
2931 i = 0;
2932 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
2933 i++;
2934
2935 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2936 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
2937
2938 /* Extract parm names and values into those vectors. */
2939
2940 i = 0;
d7b10f4c 2941 for (tail = alist; CONSP (tail); tail = XCDR (tail))
972f4259
KS
2942 {
2943 Lisp_Object elt;
2944
d7b10f4c 2945 elt = XCAR (tail);
972f4259
KS
2946 parms[i] = Fcar (elt);
2947 values[i] = Fcdr (elt);
2948 i++;
2949 }
2950 /* TAIL and ALIST are not used again below here. */
2951 alist = tail = Qnil;
2952
2953 GCPRO2 (*parms, *values);
2954 gcpro1.nvars = i;
2955 gcpro2.nvars = i;
2956
2957 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
2958 because their values appear in VALUES and strings are not valid. */
2959 top = left = Qunbound;
2960 icon_left = icon_top = Qunbound;
2961
2962 /* Provide default values for HEIGHT and WIDTH. */
5af5757b
KS
2963 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
2964 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
972f4259
KS
2965
2966 /* Process foreground_color and background_color before anything else.
2967 They are independent of other properties, but other properties (e.g.,
2968 cursor_color) are dependent upon them. */
2969 /* Process default font as well, since fringe widths depends on it. */
2970 /* Also, process fullscreen, width and height depend upon that */
2971 for (p = 0; p < i; p++)
2972 {
2973 Lisp_Object prop, val;
2974
2975 prop = parms[p];
2976 val = values[p];
2977 if (EQ (prop, Qforeground_color)
2978 || EQ (prop, Qbackground_color)
2979 || EQ (prop, Qfont)
2980 || EQ (prop, Qfullscreen))
2981 {
2982 register Lisp_Object param_index, old_value;
2983
2984 old_value = get_frame_param (f, prop);
2985 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
972f4259
KS
2986 if (NILP (Fequal (val, old_value)))
2987 {
2988 store_frame_param (f, prop, val);
2989
2990 param_index = Fget (prop, Qx_frame_parameter);
2991 if (NATNUMP (param_index)
2992 && (XFASTINT (param_index)
2993 < sizeof (frame_parms)/sizeof (frame_parms[0]))
fa971ac3
KL
2994 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
2995 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
972f4259
KS
2996 }
2997 }
2998 }
2999
3000 /* Now process them in reverse of specified order. */
3001 for (i--; i >= 0; i--)
3002 {
3003 Lisp_Object prop, val;
3004
3005 prop = parms[i];
3006 val = values[i];
3007
629c715d 3008 if (EQ (prop, Qwidth) && NATNUMP (val))
972f4259 3009 width = XFASTINT (val);
629c715d 3010 else if (EQ (prop, Qheight) && NATNUMP (val))
972f4259
KS
3011 height = XFASTINT (val);
3012 else if (EQ (prop, Qtop))
3013 top = val;
3014 else if (EQ (prop, Qleft))
3015 left = val;
3016 else if (EQ (prop, Qicon_top))
3017 icon_top = val;
3018 else if (EQ (prop, Qicon_left))
3019 icon_left = val;
3020 else if (EQ (prop, Qforeground_color)
3021 || EQ (prop, Qbackground_color)
3022 || EQ (prop, Qfont)
3023 || EQ (prop, Qfullscreen))
3024 /* Processed above. */
3025 continue;
3026 else
3027 {
3028 register Lisp_Object param_index, old_value;
3029
3030 old_value = get_frame_param (f, prop);
3031
3032 store_frame_param (f, prop, val);
3033
3034 param_index = Fget (prop, Qx_frame_parameter);
3035 if (NATNUMP (param_index)
3036 && (XFASTINT (param_index)
3037 < sizeof (frame_parms)/sizeof (frame_parms[0]))
fa971ac3
KL
3038 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
3039 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
972f4259
KS
3040 }
3041 }
3042
3043 /* Don't die if just one of these was set. */
3044 if (EQ (left, Qunbound))
3045 {
3046 left_no_change = 1;
5af5757b
KS
3047 if (f->left_pos < 0)
3048 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
972f4259 3049 else
5af5757b 3050 XSETINT (left, f->left_pos);
972f4259
KS
3051 }
3052 if (EQ (top, Qunbound))
3053 {
3054 top_no_change = 1;
5af5757b
KS
3055 if (f->top_pos < 0)
3056 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
972f4259 3057 else
5af5757b 3058 XSETINT (top, f->top_pos);
972f4259
KS
3059 }
3060
3061 /* If one of the icon positions was not set, preserve or default it. */
3062 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
3063 {
3064 icon_left_no_change = 1;
3065 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
3066 if (NILP (icon_left))
3067 XSETINT (icon_left, 0);
3068 }
3069 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
3070 {
3071 icon_top_no_change = 1;
3072 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
3073 if (NILP (icon_top))
3074 XSETINT (icon_top, 0);
3075 }
3076
972f4259
KS
3077 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
3078 {
3079 /* If the frame is visible already and the fullscreen parameter is
3080 being set, it is too late to set WM manager hints to specify
3081 size and position.
3082 Here we first get the width, height and position that applies to
3083 fullscreen. We then move the frame to the appropriate
3084 position. Resize of the frame is taken care of in the code after
3085 this if-statement. */
3086 int new_left, new_top;
3087
3088 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
6b61353c
KH
3089 if (new_top != f->top_pos || new_left != f->left_pos)
3090 x_set_offset (f, new_left, new_top, 1);
972f4259 3091 }
972f4259
KS
3092
3093 /* Don't set these parameters unless they've been explicitly
3094 specified. The window might be mapped or resized while we're in
3095 this function, and we don't want to override that unless the lisp
3096 code has asked for it.
3097
3098 Don't set these parameters unless they actually differ from the
3099 window's current parameters; the window may not actually exist
3100 yet. */
3101 {
3102 Lisp_Object frame;
3103
3104 check_frame_size (f, &height, &width);
3105
3106 XSETFRAME (frame, f);
3107
5af5757b
KS
3108 if (width != FRAME_COLS (f)
3109 || height != FRAME_LINES (f)
3110 || f->new_text_lines || f->new_text_cols)
972f4259
KS
3111 Fset_frame_size (frame, make_number (width), make_number (height));
3112
3113 if ((!NILP (left) || !NILP (top))
3114 && ! (left_no_change && top_no_change)
5af5757b
KS
3115 && ! (NUMBERP (left) && XINT (left) == f->left_pos
3116 && NUMBERP (top) && XINT (top) == f->top_pos))
972f4259
KS
3117 {
3118 int leftpos = 0;
3119 int toppos = 0;
3120
3121 /* Record the signs. */
5af5757b 3122 f->size_hint_flags &= ~ (XNegative | YNegative);
972f4259 3123 if (EQ (left, Qminus))
5af5757b 3124 f->size_hint_flags |= XNegative;
972f4259
KS
3125 else if (INTEGERP (left))
3126 {
3127 leftpos = XINT (left);
3128 if (leftpos < 0)
5af5757b 3129 f->size_hint_flags |= XNegative;
972f4259
KS
3130 }
3131 else if (CONSP (left) && EQ (XCAR (left), Qminus)
3132 && CONSP (XCDR (left))
3133 && INTEGERP (XCAR (XCDR (left))))
3134 {
3135 leftpos = - XINT (XCAR (XCDR (left)));
5af5757b 3136 f->size_hint_flags |= XNegative;
972f4259
KS
3137 }
3138 else if (CONSP (left) && EQ (XCAR (left), Qplus)
3139 && CONSP (XCDR (left))
3140 && INTEGERP (XCAR (XCDR (left))))
3141 {
3142 leftpos = XINT (XCAR (XCDR (left)));
3143 }
3144
3145 if (EQ (top, Qminus))
5af5757b 3146 f->size_hint_flags |= YNegative;
972f4259
KS
3147 else if (INTEGERP (top))
3148 {
3149 toppos = XINT (top);
3150 if (toppos < 0)
5af5757b 3151 f->size_hint_flags |= YNegative;
972f4259
KS
3152 }
3153 else if (CONSP (top) && EQ (XCAR (top), Qminus)
3154 && CONSP (XCDR (top))
3155 && INTEGERP (XCAR (XCDR (top))))
3156 {
3157 toppos = - XINT (XCAR (XCDR (top)));
5af5757b 3158 f->size_hint_flags |= YNegative;
972f4259
KS
3159 }
3160 else if (CONSP (top) && EQ (XCAR (top), Qplus)
3161 && CONSP (XCDR (top))
3162 && INTEGERP (XCAR (XCDR (top))))
3163 {
3164 toppos = XINT (XCAR (XCDR (top)));
3165 }
3166
3167
3168 /* Store the numeric value of the position. */
5af5757b
KS
3169 f->top_pos = toppos;
3170 f->left_pos = leftpos;
972f4259 3171
5af5757b 3172 f->win_gravity = NorthWestGravity;
972f4259
KS
3173
3174 /* Actually set that position, and convert to absolute. */
3175 x_set_offset (f, leftpos, toppos, -1);
3176 }
3177
3178 if ((!NILP (icon_left) || !NILP (icon_top))
3179 && ! (icon_left_no_change && icon_top_no_change))
3180 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
3181 }
3182
3183 UNGCPRO;
3184}
3185
3186
3187/* Insert a description of internally-recorded parameters of frame X
3188 into the parameter alist *ALISTPTR that is to be given to the user.
3189 Only parameters that are specific to the X window system
3190 and whose values are not correctly recorded in the frame's
3191 param_alist need to be considered here. */
3192
3193void
3194x_report_frame_params (f, alistptr)
3195 struct frame *f;
3196 Lisp_Object *alistptr;
3197{
3198 char buf[16];
3199 Lisp_Object tem;
3200
3201 /* Represent negative positions (off the top or left screen edge)
3202 in a way that Fmodify_frame_parameters will understand correctly. */
5af5757b
KS
3203 XSETINT (tem, f->left_pos);
3204 if (f->left_pos >= 0)
972f4259
KS
3205 store_in_alist (alistptr, Qleft, tem);
3206 else
3207 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
3208
5af5757b
KS
3209 XSETINT (tem, f->top_pos);
3210 if (f->top_pos >= 0)
972f4259
KS
3211 store_in_alist (alistptr, Qtop, tem);
3212 else
3213 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
3214
3215 store_in_alist (alistptr, Qborder_width,
5af5757b 3216 make_number (f->border_width));
972f4259 3217 store_in_alist (alistptr, Qinternal_border_width,
5af5757b 3218 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
972f4259 3219 store_in_alist (alistptr, Qleft_fringe,
5af5757b 3220 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
972f4259 3221 store_in_alist (alistptr, Qright_fringe,
5af5757b 3222 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
972f4259
KS
3223 store_in_alist (alistptr, Qscroll_bar_width,
3224 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3225 ? make_number (0)
5af5757b
KS
3226 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
3227 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
972f4259
KS
3228 /* nil means "use default width"
3229 for non-toolkit scroll bar.
3230 ruler-mode.el depends on this. */
3231 : Qnil));
3232 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
3233 store_in_alist (alistptr, Qwindow_id,
3234 build_string (buf));
3235#ifdef HAVE_X_WINDOWS
3236#ifdef USE_X_TOOLKIT
3237 /* Tooltip frame may not have this widget. */
3238 if (FRAME_X_OUTPUT (f)->widget)
3239#endif
3240 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
3241 store_in_alist (alistptr, Qouter_window_id,
3242 build_string (buf));
3243#endif
3244 store_in_alist (alistptr, Qicon_name, f->icon_name);
3245 FRAME_SAMPLE_VISIBILITY (f);
3246 store_in_alist (alistptr, Qvisibility,
3247 (FRAME_VISIBLE_P (f) ? Qt
3248 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
3249 store_in_alist (alistptr, Qdisplay,
3250 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
3251
3252 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
3253 tem = Qnil;
3254 else
3255 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
5839d7e8 3256 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
972f4259
KS
3257 store_in_alist (alistptr, Qparent_id, tem);
3258}
3259
3260
3261/* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
3262 the previous value of that parameter, NEW_VALUE is the new value. */
3263
3264void
3265x_set_fullscreen (f, new_value, old_value)
3266 struct frame *f;
3267 Lisp_Object new_value, old_value;
3268{
972f4259 3269 if (NILP (new_value))
5af5757b 3270 f->want_fullscreen = FULLSCREEN_NONE;
972f4259 3271 else if (EQ (new_value, Qfullboth))
5af5757b 3272 f->want_fullscreen = FULLSCREEN_BOTH;
972f4259 3273 else if (EQ (new_value, Qfullwidth))
5af5757b 3274 f->want_fullscreen = FULLSCREEN_WIDTH;
972f4259 3275 else if (EQ (new_value, Qfullheight))
5af5757b 3276 f->want_fullscreen = FULLSCREEN_HEIGHT;
d761dd42 3277
a3547743 3278 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
974b73e8 3279 FRAME_TERMINAL (f)->fullscreen_hook (f);
972f4259
KS
3280}
3281
3282
3283/* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
3284 the previous value of that parameter, NEW_VALUE is the new value. */
3285
3286void
3287x_set_line_spacing (f, new_value, old_value)
3288 struct frame *f;
3289 Lisp_Object new_value, old_value;
3290{
3291 if (NILP (new_value))
3292 f->extra_line_spacing = 0;
3293 else if (NATNUMP (new_value))
3294 f->extra_line_spacing = XFASTINT (new_value);
3295 else
9dc95187 3296 signal_error ("Invalid line-spacing", new_value);
972f4259
KS
3297 if (FRAME_VISIBLE_P (f))
3298 redraw_frame (f);
3299}
3300
3301
3302/* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
3303 the previous value of that parameter, NEW_VALUE is the new value. */
3304
3305void
3306x_set_screen_gamma (f, new_value, old_value)
3307 struct frame *f;
3308 Lisp_Object new_value, old_value;
3309{
05fc2ef7
CY
3310 Lisp_Object bgcolor;
3311
972f4259
KS
3312 if (NILP (new_value))
3313 f->gamma = 0;
3314 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
05fc2ef7
CY
3315 /* The value 0.4545 is the normal viewing gamma. */
3316 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
972f4259 3317 else
9dc95187 3318 signal_error ("Invalid screen-gamma", new_value);
972f4259 3319
05fc2ef7
CY
3320 /* Apply the new gamma value to the frame background. */
3321 bgcolor = Fassq (Qbackground_color, f->param_alist);
3322 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
3323 {
3324 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
3325 if (NATNUMP (index)
3326 && (XFASTINT (index)
3327 < sizeof (frame_parms)/sizeof (frame_parms[0]))
6baa22c1
KL
3328 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3329 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
3330 (f, bgcolor, Qnil);
05fc2ef7
CY
3331 }
3332
3333 Fclear_face_cache (Qnil);
972f4259
KS
3334}
3335
3336
3337void
3338x_set_font (f, arg, oldval)
3339 struct frame *f;
3340 Lisp_Object arg, oldval;
3341{
972f4259 3342 Lisp_Object frame;
e0c8ad78
KH
3343 int fontset = -1;
3344 Lisp_Object font_object;
972f4259 3345
178377e1 3346 /* Set the frame parameter back to the old value because we may
e0c8ad78
KH
3347 fail to use ARG as the new parameter value. */
3348 store_frame_param (f, Qfont, oldval);
0169d360 3349
e0c8ad78
KH
3350 /* ARG is a fontset name, a font name, or a font object.
3351 In the last case, this function never fail. */
3352 if (STRINGP (arg))
3353 {
3354 fontset = fs_query_fontset (arg, 0);
3355 if (fontset < 0)
0169d360 3356 {
e0c8ad78
KH
3357 font_object = font_open_by_name (f, SDATA (arg));
3358 if (NILP (font_object))
3359 error ("Font `%s' is not defined", SDATA (arg));
3360 arg = AREF (font_object, FONT_NAME_INDEX);
0169d360 3361 }
e0c8ad78
KH
3362 else if (fontset > 0)
3363 {
3364 Lisp_Object ascii_font = fontset_ascii (fontset);
0169d360 3365
e0c8ad78
KH
3366 font_object = font_open_by_name (f, SDATA (ascii_font));
3367 if (NILP (font_object))
3368 error ("Font `%s' is not defined", SDATA (arg));
3369 arg = fontset_name (fontset);
3370 }
0169d360 3371 else
e0c8ad78 3372 error ("The default fontset can't be used for a frame font");
0169d360 3373 }
e0c8ad78 3374 else if (FONT_OBJECT_P (arg))
698ca23e 3375 {
e0c8ad78
KH
3376 font_object = arg;
3377 /* This is store the XLFD font name in the frame parameter for
3378 backward compatiblity. We should store the font-object
3379 itself in the future. */
3380 arg = AREF (font_object, FONT_NAME_INDEX);
698ca23e 3381 }
e0c8ad78
KH
3382 else
3383 signal_error ("Invalid font", arg);
972f4259 3384
e0c8ad78
KH
3385 if (! NILP (Fequal (font_object, oldval)))
3386 return;
3387 x_new_font (f, font_object, fontset);
3388 store_frame_param (f, Qfont, arg);
3389 /* Recalculate toolbar height. */
3390 f->n_tool_bar_rows = 0;
3391 /* Ensure we redraw it. */
3392 clear_current_matrices (f);
ca03f883 3393
e0c8ad78 3394 recompute_basic_faces (f);
972f4259
KS
3395
3396 do_pending_window_change (0);
3397
a6f75881
CY
3398 /* We used to call face-set-after-frame-default here, but it leads to
3399 recursive calls (since that function can set the `default' face's
3400 font which in turns changes the frame's `font' parameter).
3401 Also I don't know what this call is meant to do, but it seems the
3402 wrong way to do it anyway (it does a lot more work than what seems
3403 reasonable in response to a change to `font'). */
972f4259
KS
3404}
3405
3406
1a356571
KH
3407void
3408x_set_font_backend (f, new_value, old_value)
3409 struct frame *f;
3410 Lisp_Object new_value, old_value;
3411{
1a356571
KH
3412 if (! NILP (new_value)
3413 && !CONSP (new_value))
3414 {
3415 char *p0, *p1;
3416
3417 CHECK_STRING (new_value);
3418 p0 = p1 = SDATA (new_value);
3419 new_value = Qnil;
3420 while (*p0)
3421 {
22e64f7c 3422 while (*p1 && ! isspace (*p1) && *p1 != ',') p1++;
1a356571
KH
3423 if (p0 < p1)
3424 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
3425 new_value);
3426 if (*p1)
22e64f7c
KH
3427 {
3428 int c;
3429
3430 while ((c = *++p1) && isspace (c));
3431 }
1a356571
KH
3432 p0 = p1;
3433 }
8fb9e675
KH
3434 new_value = Fnreverse (new_value);
3435 }
3436
3437 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
3438 return;
3439
e0c8ad78 3440 if (FRAME_FONT (f))
dfdf55c0 3441 free_all_realized_faces (Qnil);
1a356571 3442
dfdf55c0 3443 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
8fb9e675 3444 if (NILP (new_value))
dfdf55c0
KH
3445 {
3446 if (NILP (old_value))
3447 error ("No font backend available");
3448 font_update_drivers (f, old_value);
3449 error ("None of specified font backends are available");
3450 }
8fb9e675
KH
3451 store_frame_param (f, Qfont_backend, new_value);
3452
e0c8ad78 3453 if (FRAME_FONT (f))
8fb9e675
KH
3454 {
3455 Lisp_Object frame;
3456
3457 XSETFRAME (frame, f);
3458 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
3459 ++face_change_count;
3460 ++windows_or_buffers_changed;
3461 }
1a356571 3462}
1a356571
KH
3463
3464
972f4259
KS
3465void
3466x_set_fringe_width (f, new_value, old_value)
3467 struct frame *f;
3468 Lisp_Object new_value, old_value;
3469{
3470 compute_fringe_widths (f, 1);
3471}
3472
3473void
3474x_set_border_width (f, arg, oldval)
3475 struct frame *f;
3476 Lisp_Object arg, oldval;
3477{
3478 CHECK_NUMBER (arg);
3479
5af5757b 3480 if (XINT (arg) == f->border_width)
972f4259
KS
3481 return;
3482
972f4259 3483 if (FRAME_X_WINDOW (f) != 0)
dac85f4b 3484 error ("Cannot change the border width of a frame");
972f4259 3485
5af5757b 3486 f->border_width = XINT (arg);
972f4259
KS
3487}
3488
3489void
3490x_set_internal_border_width (f, arg, oldval)
3491 struct frame *f;
3492 Lisp_Object arg, oldval;
3493{
5af5757b 3494 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
972f4259
KS
3495
3496 CHECK_NUMBER (arg);
5af5757b
KS
3497 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
3498 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
3499 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
972f4259
KS
3500
3501#ifdef USE_X_TOOLKIT
3502 if (FRAME_X_OUTPUT (f)->edit_widget)
3503 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
3504#endif
3505
5af5757b 3506 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
972f4259
KS
3507 return;
3508
3509 if (FRAME_X_WINDOW (f) != 0)
3510 {
5af5757b 3511 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3512 SET_FRAME_GARBAGED (f);
3513 do_pending_window_change (0);
3514 }
3515 else
3516 SET_FRAME_GARBAGED (f);
3517}
3518
3519void
3520x_set_visibility (f, value, oldval)
3521 struct frame *f;
3522 Lisp_Object value, oldval;
3523{
3524 Lisp_Object frame;
3525 XSETFRAME (frame, f);
3526
3527 if (NILP (value))
3528 Fmake_frame_invisible (frame, Qt);
3529 else if (EQ (value, Qicon))
3530 Ficonify_frame (frame);
3531 else
3532 Fmake_frame_visible (frame);
3533}
3534
3535void
3536x_set_autoraise (f, arg, oldval)
3537 struct frame *f;
3538 Lisp_Object arg, oldval;
3539{
3540 f->auto_raise = !EQ (Qnil, arg);
3541}
3542
3543void
3544x_set_autolower (f, arg, oldval)
3545 struct frame *f;
3546 Lisp_Object arg, oldval;
3547{
3548 f->auto_lower = !EQ (Qnil, arg);
3549}
3550
3551void
3552x_set_unsplittable (f, arg, oldval)
3553 struct frame *f;
3554 Lisp_Object arg, oldval;
3555{
3556 f->no_split = !NILP (arg);
3557}
3558
3559void
3560x_set_vertical_scroll_bars (f, arg, oldval)
3561 struct frame *f;
3562 Lisp_Object arg, oldval;
3563{
3564 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3565 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
3566 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3567 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
3568 {
3569 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
3570 = (NILP (arg)
3571 ? vertical_scroll_bar_none
3572 : EQ (Qleft, arg)
3573 ? vertical_scroll_bar_left
3574 : EQ (Qright, arg)
3575 ? vertical_scroll_bar_right
6b61353c
KH
3576 : EQ (Qleft, Vdefault_frame_scroll_bars)
3577 ? vertical_scroll_bar_left
3578 : EQ (Qright, Vdefault_frame_scroll_bars)
3579 ? vertical_scroll_bar_right
3580 : vertical_scroll_bar_none);
972f4259
KS
3581
3582 /* We set this parameter before creating the X window for the
3583 frame, so we can get the geometry right from the start.
3584 However, if the window hasn't been created yet, we shouldn't
3585 call x_set_window_size. */
3586 if (FRAME_X_WINDOW (f))
5af5757b 3587 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3588 do_pending_window_change (0);
3589 }
3590}
3591
3592void
3593x_set_scroll_bar_width (f, arg, oldval)
3594 struct frame *f;
3595 Lisp_Object arg, oldval;
3596{
5af5757b 3597 int wid = FRAME_COLUMN_WIDTH (f);
972f4259
KS
3598
3599 if (NILP (arg))
3600 {
3601 x_set_scroll_bar_default_width (f);
3602
3603 if (FRAME_X_WINDOW (f))
5af5757b 3604 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3605 do_pending_window_change (0);
3606 }
3607 else if (INTEGERP (arg) && XINT (arg) > 0
5af5757b 3608 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
972f4259
KS
3609 {
3610 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
3611 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
3612
5af5757b
KS
3613 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
3614 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
972f4259 3615 if (FRAME_X_WINDOW (f))
5af5757b 3616 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
972f4259
KS
3617 do_pending_window_change (0);
3618 }
3619
5af5757b 3620 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
972f4259
KS
3621 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
3622 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
3623}
3624
3625
3626
3627/* Return non-nil if frame F wants a bitmap icon. */
3628
3629Lisp_Object
3630x_icon_type (f)
3631 FRAME_PTR f;
3632{
3633 Lisp_Object tem;
3634
3635 tem = assq_no_quit (Qicon_type, f->param_alist);
3636 if (CONSP (tem))
3637 return XCDR (tem);
3638 else
3639 return Qnil;
3640}
3641
0a708637
GM
3642void
3643x_set_alpha (f, arg, oldval)
3644 struct frame *f;
3645 Lisp_Object arg, oldval;
3646{
3647 double alpha = 1.0;
3648 double newval[2];
3649 int i, ialpha;
3650 Lisp_Object item;
3651
3652 for (i = 0; i < 2; i++)
3653 {
3654 newval[i] = 1.0;
3655 if (CONSP (arg))
3656 {
3657 item = CAR (arg);
3658 arg = CDR (arg);
3659 }
3660 else
1fd877d6 3661 item = arg;
0a708637
GM
3662
3663 if (! NILP (item))
3664 {
3665 if (FLOATP (item))
3666 {
3667 alpha = XFLOAT_DATA (item);
3668 if (alpha < 0.0 || 1.0 < alpha)
3669 args_out_of_range (make_float (0.0), make_float (1.0));
3670 }
3671 else if (INTEGERP (item))
3672 {
3673 ialpha = XINT (item);
3674 if (ialpha < 0 || 100 < ialpha)
3675 args_out_of_range (make_number (0), make_number (100));
3676 else
3677 alpha = ialpha / 100.0;
3678 }
3679 else
3680 wrong_type_argument (Qnumberp, item);
3681 }
3682 newval[i] = alpha;
3683 }
3684
3685 for (i = 0; i < 2; i++)
3686 f->alpha[i] = newval[i];
3687
8b61a891 3688#if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
0a708637
GM
3689 BLOCK_INPUT;
3690 x_set_frame_alpha (f);
3691 UNBLOCK_INPUT;
3692#endif
3693
3694 return;
3695}
3696
972f4259
KS
3697\f
3698/* Subroutines of creating an X frame. */
3699
3700/* Make sure that Vx_resource_name is set to a reasonable value.
3701 Fix it up, or set it to `emacs' if it is too hopeless. */
3702
3703void
3704validate_x_resource_name ()
3705{
3706 int len = 0;
3707 /* Number of valid characters in the resource name. */
3708 int good_count = 0;
3709 /* Number of invalid characters in the resource name. */
3710 int bad_count = 0;
3711 Lisp_Object new;
3712 int i;
3713
3714 if (!STRINGP (Vx_resource_class))
3715 Vx_resource_class = build_string (EMACS_CLASS);
3716
3717 if (STRINGP (Vx_resource_name))
3718 {
3719 unsigned char *p = SDATA (Vx_resource_name);
3720 int i;
3721
3722 len = SBYTES (Vx_resource_name);
3723
3724 /* Only letters, digits, - and _ are valid in resource names.
3725 Count the valid characters and count the invalid ones. */
3726 for (i = 0; i < len; i++)
3727 {
3728 int c = p[i];
3729 if (! ((c >= 'a' && c <= 'z')
3730 || (c >= 'A' && c <= 'Z')
3731 || (c >= '0' && c <= '9')
3732 || c == '-' || c == '_'))
3733 bad_count++;
3734 else
3735 good_count++;
3736 }
3737 }
3738 else
3739 /* Not a string => completely invalid. */
3740 bad_count = 5, good_count = 0;
3741
3742 /* If name is valid already, return. */
3743 if (bad_count == 0)
3744 return;
3745
3746 /* If name is entirely invalid, or nearly so, use `emacs'. */
3747 if (good_count == 0
3748 || (good_count == 1 && bad_count > 0))
3749 {
3750 Vx_resource_name = build_string ("emacs");
3751 return;
3752 }
3753
3754 /* Name is partly valid. Copy it and replace the invalid characters
3755 with underscores. */
3756
3757 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3758
3759 for (i = 0; i < len; i++)
3760 {
3761 int c = SREF (new, i);
3762 if (! ((c >= 'a' && c <= 'z')
3763 || (c >= 'A' && c <= 'Z')
3764 || (c >= '0' && c <= '9')
3765 || c == '-' || c == '_'))
3766 SSET (new, i, '_');
3767 }
3768}
3769
3770
3771extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
3772extern Display_Info *check_x_display_info P_ ((Lisp_Object));
3773
3774
b5251fe7 3775/* Get specified attribute from resource database RDB.
972f4259
KS
3776 See Fx_get_resource below for other parameters. */
3777
3778static Lisp_Object
3779xrdb_get_resource (rdb, attribute, class, component, subclass)
3780 XrmDatabase rdb;
3781 Lisp_Object attribute, class, component, subclass;
3782{
3783 register char *value;
3784 char *name_key;
3785 char *class_key;
3786
3787 CHECK_STRING (attribute);
3788 CHECK_STRING (class);
3789
3790 if (!NILP (component))
3791 CHECK_STRING (component);
3792 if (!NILP (subclass))
3793 CHECK_STRING (subclass);
3794 if (NILP (component) != NILP (subclass))
3795 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3796
3797 validate_x_resource_name ();
3798
3799 /* Allocate space for the components, the dots which separate them,
3800 and the final '\0'. Make them big enough for the worst case. */
3801 name_key = (char *) alloca (SBYTES (Vx_resource_name)
3802 + (STRINGP (component)
3803 ? SBYTES (component) : 0)
3804 + SBYTES (attribute)
3805 + 3);
3806
3807 class_key = (char *) alloca (SBYTES (Vx_resource_class)
3808 + SBYTES (class)
3809 + (STRINGP (subclass)
3810 ? SBYTES (subclass) : 0)
3811 + 3);
3812
3813 /* Start with emacs.FRAMENAME for the name (the specific one)
3814 and with `Emacs' for the class key (the general one). */
3815 strcpy (name_key, SDATA (Vx_resource_name));
3816 strcpy (class_key, SDATA (Vx_resource_class));
3817
3818 strcat (class_key, ".");
3819 strcat (class_key, SDATA (class));
3820
3821 if (!NILP (component))
3822 {
3823 strcat (class_key, ".");
3824 strcat (class_key, SDATA (subclass));
3825
3826 strcat (name_key, ".");
3827 strcat (name_key, SDATA (component));
3828 }
3829
3830 strcat (name_key, ".");
3831 strcat (name_key, SDATA (attribute));
3832
3833 value = x_get_string_resource (rdb, name_key, class_key);
3834
3835 if (value != (char *) 0)
3836 return build_string (value);
3837 else
3838 return Qnil;
3839}
3840
3841
3842DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3843 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3844This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3845class, where INSTANCE is the name under which Emacs was invoked, or
3846the name specified by the `-name' or `-rn' command-line arguments.
3847
3848The optional arguments COMPONENT and SUBCLASS add to the key and the
3849class, respectively. You must specify both of them or neither.
3850If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3851and the class is `Emacs.CLASS.SUBCLASS'. */)
3852 (attribute, class, component, subclass)
3853 Lisp_Object attribute, class, component, subclass;
3854{
3855#ifdef HAVE_X_WINDOWS
3856 check_x ();
3857#endif
3858
3859 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
3860 attribute, class, component, subclass);
3861}
3862
3863/* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
3864
3865Lisp_Object
3866display_x_get_resource (dpyinfo, attribute, class, component, subclass)
a1702920 3867 Display_Info *dpyinfo;
972f4259
KS
3868 Lisp_Object attribute, class, component, subclass;
3869{
3870 return xrdb_get_resource (dpyinfo->xrdb,
3871 attribute, class, component, subclass);
3872}
3873
3874/* Used when C code wants a resource value. */
3875
3876char *
3877x_get_resource_string (attribute, class)
3878 char *attribute, *class;
3879{
3880 char *name_key;
3881 char *class_key;
3882 struct frame *sf = SELECTED_FRAME ();
3883
3884 /* Allocate space for the components, the dots which separate them,
3885 and the final '\0'. */
3886 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3887 + strlen (attribute) + 2);
3888 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3889 + strlen (class) + 2);
3890
3891 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
3892 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3893
3894 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3895 name_key, class_key);
3896}
3897
3898
3899/* Return the value of parameter PARAM.
3900
3901 First search ALIST, then Vdefault_frame_alist, then the X defaults
3902 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3903
3904 Convert the resource to the type specified by desired_type.
3905
3906 If no default is specified, return Qunbound. If you call
3907 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3908 and don't let it get stored in any Lisp-visible variables! */
3909
3910Lisp_Object
3911x_get_arg (dpyinfo, alist, param, attribute, class, type)
b5251fe7 3912 Display_Info *dpyinfo;
972f4259
KS
3913 Lisp_Object alist, param;
3914 char *attribute;
3915 char *class;
3916 enum resource_types type;
3917{
3918 register Lisp_Object tem;
3919
3920 tem = Fassq (param, alist);
d00368cf
RS
3921
3922 if (!NILP (tem))
3923 {
3924 /* If we find this parm in ALIST, clear it out
3925 so that it won't be "left over" at the end. */
58ec2913 3926#ifndef WINDOWSNT /* w32fns.c has not yet been changed to cope with this. */
5f694926 3927 Lisp_Object tail;
d00368cf 3928 XSETCAR (tem, Qnil);
5f694926
RS
3929 /* In case the parameter appears more than once in the alist,
3930 clear it out. */
3931 for (tail = alist; CONSP (tail); tail = XCDR (tail))
3932 if (CONSP (XCAR (tail))
3933 && EQ (XCAR (XCAR (tail)), param))
3934 XSETCAR (XCAR (tail), Qnil);
d00368cf
RS
3935#endif
3936 }
3937 else
972f4259 3938 tem = Fassq (param, Vdefault_frame_alist);
d00368cf
RS
3939
3940 /* If it wasn't specified in ALIST or the Lisp-level defaults,
3941 look in the X resources. */
972f4259
KS
3942 if (EQ (tem, Qnil))
3943 {
3944 if (attribute)
3945 {
3946 tem = display_x_get_resource (dpyinfo,
3947 build_string (attribute),
3948 build_string (class),
3949 Qnil, Qnil);
3950
3951 if (NILP (tem))
3952 return Qunbound;
3953
3954 switch (type)
3955 {
3956 case RES_TYPE_NUMBER:
3957 return make_number (atoi (SDATA (tem)));
3958
3959 case RES_TYPE_FLOAT:
3960 return make_float (atof (SDATA (tem)));
3961
3962 case RES_TYPE_BOOLEAN:
3963 tem = Fdowncase (tem);
3964 if (!strcmp (SDATA (tem), "on")
edfda783
AR
3965#ifdef HAVE_NS
3966 || !strcmp(SDATA(tem), "yes")
3967#endif
972f4259
KS
3968 || !strcmp (SDATA (tem), "true"))
3969 return Qt;
3970 else
3971 return Qnil;
3972
3973 case RES_TYPE_STRING:
3974 return tem;
3975
3976 case RES_TYPE_SYMBOL:
3977 /* As a special case, we map the values `true' and `on'
3978 to Qt, and `false' and `off' to Qnil. */
3979 {
3980 Lisp_Object lower;
3981 lower = Fdowncase (tem);
3982 if (!strcmp (SDATA (lower), "on")
edfda783
AR
3983#ifdef HAVE_NS
3984 || !strcmp(SDATA(lower), "yes")
3985#endif
972f4259
KS
3986 || !strcmp (SDATA (lower), "true"))
3987 return Qt;
3988 else if (!strcmp (SDATA (lower), "off")
edfda783
AR
3989#ifdef HAVE_NS
3990 || !strcmp(SDATA(lower), "no")
3991#endif
972f4259
KS
3992 || !strcmp (SDATA (lower), "false"))
3993 return Qnil;
3994 else
3995 return Fintern (tem, Qnil);
3996 }
3997
3998 default:
3999 abort ();
4000 }
4001 }
4002 else
4003 return Qunbound;
4004 }
4005 return Fcdr (tem);
4006}
4007
4008Lisp_Object
4009x_frame_get_arg (f, alist, param, attribute, class, type)
4010 struct frame *f;
4011 Lisp_Object alist, param;
4012 char *attribute;
4013 char *class;
4014 enum resource_types type;
4015{
4016 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
4017 alist, param, attribute, class, type);
4018}
4019
4020/* Like x_frame_get_arg, but also record the value in f->param_alist. */
4021
4022Lisp_Object
4023x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
4024 struct frame *f;
4025 Lisp_Object alist, param;
4026 char *attribute;
4027 char *class;
4028 enum resource_types type;
4029{
4030 Lisp_Object value;
4031
4032 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
4033 attribute, class, type);
edd1c685 4034 if (! NILP (value) && ! EQ (value, Qunbound))
972f4259
KS
4035 store_frame_param (f, param, value);
4036
4037 return value;
4038}
4039
4040
4041/* Record in frame F the specified or default value according to ALIST
4042 of the parameter named PROP (a Lisp symbol).
4043 If no value is specified for PROP, look for an X default for XPROP
4044 on the frame named NAME.
4045 If that is not found either, use the value DEFLT. */
4046
4047Lisp_Object
4048x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
4049 struct frame *f;
4050 Lisp_Object alist;
4051 Lisp_Object prop;
4052 Lisp_Object deflt;
4053 char *xprop;
4054 char *xclass;
4055 enum resource_types type;
4056{
4057 Lisp_Object tem;
4058
4059 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
4060 if (EQ (tem, Qunbound))
4061 tem = deflt;
4062 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
4063 return tem;
4064}
4065
4066
4067
4068\f
dc4db71c
CY
4069#ifdef HAVE_NS
4070
4071/* We used to define x-parse-geometry directly in ns-win.el, but that
4072 confused make-docfile: the documentation string in ns-win.el was
4073 used for x-parse-geometry even in non-NS builds.. */
4074
4075DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4076 doc: /* Parse a Nextstep-style geometry string STRING.
4077Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4078The properties returned may include `top', `left', `height', and `width'.
4079This works by calling `ns-parse-geometry'. */)
4080 (string)
4081 Lisp_Object string;
4082{
4083 call1 (Qns_parse_geometry, string);
4084}
4085
4086#else /* !HAVE_NS */
4087
972f4259
KS
4088DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
4089 doc: /* Parse an X-style geometry string STRING.
4090Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
4091The properties returned may include `top', `left', `height', and `width'.
4092The value of `left' or `top' may be an integer,
4093or a list (+ N) meaning N pixels relative to top/left corner,
4094or a list (- N) meaning -N pixels relative to bottom/right corner. */)
4095 (string)
4096 Lisp_Object string;
4097{
4098 int geometry, x, y;
4099 unsigned int width, height;
4100 Lisp_Object result;
4101
4102 CHECK_STRING (string);
4103
4104 geometry = XParseGeometry ((char *) SDATA (string),
4105 &x, &y, &width, &height);
972f4259
KS
4106 result = Qnil;
4107 if (geometry & XValue)
4108 {
4109 Lisp_Object element;
4110
4111 if (x >= 0 && (geometry & XNegative))
4112 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
4113 else if (x < 0 && ! (geometry & XNegative))
4114 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
4115 else
4116 element = Fcons (Qleft, make_number (x));
4117 result = Fcons (element, result);
4118 }
4119
4120 if (geometry & YValue)
4121 {
4122 Lisp_Object element;
4123
4124 if (y >= 0 && (geometry & YNegative))
4125 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
4126 else if (y < 0 && ! (geometry & YNegative))
4127 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
4128 else
4129 element = Fcons (Qtop, make_number (y));
4130 result = Fcons (element, result);
4131 }
4132
4133 if (geometry & WidthValue)
4134 result = Fcons (Fcons (Qwidth, make_number (width)), result);
4135 if (geometry & HeightValue)
4136 result = Fcons (Fcons (Qheight, make_number (height)), result);
4137
4138 return result;
4139}
dc4db71c
CY
4140#endif /* HAVE_NS */
4141
972f4259
KS
4142
4143/* Calculate the desired size and position of frame F.
4144 Return the flags saying which aspects were specified.
4145
4146 Also set the win_gravity and size_hint_flags of F.
4147
4148 Adjust height for toolbar if TOOLBAR_P is 1.
4149
4150 This function does not make the coordinates positive. */
4151
4152#define DEFAULT_ROWS 40
4153#define DEFAULT_COLS 80
4154
4155int
4156x_figure_window_size (f, parms, toolbar_p)
4157 struct frame *f;
4158 Lisp_Object parms;
4159 int toolbar_p;
4160{
4161 register Lisp_Object tem0, tem1, tem2;
4162 long window_prompting = 0;
4163 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4164
4165 /* Default values if we fall through.
4166 Actually, if that happens we should get
4167 window manager prompting. */
5af5757b
KS
4168 SET_FRAME_COLS (f, DEFAULT_COLS);
4169 FRAME_LINES (f) = DEFAULT_ROWS;
972f4259
KS
4170 /* Window managers expect that if program-specified
4171 positions are not (0,0), they're intentional, not defaults. */
5af5757b
KS
4172 f->top_pos = 0;
4173 f->left_pos = 0;
972f4259 4174
5af5757b 4175 /* Ensure that old new_text_cols and new_text_lines will not override the
972f4259
KS
4176 values set here. */
4177 /* ++KFS: This was specific to W32, but seems ok for all platforms */
5af5757b 4178 f->new_text_cols = f->new_text_lines = 0;
972f4259
KS
4179
4180 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
4181 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
4182 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
4183 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4184 {
4185 if (!EQ (tem0, Qunbound))
4186 {
4187 CHECK_NUMBER (tem0);
5af5757b 4188 FRAME_LINES (f) = XINT (tem0);
972f4259
KS
4189 }
4190 if (!EQ (tem1, Qunbound))
4191 {
4192 CHECK_NUMBER (tem1);
5af5757b 4193 SET_FRAME_COLS (f, XINT (tem1));
972f4259
KS
4194 }
4195 if (!NILP (tem2) && !EQ (tem2, Qunbound))
4196 window_prompting |= USSize;
4197 else
4198 window_prompting |= PSize;
4199 }
4200
5af5757b
KS
4201 f->scroll_bar_actual_width
4202 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
972f4259
KS
4203
4204 /* This used to be done _before_ calling x_figure_window_size, but
4205 since the height is reset here, this was really a no-op. I
4206 assume that moving it here does what Gerd intended (although he
4207 no longer can remember what that was... ++KFS, 2003-03-25. */
4208
4209 /* Add the tool-bar height to the initial frame height so that the
4210 user gets a text display area of the size he specified with -g or
4211 via .Xdefaults. Later changes of the tool-bar height don't
4212 change the frame size. This is done so that users can create
4213 tall Emacs frames without having to guess how tall the tool-bar
4214 will get. */
4215 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
4216 {
4217 int margin, relief, bar_height;
4218
4219 relief = (tool_bar_button_relief >= 0
4220 ? tool_bar_button_relief
4221 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4222
4223 if (INTEGERP (Vtool_bar_button_margin)
4224 && XINT (Vtool_bar_button_margin) > 0)
4225 margin = XFASTINT (Vtool_bar_button_margin);
4226 else if (CONSP (Vtool_bar_button_margin)
4227 && INTEGERP (XCDR (Vtool_bar_button_margin))
4228 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4229 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4230 else
4231 margin = 0;
4232
4233 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
5af5757b 4234 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
972f4259
KS
4235 }
4236
4237 compute_fringe_widths (f, 0);
4238
5af5757b
KS
4239 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
4240 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
972f4259
KS
4241
4242 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
4243 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
4244 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
4245 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
4246 {
4247 if (EQ (tem0, Qminus))
4248 {
5af5757b 4249 f->top_pos = 0;
972f4259
KS
4250 window_prompting |= YNegative;
4251 }
4252 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
4253 && CONSP (XCDR (tem0))
4254 && INTEGERP (XCAR (XCDR (tem0))))
4255 {
5af5757b 4256 f->top_pos = - XINT (XCAR (XCDR (tem0)));
972f4259
KS
4257 window_prompting |= YNegative;
4258 }
4259 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
4260 && CONSP (XCDR (tem0))
4261 && INTEGERP (XCAR (XCDR (tem0))))
4262 {
5af5757b 4263 f->top_pos = XINT (XCAR (XCDR (tem0)));
972f4259
KS
4264 }
4265 else if (EQ (tem0, Qunbound))
5af5757b 4266 f->top_pos = 0;
972f4259
KS
4267 else
4268 {
4269 CHECK_NUMBER (tem0);
5af5757b
KS
4270 f->top_pos = XINT (tem0);
4271 if (f->top_pos < 0)
972f4259
KS
4272 window_prompting |= YNegative;
4273 }
4274
4275 if (EQ (tem1, Qminus))
4276 {
5af5757b 4277 f->left_pos = 0;
972f4259
KS
4278 window_prompting |= XNegative;
4279 }
4280 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
4281 && CONSP (XCDR (tem1))
4282 && INTEGERP (XCAR (XCDR (tem1))))
4283 {
5af5757b 4284 f->left_pos = - XINT (XCAR (XCDR (tem1)));
972f4259
KS
4285 window_prompting |= XNegative;
4286 }
4287 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
4288 && CONSP (XCDR (tem1))
4289 && INTEGERP (XCAR (XCDR (tem1))))
4290 {
5af5757b 4291 f->left_pos = XINT (XCAR (XCDR (tem1)));
972f4259
KS
4292 }
4293 else if (EQ (tem1, Qunbound))
5af5757b 4294 f->left_pos = 0;
972f4259
KS
4295 else
4296 {
4297 CHECK_NUMBER (tem1);
5af5757b
KS
4298 f->left_pos = XINT (tem1);
4299 if (f->left_pos < 0)
972f4259
KS
4300 window_prompting |= XNegative;
4301 }
4302
4303 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
4304 window_prompting |= USPosition;
4305 else
4306 window_prompting |= PPosition;
4307 }
4308
5af5757b 4309 if (f->want_fullscreen != FULLSCREEN_NONE)
972f4259
KS
4310 {
4311 int left, top;
4312 int width, height;
4313
4314 /* It takes both for some WM:s to place it where we want */
7f6fd740 4315 window_prompting |= USPosition | PPosition;
972f4259 4316 x_fullscreen_adjust (f, &width, &height, &top, &left);
5af5757b
KS
4317 FRAME_COLS (f) = width;
4318 FRAME_LINES (f) = height;
4319 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
4320 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
4321 f->left_pos = left;
4322 f->top_pos = top;
972f4259
KS
4323 }
4324
4325 if (window_prompting & XNegative)
4326 {
4327 if (window_prompting & YNegative)
5af5757b 4328 f->win_gravity = SouthEastGravity;
972f4259 4329 else
5af5757b 4330 f->win_gravity = NorthEastGravity;
972f4259
KS
4331 }
4332 else
4333 {
4334 if (window_prompting & YNegative)
5af5757b 4335 f->win_gravity = SouthWestGravity;
972f4259 4336 else
5af5757b 4337 f->win_gravity = NorthWestGravity;
972f4259
KS
4338 }
4339
5af5757b 4340 f->size_hint_flags = window_prompting;
972f4259
KS
4341
4342 return window_prompting;
4343}
4344
4345
4346
4347#endif /* HAVE_WINDOW_SYSTEM */
4348
4349
4350\f
4351/***********************************************************************
4352 Initialization
4353 ***********************************************************************/
4354
4355void
4356syms_of_frame ()
4357{
4358 Qframep = intern ("framep");
4359 staticpro (&Qframep);
4360 Qframe_live_p = intern ("frame-live-p");
4361 staticpro (&Qframe_live_p);
5839d7e8
MR
4362 Qexplicit_name = intern ("explicit-name");
4363 staticpro (&Qexplicit_name);
972f4259
KS
4364 Qheight = intern ("height");
4365 staticpro (&Qheight);
4366 Qicon = intern ("icon");
4367 staticpro (&Qicon);
4368 Qminibuffer = intern ("minibuffer");
4369 staticpro (&Qminibuffer);
4370 Qmodeline = intern ("modeline");
4371 staticpro (&Qmodeline);
4372 Qonly = intern ("only");
4373 staticpro (&Qonly);
4374 Qwidth = intern ("width");
4375 staticpro (&Qwidth);
4376 Qgeometry = intern ("geometry");
4377 staticpro (&Qgeometry);
4378 Qicon_left = intern ("icon-left");
4379 staticpro (&Qicon_left);
4380 Qicon_top = intern ("icon-top");
4381 staticpro (&Qicon_top);
4382 Qleft = intern ("left");
4383 staticpro (&Qleft);
4384 Qright = intern ("right");
4385 staticpro (&Qright);
4386 Quser_position = intern ("user-position");
4387 staticpro (&Quser_position);
4388 Quser_size = intern ("user-size");
4389 staticpro (&Quser_size);
4390 Qwindow_id = intern ("window-id");
4391 staticpro (&Qwindow_id);
4392#ifdef HAVE_X_WINDOWS
4393 Qouter_window_id = intern ("outer-window-id");
4394 staticpro (&Qouter_window_id);
4395#endif
4396 Qparent_id = intern ("parent-id");
4397 staticpro (&Qparent_id);
4398 Qx = intern ("x");
4399 staticpro (&Qx);
4400 Qw32 = intern ("w32");
4401 staticpro (&Qw32);
4402 Qpc = intern ("pc");
4403 staticpro (&Qpc);
4404 Qmac = intern ("mac");
4405 staticpro (&Qmac);
edfda783
AR
4406 Qns = intern ("ns");
4407 staticpro (&Qns);
972f4259
KS
4408 Qvisible = intern ("visible");
4409 staticpro (&Qvisible);
4410 Qbuffer_predicate = intern ("buffer-predicate");
4411 staticpro (&Qbuffer_predicate);
4412 Qbuffer_list = intern ("buffer-list");
4413 staticpro (&Qbuffer_list);
a18b8cb5
KL
4414 Qburied_buffer_list = intern ("buried-buffer-list");
4415 staticpro (&Qburied_buffer_list);
972f4259
KS
4416 Qdisplay_type = intern ("display-type");
4417 staticpro (&Qdisplay_type);
4418 Qbackground_mode = intern ("background-mode");
4419 staticpro (&Qbackground_mode);
c53956fe
SM
4420 Qnoelisp = intern ("noelisp");
4421 staticpro (&Qnoelisp);
972f4259
KS
4422 Qtty_color_mode = intern ("tty-color-mode");
4423 staticpro (&Qtty_color_mode);
28d440ab
KL
4424 Qtty = intern ("tty");
4425 staticpro (&Qtty);
4426 Qtty_type = intern ("tty-type");
4427 staticpro (&Qtty_type);
972f4259
KS
4428
4429 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
4430 staticpro (&Qface_set_after_frame_default);
4431
4432 Qfullwidth = intern ("fullwidth");
4433 staticpro (&Qfullwidth);
4434 Qfullheight = intern ("fullheight");
4435 staticpro (&Qfullheight);
4436 Qfullboth = intern ("fullboth");
4437 staticpro (&Qfullboth);
4438 Qx_resource_name = intern ("x-resource-name");
4439 staticpro (&Qx_resource_name);
4440
4441 Qx_frame_parameter = intern ("x-frame-parameter");
4442 staticpro (&Qx_frame_parameter);
4443
6ed8eeff
KL
4444 Qterminal = intern ("terminal");
4445 staticpro (&Qterminal);
4446 Qterminal_live_p = intern ("terminal-live-p");
4447 staticpro (&Qterminal_live_p);
a3547743 4448
dc4db71c
CY
4449#ifdef HAVE_NS
4450 Qns_parse_geometry = intern ("ns-parse-geometry");
4451 staticpro (&Qns_parse_geometry);
4452#endif
4453
972f4259
KS
4454 {
4455 int i;
4456
4457 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
4458 {
4459 Lisp_Object v = intern (frame_parms[i].name);
4460 if (frame_parms[i].variable)
4461 {
4462 *frame_parms[i].variable = v;
4463 staticpro (frame_parms[i].variable);
4464 }
4465 Fput (v, Qx_frame_parameter, make_number (i));
4466 }
4467 }
4468
2731a0ad 4469#ifdef HAVE_WINDOW_SYSTEM
972f4259
KS
4470 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
4471 doc: /* The name Emacs uses to look up X resources.
4472`x-get-resource' uses this as the first component of the instance name
4473when requesting resource values.
4474Emacs initially sets `x-resource-name' to the name under which Emacs
4475was invoked, or to the value specified with the `-name' or `-rn'
4476switches, if present.
4477
4478It may be useful to bind this variable locally around a call
4479to `x-get-resource'. See also the variable `x-resource-class'. */);
4480 Vx_resource_name = Qnil;
4481
4482 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
4483 doc: /* The class Emacs uses to look up X resources.
4484`x-get-resource' uses this as the first component of the instance class
4485when requesting resource values.
4486
4487Emacs initially sets `x-resource-class' to "Emacs".
4488
4489Setting this variable permanently is not a reasonable thing to do,
4490but binding this variable locally around a call to `x-get-resource'
4491is a reasonable practice. See also the variable `x-resource-name'. */);
4492 Vx_resource_class = build_string (EMACS_CLASS);
0a708637
GM
4493
4494 DEFVAR_LISP ("frame-alpha-lower-limit", &Vframe_alpha_lower_limit,
4495 doc: /* The lower limit of the frame opacity (alpha transparency).
4496The value should range from 0 (invisible) to 100 (completely opaque).
4497You can also use a floating number between 0.0 and 1.0.
4498The default is 20. */);
4499 Vframe_alpha_lower_limit = make_number (20);
2731a0ad 4500#endif
972f4259
KS
4501
4502 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
4503 doc: /* Alist of default values for frame creation.
4504These may be set in your init file, like this:
5ff00c42 4505 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
972f4259
KS
4506These override values given in window system configuration data,
4507 including X Windows' defaults database.
4508For values specific to the first Emacs frame, see `initial-frame-alist'.
095fe281 4509For window-system specific values, see `window-system-default-frame-alist'.
972f4259
KS
4510For values specific to the separate minibuffer frame, see
4511 `minibuffer-frame-alist'.
4512The `menu-bar-lines' element of the list controls whether new frames
4513 have menu bars; `menu-bar-mode' works by altering this element.
4514Setting this variable does not affect existing frames, only new ones. */);
4515 Vdefault_frame_alist = Qnil;
4516
6b61353c
KH
4517 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4518 doc: /* Default position of scroll bars on this window-system. */);
4519#ifdef HAVE_WINDOW_SYSTEM
9e2a2647 4520#if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
edfda783 4521 /* MS-Windows and Mac OS X have scroll bars on the right by default. */
6b61353c
KH
4522 Vdefault_frame_scroll_bars = Qright;
4523#else
4524 Vdefault_frame_scroll_bars = Qleft;
4525#endif
4526#else
4527 Vdefault_frame_scroll_bars = Qnil;
4528#endif
4529
972f4259 4530 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
daf01701 4531 doc: /* The initial frame-object, which represents Emacs's stdout. */);
972f4259
KS
4532
4533 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
bd45aef7 4534 doc: /* Non-nil if all of Emacs is iconified and frame updates are not needed. */);
972f4259
KS
4535 Vemacs_iconified = Qnil;
4536
4537 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
4538 doc: /* If non-nil, function to transform normal value of `mouse-position'.
4539`mouse-position' calls this function, passing its usual return value as
4540argument, and returns whatever this function returns.
4541This abnormal hook exists for the benefit of packages like `xt-mouse.el'
4542which need to do mouse handling at the Lisp level. */);
4543 Vmouse_position_function = Qnil;
4544
4545 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
4546 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
4547If the value is an integer, highlighting is only shown after moving the
4548mouse, while keyboard input turns off the highlight even when the mouse
4549is over the clickable text. However, the mouse shape still indicates
4550when the mouse is over clickable text. */);
4551 Vmouse_highlight = Qt;
4552
4553 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
4554 doc: /* Functions to be run before deleting a frame.
4555The functions are run with one arg, the frame to be deleted.
e519a50b
KL
4556See `delete-frame'.
4557
58555d81
SM
4558Note that functions in this list may be called just before the frame is
4559actually deleted, or some time later (or even both when an earlier function
4560in `delete-frame-functions' (indirectly) calls `delete-frame'
4561recursively). */);
972f4259 4562 Vdelete_frame_functions = Qnil;
58555d81
SM
4563 Qdelete_frame_functions = intern ("delete-frame-functions");
4564 staticpro (&Qdelete_frame_functions);
972f4259
KS
4565
4566 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
4567 doc: /* Minibufferless frames use this frame's minibuffer.
4568
4569Emacs cannot create minibufferless frames unless this is set to an
4570appropriate surrogate.
4571
4572Emacs consults this variable only when creating minibufferless
4573frames; once the frame is created, it sticks with its assigned
4574minibuffer, no matter what this variable is set to. This means that
4575this variable doesn't necessarily say anything meaningful about the
4576current set of frames, or where the minibuffer is currently being
4577displayed.
4578
4579This variable is local to the current terminal and cannot be buffer-local. */);
4580
da1da002
MR
4581 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
4582 doc: /* Non-nil if window system changes focus when you move the mouse.
4583You should set this variable to tell Emacs how your window manager
4584handles focus, since there is no way in general for Emacs to find out
4585automatically. */);
4586#ifdef HAVE_WINDOW_SYSTEM
9e2a2647 4587#if defined(HAVE_NTGUI) || defined(HAVE_NS)
da1da002
MR
4588 focus_follows_mouse = 0;
4589#else
4590 focus_follows_mouse = 1;
4591#endif
4592#else
4593 focus_follows_mouse = 0;
4594#endif
a3547743 4595
972f4259
KS
4596 staticpro (&Vframe_list);
4597
4598 defsubr (&Sactive_minibuffer_window);
4599 defsubr (&Sframep);
4600 defsubr (&Sframe_live_p);
428a555e 4601 defsubr (&Swindow_system);
972f4259
KS
4602 defsubr (&Smake_terminal_frame);
4603 defsubr (&Shandle_switch_frame);
972f4259
KS
4604 defsubr (&Sselect_frame);
4605 defsubr (&Sselected_frame);
4606 defsubr (&Swindow_frame);
4607 defsubr (&Sframe_root_window);
4608 defsubr (&Sframe_first_window);
4609 defsubr (&Sframe_selected_window);
4610 defsubr (&Sset_frame_selected_window);
4611 defsubr (&Sframe_list);
4612 defsubr (&Snext_frame);
4613 defsubr (&Sprevious_frame);
4614 defsubr (&Sdelete_frame);
4615 defsubr (&Smouse_position);
4616 defsubr (&Smouse_pixel_position);
4617 defsubr (&Sset_mouse_position);
4618 defsubr (&Sset_mouse_pixel_position);
4619#if 0
4620 defsubr (&Sframe_configuration);
4621 defsubr (&Srestore_frame_configuration);
4622#endif
4623 defsubr (&Smake_frame_visible);
4624 defsubr (&Smake_frame_invisible);
4625 defsubr (&Siconify_frame);
4626 defsubr (&Sframe_visible_p);
4627 defsubr (&Svisible_frame_list);
4628 defsubr (&Sraise_frame);
4629 defsubr (&Slower_frame);
4630 defsubr (&Sredirect_frame_focus);
4631 defsubr (&Sframe_focus);
4632 defsubr (&Sframe_parameters);
4633 defsubr (&Sframe_parameter);
4634 defsubr (&Smodify_frame_parameters);
4635 defsubr (&Sframe_char_height);
4636 defsubr (&Sframe_char_width);
4637 defsubr (&Sframe_pixel_height);
4638 defsubr (&Sframe_pixel_width);
4639 defsubr (&Sset_frame_height);
4640 defsubr (&Sset_frame_width);
4641 defsubr (&Sset_frame_size);
4642 defsubr (&Sset_frame_position);
4643
4644#ifdef HAVE_WINDOW_SYSTEM
4645 defsubr (&Sx_get_resource);
4646 defsubr (&Sx_parse_geometry);
4647#endif
4648
dc6f92b8 4649}
6b61353c
KH
4650
4651/* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4652 (do not change this comment) */