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