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