(paren-blinking group): Doc fix.
[bpt/emacs.git] / src / frame.c
1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #include <config.h>
22
23 #include <stdio.h>
24 #include "lisp.h"
25 #include "charset.h"
26 #ifdef HAVE_WINDOW_SYSTEM
27 #include "fontset.h"
28 #endif
29 #include "frame.h"
30 #include "termhooks.h"
31 #include "window.h"
32 #ifdef MSDOS
33 #include "msdos.h"
34 #endif
35
36 /* Evaluate this expression to rebuild the section of syms_of_frame
37 that initializes and staticpros the symbols declared below. Note
38 that Emacs 18 has a bug that keeps C-x C-e from being able to
39 evaluate this expression.
40
41 (progn
42 ;; Accumulate a list of the symbols we want to initialize from the
43 ;; declarations at the top of the file.
44 (goto-char (point-min))
45 (search-forward "/\*&&& symbols declared here &&&*\/\n")
46 (let (symbol-list)
47 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)")
48 (setq symbol-list
49 (cons (buffer-substring (match-beginning 1) (match-end 1))
50 symbol-list))
51 (forward-line 1))
52 (setq symbol-list (nreverse symbol-list))
53 ;; Delete the section of syms_of_... where we initialize the symbols.
54 (search-forward "\n /\*&&& init symbols here &&&*\/\n")
55 (let ((start (point)))
56 (while (looking-at "^ Q")
57 (forward-line 2))
58 (kill-region start (point)))
59 ;; Write a new symbol initialization section.
60 (while symbol-list
61 (insert (format " %s = intern (\"" (car symbol-list)))
62 (let ((start (point)))
63 (insert (substring (car symbol-list) 1))
64 (subst-char-in-region start (point) ?_ ?-))
65 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list)))
66 (setq symbol-list (cdr symbol-list)))))
67 */
68
69 /*&&& symbols declared here &&&*/
70 Lisp_Object Qframep;
71 Lisp_Object Qframe_live_p;
72 Lisp_Object Qheight;
73 Lisp_Object Qicon;
74 Lisp_Object Qminibuffer;
75 Lisp_Object Qmodeline;
76 Lisp_Object Qname;
77 Lisp_Object Qonly;
78 Lisp_Object Qunsplittable;
79 Lisp_Object Qmenu_bar_lines;
80 Lisp_Object Qwidth;
81 Lisp_Object Qx;
82 Lisp_Object Qw32;
83 Lisp_Object Qpc;
84 Lisp_Object Qvisible;
85 Lisp_Object Qbuffer_predicate;
86 Lisp_Object Qbuffer_list;
87 Lisp_Object Qtitle;
88
89 Lisp_Object Vterminal_frame;
90 Lisp_Object Vdefault_frame_alist;
91
92 static void
93 syms_of_frame_1 ()
94 {
95 /*&&& init symbols here &&&*/
96 Qframep = intern ("framep");
97 staticpro (&Qframep);
98 Qframe_live_p = intern ("frame-live-p");
99 staticpro (&Qframe_live_p);
100 Qheight = intern ("height");
101 staticpro (&Qheight);
102 Qicon = intern ("icon");
103 staticpro (&Qicon);
104 Qminibuffer = intern ("minibuffer");
105 staticpro (&Qminibuffer);
106 Qmodeline = intern ("modeline");
107 staticpro (&Qmodeline);
108 Qname = intern ("name");
109 staticpro (&Qname);
110 Qonly = intern ("only");
111 staticpro (&Qonly);
112 Qunsplittable = intern ("unsplittable");
113 staticpro (&Qunsplittable);
114 Qmenu_bar_lines = intern ("menu-bar-lines");
115 staticpro (&Qmenu_bar_lines);
116 Qwidth = intern ("width");
117 staticpro (&Qwidth);
118 Qx = intern ("x");
119 staticpro (&Qx);
120 Qw32 = intern ("w32");
121 staticpro (&Qw32);
122 Qpc = intern ("pc");
123 staticpro (&Qpc);
124 Qvisible = intern ("visible");
125 staticpro (&Qvisible);
126 Qbuffer_predicate = intern ("buffer-predicate");
127 staticpro (&Qbuffer_predicate);
128 Qbuffer_list = intern ("buffer-list");
129 staticpro (&Qbuffer_list);
130 Qtitle = intern ("title");
131 staticpro (&Qtitle);
132
133 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
134 "Alist of default values for frame creation.\n\
135 These may be set in your init file, like this:\n\
136 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))\n\
137 These override values given in window system configuration data,\n\
138 including X Windows' defaults database.\n\
139 For values specific to the first Emacs frame, see `initial-frame-alist'.\n\
140 For values specific to the separate minibuffer frame, see\n\
141 `minibuffer-frame-alist'.\n\
142 The `menu-bar-lines' element of the list controls whether new frames\n\
143 have menu bars; `menu-bar-mode' works by altering this element.");
144 Vdefault_frame_alist = Qnil;
145 }
146 \f
147 static void
148 set_menu_bar_lines_1 (window, n)
149 Lisp_Object window;
150 int n;
151 {
152 struct window *w = XWINDOW (window);
153
154 XSETFASTINT (w->last_modified, 0);
155 XSETFASTINT (w->top, XFASTINT (w->top) + n);
156 XSETFASTINT (w->height, XFASTINT (w->height) - n);
157
158 /* Handle just the top child in a vertical split. */
159 if (!NILP (w->vchild))
160 set_menu_bar_lines_1 (w->vchild, n);
161
162 /* Adjust all children in a horizontal split. */
163 for (window = w->hchild; !NILP (window); window = w->next)
164 {
165 w = XWINDOW (window);
166 set_menu_bar_lines_1 (window, n);
167 }
168 }
169
170 static void
171 set_menu_bar_lines (f, value, oldval)
172 struct frame *f;
173 Lisp_Object value, oldval;
174 {
175 int nlines;
176 int olines = FRAME_MENU_BAR_LINES (f);
177
178 /* Right now, menu bars don't work properly in minibuf-only frames;
179 most of the commands try to apply themselves to the minibuffer
180 frame itself, and get an error because you can't switch buffers
181 in or split the minibuffer window. */
182 if (FRAME_MINIBUF_ONLY_P (f))
183 return;
184
185 if (INTEGERP (value))
186 nlines = XINT (value);
187 else
188 nlines = 0;
189
190 if (nlines != olines)
191 {
192 windows_or_buffers_changed++;
193 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
194 FRAME_MENU_BAR_LINES (f) = nlines;
195 set_menu_bar_lines_1 (f->root_window, nlines - olines);
196 }
197 }
198 \f
199 #include "buffer.h"
200
201 /* These help us bind and responding to switch-frame events. */
202 #include "commands.h"
203 #include "keyboard.h"
204
205 Lisp_Object Vemacs_iconified;
206 Lisp_Object Vframe_list;
207
208 extern Lisp_Object Vminibuffer_list;
209 extern Lisp_Object get_minibuffer ();
210 extern Lisp_Object Fhandle_switch_frame ();
211 extern Lisp_Object Fredirect_frame_focus ();
212 extern Lisp_Object x_get_focus_frame ();
213 \f
214 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
215 "Return non-nil if OBJECT is a frame.\n\
216 Value is t for a termcap frame (a character-only terminal),\n\
217 `x' for an Emacs frame that is really an X window,\n\
218 `pc' for a direct-write MS-DOS frame.\n\
219 See also `frame-live-p'.")
220 (object)
221 Lisp_Object object;
222 {
223 if (!FRAMEP (object))
224 return Qnil;
225 switch (XFRAME (object)->output_method)
226 {
227 case output_termcap:
228 return Qt;
229 case output_x_window:
230 return Qx;
231 case output_w32:
232 return Qw32;
233 case output_msdos_raw:
234 return Qpc;
235 default:
236 abort ();
237 }
238 }
239
240 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
241 "Return non-nil if OBJECT is a frame which has not been deleted.\n\
242 Value is nil if OBJECT is not a live frame. If object is a live\n\
243 frame, the return value indicates what sort of output device it is\n\
244 displayed on. Value is t for a termcap frame (a character-only\n\
245 terminal), `x' for an Emacs frame being displayed in an X window.")
246 (object)
247 Lisp_Object object;
248 {
249 return ((FRAMEP (object)
250 && FRAME_LIVE_P (XFRAME (object)))
251 ? Fframep (object)
252 : Qnil);
253 }
254
255 struct frame *
256 make_frame (mini_p)
257 int mini_p;
258 {
259 Lisp_Object frame;
260 register struct frame *f;
261 register Lisp_Object root_window;
262 register Lisp_Object mini_window;
263 register struct Lisp_Vector *vec;
264 int i;
265
266 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct frame));
267 for (i = 0; i < VECSIZE (struct frame); i++)
268 XSETFASTINT (vec->contents[i], 0);
269 vec->size = VECSIZE (struct frame);
270 f = (struct frame *)vec;
271 XSETFRAME (frame, f);
272
273 f->cursor_x = 0;
274 f->cursor_y = 0;
275 f->current_glyphs = 0;
276 f->desired_glyphs = 0;
277 f->visible = 0;
278 f->async_visible = 0;
279 f->output_data.nothing = 0;
280 f->iconified = 0;
281 f->async_iconified = 0;
282 f->wants_modeline = 1;
283 f->auto_raise = 0;
284 f->auto_lower = 0;
285 f->no_split = 0;
286 f->garbaged = 0;
287 f->has_minibuffer = mini_p;
288 f->focus_frame = Qnil;
289 f->explicit_name = 0;
290 f->can_have_scroll_bars = 0;
291 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
292 f->param_alist = Qnil;
293 f->scroll_bars = Qnil;
294 f->condemned_scroll_bars = Qnil;
295 f->face_alist = Qnil;
296 f->menu_bar_items = Qnil;
297 f->menu_bar_vector = Qnil;
298 f->menu_bar_items_used = 0;
299 f->buffer_predicate = Qnil;
300 f->buffer_list = Qnil;
301 #ifdef MULTI_KBOARD
302 f->kboard = initial_kboard;
303 #endif
304 f->namebuf = 0;
305 f->title = Qnil;
306
307 root_window = make_window ();
308 if (mini_p)
309 {
310 mini_window = make_window ();
311 XWINDOW (root_window)->next = mini_window;
312 XWINDOW (mini_window)->prev = root_window;
313 XWINDOW (mini_window)->mini_p = Qt;
314 XWINDOW (mini_window)->frame = frame;
315 f->minibuffer_window = mini_window;
316 }
317 else
318 {
319 mini_window = Qnil;
320 XWINDOW (root_window)->next = Qnil;
321 f->minibuffer_window = Qnil;
322 }
323
324 XWINDOW (root_window)->frame = frame;
325
326 /* 10 is arbitrary,
327 just so that there is "something there."
328 Correct size will be set up later with change_frame_size. */
329
330 SET_FRAME_WIDTH (f, 10);
331 f->height = 10;
332
333 XSETFASTINT (XWINDOW (root_window)->width, 10);
334 XSETFASTINT (XWINDOW (root_window)->height, (mini_p ? 9 : 10));
335
336 if (mini_p)
337 {
338 XSETFASTINT (XWINDOW (mini_window)->width, 10);
339 XSETFASTINT (XWINDOW (mini_window)->top, 9);
340 XSETFASTINT (XWINDOW (mini_window)->height, 1);
341 }
342
343 /* Choose a buffer for the frame's root window. */
344 {
345 Lisp_Object buf;
346
347 XWINDOW (root_window)->buffer = Qt;
348 buf = Fcurrent_buffer ();
349 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
350 a space), try to find another one. */
351 if (XSTRING (Fbuffer_name (buf))->data[0] == ' ')
352 buf = Fother_buffer (buf, Qnil);
353 Fset_window_buffer (root_window, buf);
354
355 f->buffer_list = Fcons (buf, Qnil);
356 }
357
358 if (mini_p)
359 {
360 XWINDOW (mini_window)->buffer = Qt;
361 Fset_window_buffer (mini_window,
362 (NILP (Vminibuffer_list)
363 ? get_minibuffer (0)
364 : Fcar (Vminibuffer_list)));
365 }
366
367 f->root_window = root_window;
368 f->selected_window = root_window;
369 /* Make sure this window seems more recently used than
370 a newly-created, never-selected window. */
371 XSETFASTINT (XWINDOW (f->selected_window)->use_time, ++window_select_count);
372
373 #ifdef HAVE_WINDOW_SYSTEM
374 f->fontset_data = alloc_fontset_data ();
375 #endif
376
377 return f;
378 }
379 \f
380 /* Make a frame using a separate minibuffer window on another frame.
381 MINI_WINDOW is the minibuffer window to use. nil means use the
382 default (the global minibuffer). */
383
384 struct frame *
385 make_frame_without_minibuffer (mini_window, kb, display)
386 register Lisp_Object mini_window;
387 KBOARD *kb;
388 Lisp_Object display;
389 {
390 register struct frame *f;
391 struct gcpro gcpro1;
392
393 if (!NILP (mini_window))
394 CHECK_LIVE_WINDOW (mini_window, 0);
395
396 #ifdef MULTI_KBOARD
397 if (!NILP (mini_window)
398 && XFRAME (XWINDOW (mini_window)->frame)->kboard != kb)
399 error ("frame and minibuffer must be on the same display");
400 #endif
401
402 /* Make a frame containing just a root window. */
403 f = make_frame (0);
404
405 if (NILP (mini_window))
406 {
407 /* Use default-minibuffer-frame if possible. */
408 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
409 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
410 {
411 Lisp_Object frame_dummy;
412
413 XSETFRAME (frame_dummy, f);
414 GCPRO1 (frame_dummy);
415 /* If there's no minibuffer frame to use, create one. */
416 kb->Vdefault_minibuffer_frame =
417 call1 (intern ("make-initial-minibuffer-frame"), display);
418 UNGCPRO;
419 }
420
421 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
422 }
423
424 f->minibuffer_window = mini_window;
425
426 /* Make the chosen minibuffer window display the proper minibuffer,
427 unless it is already showing a minibuffer. */
428 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
429 Fset_window_buffer (mini_window,
430 (NILP (Vminibuffer_list)
431 ? get_minibuffer (0)
432 : Fcar (Vminibuffer_list)));
433 return f;
434 }
435
436 /* Make a frame containing only a minibuffer window. */
437
438 struct frame *
439 make_minibuffer_frame ()
440 {
441 /* First make a frame containing just a root window, no minibuffer. */
442
443 register struct frame *f = make_frame (0);
444 register Lisp_Object mini_window;
445 register Lisp_Object frame;
446
447 XSETFRAME (frame, f);
448
449 f->auto_raise = 0;
450 f->auto_lower = 0;
451 f->no_split = 1;
452 f->wants_modeline = 0;
453 f->has_minibuffer = 1;
454
455 /* Now label the root window as also being the minibuffer.
456 Avoid infinite looping on the window chain by marking next pointer
457 as nil. */
458
459 mini_window = f->minibuffer_window = f->root_window;
460 XWINDOW (mini_window)->mini_p = Qt;
461 XWINDOW (mini_window)->next = Qnil;
462 XWINDOW (mini_window)->prev = Qnil;
463 XWINDOW (mini_window)->frame = frame;
464
465 /* Put the proper buffer in that window. */
466
467 Fset_window_buffer (mini_window,
468 (NILP (Vminibuffer_list)
469 ? get_minibuffer (0)
470 : Fcar (Vminibuffer_list)));
471 return f;
472 }
473 \f
474 /* Construct a frame that refers to the terminal (stdin and stdout). */
475
476 static int terminal_frame_count;
477
478 struct frame *
479 make_terminal_frame ()
480 {
481 register struct frame *f;
482 Lisp_Object frame;
483 char name[20];
484
485 #ifdef MULTI_KBOARD
486 if (!initial_kboard)
487 {
488 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
489 init_kboard (initial_kboard);
490 initial_kboard->next_kboard = all_kboards;
491 all_kboards = initial_kboard;
492 }
493 #endif
494
495 /* The first call must initialize Vframe_list. */
496 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
497 Vframe_list = Qnil;
498
499 f = make_frame (1);
500
501 XSETFRAME (frame, f);
502 Vframe_list = Fcons (frame, Vframe_list);
503
504 terminal_frame_count++;
505 sprintf (name, "F%d", terminal_frame_count);
506 f->name = build_string (name);
507
508 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
509 f->async_visible = 1; /* Don't let visible be cleared later. */
510 #ifdef MSDOS
511 f->output_data.x = &the_only_x_display;
512 f->output_method = output_msdos_raw;
513 init_frame_faces (f);
514 #else /* not MSDOS */
515 f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */
516 #endif
517 return f;
518 }
519
520 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
521 1, 1, 0, "Create an additional terminal frame.\n\
522 You can create multiple frames on a text-only terminal in this way.\n\
523 Only the selected terminal frame is actually displayed.\n\
524 This function takes one argument, an alist specifying frame parameters.\n\
525 In practice, generally you don't need to specify any parameters.\n\
526 Note that changing the size of one terminal frame automatically affects all.")
527 (parms)
528 Lisp_Object parms;
529 {
530 struct frame *f;
531 Lisp_Object frame;
532
533 #ifdef MSDOS
534 if (selected_frame->output_method != output_msdos_raw)
535 abort ();
536 #else
537 if (selected_frame->output_method != output_termcap)
538 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
539 #endif
540
541 f = make_terminal_frame ();
542 change_frame_size (f, FRAME_HEIGHT (selected_frame),
543 FRAME_WIDTH (selected_frame), 0, 0);
544 remake_frame_glyphs (f);
545 calculate_costs (f);
546 XSETFRAME (frame, f);
547 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
548 Fmodify_frame_parameters (frame, parms);
549 f->face_alist = selected_frame->face_alist;
550 return frame;
551 }
552 \f
553 Lisp_Object
554 do_switch_frame (frame, no_enter, track)
555 Lisp_Object frame, no_enter;
556 int track;
557 {
558 /* If FRAME is a switch-frame event, extract the frame we should
559 switch to. */
560 if (CONSP (frame)
561 && EQ (XCONS (frame)->car, Qswitch_frame)
562 && CONSP (XCONS (frame)->cdr))
563 frame = XCONS (XCONS (frame)->cdr)->car;
564
565 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
566 a switch-frame event to arrive after a frame is no longer live,
567 especially when deleting the initial frame during startup. */
568 CHECK_FRAME (frame, 0);
569 if (! FRAME_LIVE_P (XFRAME (frame)))
570 return Qnil;
571
572 if (selected_frame == XFRAME (frame))
573 return frame;
574
575 /* This is too greedy; it causes inappropriate focus redirection
576 that's hard to get rid of. */
577 #if 0
578 /* If a frame's focus has been redirected toward the currently
579 selected frame, we should change the redirection to point to the
580 newly selected frame. This means that if the focus is redirected
581 from a minibufferless frame to a surrogate minibuffer frame, we
582 can use `other-window' to switch between all the frames using
583 that minibuffer frame, and the focus redirection will follow us
584 around. */
585 if (track)
586 {
587 Lisp_Object tail;
588
589 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
590 {
591 Lisp_Object focus;
592
593 if (!FRAMEP (XCONS (tail)->car))
594 abort ();
595
596 focus = FRAME_FOCUS_FRAME (XFRAME (XCONS (tail)->car));
597
598 if (FRAMEP (focus) && XFRAME (focus) == selected_frame)
599 Fredirect_frame_focus (XCONS (tail)->car, frame);
600 }
601 }
602 #else /* ! 0 */
603 /* Instead, apply it only to the frame we're pointing to. */
604 #ifdef HAVE_WINDOW_SYSTEM
605 if (track && (FRAME_WINDOW_P (XFRAME (frame))))
606 {
607 Lisp_Object focus, xfocus;
608
609 xfocus = x_get_focus_frame (XFRAME (frame));
610 if (FRAMEP (xfocus))
611 {
612 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
613 if (FRAMEP (focus) && XFRAME (focus) == selected_frame)
614 Fredirect_frame_focus (xfocus, frame);
615 }
616 }
617 #endif /* HAVE_X_WINDOWS */
618 #endif /* ! 0 */
619
620 selected_frame = XFRAME (frame);
621 if (! FRAME_MINIBUF_ONLY_P (selected_frame))
622 last_nonminibuf_frame = selected_frame;
623
624 Fselect_window (XFRAME (frame)->selected_window);
625
626 /* We want to make sure that the next event generates a frame-switch
627 event to the appropriate frame. This seems kludgy to me, but
628 before you take it out, make sure that evaluating something like
629 (select-window (frame-root-window (new-frame))) doesn't end up
630 with your typing being interpreted in the new frame instead of
631 the one you're actually typing in. */
632 internal_last_event_frame = Qnil;
633
634 return frame;
635 }
636
637 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
638 "Select the frame FRAME.\n\
639 Subsequent editing commands apply to its selected window.\n\
640 The selection of FRAME lasts until the next time the user does\n\
641 something to select a different frame, or until the next time this\n\
642 function is called.")
643 (frame, no_enter)
644 Lisp_Object frame, no_enter;
645 {
646 return do_switch_frame (frame, no_enter, 1);
647 }
648
649
650 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 2, "e",
651 "Handle a switch-frame event EVENT.\n\
652 Switch-frame events are usually bound to this function.\n\
653 A switch-frame event tells Emacs that the window manager has requested\n\
654 that the user's events be directed to the frame mentioned in the event.\n\
655 This function selects the selected window of the frame of EVENT.\n\
656 \n\
657 If EVENT is frame object, handle it as if it were a switch-frame event\n\
658 to that frame.")
659 (event, no_enter)
660 Lisp_Object event, no_enter;
661 {
662 /* Preserve prefix arg that the command loop just cleared. */
663 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
664 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
665 return do_switch_frame (event, no_enter, 0);
666 }
667
668 DEFUN ("ignore-event", Fignore_event, Signore_event, 0, 0, "",
669 "Do nothing, but preserve any prefix argument already specified.\n\
670 This is a suitable binding for iconify-frame and make-frame-visible.")
671 ()
672 {
673 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
674 return Qnil;
675 }
676
677 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
678 "Return the frame that is now selected.")
679 ()
680 {
681 Lisp_Object tem;
682 XSETFRAME (tem, selected_frame);
683 return tem;
684 }
685 \f
686 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
687 "Return the frame object that window WINDOW is on.")
688 (window)
689 Lisp_Object window;
690 {
691 CHECK_LIVE_WINDOW (window, 0);
692 return XWINDOW (window)->frame;
693 }
694
695 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
696 "Returns the topmost, leftmost window of FRAME.\n\
697 If omitted, FRAME defaults to the currently selected frame.")
698 (frame)
699 Lisp_Object frame;
700 {
701 Lisp_Object w;
702
703 if (NILP (frame))
704 w = selected_frame->root_window;
705 else
706 {
707 CHECK_LIVE_FRAME (frame, 0);
708 w = XFRAME (frame)->root_window;
709 }
710 while (NILP (XWINDOW (w)->buffer))
711 {
712 if (! NILP (XWINDOW (w)->hchild))
713 w = XWINDOW (w)->hchild;
714 else if (! NILP (XWINDOW (w)->vchild))
715 w = XWINDOW (w)->vchild;
716 else
717 abort ();
718 }
719 return w;
720 }
721
722 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
723 Sactive_minibuffer_window, 0, 0, 0,
724 "Return the currently active minibuffer window, or nil if none.")
725 ()
726 {
727 return minibuf_level ? minibuf_window : Qnil;
728 }
729
730 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
731 "Returns the root-window of FRAME.\n\
732 If omitted, FRAME defaults to the currently selected frame.")
733 (frame)
734 Lisp_Object frame;
735 {
736 if (NILP (frame))
737 XSETFRAME (frame, selected_frame);
738 else
739 CHECK_LIVE_FRAME (frame, 0);
740
741 return XFRAME (frame)->root_window;
742 }
743
744 DEFUN ("frame-selected-window", Fframe_selected_window,
745 Sframe_selected_window, 0, 1, 0,
746 "Return the selected window of frame object FRAME.\n\
747 If omitted, FRAME defaults to the currently selected frame.")
748 (frame)
749 Lisp_Object frame;
750 {
751 if (NILP (frame))
752 XSETFRAME (frame, selected_frame);
753 else
754 CHECK_LIVE_FRAME (frame, 0);
755
756 return XFRAME (frame)->selected_window;
757 }
758
759 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
760 Sset_frame_selected_window, 2, 2, 0,
761 "Set the selected window of frame object FRAME to WINDOW.\n\
762 If FRAME is nil, the selected frame is used.\n\
763 If FRAME is the selected frame, this makes WINDOW the selected window.")
764 (frame, window)
765 Lisp_Object frame, window;
766 {
767 if (NILP (frame))
768 XSETFRAME (frame, selected_frame);
769 else
770 CHECK_LIVE_FRAME (frame, 0);
771
772 CHECK_LIVE_WINDOW (window, 1);
773
774 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
775 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
776
777 if (XFRAME (frame) == selected_frame)
778 return Fselect_window (window);
779
780 return XFRAME (frame)->selected_window = window;
781 }
782 \f
783 DEFUN ("frame-list", Fframe_list, Sframe_list,
784 0, 0, 0,
785 "Return a list of all frames.")
786 ()
787 {
788 return Fcopy_sequence (Vframe_list);
789 }
790
791 /* Return the next frame in the frame list after FRAME.
792 If MINIBUF is nil, exclude minibuffer-only frames.
793 If MINIBUF is a window, include only its own frame
794 and any frame now using that window as the minibuffer.
795 If MINIBUF is `visible', include all visible frames.
796 If MINIBUF is 0, include all visible and iconified frames.
797 Otherwise, include all frames. */
798
799 Lisp_Object
800 next_frame (frame, minibuf)
801 Lisp_Object frame;
802 Lisp_Object minibuf;
803 {
804 Lisp_Object tail;
805 int passed = 0;
806
807 /* There must always be at least one frame in Vframe_list. */
808 if (! CONSP (Vframe_list))
809 abort ();
810
811 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
812 forever. Forestall that. */
813 CHECK_LIVE_FRAME (frame, 0);
814
815 while (1)
816 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
817 {
818 Lisp_Object f;
819
820 f = XCONS (tail)->car;
821
822 if (passed
823 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
824 {
825 /* Decide whether this frame is eligible to be returned. */
826
827 /* If we've looped all the way around without finding any
828 eligible frames, return the original frame. */
829 if (EQ (f, frame))
830 return f;
831
832 /* Let minibuf decide if this frame is acceptable. */
833 if (NILP (minibuf))
834 {
835 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
836 return f;
837 }
838 else if (EQ (minibuf, Qvisible))
839 {
840 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
841 if (FRAME_VISIBLE_P (XFRAME (f)))
842 return f;
843 }
844 else if (XFASTINT (minibuf) == 0)
845 {
846 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
847 if (FRAME_VISIBLE_P (XFRAME (f))
848 || FRAME_ICONIFIED_P (XFRAME (f)))
849 return f;
850 }
851 else if (WINDOWP (minibuf))
852 {
853 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
854 /* Check that F either is, or has forwarded its focus to,
855 MINIBUF's frame. */
856 && (EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
857 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
858 FRAME_FOCUS_FRAME (XFRAME (f)))))
859 return f;
860 }
861 else
862 return f;
863 }
864
865 if (EQ (frame, f))
866 passed++;
867 }
868 }
869
870 /* Return the previous frame in the frame list before FRAME.
871 If MINIBUF is nil, exclude minibuffer-only frames.
872 If MINIBUF is a window, include only its own frame
873 and any frame now using that window as the minibuffer.
874 If MINIBUF is `visible', include all visible frames.
875 If MINIBUF is 0, include all visible and iconified frames.
876 Otherwise, include all frames. */
877
878 Lisp_Object
879 prev_frame (frame, minibuf)
880 Lisp_Object frame;
881 Lisp_Object minibuf;
882 {
883 Lisp_Object tail;
884 Lisp_Object prev;
885
886 /* There must always be at least one frame in Vframe_list. */
887 if (! CONSP (Vframe_list))
888 abort ();
889
890 prev = Qnil;
891 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
892 {
893 Lisp_Object f;
894
895 f = XCONS (tail)->car;
896 if (!FRAMEP (f))
897 abort ();
898
899 if (EQ (frame, f) && !NILP (prev))
900 return prev;
901
902 if (FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
903 {
904 /* Decide whether this frame is eligible to be returned,
905 according to minibuf. */
906 if (NILP (minibuf))
907 {
908 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
909 prev = f;
910 }
911 else if (WINDOWP (minibuf))
912 {
913 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
914 /* Check that F either is, or has forwarded its focus to,
915 MINIBUF's frame. */
916 && (EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
917 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
918 FRAME_FOCUS_FRAME (XFRAME (f)))))
919 prev = f;
920 }
921 else if (EQ (minibuf, Qvisible))
922 {
923 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
924 if (FRAME_VISIBLE_P (XFRAME (f)))
925 prev = f;
926 }
927 else if (XFASTINT (minibuf) == 0)
928 {
929 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
930 if (FRAME_VISIBLE_P (XFRAME (f))
931 || FRAME_ICONIFIED_P (XFRAME (f)))
932 prev = f;
933 }
934 else
935 prev = f;
936 }
937 }
938
939 /* We've scanned the entire list. */
940 if (NILP (prev))
941 /* We went through the whole frame list without finding a single
942 acceptable frame. Return the original frame. */
943 return frame;
944 else
945 /* There were no acceptable frames in the list before FRAME; otherwise,
946 we would have returned directly from the loop. Since PREV is the last
947 acceptable frame in the list, return it. */
948 return prev;
949 }
950
951
952 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
953 "Return the next frame in the frame list after FRAME.\n\
954 It considers only frames on the same terminal as FRAME.\n\
955 By default, skip minibuffer-only frames.\n\
956 If omitted, FRAME defaults to the selected frame.\n\
957 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.\n\
958 If MINIFRAME is a window, include only its own frame\n\
959 and any frame now using that window as the minibuffer.\n\
960 If MINIFRAME is `visible', include all visible frames.\n\
961 If MINIFRAME is 0, include all visible and iconified frames.\n\
962 Otherwise, include all frames.")
963 (frame, miniframe)
964 Lisp_Object frame, miniframe;
965 {
966 Lisp_Object tail;
967
968 if (NILP (frame))
969 XSETFRAME (frame, selected_frame);
970 else
971 CHECK_LIVE_FRAME (frame, 0);
972
973 return next_frame (frame, miniframe);
974 }
975
976 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
977 "Return the previous frame in the frame list before FRAME.\n\
978 It considers only frames on the same terminal as FRAME.\n\
979 By default, skip minibuffer-only frames.\n\
980 If omitted, FRAME defaults to the selected frame.\n\
981 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.\n\
982 If MINIFRAME is a window, include only its own frame\n\
983 and any frame now using that window as the minibuffer.\n\
984 If MINIFRAME is `visible', include all visible frames.\n\
985 If MINIFRAME is 0, include all visible and iconified frames.\n\
986 Otherwise, include all frames.")
987 (frame, miniframe)
988 Lisp_Object frame, miniframe;
989 {
990 Lisp_Object tail;
991
992 if (NILP (frame))
993 XSETFRAME (frame, selected_frame);
994 else
995 CHECK_LIVE_FRAME (frame, 0);
996
997 return prev_frame (frame, miniframe);
998 }
999 \f
1000 /* Return 1 if it is ok to delete frame F;
1001 0 if all frames aside from F are invisible.
1002 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1003
1004 int
1005 other_visible_frames (f)
1006 FRAME_PTR f;
1007 {
1008 /* We know the selected frame is visible,
1009 so if F is some other frame, it can't be the sole visible one. */
1010 if (f == selected_frame)
1011 {
1012 Lisp_Object frames;
1013 int count = 0;
1014
1015 for (frames = Vframe_list;
1016 CONSP (frames);
1017 frames = XCONS (frames)->cdr)
1018 {
1019 Lisp_Object this;
1020
1021 this = XCONS (frames)->car;
1022 /* Verify that the frame's window still exists
1023 and we can still talk to it. And note any recent change
1024 in visibility. */
1025 #ifdef HAVE_WINDOW_SYSTEM
1026 if (FRAME_WINDOW_P (XFRAME (this)))
1027 {
1028 x_sync (XFRAME (this));
1029 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1030 }
1031 #endif
1032
1033 if (FRAME_VISIBLE_P (XFRAME (this))
1034 || FRAME_ICONIFIED_P (XFRAME (this))
1035 /* Allow deleting the terminal frame when at least
1036 one X frame exists! */
1037 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
1038 count++;
1039 }
1040 return count > 1;
1041 }
1042 return 1;
1043 }
1044
1045 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
1046 "Delete FRAME, permanently eliminating it from use.\n\
1047 If omitted, FRAME defaults to the selected frame.\n\
1048 A frame may not be deleted if its minibuffer is used by other frames.\n\
1049 Normally, you may not delete a frame if all other frames are invisible,\n\
1050 but if the second optional argument FORCE is non-nil, you may do so.")
1051 (frame, force)
1052 Lisp_Object frame, force;
1053 {
1054 struct frame *f;
1055 int minibuffer_selected;
1056
1057 if (EQ (frame, Qnil))
1058 {
1059 f = selected_frame;
1060 XSETFRAME (frame, f);
1061 }
1062 else
1063 {
1064 CHECK_FRAME (frame, 0);
1065 f = XFRAME (frame);
1066 }
1067
1068 if (! FRAME_LIVE_P (f))
1069 return Qnil;
1070
1071 if (NILP (force) && !other_visible_frames (f))
1072 error ("Attempt to delete the sole visible or iconified frame");
1073
1074 /* Does this frame have a minibuffer, and is it the surrogate
1075 minibuffer for any other frame? */
1076 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
1077 {
1078 Lisp_Object frames;
1079
1080 for (frames = Vframe_list;
1081 CONSP (frames);
1082 frames = XCONS (frames)->cdr)
1083 {
1084 Lisp_Object this;
1085 this = XCONS (frames)->car;
1086
1087 if (! EQ (this, frame)
1088 && EQ (frame,
1089 WINDOW_FRAME (XWINDOW
1090 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1091 error ("Attempt to delete a surrogate minibuffer frame");
1092 }
1093 }
1094
1095 minibuffer_selected = EQ (minibuf_window, selected_window);
1096
1097 /* Don't let the frame remain selected. */
1098 if (f == selected_frame)
1099 {
1100 Lisp_Object tail, frame1;
1101
1102 /* Look for another visible frame on the same terminal. */
1103 frame1 = next_frame (frame, Qvisible);
1104
1105 /* If there is none, find *some* other frame. */
1106 if (NILP (frame1) || EQ (frame1, frame))
1107 {
1108 FOR_EACH_FRAME (tail, frame1)
1109 {
1110 if (! EQ (frame, frame1))
1111 break;
1112 }
1113 }
1114
1115 do_switch_frame (frame1, Qnil, 0);
1116 }
1117
1118 /* Don't allow minibuf_window to remain on a deleted frame. */
1119 if (EQ (f->minibuffer_window, minibuf_window))
1120 {
1121 Fset_window_buffer (selected_frame->minibuffer_window,
1122 XWINDOW (minibuf_window)->buffer);
1123 minibuf_window = selected_frame->minibuffer_window;
1124
1125 /* If the dying minibuffer window was selected,
1126 select the new one. */
1127 if (minibuffer_selected)
1128 Fselect_window (minibuf_window);
1129 }
1130
1131 /* Clear any X selections for this frame. */
1132 #ifdef HAVE_X_WINDOWS
1133 if (FRAME_X_P (f))
1134 x_clear_frame_selections (f);
1135 #endif
1136
1137 /* Mark all the windows that used to be on FRAME as deleted, and then
1138 remove the reference to them. */
1139 delete_all_subwindows (XWINDOW (f->root_window));
1140 f->root_window = Qnil;
1141
1142 Vframe_list = Fdelq (frame, Vframe_list);
1143 FRAME_SET_VISIBLE (f, 0);
1144
1145 if (f->namebuf)
1146 free (f->namebuf);
1147 if (FRAME_CURRENT_GLYPHS (f))
1148 free_frame_glyphs (f, FRAME_CURRENT_GLYPHS (f));
1149 if (FRAME_DESIRED_GLYPHS (f))
1150 free_frame_glyphs (f, FRAME_DESIRED_GLYPHS (f));
1151 if (FRAME_TEMP_GLYPHS (f))
1152 free_frame_glyphs (f, FRAME_TEMP_GLYPHS (f));
1153 if (FRAME_INSERT_COST (f))
1154 free (FRAME_INSERT_COST (f));
1155 if (FRAME_DELETEN_COST (f))
1156 free (FRAME_DELETEN_COST (f));
1157 if (FRAME_INSERTN_COST (f))
1158 free (FRAME_INSERTN_COST (f));
1159 if (FRAME_DELETE_COST (f))
1160 free (FRAME_DELETE_COST (f));
1161 if (FRAME_MESSAGE_BUF (f))
1162 free (FRAME_MESSAGE_BUF (f));
1163
1164 #ifdef HAVE_WINDOW_SYSTEM
1165 /* Free all fontset data. */
1166 free_fontset_data (FRAME_FONTSET_DATA (f));
1167 #endif
1168
1169 /* Since some events are handled at the interrupt level, we may get
1170 an event for f at any time; if we zero out the frame's display
1171 now, then we may trip up the event-handling code. Instead, we'll
1172 promise that the display of the frame must be valid until we have
1173 called the window-system-dependent frame destruction routine. */
1174
1175 /* I think this should be done with a hook. */
1176 #ifdef HAVE_WINDOW_SYSTEM
1177 if (FRAME_WINDOW_P (f))
1178 x_destroy_window (f);
1179 #endif
1180
1181 f->output_data.nothing = 0;
1182
1183 /* If we've deleted the last_nonminibuf_frame, then try to find
1184 another one. */
1185 if (f == last_nonminibuf_frame)
1186 {
1187 Lisp_Object frames;
1188
1189 last_nonminibuf_frame = 0;
1190
1191 for (frames = Vframe_list;
1192 CONSP (frames);
1193 frames = XCONS (frames)->cdr)
1194 {
1195 f = XFRAME (XCONS (frames)->car);
1196 if (!FRAME_MINIBUF_ONLY_P (f))
1197 {
1198 last_nonminibuf_frame = f;
1199 break;
1200 }
1201 }
1202 }
1203
1204 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1205 find another one. Prefer minibuffer-only frames, but also notice
1206 frames with other windows. */
1207 if (EQ (frame, FRAME_KBOARD (f)->Vdefault_minibuffer_frame))
1208 {
1209 Lisp_Object frames;
1210
1211 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1212 Lisp_Object frame_with_minibuf;
1213 /* Some frame we found on the same kboard, or nil if there are none. */
1214 Lisp_Object frame_on_same_kboard;
1215
1216 frame_on_same_kboard = Qnil;
1217 frame_with_minibuf = Qnil;
1218
1219 for (frames = Vframe_list;
1220 CONSP (frames);
1221 frames = XCONS (frames)->cdr)
1222 {
1223 Lisp_Object this;
1224 struct frame *f1;
1225
1226 this = XCONS (frames)->car;
1227 if (!FRAMEP (this))
1228 abort ();
1229 f1 = XFRAME (this);
1230
1231 /* Consider only frames on the same kboard
1232 and only those with minibuffers. */
1233 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1)
1234 && FRAME_HAS_MINIBUF_P (f1))
1235 {
1236 frame_with_minibuf = this;
1237 if (FRAME_MINIBUF_ONLY_P (f1))
1238 break;
1239 }
1240
1241 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
1242 frame_on_same_kboard = this;
1243 }
1244
1245 if (!NILP (frame_on_same_kboard))
1246 {
1247 /* We know that there must be some frame with a minibuffer out
1248 there. If this were not true, all of the frames present
1249 would have to be minibufferless, which implies that at some
1250 point their minibuffer frames must have been deleted, but
1251 that is prohibited at the top; you can't delete surrogate
1252 minibuffer frames. */
1253 if (NILP (frame_with_minibuf))
1254 abort ();
1255
1256 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = frame_with_minibuf;
1257 }
1258 else
1259 /* No frames left on this kboard--say no minibuffer either. */
1260 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
1261 }
1262
1263 /* Cause frame titles to update--necessary if we now have just one frame. */
1264 update_mode_lines = 1;
1265
1266 return Qnil;
1267 }
1268 \f
1269 /* Return mouse position in character cell units. */
1270
1271 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
1272 "Return a list (FRAME X . Y) giving the current mouse frame and position.\n\
1273 The position is given in character cells, where (0, 0) is the\n\
1274 upper-left corner.\n\
1275 If Emacs is running on a mouseless terminal or hasn't been programmed\n\
1276 to read the mouse position, it returns the selected frame for FRAME\n\
1277 and nil for X and Y.")
1278 ()
1279 {
1280 FRAME_PTR f;
1281 Lisp_Object lispy_dummy;
1282 enum scroll_bar_part party_dummy;
1283 Lisp_Object x, y;
1284 int col, row;
1285 unsigned long long_dummy;
1286
1287 f = selected_frame;
1288 x = y = Qnil;
1289
1290 #ifdef HAVE_MOUSE
1291 /* It's okay for the hook to refrain from storing anything. */
1292 if (mouse_position_hook)
1293 (*mouse_position_hook) (&f, 0,
1294 &lispy_dummy, &party_dummy,
1295 &x, &y,
1296 &long_dummy);
1297 if (! NILP (x))
1298 {
1299 col = XINT (x);
1300 row = XINT (y);
1301 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
1302 XSETINT (x, col);
1303 XSETINT (y, row);
1304 }
1305 #endif
1306 XSETFRAME (lispy_dummy, f);
1307 return Fcons (lispy_dummy, Fcons (x, y));
1308 }
1309
1310 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
1311 Smouse_pixel_position, 0, 0, 0,
1312 "Return a list (FRAME X . Y) giving the current mouse frame and position.\n\
1313 The position is given in pixel units, where (0, 0) is the\n\
1314 upper-left corner.\n\
1315 If Emacs is running on a mouseless terminal or hasn't been programmed\n\
1316 to read the mouse position, it returns the selected frame for FRAME\n\
1317 and nil for X and Y.")
1318 ()
1319 {
1320 FRAME_PTR f;
1321 Lisp_Object lispy_dummy;
1322 enum scroll_bar_part party_dummy;
1323 Lisp_Object x, y;
1324 int col, row;
1325 unsigned long long_dummy;
1326
1327 f = selected_frame;
1328 x = y = Qnil;
1329
1330 #ifdef HAVE_MOUSE
1331 /* It's okay for the hook to refrain from storing anything. */
1332 if (mouse_position_hook)
1333 (*mouse_position_hook) (&f, 0,
1334 &lispy_dummy, &party_dummy,
1335 &x, &y,
1336 &long_dummy);
1337 #endif
1338 XSETFRAME (lispy_dummy, f);
1339 return Fcons (lispy_dummy, Fcons (x, y));
1340 }
1341
1342 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
1343 "Move the mouse pointer to the center of character cell (X,Y) in FRAME.\n\
1344 Note, this is a no-op for an X frame that is not visible.\n\
1345 If you have just created a frame, you must wait for it to become visible\n\
1346 before calling this function on it, like this.\n\
1347 (while (not (frame-visible-p frame)) (sleep-for .5))")
1348 (frame, x, y)
1349 Lisp_Object frame, x, y;
1350 {
1351 CHECK_LIVE_FRAME (frame, 0);
1352 CHECK_NUMBER (x, 2);
1353 CHECK_NUMBER (y, 1);
1354
1355 /* I think this should be done with a hook. */
1356 #ifdef HAVE_WINDOW_SYSTEM
1357 if (FRAME_WINDOW_P (XFRAME (frame)))
1358 /* Warping the mouse will cause enternotify and focus events. */
1359 x_set_mouse_position (XFRAME (frame), x, y);
1360 #else
1361 #if defined (MSDOS) && defined (HAVE_MOUSE)
1362 if (FRAME_MSDOS_P (XFRAME (frame)))
1363 {
1364 Fselect_frame (frame, Qnil);
1365 mouse_moveto (XINT (x), XINT (y));
1366 }
1367 #endif
1368 #endif
1369
1370 return Qnil;
1371 }
1372
1373 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
1374 Sset_mouse_pixel_position, 3, 3, 0,
1375 "Move the mouse pointer to pixel position (X,Y) in FRAME.\n\
1376 Note, this is a no-op for an X frame that is not visible.\n\
1377 If you have just created a frame, you must wait for it to become visible\n\
1378 before calling this function on it, like this.\n\
1379 (while (not (frame-visible-p frame)) (sleep-for .5))")
1380 (frame, x, y)
1381 Lisp_Object frame, x, y;
1382 {
1383 CHECK_LIVE_FRAME (frame, 0);
1384 CHECK_NUMBER (x, 2);
1385 CHECK_NUMBER (y, 1);
1386
1387 /* I think this should be done with a hook. */
1388 #ifdef HAVE_WINDOW_SYSTEM
1389 if (FRAME_WINDOW_P (XFRAME (frame)))
1390 /* Warping the mouse will cause enternotify and focus events. */
1391 x_set_mouse_pixel_position (XFRAME (frame), x, y);
1392 #else
1393 #if defined (MSDOS) && defined (HAVE_MOUSE)
1394 if (FRAME_MSDOS_P (XFRAME (frame)))
1395 {
1396 Fselect_frame (frame, Qnil);
1397 mouse_moveto (XINT (x), XINT (y));
1398 }
1399 #endif
1400 #endif
1401
1402 return Qnil;
1403 }
1404 \f
1405 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
1406 0, 1, "",
1407 "Make the frame FRAME visible (assuming it is an X-window).\n\
1408 If omitted, FRAME defaults to the currently selected frame.")
1409 (frame)
1410 Lisp_Object frame;
1411 {
1412 if (NILP (frame))
1413 XSETFRAME (frame, selected_frame);
1414
1415 CHECK_LIVE_FRAME (frame, 0);
1416
1417 /* I think this should be done with a hook. */
1418 #ifdef HAVE_WINDOW_SYSTEM
1419 if (FRAME_WINDOW_P (XFRAME (frame)))
1420 {
1421 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1422 x_make_frame_visible (XFRAME (frame));
1423 }
1424 #endif
1425
1426 /* Make menu bar update for the Buffers and Frams menus. */
1427 windows_or_buffers_changed++;
1428
1429 return frame;
1430 }
1431
1432 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
1433 0, 2, "",
1434 "Make the frame FRAME invisible (assuming it is an X-window).\n\
1435 If omitted, FRAME defaults to the currently selected frame.\n\
1436 Normally you may not make FRAME invisible if all other frames are invisible,\n\
1437 but if the second optional argument FORCE is non-nil, you may do so.")
1438 (frame, force)
1439 Lisp_Object frame, force;
1440 {
1441 if (NILP (frame))
1442 XSETFRAME (frame, selected_frame);
1443
1444 CHECK_LIVE_FRAME (frame, 0);
1445
1446 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
1447 error ("Attempt to make invisible the sole visible or iconified frame");
1448
1449 #if 0 /* This isn't logically necessary, and it can do GC. */
1450 /* Don't let the frame remain selected. */
1451 if (XFRAME (frame) == selected_frame)
1452 do_switch_frame (next_frame (frame, Qt), Qnil, 0)
1453 #endif
1454
1455 /* Don't allow minibuf_window to remain on a deleted frame. */
1456 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1457 {
1458 Fset_window_buffer (selected_frame->minibuffer_window,
1459 XWINDOW (minibuf_window)->buffer);
1460 minibuf_window = selected_frame->minibuffer_window;
1461 }
1462
1463 /* I think this should be done with a hook. */
1464 #ifdef HAVE_WINDOW_SYSTEM
1465 if (FRAME_WINDOW_P (XFRAME (frame)))
1466 x_make_frame_invisible (XFRAME (frame));
1467 #endif
1468
1469 /* Make menu bar update for the Buffers and Frams menus. */
1470 windows_or_buffers_changed++;
1471
1472 return Qnil;
1473 }
1474
1475 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
1476 0, 1, "",
1477 "Make the frame FRAME into an icon.\n\
1478 If omitted, FRAME defaults to the currently selected frame.")
1479 (frame)
1480 Lisp_Object frame;
1481 {
1482 if (NILP (frame))
1483 XSETFRAME (frame, selected_frame);
1484
1485 CHECK_LIVE_FRAME (frame, 0);
1486
1487 #if 0 /* This isn't logically necessary, and it can do GC. */
1488 /* Don't let the frame remain selected. */
1489 if (XFRAME (frame) == selected_frame)
1490 Fhandle_switch_frame (next_frame (frame, Qt), Qnil);
1491 #endif
1492
1493 /* Don't allow minibuf_window to remain on a deleted frame. */
1494 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
1495 {
1496 Fset_window_buffer (selected_frame->minibuffer_window,
1497 XWINDOW (minibuf_window)->buffer);
1498 minibuf_window = selected_frame->minibuffer_window;
1499 }
1500
1501 /* I think this should be done with a hook. */
1502 #ifdef HAVE_WINDOW_SYSTEM
1503 if (FRAME_WINDOW_P (XFRAME (frame)))
1504 x_iconify_frame (XFRAME (frame));
1505 #endif
1506
1507 /* Make menu bar update for the Buffers and Frams menus. */
1508 windows_or_buffers_changed++;
1509
1510 return Qnil;
1511 }
1512
1513 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
1514 1, 1, 0,
1515 "Return t if FRAME is now \"visible\" (actually in use for display).\n\
1516 A frame that is not \"visible\" is not updated and, if it works through\n\
1517 a window system, it may not show at all.\n\
1518 Return the symbol `icon' if frame is visible only as an icon.")
1519 (frame)
1520 Lisp_Object frame;
1521 {
1522 CHECK_LIVE_FRAME (frame, 0);
1523
1524 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
1525
1526 if (FRAME_VISIBLE_P (XFRAME (frame)))
1527 return Qt;
1528 if (FRAME_ICONIFIED_P (XFRAME (frame)))
1529 return Qicon;
1530 return Qnil;
1531 }
1532
1533 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
1534 0, 0, 0,
1535 "Return a list of all frames now \"visible\" (being updated).")
1536 ()
1537 {
1538 Lisp_Object tail, frame;
1539 struct frame *f;
1540 Lisp_Object value;
1541
1542 value = Qnil;
1543 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
1544 {
1545 frame = XCONS (tail)->car;
1546 if (!FRAMEP (frame))
1547 continue;
1548 f = XFRAME (frame);
1549 if (FRAME_VISIBLE_P (f))
1550 value = Fcons (frame, value);
1551 }
1552 return value;
1553 }
1554
1555
1556 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
1557 "Bring FRAME to the front, so it occludes any frames it overlaps.\n\
1558 If FRAME is invisible, make it visible.\n\
1559 If you don't specify a frame, the selected frame is used.\n\
1560 If Emacs is displaying on an ordinary terminal or some other device which\n\
1561 doesn't support multiple overlapping frames, this function does nothing.")
1562 (frame)
1563 Lisp_Object frame;
1564 {
1565 if (NILP (frame))
1566 XSETFRAME (frame, selected_frame);
1567
1568 CHECK_LIVE_FRAME (frame, 0);
1569
1570 /* Do like the documentation says. */
1571 Fmake_frame_visible (frame);
1572
1573 if (frame_raise_lower_hook)
1574 (*frame_raise_lower_hook) (XFRAME (frame), 1);
1575
1576 return Qnil;
1577 }
1578
1579 /* Should we have a corresponding function called Flower_Power? */
1580 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
1581 "Send FRAME to the back, so it is occluded by any frames that overlap it.\n\
1582 If you don't specify a frame, the selected frame is used.\n\
1583 If Emacs is displaying on an ordinary terminal or some other device which\n\
1584 doesn't support multiple overlapping frames, this function does nothing.")
1585 (frame)
1586 Lisp_Object frame;
1587 {
1588 if (NILP (frame))
1589 XSETFRAME (frame, selected_frame);
1590
1591 CHECK_LIVE_FRAME (frame, 0);
1592
1593 if (frame_raise_lower_hook)
1594 (*frame_raise_lower_hook) (XFRAME (frame), 0);
1595
1596 return Qnil;
1597 }
1598
1599 \f
1600 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
1601 1, 2, 0,
1602 "Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.\n\
1603 In other words, switch-frame events caused by events in FRAME will\n\
1604 request a switch to FOCUS-FRAME, and `last-event-frame' will be\n\
1605 FOCUS-FRAME after reading an event typed at FRAME.\n\
1606 \n\
1607 If FOCUS-FRAME is omitted or nil, any existing redirection is\n\
1608 cancelled, and the frame again receives its own keystrokes.\n\
1609 \n\
1610 Focus redirection is useful for temporarily redirecting keystrokes to\n\
1611 a surrogate minibuffer frame when a frame doesn't have its own\n\
1612 minibuffer window.\n\
1613 \n\
1614 A frame's focus redirection can be changed by select-frame. If frame\n\
1615 FOO is selected, and then a different frame BAR is selected, any\n\
1616 frames redirecting their focus to FOO are shifted to redirect their\n\
1617 focus to BAR. This allows focus redirection to work properly when the\n\
1618 user switches from one frame to another using `select-window'.\n\
1619 \n\
1620 This means that a frame whose focus is redirected to itself is treated\n\
1621 differently from a frame whose focus is redirected to nil; the former\n\
1622 is affected by select-frame, while the latter is not.\n\
1623 \n\
1624 The redirection lasts until `redirect-frame-focus' is called to change it.")
1625 (frame, focus_frame)
1626 Lisp_Object frame, focus_frame;
1627 {
1628 /* Note that we don't check for a live frame here. It's reasonable
1629 to redirect the focus of a frame you're about to delete, if you
1630 know what other frame should receive those keystrokes. */
1631 CHECK_FRAME (frame, 0);
1632
1633 if (! NILP (focus_frame))
1634 CHECK_LIVE_FRAME (focus_frame, 1);
1635
1636 XFRAME (frame)->focus_frame = focus_frame;
1637
1638 if (frame_rehighlight_hook)
1639 (*frame_rehighlight_hook) (XFRAME (frame));
1640
1641 return Qnil;
1642 }
1643
1644
1645 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
1646 "Return the frame to which FRAME's keystrokes are currently being sent.\n\
1647 This returns nil if FRAME's focus is not redirected.\n\
1648 See `redirect-frame-focus'.")
1649 (frame)
1650 Lisp_Object frame;
1651 {
1652 CHECK_LIVE_FRAME (frame, 0);
1653
1654 return FRAME_FOCUS_FRAME (XFRAME (frame));
1655 }
1656
1657
1658 \f
1659 /* Return the value of frame parameter PROP in frame FRAME. */
1660
1661 Lisp_Object
1662 get_frame_param (frame, prop)
1663 register struct frame *frame;
1664 Lisp_Object prop;
1665 {
1666 register Lisp_Object tem;
1667
1668 tem = Fassq (prop, frame->param_alist);
1669 if (EQ (tem, Qnil))
1670 return tem;
1671 return Fcdr (tem);
1672 }
1673
1674 /* Return the buffer-predicate of the selected frame. */
1675
1676 Lisp_Object
1677 frame_buffer_predicate ()
1678 {
1679 return selected_frame->buffer_predicate;
1680 }
1681
1682 /* Return the buffer-list of the selected frame. */
1683
1684 Lisp_Object
1685 frame_buffer_list ()
1686 {
1687 return selected_frame->buffer_list;
1688 }
1689
1690 /* Set the buffer-list of the selected frame. */
1691
1692 void
1693 set_frame_buffer_list (list)
1694 Lisp_Object list;
1695 {
1696 selected_frame->buffer_list = list;
1697 }
1698
1699 /* Discard BUFFER from the buffer-list of each frame. */
1700
1701 void
1702 frames_discard_buffer (buffer)
1703 Lisp_Object buffer;
1704 {
1705 Lisp_Object frame, tail;
1706
1707 FOR_EACH_FRAME (tail, frame)
1708 {
1709 XFRAME (frame)->buffer_list
1710 = Fdelq (buffer, XFRAME (frame)->buffer_list);
1711 }
1712 }
1713
1714 /* Move BUFFER to the end of the buffer-list of each frame. */
1715
1716 void
1717 frames_bury_buffer (buffer)
1718 Lisp_Object buffer;
1719 {
1720 Lisp_Object frame, tail;
1721
1722 FOR_EACH_FRAME (tail, frame)
1723 {
1724 XFRAME (frame)->buffer_list
1725 = nconc2 (Fdelq (buffer, XFRAME (frame)->buffer_list),
1726 Fcons (buffer, Qnil));
1727 }
1728 }
1729
1730 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
1731 If the alist already has an element for PROP, we change it. */
1732
1733 void
1734 store_in_alist (alistptr, prop, val)
1735 Lisp_Object *alistptr, val;
1736 Lisp_Object prop;
1737 {
1738 register Lisp_Object tem;
1739
1740 tem = Fassq (prop, *alistptr);
1741 if (EQ (tem, Qnil))
1742 *alistptr = Fcons (Fcons (prop, val), *alistptr);
1743 else
1744 Fsetcdr (tem, val);
1745 }
1746
1747 void
1748 store_frame_param (f, prop, val)
1749 struct frame *f;
1750 Lisp_Object prop, val;
1751 {
1752 register Lisp_Object tem;
1753
1754 if (EQ (prop, Qbuffer_list))
1755 {
1756 f->buffer_list = val;
1757 return;
1758 }
1759
1760 tem = Fassq (prop, f->param_alist);
1761 if (EQ (tem, Qnil))
1762 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
1763 else
1764 Fsetcdr (tem, val);
1765
1766 if (EQ (prop, Qbuffer_predicate))
1767 f->buffer_predicate = val;
1768
1769 if (! FRAME_WINDOW_P (f))
1770 if (EQ (prop, Qmenu_bar_lines))
1771 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
1772
1773 if (EQ (prop, Qminibuffer) && WINDOWP (val))
1774 {
1775 if (! MINI_WINDOW_P (XWINDOW (val)))
1776 error ("Surrogate minibuffer windows must be minibuffer windows.");
1777
1778 if (FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f)
1779 && !EQ (val, f->minibuffer_window))
1780 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
1781
1782 /* Install the chosen minibuffer window, with proper buffer. */
1783 f->minibuffer_window = val;
1784 }
1785 }
1786
1787 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
1788 "Return the parameters-alist of frame FRAME.\n\
1789 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.\n\
1790 The meaningful PARMs depend on the kind of frame.\n\
1791 If FRAME is omitted, return information on the currently selected frame.")
1792 (frame)
1793 Lisp_Object frame;
1794 {
1795 Lisp_Object alist;
1796 FRAME_PTR f;
1797 int height, width;
1798
1799 if (EQ (frame, Qnil))
1800 f = selected_frame;
1801 else
1802 {
1803 CHECK_FRAME (frame, 0);
1804 f = XFRAME (frame);
1805 }
1806
1807 if (!FRAME_LIVE_P (f))
1808 return Qnil;
1809
1810 alist = Fcopy_alist (f->param_alist);
1811 #ifdef MSDOS
1812 if (FRAME_MSDOS_P (f))
1813 {
1814 static char *colornames[16] =
1815 {
1816 "black", "blue", "green", "cyan", "red", "magenta", "brown",
1817 "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan",
1818 "lightred", "lightmagenta", "yellow", "white"
1819 };
1820 store_in_alist (&alist, intern ("foreground-color"),
1821 build_string (colornames[FRAME_FOREGROUND_PIXEL (f)]));
1822 store_in_alist (&alist, intern ("background-color"),
1823 build_string (colornames[FRAME_BACKGROUND_PIXEL (f)]));
1824 }
1825 store_in_alist (&alist, intern ("font"), build_string ("default"));
1826 #endif
1827 store_in_alist (&alist, Qname, f->name);
1828 height = (FRAME_NEW_HEIGHT (f) ? FRAME_NEW_HEIGHT (f) : FRAME_HEIGHT (f));
1829 store_in_alist (&alist, Qheight, make_number (height));
1830 width = (FRAME_NEW_WIDTH (f) ? FRAME_NEW_WIDTH (f) : FRAME_WIDTH (f));
1831 store_in_alist (&alist, Qwidth, make_number (width));
1832 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
1833 store_in_alist (&alist, Qminibuffer,
1834 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
1835 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
1836 : FRAME_MINIBUF_WINDOW (f)));
1837 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
1838 store_in_alist (&alist, Qbuffer_list, frame_buffer_list ());
1839
1840 /* I think this should be done with a hook. */
1841 #ifdef HAVE_WINDOW_SYSTEM
1842 if (FRAME_WINDOW_P (f))
1843 x_report_frame_params (f, &alist);
1844 else
1845 #endif
1846 {
1847 /* This ought to be correct in f->param_alist for an X frame. */
1848 Lisp_Object lines;
1849 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
1850 store_in_alist (&alist, Qmenu_bar_lines, lines);
1851 }
1852 return alist;
1853 }
1854
1855 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
1856 Smodify_frame_parameters, 2, 2, 0,
1857 "Modify the parameters of frame FRAME according to ALIST.\n\
1858 ALIST is an alist of parameters to change and their new values.\n\
1859 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.\n\
1860 The meaningful PARMs depend on the kind of frame.\n\
1861 Undefined PARMs are ignored, but stored in the frame's parameter list\n\
1862 so that `frame-parameters' will return them.")
1863 (frame, alist)
1864 Lisp_Object frame, alist;
1865 {
1866 FRAME_PTR f;
1867 register Lisp_Object tail, elt, prop, val;
1868
1869 if (EQ (frame, Qnil))
1870 f = selected_frame;
1871 else
1872 {
1873 CHECK_LIVE_FRAME (frame, 0);
1874 f = XFRAME (frame);
1875 }
1876
1877 /* I think this should be done with a hook. */
1878 #ifdef HAVE_WINDOW_SYSTEM
1879 if (FRAME_WINDOW_P (f))
1880 x_set_frame_parameters (f, alist);
1881 else
1882 #endif
1883 #ifdef MSDOS
1884 if (FRAME_MSDOS_P (f))
1885 IT_set_frame_parameters (f, alist);
1886 else
1887 #endif
1888 {
1889 int length = XINT (Flength (alist));
1890 int i;
1891 Lisp_Object *parms
1892 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
1893 Lisp_Object *values
1894 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
1895
1896 /* Extract parm names and values into those vectors. */
1897
1898 i = 0;
1899 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
1900 {
1901 Lisp_Object elt, prop, val;
1902
1903 elt = Fcar (tail);
1904 parms[i] = Fcar (elt);
1905 values[i] = Fcdr (elt);
1906 i++;
1907 }
1908
1909 /* Now process them in reverse of specified order. */
1910 for (i--; i >= 0; i--)
1911 {
1912 prop = parms[i];
1913 val = values[i];
1914 store_frame_param (f, prop, val);
1915 }
1916 }
1917
1918 return Qnil;
1919 }
1920 \f
1921 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
1922 0, 1, 0,
1923 "Height in pixels of a line in the font in frame FRAME.\n\
1924 If FRAME is omitted, the selected frame is used.\n\
1925 For a terminal frame, the value is always 1.")
1926 (frame)
1927 Lisp_Object frame;
1928 {
1929 struct frame *f;
1930
1931 if (NILP (frame))
1932 f = selected_frame;
1933 else
1934 {
1935 CHECK_FRAME (frame, 0);
1936 f = XFRAME (frame);
1937 }
1938
1939 #ifdef HAVE_WINDOW_SYSTEM
1940 if (FRAME_WINDOW_P (f))
1941 return make_number (x_char_height (f));
1942 else
1943 #endif
1944 return make_number (1);
1945 }
1946
1947
1948 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
1949 0, 1, 0,
1950 "Width in pixels of characters in the font in frame FRAME.\n\
1951 If FRAME is omitted, the selected frame is used.\n\
1952 The width is the same for all characters, because\n\
1953 currently Emacs supports only fixed-width fonts.\n\
1954 For a terminal screen, the value is always 1.")
1955 (frame)
1956 Lisp_Object frame;
1957 {
1958 struct frame *f;
1959
1960 if (NILP (frame))
1961 f = selected_frame;
1962 else
1963 {
1964 CHECK_FRAME (frame, 0);
1965 f = XFRAME (frame);
1966 }
1967
1968 #ifdef HAVE_WINDOW_SYSTEM
1969 if (FRAME_WINDOW_P (f))
1970 return make_number (x_char_width (f));
1971 else
1972 #endif
1973 return make_number (1);
1974 }
1975
1976 DEFUN ("frame-pixel-height", Fframe_pixel_height,
1977 Sframe_pixel_height, 0, 1, 0,
1978 "Return a FRAME's height in pixels.\n\
1979 For a terminal frame, the result really gives the height in characters.\n\
1980 If FRAME is omitted, the selected frame is used.")
1981 (frame)
1982 Lisp_Object frame;
1983 {
1984 struct frame *f;
1985
1986 if (NILP (frame))
1987 f = selected_frame;
1988 else
1989 {
1990 CHECK_FRAME (frame, 0);
1991 f = XFRAME (frame);
1992 }
1993
1994 #ifdef HAVE_WINDOW_SYSTEM
1995 if (FRAME_WINDOW_P (f))
1996 return make_number (x_pixel_height (f));
1997 else
1998 #endif
1999 return make_number (FRAME_HEIGHT (f));
2000 }
2001
2002 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2003 Sframe_pixel_width, 0, 1, 0,
2004 "Return FRAME's width in pixels.\n\
2005 For a terminal frame, the result really gives the width in characters.\n\
2006 If FRAME is omitted, the selected frame is used.")
2007 (frame)
2008 Lisp_Object frame;
2009 {
2010 struct frame *f;
2011
2012 if (NILP (frame))
2013 f = selected_frame;
2014 else
2015 {
2016 CHECK_FRAME (frame, 0);
2017 f = XFRAME (frame);
2018 }
2019
2020 #ifdef HAVE_WINDOW_SYSTEM
2021 if (FRAME_WINDOW_P (f))
2022 return make_number (x_pixel_width (f));
2023 else
2024 #endif
2025 return make_number (FRAME_WIDTH (f));
2026 }
2027 \f
2028 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
2029 "Specify that the frame FRAME has LINES lines.\n\
2030 Optional third arg non-nil means that redisplay should use LINES lines\n\
2031 but that the idea of the actual height of the frame should not be changed.")
2032 (frame, lines, pretend)
2033 Lisp_Object frame, lines, pretend;
2034 {
2035 register struct frame *f;
2036
2037 CHECK_NUMBER (lines, 0);
2038 if (NILP (frame))
2039 f = selected_frame;
2040 else
2041 {
2042 CHECK_LIVE_FRAME (frame, 0);
2043 f = XFRAME (frame);
2044 }
2045
2046 /* I think this should be done with a hook. */
2047 #ifdef HAVE_WINDOW_SYSTEM
2048 if (FRAME_WINDOW_P (f))
2049 {
2050 if (XINT (lines) != f->height)
2051 x_set_window_size (f, 1, f->width, XINT (lines));
2052 }
2053 else
2054 #endif
2055 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0);
2056 return Qnil;
2057 }
2058
2059 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
2060 "Specify that the frame FRAME has COLS columns.\n\
2061 Optional third arg non-nil means that redisplay should use COLS columns\n\
2062 but that the idea of the actual width of the frame should not be changed.")
2063 (frame, cols, pretend)
2064 Lisp_Object frame, cols, pretend;
2065 {
2066 register struct frame *f;
2067 CHECK_NUMBER (cols, 0);
2068 if (NILP (frame))
2069 f = selected_frame;
2070 else
2071 {
2072 CHECK_LIVE_FRAME (frame, 0);
2073 f = XFRAME (frame);
2074 }
2075
2076 /* I think this should be done with a hook. */
2077 #ifdef HAVE_WINDOW_SYSTEM
2078 if (FRAME_WINDOW_P (f))
2079 {
2080 if (XINT (cols) != f->width)
2081 x_set_window_size (f, 1, XINT (cols), f->height);
2082 }
2083 else
2084 #endif
2085 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0);
2086 return Qnil;
2087 }
2088
2089 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
2090 "Sets size of FRAME to COLS by ROWS, measured in characters.")
2091 (frame, cols, rows)
2092 Lisp_Object frame, cols, rows;
2093 {
2094 register struct frame *f;
2095 int mask;
2096
2097 CHECK_LIVE_FRAME (frame, 0);
2098 CHECK_NUMBER (cols, 2);
2099 CHECK_NUMBER (rows, 1);
2100 f = XFRAME (frame);
2101
2102 /* I think this should be done with a hook. */
2103 #ifdef HAVE_WINDOW_SYSTEM
2104 if (FRAME_WINDOW_P (f))
2105 {
2106 if (XINT (rows) != f->height || XINT (cols) != f->width
2107 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
2108 x_set_window_size (f, 1, XINT (cols), XINT (rows));
2109 }
2110 else
2111 #endif
2112 change_frame_size (f, XINT (rows), XINT (cols), 0, 0);
2113
2114 return Qnil;
2115 }
2116
2117 DEFUN ("set-frame-position", Fset_frame_position,
2118 Sset_frame_position, 3, 3, 0,
2119 "Sets position of FRAME in pixels to XOFFSET by YOFFSET.\n\
2120 This is actually the position of the upper left corner of the frame.\n\
2121 Negative values for XOFFSET or YOFFSET are interpreted relative to\n\
2122 the rightmost or bottommost possible position (that stays within the screen).")
2123 (frame, xoffset, yoffset)
2124 Lisp_Object frame, xoffset, yoffset;
2125 {
2126 register struct frame *f;
2127 int mask;
2128
2129 CHECK_LIVE_FRAME (frame, 0);
2130 CHECK_NUMBER (xoffset, 1);
2131 CHECK_NUMBER (yoffset, 2);
2132 f = XFRAME (frame);
2133
2134 /* I think this should be done with a hook. */
2135 #ifdef HAVE_WINDOW_SYSTEM
2136 if (FRAME_WINDOW_P (f))
2137 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
2138 #endif
2139
2140 return Qt;
2141 }
2142
2143 \f
2144 syms_of_frame ()
2145 {
2146 syms_of_frame_1 ();
2147
2148 staticpro (&Vframe_list);
2149
2150 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
2151 "The initial frame-object, which represents Emacs's stdout.");
2152
2153 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
2154 "Non-nil if all of emacs is iconified and frame updates are not needed.");
2155 Vemacs_iconified = Qnil;
2156
2157 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
2158 "Minibufferless frames use this frame's minibuffer.\n\
2159 \n\
2160 Emacs cannot create minibufferless frames unless this is set to an\n\
2161 appropriate surrogate.\n\
2162 \n\
2163 Emacs consults this variable only when creating minibufferless\n\
2164 frames; once the frame is created, it sticks with its assigned\n\
2165 minibuffer, no matter what this variable is set to. This means that\n\
2166 this variable doesn't necessarily say anything meaningful about the\n\
2167 current set of frames, or where the minibuffer is currently being\n\
2168 displayed.");
2169
2170 defsubr (&Sactive_minibuffer_window);
2171 defsubr (&Sframep);
2172 defsubr (&Sframe_live_p);
2173 defsubr (&Smake_terminal_frame);
2174 defsubr (&Shandle_switch_frame);
2175 defsubr (&Signore_event);
2176 defsubr (&Sselect_frame);
2177 defsubr (&Sselected_frame);
2178 defsubr (&Swindow_frame);
2179 defsubr (&Sframe_root_window);
2180 defsubr (&Sframe_first_window);
2181 defsubr (&Sframe_selected_window);
2182 defsubr (&Sset_frame_selected_window);
2183 defsubr (&Sframe_list);
2184 defsubr (&Snext_frame);
2185 defsubr (&Sprevious_frame);
2186 defsubr (&Sdelete_frame);
2187 defsubr (&Smouse_position);
2188 defsubr (&Smouse_pixel_position);
2189 defsubr (&Sset_mouse_position);
2190 defsubr (&Sset_mouse_pixel_position);
2191 #if 0
2192 defsubr (&Sframe_configuration);
2193 defsubr (&Srestore_frame_configuration);
2194 #endif
2195 defsubr (&Smake_frame_visible);
2196 defsubr (&Smake_frame_invisible);
2197 defsubr (&Siconify_frame);
2198 defsubr (&Sframe_visible_p);
2199 defsubr (&Svisible_frame_list);
2200 defsubr (&Sraise_frame);
2201 defsubr (&Slower_frame);
2202 defsubr (&Sredirect_frame_focus);
2203 defsubr (&Sframe_focus);
2204 defsubr (&Sframe_parameters);
2205 defsubr (&Smodify_frame_parameters);
2206 defsubr (&Sframe_char_height);
2207 defsubr (&Sframe_char_width);
2208 defsubr (&Sframe_pixel_height);
2209 defsubr (&Sframe_pixel_width);
2210 defsubr (&Sset_frame_height);
2211 defsubr (&Sset_frame_width);
2212 defsubr (&Sset_frame_size);
2213 defsubr (&Sset_frame_position);
2214 }
2215
2216 keys_of_frame ()
2217 {
2218 initial_define_lispy_key (global_map, "switch-frame", "handle-switch-frame");
2219 initial_define_lispy_key (global_map, "delete-frame", "handle-delete-frame");
2220 initial_define_lispy_key (global_map, "iconify-frame", "ignore-event");
2221 initial_define_lispy_key (global_map, "make-frame-visible", "ignore-event");
2222 }