1 /* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001
3 Free Software Foundation.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
37 /* These help us bind and responding to switch-frame events. */
42 #ifdef HAVE_WINDOW_SYSTEM
45 #include "termhooks.h"
46 #include "dispextern.h"
54 Lisp_Object Qframe_live_p
;
57 Lisp_Object Qminibuffer
;
58 Lisp_Object Qmodeline
;
61 Lisp_Object Qunsplittable
;
62 Lisp_Object Qmenu_bar_lines
;
63 Lisp_Object Qtool_bar_lines
;
70 Lisp_Object Qbuffer_predicate
;
71 Lisp_Object Qbuffer_list
;
73 Lisp_Object Qdisplay_type
;
74 Lisp_Object Qbackground_mode
;
75 Lisp_Object Qinhibit_default_face_x_resources
;
77 Lisp_Object Vterminal_frame
;
78 Lisp_Object Vdefault_frame_alist
;
79 Lisp_Object Vmouse_position_function
;
82 set_menu_bar_lines_1 (window
, n
)
86 struct window
*w
= XWINDOW (window
);
88 XSETFASTINT (w
->last_modified
, 0);
89 XSETFASTINT (w
->top
, XFASTINT (w
->top
) + n
);
90 XSETFASTINT (w
->height
, XFASTINT (w
->height
) - n
);
92 if (INTEGERP (w
->orig_top
))
93 XSETFASTINT (w
->orig_top
, XFASTINT (w
->orig_top
) + n
);
94 if (INTEGERP (w
->orig_height
))
95 XSETFASTINT (w
->orig_height
, XFASTINT (w
->orig_height
) - n
);
97 /* Handle just the top child in a vertical split. */
98 if (!NILP (w
->vchild
))
99 set_menu_bar_lines_1 (w
->vchild
, n
);
101 /* Adjust all children in a horizontal split. */
102 for (window
= w
->hchild
; !NILP (window
); window
= w
->next
)
104 w
= XWINDOW (window
);
105 set_menu_bar_lines_1 (window
, n
);
110 set_menu_bar_lines (f
, value
, oldval
)
112 Lisp_Object value
, oldval
;
115 int olines
= FRAME_MENU_BAR_LINES (f
);
117 /* Right now, menu bars don't work properly in minibuf-only frames;
118 most of the commands try to apply themselves to the minibuffer
119 frame itself, and get an error because you can't switch buffers
120 in or split the minibuffer window. */
121 if (FRAME_MINIBUF_ONLY_P (f
))
124 if (INTEGERP (value
))
125 nlines
= XINT (value
);
129 if (nlines
!= olines
)
131 windows_or_buffers_changed
++;
132 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
133 FRAME_MENU_BAR_LINES (f
) = nlines
;
134 set_menu_bar_lines_1 (f
->root_window
, nlines
- olines
);
139 Lisp_Object Vemacs_iconified
;
140 Lisp_Object Vframe_list
;
142 struct x_output tty_display
;
144 extern Lisp_Object Vminibuffer_list
;
145 extern Lisp_Object
get_minibuffer ();
146 extern Lisp_Object
Fhandle_switch_frame ();
147 extern Lisp_Object
Fredirect_frame_focus ();
148 extern Lisp_Object
x_get_focus_frame ();
150 DEFUN ("framep", Fframep
, Sframep
, 1, 1, 0,
151 doc
: /* Return non-nil if OBJECT is a frame.
152 Value is t for a termcap frame (a character-only terminal),
153 `x' for an Emacs frame that is really an X window,
154 `w32' for an Emacs frame that is a window on MS-Windows display,
155 `mac' for an Emacs frame on a Macintosh display,
156 `pc' for a direct-write MS-DOS frame.
157 See also `frame-live-p'. */)
161 if (!FRAMEP (object
))
163 switch (XFRAME (object
)->output_method
)
167 case output_x_window
:
171 case output_msdos_raw
:
180 DEFUN ("frame-live-p", Fframe_live_p
, Sframe_live_p
, 1, 1, 0,
181 doc
: /* Return non-nil if OBJECT is a frame which has not been deleted.
182 Value is nil if OBJECT is not a live frame. If object is a live
183 frame, the return value indicates what sort of output device it is
184 displayed on. See the documentation of `framep' for possible
189 return ((FRAMEP (object
)
190 && FRAME_LIVE_P (XFRAME (object
)))
200 register struct frame
*f
;
201 register Lisp_Object root_window
;
202 register Lisp_Object mini_window
;
204 f
= allocate_frame ();
205 XSETFRAME (frame
, f
);
207 f
->desired_matrix
= 0;
208 f
->current_matrix
= 0;
211 f
->glyphs_initialized_p
= 0;
212 f
->decode_mode_spec_buffer
= 0;
214 f
->async_visible
= 0;
215 f
->output_data
.nothing
= 0;
217 f
->async_iconified
= 0;
218 f
->wants_modeline
= 1;
223 f
->has_minibuffer
= mini_p
;
224 f
->focus_frame
= Qnil
;
225 f
->explicit_name
= 0;
226 f
->can_have_scroll_bars
= 0;
227 f
->vertical_scroll_bar_type
= vertical_scroll_bar_none
;
228 f
->param_alist
= Qnil
;
229 f
->scroll_bars
= Qnil
;
230 f
->condemned_scroll_bars
= Qnil
;
231 f
->face_alist
= Qnil
;
232 f
->face_cache
= NULL
;
233 f
->menu_bar_items
= Qnil
;
234 f
->menu_bar_vector
= Qnil
;
235 f
->menu_bar_items_used
= 0;
236 f
->buffer_predicate
= Qnil
;
237 f
->buffer_list
= Qnil
;
239 f
->kboard
= initial_kboard
;
243 f
->menu_bar_window
= Qnil
;
244 f
->tool_bar_window
= Qnil
;
245 f
->tool_bar_items
= Qnil
;
246 f
->desired_tool_bar_string
= f
->current_tool_bar_string
= Qnil
;
247 f
->n_tool_bar_items
= 0;
249 root_window
= make_window ();
252 mini_window
= make_window ();
253 XWINDOW (root_window
)->next
= mini_window
;
254 XWINDOW (mini_window
)->prev
= root_window
;
255 XWINDOW (mini_window
)->mini_p
= Qt
;
256 XWINDOW (mini_window
)->frame
= frame
;
257 f
->minibuffer_window
= mini_window
;
262 XWINDOW (root_window
)->next
= Qnil
;
263 f
->minibuffer_window
= Qnil
;
266 XWINDOW (root_window
)->frame
= frame
;
269 just so that there is "something there."
270 Correct size will be set up later with change_frame_size. */
272 SET_FRAME_WIDTH (f
, 10);
275 XSETFASTINT (XWINDOW (root_window
)->width
, 10);
276 XSETFASTINT (XWINDOW (root_window
)->height
, (mini_p
? 9 : 10));
280 XSETFASTINT (XWINDOW (mini_window
)->width
, 10);
281 XSETFASTINT (XWINDOW (mini_window
)->top
, 9);
282 XSETFASTINT (XWINDOW (mini_window
)->height
, 1);
285 /* Choose a buffer for the frame's root window. */
289 XWINDOW (root_window
)->buffer
= Qt
;
290 buf
= Fcurrent_buffer ();
291 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
292 a space), try to find another one. */
293 if (XSTRING (Fbuffer_name (buf
))->data
[0] == ' ')
294 buf
= Fother_buffer (buf
, Qnil
, Qnil
);
296 /* Use set_window_buffer, not Fset_window_buffer, and don't let
297 hooks be run by it. The reason is that the whole frame/window
298 arrangement is not yet fully intialized at this point. Windows
299 don't have the right size, glyph matrices aren't initialized
300 etc. Running Lisp functions at this point surely ends in a
302 set_window_buffer (root_window
, buf
, 0);
303 f
->buffer_list
= Fcons (buf
, Qnil
);
308 XWINDOW (mini_window
)->buffer
= Qt
;
309 set_window_buffer (mini_window
,
310 (NILP (Vminibuffer_list
)
312 : Fcar (Vminibuffer_list
)),
316 f
->root_window
= root_window
;
317 f
->selected_window
= root_window
;
318 /* Make sure this window seems more recently used than
319 a newly-created, never-selected window. */
320 XSETFASTINT (XWINDOW (f
->selected_window
)->use_time
, ++window_select_count
);
325 #ifdef HAVE_WINDOW_SYSTEM
326 /* Make a frame using a separate minibuffer window on another frame.
327 MINI_WINDOW is the minibuffer window to use. nil means use the
328 default (the global minibuffer). */
331 make_frame_without_minibuffer (mini_window
, kb
, display
)
332 register Lisp_Object mini_window
;
336 register struct frame
*f
;
339 if (!NILP (mini_window
))
340 CHECK_LIVE_WINDOW (mini_window
);
343 if (!NILP (mini_window
)
344 && XFRAME (XWINDOW (mini_window
)->frame
)->kboard
!= kb
)
345 error ("frame and minibuffer must be on the same display");
348 /* Make a frame containing just a root window. */
351 if (NILP (mini_window
))
353 /* Use default-minibuffer-frame if possible. */
354 if (!FRAMEP (kb
->Vdefault_minibuffer_frame
)
355 || ! FRAME_LIVE_P (XFRAME (kb
->Vdefault_minibuffer_frame
)))
357 Lisp_Object frame_dummy
;
359 XSETFRAME (frame_dummy
, f
);
360 GCPRO1 (frame_dummy
);
361 /* If there's no minibuffer frame to use, create one. */
362 kb
->Vdefault_minibuffer_frame
=
363 call1 (intern ("make-initial-minibuffer-frame"), display
);
367 mini_window
= XFRAME (kb
->Vdefault_minibuffer_frame
)->minibuffer_window
;
370 f
->minibuffer_window
= mini_window
;
372 /* Make the chosen minibuffer window display the proper minibuffer,
373 unless it is already showing a minibuffer. */
374 if (NILP (Fmemq (XWINDOW (mini_window
)->buffer
, Vminibuffer_list
)))
375 Fset_window_buffer (mini_window
,
376 (NILP (Vminibuffer_list
)
378 : Fcar (Vminibuffer_list
)));
382 /* Make a frame containing only a minibuffer window. */
385 make_minibuffer_frame ()
387 /* First make a frame containing just a root window, no minibuffer. */
389 register struct frame
*f
= make_frame (0);
390 register Lisp_Object mini_window
;
391 register Lisp_Object frame
;
393 XSETFRAME (frame
, f
);
398 f
->wants_modeline
= 0;
399 f
->has_minibuffer
= 1;
401 /* Now label the root window as also being the minibuffer.
402 Avoid infinite looping on the window chain by marking next pointer
405 mini_window
= f
->minibuffer_window
= f
->root_window
;
406 XWINDOW (mini_window
)->mini_p
= Qt
;
407 XWINDOW (mini_window
)->next
= Qnil
;
408 XWINDOW (mini_window
)->prev
= Qnil
;
409 XWINDOW (mini_window
)->frame
= frame
;
411 /* Put the proper buffer in that window. */
413 Fset_window_buffer (mini_window
,
414 (NILP (Vminibuffer_list
)
416 : Fcar (Vminibuffer_list
)));
419 #endif /* HAVE_WINDOW_SYSTEM */
421 /* Construct a frame that refers to the terminal (stdin and stdout). */
423 static int terminal_frame_count
;
426 make_terminal_frame ()
428 register struct frame
*f
;
435 initial_kboard
= (KBOARD
*) xmalloc (sizeof (KBOARD
));
436 init_kboard (initial_kboard
);
437 initial_kboard
->next_kboard
= all_kboards
;
438 all_kboards
= initial_kboard
;
442 /* The first call must initialize Vframe_list. */
443 if (! (NILP (Vframe_list
) || CONSP (Vframe_list
)))
448 XSETFRAME (frame
, f
);
449 Vframe_list
= Fcons (frame
, Vframe_list
);
451 terminal_frame_count
++;
452 sprintf (name
, "F%d", terminal_frame_count
);
453 f
->name
= build_string (name
);
455 f
->visible
= 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
456 f
->async_visible
= 1; /* Don't let visible be cleared later. */
458 f
->output_data
.x
= &the_only_x_display
;
459 if (!inhibit_window_system
460 && (!FRAMEP (selected_frame
) || !FRAME_LIVE_P (XFRAME (selected_frame
))
461 || XFRAME (selected_frame
)->output_method
== output_msdos_raw
))
463 f
->output_method
= output_msdos_raw
;
464 /* This initialization of foreground and background pixels is
465 only important for the initial frame created in temacs. If
466 we don't do that, we get black background and foreground in
467 the dumped Emacs because the_only_x_display is a static
468 variable, hence it is born all-zeroes, and zero is the code
469 for the black color. Other frames all inherit their pixels
470 from what's already in the_only_x_display. */
471 if ((!FRAMEP (selected_frame
) || !FRAME_LIVE_P (XFRAME (selected_frame
)))
472 && f
->output_data
.x
->background_pixel
== 0
473 && f
->output_data
.x
->foreground_pixel
== 0)
475 f
->output_data
.x
->background_pixel
= FACE_TTY_DEFAULT_BG_COLOR
;
476 f
->output_data
.x
->foreground_pixel
= FACE_TTY_DEFAULT_FG_COLOR
;
480 f
->output_method
= output_termcap
;
483 f
->output_method
= output_termcap
;
484 f
->output_data
.x
= &tty_display
;
487 make_mac_terminal_frame (f
);
489 f
->output_data
.x
= &tty_display
;
490 #endif /* macintosh */
491 #endif /* WINDOWSNT */
495 init_frame_faces (f
);
500 DEFUN ("make-terminal-frame", Fmake_terminal_frame
, Smake_terminal_frame
,
502 doc
: /* Create an additional terminal frame.
503 You can create multiple frames on a text-only terminal in this way.
504 Only the selected terminal frame is actually displayed.
505 This function takes one argument, an alist specifying frame parameters.
506 In practice, generally you don't need to specify any parameters.
507 Note that changing the size of one terminal frame automatically affects all. */)
512 Lisp_Object frame
, tem
;
513 struct frame
*sf
= SELECTED_FRAME ();
516 if (sf
->output_method
!= output_msdos_raw
517 && sf
->output_method
!= output_termcap
)
519 #else /* not MSDOS */
522 if (sf
->output_method
!= output_mac
)
523 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
525 if (sf
->output_method
!= output_termcap
)
526 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
528 #endif /* not MSDOS */
530 f
= make_terminal_frame ();
532 change_frame_size (f
, FRAME_HEIGHT (sf
),
533 FRAME_WIDTH (sf
), 0, 0, 0);
536 XSETFRAME (frame
, f
);
537 Fmodify_frame_parameters (frame
, Vdefault_frame_alist
);
538 Fmodify_frame_parameters (frame
, parms
);
540 /* Make the frame face alist be frame-specific, so that each
541 frame could change its face definitions independently. */
542 f
->face_alist
= Fcopy_alist (sf
->face_alist
);
543 /* Simple Fcopy_alist isn't enough, because we need the contents of
544 the vectors which are the CDRs of associations in face_alist to
545 be copied as well. */
546 for (tem
= f
->face_alist
; CONSP (tem
); tem
= XCDR (tem
))
547 XSETCDR (XCAR (tem
), Fcopy_sequence (XCDR (XCAR (tem
))));
552 /* Perform the switch to frame FRAME.
554 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
557 If TRACK is non-zero and the frame that currently has the focus
558 redirects its focus to the selected frame, redirect that focused
559 frame's focus to FRAME instead.
561 FOR_DELETION non-zero means that the selected frame is being
562 deleted, which includes the possibility that the frame's display
566 do_switch_frame (frame
, track
, for_deletion
)
568 int track
, for_deletion
;
570 struct frame
*sf
= SELECTED_FRAME ();
572 /* If FRAME is a switch-frame event, extract the frame we should
575 && EQ (XCAR (frame
), Qswitch_frame
)
576 && CONSP (XCDR (frame
)))
577 frame
= XCAR (XCDR (frame
));
579 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
580 a switch-frame event to arrive after a frame is no longer live,
581 especially when deleting the initial frame during startup. */
583 if (! FRAME_LIVE_P (XFRAME (frame
)))
586 if (sf
== XFRAME (frame
))
589 /* This is too greedy; it causes inappropriate focus redirection
590 that's hard to get rid of. */
592 /* If a frame's focus has been redirected toward the currently
593 selected frame, we should change the redirection to point to the
594 newly selected frame. This means that if the focus is redirected
595 from a minibufferless frame to a surrogate minibuffer frame, we
596 can use `other-window' to switch between all the frames using
597 that minibuffer frame, and the focus redirection will follow us
603 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
607 if (!FRAMEP (XCAR (tail
)))
610 focus
= FRAME_FOCUS_FRAME (XFRAME (XCAR (tail
)));
612 if (FRAMEP (focus
) && XFRAME (focus
) == SELECTED_FRAME ())
613 Fredirect_frame_focus (XCAR (tail
), frame
);
617 /* Instead, apply it only to the frame we're pointing to. */
618 #ifdef HAVE_WINDOW_SYSTEM
619 if (track
&& FRAME_WINDOW_P (XFRAME (frame
)))
621 Lisp_Object focus
, xfocus
;
623 xfocus
= x_get_focus_frame (XFRAME (frame
));
626 focus
= FRAME_FOCUS_FRAME (XFRAME (xfocus
));
627 if (FRAMEP (focus
) && XFRAME (focus
) == SELECTED_FRAME ())
628 Fredirect_frame_focus (xfocus
, frame
);
631 #endif /* HAVE_X_WINDOWS */
634 if (!for_deletion
&& FRAME_HAS_MINIBUF_P (sf
))
635 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf
)), 1);
637 selected_frame
= frame
;
638 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame
)))
639 last_nonminibuf_frame
= XFRAME (selected_frame
);
641 Fselect_window (XFRAME (frame
)->selected_window
);
643 /* We want to make sure that the next event generates a frame-switch
644 event to the appropriate frame. This seems kludgy to me, but
645 before you take it out, make sure that evaluating something like
646 (select-window (frame-root-window (new-frame))) doesn't end up
647 with your typing being interpreted in the new frame instead of
648 the one you're actually typing in. */
649 internal_last_event_frame
= Qnil
;
654 DEFUN ("select-frame", Fselect_frame
, Sselect_frame
, 1, 2, "e",
655 doc
: /* Select the frame FRAME.
656 Subsequent editing commands apply to its selected window.
657 The selection of FRAME lasts until the next time the user does
658 something to select a different frame, or until the next time this
659 function is called. */)
661 Lisp_Object frame
, no_enter
;
663 return do_switch_frame (frame
, 1, 0);
667 DEFUN ("handle-switch-frame", Fhandle_switch_frame
, Shandle_switch_frame
, 1, 2, "e",
668 doc
: /* Handle a switch-frame event EVENT.
669 Switch-frame events are usually bound to this function.
670 A switch-frame event tells Emacs that the window manager has requested
671 that the user's events be directed to the frame mentioned in the event.
672 This function selects the selected window of the frame of EVENT.
674 If EVENT is frame object, handle it as if it were a switch-frame event
677 Lisp_Object event
, no_enter
;
679 /* Preserve prefix arg that the command loop just cleared. */
680 current_kboard
->Vprefix_arg
= Vcurrent_prefix_arg
;
681 call1 (Vrun_hooks
, Qmouse_leave_buffer_hook
);
682 return do_switch_frame (event
, 0, 0);
685 DEFUN ("ignore-event", Fignore_event
, Signore_event
, 0, 0, "",
686 doc
: /* Do nothing, but preserve any prefix argument already specified.
687 This is a suitable binding for iconify-frame and make-frame-visible. */)
690 current_kboard
->Vprefix_arg
= Vcurrent_prefix_arg
;
694 DEFUN ("selected-frame", Fselected_frame
, Sselected_frame
, 0, 0, 0,
695 doc
: /* Return the frame that is now selected. */)
698 return selected_frame
;
701 DEFUN ("window-frame", Fwindow_frame
, Swindow_frame
, 1, 1, 0,
702 doc
: /* Return the frame object that window WINDOW is on. */)
706 CHECK_LIVE_WINDOW (window
);
707 return XWINDOW (window
)->frame
;
710 DEFUN ("frame-first-window", Fframe_first_window
, Sframe_first_window
, 0, 1, 0,
711 doc
: /* Returns the topmost, leftmost window of FRAME.
712 If omitted, FRAME defaults to the currently selected frame. */)
719 w
= SELECTED_FRAME ()->root_window
;
722 CHECK_LIVE_FRAME (frame
);
723 w
= XFRAME (frame
)->root_window
;
725 while (NILP (XWINDOW (w
)->buffer
))
727 if (! NILP (XWINDOW (w
)->hchild
))
728 w
= XWINDOW (w
)->hchild
;
729 else if (! NILP (XWINDOW (w
)->vchild
))
730 w
= XWINDOW (w
)->vchild
;
737 DEFUN ("active-minibuffer-window", Factive_minibuffer_window
,
738 Sactive_minibuffer_window
, 0, 0, 0,
739 doc
: /* Return the currently active minibuffer window, or nil if none. */)
742 return minibuf_level
? minibuf_window
: Qnil
;
745 DEFUN ("frame-root-window", Fframe_root_window
, Sframe_root_window
, 0, 1, 0,
746 doc
: /* Returns the root-window of FRAME.
747 If omitted, FRAME defaults to the currently selected frame. */)
754 window
= SELECTED_FRAME ()->root_window
;
757 CHECK_LIVE_FRAME (frame
);
758 window
= XFRAME (frame
)->root_window
;
764 DEFUN ("frame-selected-window", Fframe_selected_window
,
765 Sframe_selected_window
, 0, 1, 0,
766 doc
: /* Return the selected window of frame object FRAME.
767 If omitted, FRAME defaults to the currently selected frame. */)
774 window
= SELECTED_FRAME ()->selected_window
;
777 CHECK_LIVE_FRAME (frame
);
778 window
= XFRAME (frame
)->selected_window
;
784 DEFUN ("set-frame-selected-window", Fset_frame_selected_window
,
785 Sset_frame_selected_window
, 2, 2, 0,
786 doc
: /* Set the selected window of frame object FRAME to WINDOW.
787 If FRAME is nil, the selected frame is used.
788 If FRAME is the selected frame, this makes WINDOW the selected window. */)
790 Lisp_Object frame
, window
;
793 frame
= selected_frame
;
795 CHECK_LIVE_FRAME (frame
);
796 CHECK_LIVE_WINDOW (window
);
798 if (! EQ (frame
, WINDOW_FRAME (XWINDOW (window
))))
799 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
801 if (EQ (frame
, selected_frame
))
802 return Fselect_window (window
);
804 return XFRAME (frame
)->selected_window
= window
;
807 DEFUN ("frame-list", Fframe_list
, Sframe_list
,
809 doc
: /* Return a list of all frames. */)
813 frames
= Fcopy_sequence (Vframe_list
);
814 #ifdef HAVE_WINDOW_SYSTEM
815 if (FRAMEP (tip_frame
))
816 frames
= Fdelq (tip_frame
, frames
);
821 /* Return the next frame in the frame list after FRAME.
822 If MINIBUF is nil, exclude minibuffer-only frames.
823 If MINIBUF is a window, include only its own frame
824 and any frame now using that window as the minibuffer.
825 If MINIBUF is `visible', include all visible frames.
826 If MINIBUF is 0, include all visible and iconified frames.
827 Otherwise, include all frames. */
830 next_frame (frame
, minibuf
)
837 /* There must always be at least one frame in Vframe_list. */
838 if (! CONSP (Vframe_list
))
841 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
842 forever. Forestall that. */
843 CHECK_LIVE_FRAME (frame
);
846 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
853 && FRAME_KBOARD (XFRAME (f
)) == FRAME_KBOARD (XFRAME (frame
)))
855 /* Decide whether this frame is eligible to be returned. */
857 /* If we've looped all the way around without finding any
858 eligible frames, return the original frame. */
862 /* Let minibuf decide if this frame is acceptable. */
865 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f
)))
868 else if (EQ (minibuf
, Qvisible
))
870 FRAME_SAMPLE_VISIBILITY (XFRAME (f
));
871 if (FRAME_VISIBLE_P (XFRAME (f
)))
874 else if (INTEGERP (minibuf
) && XINT (minibuf
) == 0)
876 FRAME_SAMPLE_VISIBILITY (XFRAME (f
));
877 if (FRAME_VISIBLE_P (XFRAME (f
))
878 || FRAME_ICONIFIED_P (XFRAME (f
)))
881 else if (WINDOWP (minibuf
))
883 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f
)), minibuf
)
884 || EQ (WINDOW_FRAME (XWINDOW (minibuf
)), f
)
885 || EQ (WINDOW_FRAME (XWINDOW (minibuf
)),
886 FRAME_FOCUS_FRAME (XFRAME (f
))))
898 /* Return the previous frame in the frame list before FRAME.
899 If MINIBUF is nil, exclude minibuffer-only frames.
900 If MINIBUF is a window, include only its own frame
901 and any frame now using that window as the minibuffer.
902 If MINIBUF is `visible', include all visible frames.
903 If MINIBUF is 0, include all visible and iconified frames.
904 Otherwise, include all frames. */
907 prev_frame (frame
, minibuf
)
914 /* There must always be at least one frame in Vframe_list. */
915 if (! CONSP (Vframe_list
))
919 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
927 if (EQ (frame
, f
) && !NILP (prev
))
930 if (FRAME_KBOARD (XFRAME (f
)) == FRAME_KBOARD (XFRAME (frame
)))
932 /* Decide whether this frame is eligible to be returned,
933 according to minibuf. */
936 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f
)))
939 else if (WINDOWP (minibuf
))
941 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f
)), minibuf
)
942 || EQ (WINDOW_FRAME (XWINDOW (minibuf
)), f
)
943 || EQ (WINDOW_FRAME (XWINDOW (minibuf
)),
944 FRAME_FOCUS_FRAME (XFRAME (f
))))
947 else if (EQ (minibuf
, Qvisible
))
949 FRAME_SAMPLE_VISIBILITY (XFRAME (f
));
950 if (FRAME_VISIBLE_P (XFRAME (f
)))
953 else if (XFASTINT (minibuf
) == 0)
955 FRAME_SAMPLE_VISIBILITY (XFRAME (f
));
956 if (FRAME_VISIBLE_P (XFRAME (f
))
957 || FRAME_ICONIFIED_P (XFRAME (f
)))
965 /* We've scanned the entire list. */
967 /* We went through the whole frame list without finding a single
968 acceptable frame. Return the original frame. */
971 /* There were no acceptable frames in the list before FRAME; otherwise,
972 we would have returned directly from the loop. Since PREV is the last
973 acceptable frame in the list, return it. */
978 DEFUN ("next-frame", Fnext_frame
, Snext_frame
, 0, 2, 0,
979 doc
: /* Return the next frame in the frame list after FRAME.
980 It considers only frames on the same terminal as FRAME.
981 By default, skip minibuffer-only frames.
982 If omitted, FRAME defaults to the selected frame.
983 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
984 If MINIFRAME is a window, include only its own frame
985 and any frame now using that window as the minibuffer.
986 If MINIFRAME is `visible', include all visible frames.
987 If MINIFRAME is 0, include all visible and iconified frames.
988 Otherwise, include all frames. */)
990 Lisp_Object frame
, miniframe
;
993 frame
= selected_frame
;
995 CHECK_LIVE_FRAME (frame
);
996 return next_frame (frame
, miniframe
);
999 DEFUN ("previous-frame", Fprevious_frame
, Sprevious_frame
, 0, 2, 0,
1000 doc
: /* Return the previous frame in the frame list before FRAME.
1001 It considers only frames on the same terminal as FRAME.
1002 By default, skip minibuffer-only frames.
1003 If omitted, FRAME defaults to the selected frame.
1004 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
1005 If MINIFRAME is a window, include only its own frame
1006 and any frame now using that window as the minibuffer.
1007 If MINIFRAME is `visible', include all visible frames.
1008 If MINIFRAME is 0, include all visible and iconified frames.
1009 Otherwise, include all frames. */)
1011 Lisp_Object frame
, miniframe
;
1014 frame
= selected_frame
;
1015 CHECK_LIVE_FRAME (frame
);
1016 return prev_frame (frame
, miniframe
);
1019 /* Return 1 if it is ok to delete frame F;
1020 0 if all frames aside from F are invisible.
1021 (Exception: if F is the terminal frame, and we are using X, return 1.) */
1024 other_visible_frames (f
)
1027 /* We know the selected frame is visible,
1028 so if F is some other frame, it can't be the sole visible one. */
1029 if (f
== SELECTED_FRAME ())
1034 for (frames
= Vframe_list
;
1036 frames
= XCDR (frames
))
1040 this = XCAR (frames
);
1041 /* Verify that the frame's window still exists
1042 and we can still talk to it. And note any recent change
1044 #ifdef HAVE_WINDOW_SYSTEM
1045 if (FRAME_WINDOW_P (XFRAME (this)))
1047 x_sync (XFRAME (this));
1048 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
1052 if (FRAME_VISIBLE_P (XFRAME (this))
1053 || FRAME_ICONIFIED_P (XFRAME (this))
1054 /* Allow deleting the terminal frame when at least
1055 one X frame exists! */
1056 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f
)))
1064 DEFUN ("delete-frame", Fdelete_frame
, Sdelete_frame
, 0, 2, "",
1065 doc
: /* Delete FRAME, permanently eliminating it from use.
1066 If omitted, FRAME defaults to the selected frame.
1067 A frame may not be deleted if its minibuffer is used by other frames.
1068 Normally, you may not delete a frame if all other frames are invisible,
1069 but if the second optional argument FORCE is non-nil, you may do so.
1071 This function runs `delete-frame-hook' before actually deleting the
1072 frame. The hook is called with one argument FRAME. */)
1074 Lisp_Object frame
, force
;
1077 struct frame
*sf
= SELECTED_FRAME ();
1078 int minibuffer_selected
;
1080 if (EQ (frame
, Qnil
))
1083 XSETFRAME (frame
, f
);
1087 CHECK_FRAME (frame
);
1091 if (! FRAME_LIVE_P (f
))
1094 if (NILP (force
) && !other_visible_frames (f
)
1096 /* Terminal frame deleted before any other visible frames are
1098 && strcmp (XSTRING (f
->name
)->data
, "F1") != 0
1101 error ("Attempt to delete the sole visible or iconified frame");
1104 /* This is a nice idea, but x_connection_closed needs to be able
1105 to delete the last frame, if it is gone. */
1106 if (NILP (XCDR (Vframe_list
)))
1107 error ("Attempt to delete the only frame");
1110 /* Does this frame have a minibuffer, and is it the surrogate
1111 minibuffer for any other frame? */
1112 if (FRAME_HAS_MINIBUF_P (XFRAME (frame
)))
1116 for (frames
= Vframe_list
;
1118 frames
= XCDR (frames
))
1121 this = XCAR (frames
);
1123 if (! EQ (this, frame
)
1125 WINDOW_FRAME (XWINDOW
1126 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
1127 error ("Attempt to delete a surrogate minibuffer frame");
1131 /* Run `delete-frame-hook'. */
1132 if (!NILP (Vrun_hooks
))
1134 Lisp_Object args
[2];
1135 args
[0] = intern ("delete-frame-hook");
1137 Frun_hook_with_args (2, args
);
1140 minibuffer_selected
= EQ (minibuf_window
, selected_window
);
1142 /* Don't let the frame remain selected. */
1145 Lisp_Object tail
, frame1
;
1147 /* Look for another visible frame on the same terminal. */
1148 frame1
= next_frame (frame
, Qvisible
);
1150 /* If there is none, find *some* other frame. */
1151 if (NILP (frame1
) || EQ (frame1
, frame
))
1153 FOR_EACH_FRAME (tail
, frame1
)
1155 if (! EQ (frame
, frame1
))
1160 do_switch_frame (frame1
, 0, 1);
1161 sf
= SELECTED_FRAME ();
1164 /* Don't allow minibuf_window to remain on a deleted frame. */
1165 if (EQ (f
->minibuffer_window
, minibuf_window
))
1167 Fset_window_buffer (sf
->minibuffer_window
,
1168 XWINDOW (minibuf_window
)->buffer
);
1169 minibuf_window
= sf
->minibuffer_window
;
1171 /* If the dying minibuffer window was selected,
1172 select the new one. */
1173 if (minibuffer_selected
)
1174 Fselect_window (minibuf_window
);
1177 /* Don't let echo_area_window to remain on a deleted frame. */
1178 if (EQ (f
->minibuffer_window
, echo_area_window
))
1179 echo_area_window
= sf
->minibuffer_window
;
1181 /* Clear any X selections for this frame. */
1182 #ifdef HAVE_X_WINDOWS
1184 x_clear_frame_selections (f
);
1188 This function must be called before the window tree of the
1189 frame is deleted because windows contain dynamically allocated
1193 /* Mark all the windows that used to be on FRAME as deleted, and then
1194 remove the reference to them. */
1195 delete_all_subwindows (XWINDOW (f
->root_window
));
1196 f
->root_window
= Qnil
;
1198 Vframe_list
= Fdelq (frame
, Vframe_list
);
1199 FRAME_SET_VISIBLE (f
, 0);
1203 if (FRAME_INSERT_COST (f
))
1204 xfree (FRAME_INSERT_COST (f
));
1205 if (FRAME_DELETEN_COST (f
))
1206 xfree (FRAME_DELETEN_COST (f
));
1207 if (FRAME_INSERTN_COST (f
))
1208 xfree (FRAME_INSERTN_COST (f
));
1209 if (FRAME_DELETE_COST (f
))
1210 xfree (FRAME_DELETE_COST (f
));
1211 if (FRAME_MESSAGE_BUF (f
))
1212 xfree (FRAME_MESSAGE_BUF (f
));
1214 /* Since some events are handled at the interrupt level, we may get
1215 an event for f at any time; if we zero out the frame's display
1216 now, then we may trip up the event-handling code. Instead, we'll
1217 promise that the display of the frame must be valid until we have
1218 called the window-system-dependent frame destruction routine. */
1220 /* I think this should be done with a hook. */
1221 #ifdef HAVE_WINDOW_SYSTEM
1222 if (FRAME_WINDOW_P (f
))
1223 x_destroy_window (f
);
1226 f
->output_data
.nothing
= 0;
1228 /* If we've deleted the last_nonminibuf_frame, then try to find
1230 if (f
== last_nonminibuf_frame
)
1234 last_nonminibuf_frame
= 0;
1236 for (frames
= Vframe_list
;
1238 frames
= XCDR (frames
))
1240 f
= XFRAME (XCAR (frames
));
1241 if (!FRAME_MINIBUF_ONLY_P (f
))
1243 last_nonminibuf_frame
= f
;
1249 /* If we've deleted this keyboard's default_minibuffer_frame, try to
1250 find another one. Prefer minibuffer-only frames, but also notice
1251 frames with other windows. */
1252 if (EQ (frame
, FRAME_KBOARD (f
)->Vdefault_minibuffer_frame
))
1256 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
1257 Lisp_Object frame_with_minibuf
;
1258 /* Some frame we found on the same kboard, or nil if there are none. */
1259 Lisp_Object frame_on_same_kboard
;
1261 frame_on_same_kboard
= Qnil
;
1262 frame_with_minibuf
= Qnil
;
1264 for (frames
= Vframe_list
;
1266 frames
= XCDR (frames
))
1271 this = XCAR (frames
);
1276 /* Consider only frames on the same kboard
1277 and only those with minibuffers. */
1278 if (FRAME_KBOARD (f
) == FRAME_KBOARD (f1
)
1279 && FRAME_HAS_MINIBUF_P (f1
))
1281 frame_with_minibuf
= this;
1282 if (FRAME_MINIBUF_ONLY_P (f1
))
1286 if (FRAME_KBOARD (f
) == FRAME_KBOARD (f1
))
1287 frame_on_same_kboard
= this;
1290 if (!NILP (frame_on_same_kboard
))
1292 /* We know that there must be some frame with a minibuffer out
1293 there. If this were not true, all of the frames present
1294 would have to be minibufferless, which implies that at some
1295 point their minibuffer frames must have been deleted, but
1296 that is prohibited at the top; you can't delete surrogate
1297 minibuffer frames. */
1298 if (NILP (frame_with_minibuf
))
1301 FRAME_KBOARD (f
)->Vdefault_minibuffer_frame
= frame_with_minibuf
;
1304 /* No frames left on this kboard--say no minibuffer either. */
1305 FRAME_KBOARD (f
)->Vdefault_minibuffer_frame
= Qnil
;
1308 /* Cause frame titles to update--necessary if we now have just one frame. */
1309 update_mode_lines
= 1;
1314 /* Return mouse position in character cell units. */
1316 DEFUN ("mouse-position", Fmouse_position
, Smouse_position
, 0, 0, 0,
1317 doc
: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1318 The position is given in character cells, where (0, 0) is the
1320 If Emacs is running on a mouseless terminal or hasn't been programmed
1321 to read the mouse position, it returns the selected frame for FRAME
1322 and nil for X and Y.
1323 If `mouse-position-function' is non-nil, `mouse-position' calls it,
1324 passing the normal return value to that function as an argument,
1325 and returns whatever that function returns. */)
1329 Lisp_Object lispy_dummy
;
1330 enum scroll_bar_part party_dummy
;
1331 Lisp_Object x
, y
, retval
;
1333 unsigned long long_dummy
;
1334 struct gcpro gcpro1
;
1336 f
= SELECTED_FRAME ();
1340 /* It's okay for the hook to refrain from storing anything. */
1341 if (mouse_position_hook
)
1342 (*mouse_position_hook
) (&f
, -1,
1343 &lispy_dummy
, &party_dummy
,
1350 pixel_to_glyph_coords (f
, col
, row
, &col
, &row
, NULL
, 1);
1355 XSETFRAME (lispy_dummy
, f
);
1356 retval
= Fcons (lispy_dummy
, Fcons (x
, y
));
1358 if (!NILP (Vmouse_position_function
))
1359 retval
= call1 (Vmouse_position_function
, retval
);
1360 RETURN_UNGCPRO (retval
);
1363 DEFUN ("mouse-pixel-position", Fmouse_pixel_position
,
1364 Smouse_pixel_position
, 0, 0, 0,
1365 doc
: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
1366 The position is given in pixel units, where (0, 0) is the
1368 If Emacs is running on a mouseless terminal or hasn't been programmed
1369 to read the mouse position, it returns the selected frame for FRAME
1370 and nil for X and Y. */)
1374 Lisp_Object lispy_dummy
;
1375 enum scroll_bar_part party_dummy
;
1377 unsigned long long_dummy
;
1379 f
= SELECTED_FRAME ();
1383 /* It's okay for the hook to refrain from storing anything. */
1384 if (mouse_position_hook
)
1385 (*mouse_position_hook
) (&f
, -1,
1386 &lispy_dummy
, &party_dummy
,
1390 XSETFRAME (lispy_dummy
, f
);
1391 return Fcons (lispy_dummy
, Fcons (x
, y
));
1394 DEFUN ("set-mouse-position", Fset_mouse_position
, Sset_mouse_position
, 3, 3, 0,
1395 doc
: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
1396 Coordinates are relative to the frame, not a window,
1397 so the coordinates of the top left character in the frame
1398 may be nonzero due to left-hand scroll bars or the menu bar.
1400 This function is a no-op for an X frame that is not visible.
1401 If you have just created a frame, you must wait for it to become visible
1402 before calling this function on it, like this.
1403 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1405 Lisp_Object frame
, x
, y
;
1407 CHECK_LIVE_FRAME (frame
);
1411 /* I think this should be done with a hook. */
1412 #ifdef HAVE_WINDOW_SYSTEM
1413 if (FRAME_WINDOW_P (XFRAME (frame
)))
1414 /* Warping the mouse will cause enternotify and focus events. */
1415 x_set_mouse_position (XFRAME (frame
), XINT (x
), XINT (y
));
1417 #if defined (MSDOS) && defined (HAVE_MOUSE)
1418 if (FRAME_MSDOS_P (XFRAME (frame
)))
1420 Fselect_frame (frame
, Qnil
);
1421 mouse_moveto (XINT (x
), XINT (y
));
1429 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position
,
1430 Sset_mouse_pixel_position
, 3, 3, 0,
1431 doc
: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
1432 Note, this is a no-op for an X frame that is not visible.
1433 If you have just created a frame, you must wait for it to become visible
1434 before calling this function on it, like this.
1435 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
1437 Lisp_Object frame
, x
, y
;
1439 CHECK_LIVE_FRAME (frame
);
1443 /* I think this should be done with a hook. */
1444 #ifdef HAVE_WINDOW_SYSTEM
1445 if (FRAME_WINDOW_P (XFRAME (frame
)))
1446 /* Warping the mouse will cause enternotify and focus events. */
1447 x_set_mouse_pixel_position (XFRAME (frame
), XINT (x
), XINT (y
));
1449 #if defined (MSDOS) && defined (HAVE_MOUSE)
1450 if (FRAME_MSDOS_P (XFRAME (frame
)))
1452 Fselect_frame (frame
, Qnil
);
1453 mouse_moveto (XINT (x
), XINT (y
));
1461 static void make_frame_visible_1
P_ ((Lisp_Object
));
1463 DEFUN ("make-frame-visible", Fmake_frame_visible
, Smake_frame_visible
,
1465 doc
: /* Make the frame FRAME visible (assuming it is an X window).
1466 If omitted, FRAME defaults to the currently selected frame. */)
1471 frame
= selected_frame
;
1473 CHECK_LIVE_FRAME (frame
);
1475 /* I think this should be done with a hook. */
1476 #ifdef HAVE_WINDOW_SYSTEM
1477 if (FRAME_WINDOW_P (XFRAME (frame
)))
1479 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
1480 x_make_frame_visible (XFRAME (frame
));
1484 make_frame_visible_1 (XFRAME (frame
)->root_window
);
1486 /* Make menu bar update for the Buffers and Frames menus. */
1487 windows_or_buffers_changed
++;
1492 /* Update the display_time slot of the buffers shown in WINDOW
1493 and all its descendents. */
1496 make_frame_visible_1 (window
)
1501 for (;!NILP (window
); window
= w
->next
)
1503 w
= XWINDOW (window
);
1505 if (!NILP (w
->buffer
))
1506 XBUFFER (w
->buffer
)->display_time
= Fcurrent_time ();
1508 if (!NILP (w
->vchild
))
1509 make_frame_visible_1 (w
->vchild
);
1510 if (!NILP (w
->hchild
))
1511 make_frame_visible_1 (w
->hchild
);
1515 DEFUN ("make-frame-invisible", Fmake_frame_invisible
, Smake_frame_invisible
,
1517 doc
: /* Make the frame FRAME invisible (assuming it is an X window).
1518 If omitted, FRAME defaults to the currently selected frame.
1519 Normally you may not make FRAME invisible if all other frames are invisible,
1520 but if the second optional argument FORCE is non-nil, you may do so. */)
1522 Lisp_Object frame
, force
;
1525 frame
= selected_frame
;
1527 CHECK_LIVE_FRAME (frame
);
1529 if (NILP (force
) && !other_visible_frames (XFRAME (frame
)))
1530 error ("Attempt to make invisible the sole visible or iconified frame");
1532 #if 0 /* This isn't logically necessary, and it can do GC. */
1533 /* Don't let the frame remain selected. */
1534 if (EQ (frame
, selected_frame
))
1535 do_switch_frame (next_frame (frame
, Qt
), 0, 0)
1538 /* Don't allow minibuf_window to remain on a deleted frame. */
1539 if (EQ (XFRAME (frame
)->minibuffer_window
, minibuf_window
))
1541 struct frame
*sf
= XFRAME (selected_frame
);
1542 Fset_window_buffer (sf
->minibuffer_window
,
1543 XWINDOW (minibuf_window
)->buffer
);
1544 minibuf_window
= sf
->minibuffer_window
;
1547 /* I think this should be done with a hook. */
1548 #ifdef HAVE_WINDOW_SYSTEM
1549 if (FRAME_WINDOW_P (XFRAME (frame
)))
1550 x_make_frame_invisible (XFRAME (frame
));
1553 /* Make menu bar update for the Buffers and Frames menus. */
1554 windows_or_buffers_changed
++;
1559 DEFUN ("iconify-frame", Ficonify_frame
, Siconify_frame
,
1561 doc
: /* Make the frame FRAME into an icon.
1562 If omitted, FRAME defaults to the currently selected frame. */)
1567 frame
= selected_frame
;
1569 CHECK_LIVE_FRAME (frame
);
1571 #if 0 /* This isn't logically necessary, and it can do GC. */
1572 /* Don't let the frame remain selected. */
1573 if (EQ (frame
, selected_frame
))
1574 Fhandle_switch_frame (next_frame (frame
, Qt
), Qnil
);
1577 /* Don't allow minibuf_window to remain on a deleted frame. */
1578 if (EQ (XFRAME (frame
)->minibuffer_window
, minibuf_window
))
1580 struct frame
*sf
= XFRAME (selected_frame
);
1581 Fset_window_buffer (sf
->minibuffer_window
,
1582 XWINDOW (minibuf_window
)->buffer
);
1583 minibuf_window
= sf
->minibuffer_window
;
1586 /* I think this should be done with a hook. */
1587 #ifdef HAVE_WINDOW_SYSTEM
1588 if (FRAME_WINDOW_P (XFRAME (frame
)))
1589 x_iconify_frame (XFRAME (frame
));
1592 /* Make menu bar update for the Buffers and Frames menus. */
1593 windows_or_buffers_changed
++;
1598 DEFUN ("frame-visible-p", Fframe_visible_p
, Sframe_visible_p
,
1600 doc
: /* Return t if FRAME is now \"visible\" (actually in use for display).
1601 A frame that is not \"visible\" is not updated and, if it works through
1602 a window system, it may not show at all.
1603 Return the symbol `icon' if frame is visible only as an icon. */)
1607 CHECK_LIVE_FRAME (frame
);
1609 FRAME_SAMPLE_VISIBILITY (XFRAME (frame
));
1611 if (FRAME_VISIBLE_P (XFRAME (frame
)))
1613 if (FRAME_ICONIFIED_P (XFRAME (frame
)))
1618 DEFUN ("visible-frame-list", Fvisible_frame_list
, Svisible_frame_list
,
1620 doc
: /* Return a list of all frames now \"visible\" (being updated). */)
1623 Lisp_Object tail
, frame
;
1628 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
1630 frame
= XCAR (tail
);
1631 if (!FRAMEP (frame
))
1634 if (FRAME_VISIBLE_P (f
))
1635 value
= Fcons (frame
, value
);
1641 DEFUN ("raise-frame", Fraise_frame
, Sraise_frame
, 0, 1, "",
1642 doc
: /* Bring FRAME to the front, so it occludes any frames it overlaps.
1643 If FRAME is invisible, make it visible.
1644 If you don't specify a frame, the selected frame is used.
1645 If Emacs is displaying on an ordinary terminal or some other device which
1646 doesn't support multiple overlapping frames, this function does nothing. */)
1651 frame
= selected_frame
;
1653 CHECK_LIVE_FRAME (frame
);
1655 /* Do like the documentation says. */
1656 Fmake_frame_visible (frame
);
1658 if (frame_raise_lower_hook
)
1659 (*frame_raise_lower_hook
) (XFRAME (frame
), 1);
1664 /* Should we have a corresponding function called Flower_Power? */
1665 DEFUN ("lower-frame", Flower_frame
, Slower_frame
, 0, 1, "",
1666 doc
: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
1667 If you don't specify a frame, the selected frame is used.
1668 If Emacs is displaying on an ordinary terminal or some other device which
1669 doesn't support multiple overlapping frames, this function does nothing. */)
1674 frame
= selected_frame
;
1676 CHECK_LIVE_FRAME (frame
);
1678 if (frame_raise_lower_hook
)
1679 (*frame_raise_lower_hook
) (XFRAME (frame
), 0);
1685 DEFUN ("redirect-frame-focus", Fredirect_frame_focus
, Sredirect_frame_focus
,
1687 doc
: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
1688 In other words, switch-frame events caused by events in FRAME will
1689 request a switch to FOCUS-FRAME, and `last-event-frame' will be
1690 FOCUS-FRAME after reading an event typed at FRAME.
1692 If FOCUS-FRAME is omitted or nil, any existing redirection is
1693 cancelled, and the frame again receives its own keystrokes.
1695 Focus redirection is useful for temporarily redirecting keystrokes to
1696 a surrogate minibuffer frame when a frame doesn't have its own
1699 A frame's focus redirection can be changed by select-frame. If frame
1700 FOO is selected, and then a different frame BAR is selected, any
1701 frames redirecting their focus to FOO are shifted to redirect their
1702 focus to BAR. This allows focus redirection to work properly when the
1703 user switches from one frame to another using `select-window'.
1705 This means that a frame whose focus is redirected to itself is treated
1706 differently from a frame whose focus is redirected to nil; the former
1707 is affected by select-frame, while the latter is not.
1709 The redirection lasts until `redirect-frame-focus' is called to change it. */)
1710 (frame
, focus_frame
)
1711 Lisp_Object frame
, focus_frame
;
1713 /* Note that we don't check for a live frame here. It's reasonable
1714 to redirect the focus of a frame you're about to delete, if you
1715 know what other frame should receive those keystrokes. */
1716 CHECK_FRAME (frame
);
1718 if (! NILP (focus_frame
))
1719 CHECK_LIVE_FRAME (focus_frame
);
1721 XFRAME (frame
)->focus_frame
= focus_frame
;
1723 if (frame_rehighlight_hook
)
1724 (*frame_rehighlight_hook
) (XFRAME (frame
));
1730 DEFUN ("frame-focus", Fframe_focus
, Sframe_focus
, 1, 1, 0,
1731 doc
: /* Return the frame to which FRAME's keystrokes are currently being sent.
1732 This returns nil if FRAME's focus is not redirected.
1733 See `redirect-frame-focus'. */)
1737 CHECK_LIVE_FRAME (frame
);
1739 return FRAME_FOCUS_FRAME (XFRAME (frame
));
1744 /* Return the value of frame parameter PROP in frame FRAME. */
1747 get_frame_param (frame
, prop
)
1748 register struct frame
*frame
;
1751 register Lisp_Object tem
;
1753 tem
= Fassq (prop
, frame
->param_alist
);
1759 /* Return the buffer-predicate of the selected frame. */
1762 frame_buffer_predicate (frame
)
1765 return XFRAME (frame
)->buffer_predicate
;
1768 /* Return the buffer-list of the selected frame. */
1771 frame_buffer_list (frame
)
1774 return XFRAME (frame
)->buffer_list
;
1777 /* Set the buffer-list of the selected frame. */
1780 set_frame_buffer_list (frame
, list
)
1781 Lisp_Object frame
, list
;
1783 XFRAME (frame
)->buffer_list
= list
;
1786 /* Discard BUFFER from the buffer-list of each frame. */
1789 frames_discard_buffer (buffer
)
1792 Lisp_Object frame
, tail
;
1794 FOR_EACH_FRAME (tail
, frame
)
1796 XFRAME (frame
)->buffer_list
1797 = Fdelq (buffer
, XFRAME (frame
)->buffer_list
);
1801 /* Move BUFFER to the end of the buffer-list of each frame. */
1804 frames_bury_buffer (buffer
)
1807 Lisp_Object frame
, tail
;
1809 FOR_EACH_FRAME (tail
, frame
)
1811 struct frame
*f
= XFRAME (frame
);
1814 found
= Fmemq (buffer
, f
->buffer_list
);
1816 f
->buffer_list
= nconc2 (Fdelq (buffer
, f
->buffer_list
),
1817 Fcons (buffer
, Qnil
));
1821 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
1822 If the alist already has an element for PROP, we change it. */
1825 store_in_alist (alistptr
, prop
, val
)
1826 Lisp_Object
*alistptr
, val
;
1829 register Lisp_Object tem
;
1831 tem
= Fassq (prop
, *alistptr
);
1833 *alistptr
= Fcons (Fcons (prop
, val
), *alistptr
);
1839 frame_name_fnn_p (str
, len
)
1843 if (len
> 1 && str
[0] == 'F')
1847 strtol (str
+ 1, &end_ptr
, 10);
1849 if (end_ptr
== str
+ len
)
1855 /* Set the name of the terminal frame. Also used by MSDOS frames.
1856 Modeled after x_set_name which is used for WINDOW frames. */
1859 set_term_frame_name (f
, name
)
1863 f
->explicit_name
= ! NILP (name
);
1865 /* If NAME is nil, set the name to F<num>. */
1870 /* Check for no change needed in this very common case
1871 before we do any consing. */
1872 if (frame_name_fnn_p (XSTRING (f
->name
)->data
,
1873 STRING_BYTES (XSTRING (f
->name
))))
1876 terminal_frame_count
++;
1877 sprintf (namebuf
, "F%d", terminal_frame_count
);
1878 name
= build_string (namebuf
);
1882 CHECK_STRING (name
);
1884 /* Don't change the name if it's already NAME. */
1885 if (! NILP (Fstring_equal (name
, f
->name
)))
1888 /* Don't allow the user to set the frame name to F<num>, so it
1889 doesn't clash with the names we generate for terminal frames. */
1890 if (frame_name_fnn_p (XSTRING (name
)->data
, STRING_BYTES (XSTRING (name
))))
1891 error ("Frame names of the form F<num> are usurped by Emacs");
1895 update_mode_lines
= 1;
1899 store_frame_param (f
, prop
, val
)
1901 Lisp_Object prop
, val
;
1903 register Lisp_Object old_alist_elt
;
1905 /* The buffer-alist parameter is stored in a special place and is
1906 not in the alist. */
1907 if (EQ (prop
, Qbuffer_list
))
1909 f
->buffer_list
= val
;
1913 /* If PROP is a symbol which is supposed to have frame-local values,
1914 and it is set up based on this frame, switch to the global
1915 binding. That way, we can create or alter the frame-local binding
1916 without messing up the symbol's status. */
1919 Lisp_Object valcontents
;
1920 valcontents
= SYMBOL_VALUE (prop
);
1921 if ((BUFFER_LOCAL_VALUEP (valcontents
)
1922 || SOME_BUFFER_LOCAL_VALUEP (valcontents
))
1923 && XBUFFER_LOCAL_VALUE (valcontents
)->check_frame
1924 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents
)->frame
) == f
)
1925 swap_in_global_binding (prop
);
1928 /* Update the frame parameter alist. */
1929 old_alist_elt
= Fassq (prop
, f
->param_alist
);
1930 if (EQ (old_alist_elt
, Qnil
))
1931 f
->param_alist
= Fcons (Fcons (prop
, val
), f
->param_alist
);
1933 Fsetcdr (old_alist_elt
, val
);
1935 /* Update some other special parameters in their special places
1936 in addition to the alist. */
1938 if (EQ (prop
, Qbuffer_predicate
))
1939 f
->buffer_predicate
= val
;
1941 if (! FRAME_WINDOW_P (f
))
1943 if (EQ (prop
, Qmenu_bar_lines
))
1944 set_menu_bar_lines (f
, val
, make_number (FRAME_MENU_BAR_LINES (f
)));
1945 else if (EQ (prop
, Qname
))
1946 set_term_frame_name (f
, val
);
1949 if (EQ (prop
, Qminibuffer
) && WINDOWP (val
))
1951 if (! MINI_WINDOW_P (XWINDOW (val
)))
1952 error ("Surrogate minibuffer windows must be minibuffer windows.");
1954 if ((FRAME_HAS_MINIBUF_P (f
) || FRAME_MINIBUF_ONLY_P (f
))
1955 && !EQ (val
, f
->minibuffer_window
))
1956 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
1958 /* Install the chosen minibuffer window, with proper buffer. */
1959 f
->minibuffer_window
= val
;
1963 DEFUN ("frame-parameters", Fframe_parameters
, Sframe_parameters
, 0, 1, 0,
1964 doc
: /* Return the parameters-alist of frame FRAME.
1965 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
1966 The meaningful PARMs depend on the kind of frame.
1967 If FRAME is omitted, return information on the currently selected frame. */)
1974 struct gcpro gcpro1
;
1977 frame
= selected_frame
;
1979 CHECK_FRAME (frame
);
1982 if (!FRAME_LIVE_P (f
))
1985 alist
= Fcopy_alist (f
->param_alist
);
1988 if (!FRAME_WINDOW_P (f
))
1990 int fg
= FRAME_FOREGROUND_PIXEL (f
);
1991 int bg
= FRAME_BACKGROUND_PIXEL (f
);
1994 /* If the frame's parameter alist says the colors are
1995 unspecified and reversed, take the frame's background pixel
1996 for foreground and vice versa. */
1997 elt
= Fassq (Qforeground_color
, alist
);
1998 if (!NILP (elt
) && CONSP (elt
) && STRINGP (XCDR (elt
)))
2000 if (strncmp (XSTRING (XCDR (elt
))->data
,
2002 XSTRING (XCDR (elt
))->size
) == 0)
2003 store_in_alist (&alist
, Qforeground_color
, tty_color_name (f
, bg
));
2004 else if (strncmp (XSTRING (XCDR (elt
))->data
,
2006 XSTRING (XCDR (elt
))->size
) == 0)
2007 store_in_alist (&alist
, Qforeground_color
, tty_color_name (f
, fg
));
2010 store_in_alist (&alist
, Qforeground_color
, tty_color_name (f
, fg
));
2011 elt
= Fassq (Qbackground_color
, alist
);
2012 if (!NILP (elt
) && CONSP (elt
) && STRINGP (XCDR (elt
)))
2014 if (strncmp (XSTRING (XCDR (elt
))->data
,
2016 XSTRING (XCDR (elt
))->size
) == 0)
2017 store_in_alist (&alist
, Qbackground_color
, tty_color_name (f
, fg
));
2018 else if (strncmp (XSTRING (XCDR (elt
))->data
,
2020 XSTRING (XCDR (elt
))->size
) == 0)
2021 store_in_alist (&alist
, Qbackground_color
, tty_color_name (f
, bg
));
2024 store_in_alist (&alist
, Qbackground_color
, tty_color_name (f
, bg
));
2025 store_in_alist (&alist
, intern ("font"),
2026 build_string (FRAME_MSDOS_P (f
)
2028 : FRAME_W32_P (f
) ? "w32term"
2031 store_in_alist (&alist
, Qname
, f
->name
);
2032 height
= (FRAME_NEW_HEIGHT (f
) ? FRAME_NEW_HEIGHT (f
) : FRAME_HEIGHT (f
));
2033 store_in_alist (&alist
, Qheight
, make_number (height
));
2034 width
= (FRAME_NEW_WIDTH (f
) ? FRAME_NEW_WIDTH (f
) : FRAME_WIDTH (f
));
2035 store_in_alist (&alist
, Qwidth
, make_number (width
));
2036 store_in_alist (&alist
, Qmodeline
, (FRAME_WANTS_MODELINE_P (f
) ? Qt
: Qnil
));
2037 store_in_alist (&alist
, Qminibuffer
,
2038 (! FRAME_HAS_MINIBUF_P (f
) ? Qnil
2039 : FRAME_MINIBUF_ONLY_P (f
) ? Qonly
2040 : FRAME_MINIBUF_WINDOW (f
)));
2041 store_in_alist (&alist
, Qunsplittable
, (FRAME_NO_SPLIT_P (f
) ? Qt
: Qnil
));
2042 store_in_alist (&alist
, Qbuffer_list
, frame_buffer_list (frame
));
2044 /* I think this should be done with a hook. */
2045 #ifdef HAVE_WINDOW_SYSTEM
2046 if (FRAME_WINDOW_P (f
))
2047 x_report_frame_params (f
, &alist
);
2051 /* This ought to be correct in f->param_alist for an X frame. */
2053 XSETFASTINT (lines
, FRAME_MENU_BAR_LINES (f
));
2054 store_in_alist (&alist
, Qmenu_bar_lines
, lines
);
2062 DEFUN ("frame-parameter", Fframe_parameter
, Sframe_parameter
, 2, 2, 0,
2063 doc
: /* Return FRAME's value for parameter PARAMETER.
2064 If FRAME is nil, describe the currently selected frame. */)
2066 Lisp_Object frame
, parameter
;
2072 frame
= selected_frame
;
2074 CHECK_FRAME (frame
);
2075 CHECK_SYMBOL (parameter
);
2080 if (FRAME_LIVE_P (f
))
2082 /* Avoid consing in frequent cases. */
2083 if (EQ (parameter
, Qname
))
2085 #ifdef HAVE_X_WINDOWS
2086 else if (EQ (parameter
, Qdisplay
) && FRAME_X_P (f
))
2087 value
= XCAR (FRAME_X_DISPLAY_INFO (f
)->name_list_element
);
2088 #endif /* HAVE_X_WINDOWS */
2089 else if (EQ (parameter
, Qbackground_color
)
2090 || EQ (parameter
, Qforeground_color
))
2092 value
= Fassq (parameter
, f
->param_alist
);
2095 value
= XCDR (value
);
2096 /* Fframe_parameters puts the actual fg/bg color names,
2097 even if f->param_alist says otherwise. This is
2098 important when param_alist's notion of colors is
2099 "unspecified". We need to do the same here. */
2100 if (STRINGP (value
) && !FRAME_WINDOW_P (f
))
2105 if (EQ (parameter
, Qbackground_color
))
2107 color_name
= XSTRING (value
)->data
;
2108 csz
= XSTRING (value
)->size
;
2109 if (strncmp (color_name
, unspecified_bg
, csz
) == 0)
2110 value
= tty_color_name (f
, FRAME_BACKGROUND_PIXEL (f
));
2111 else if (strncmp (color_name
, unspecified_fg
, csz
) == 0)
2112 value
= tty_color_name (f
, FRAME_FOREGROUND_PIXEL (f
));
2114 else if (EQ (parameter
, Qforeground_color
))
2116 color_name
= XSTRING (value
)->data
;
2117 csz
= XSTRING (value
)->size
;
2118 if (strncmp (color_name
, unspecified_fg
, csz
) == 0)
2119 value
= tty_color_name (f
, FRAME_FOREGROUND_PIXEL (f
));
2120 else if (strncmp (color_name
, unspecified_bg
, csz
) == 0)
2121 value
= tty_color_name (f
, FRAME_BACKGROUND_PIXEL (f
));
2126 value
= Fcdr (Fassq (parameter
, Fframe_parameters (frame
)));
2128 else if (EQ (parameter
, Qdisplay_type
)
2129 || EQ (parameter
, Qbackground_mode
))
2130 value
= Fcdr (Fassq (parameter
, f
->param_alist
));
2132 value
= Fcdr (Fassq (parameter
, Fframe_parameters (frame
)));
2139 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters
,
2140 Smodify_frame_parameters
, 2, 2, 0,
2141 doc
: /* Modify the parameters of frame FRAME according to ALIST.
2142 If FRAME is nil, it defaults to the selected frame.
2143 ALIST is an alist of parameters to change and their new values.
2144 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
2145 The meaningful PARMs depend on the kind of frame.
2146 Undefined PARMs are ignored, but stored in the frame's parameter list
2147 so that `frame-parameters' will return them.
2149 The value of frame parameter FOO can also be accessed
2150 as a frame-local binding for the variable FOO, if you have
2151 enabled such bindings for that variable with `make-variable-frame-local'. */)
2153 Lisp_Object frame
, alist
;
2156 register Lisp_Object tail
, prop
, val
;
2157 int count
= BINDING_STACK_SIZE ();
2159 /* Bind this to t to inhibit initialization of the default face from
2160 X resources in face-set-after-frame-default. If we don't inhibit
2161 this, modifying the `font' frame parameter, for example, while
2162 there is a `default.attributeFont' X resource, won't work,
2163 because `default's font is reset to the value of the X resource
2164 and that resets the `font' frame parameter. */
2165 specbind (Qinhibit_default_face_x_resources
, Qt
);
2167 if (EQ (frame
, Qnil
))
2168 frame
= selected_frame
;
2169 CHECK_LIVE_FRAME (frame
);
2172 /* I think this should be done with a hook. */
2173 #ifdef HAVE_WINDOW_SYSTEM
2174 if (FRAME_WINDOW_P (f
))
2175 x_set_frame_parameters (f
, alist
);
2179 if (FRAME_MSDOS_P (f
))
2180 IT_set_frame_parameters (f
, alist
);
2185 int length
= XINT (Flength (alist
));
2188 = (Lisp_Object
*) alloca (length
* sizeof (Lisp_Object
));
2190 = (Lisp_Object
*) alloca (length
* sizeof (Lisp_Object
));
2192 /* Extract parm names and values into those vectors. */
2195 for (tail
= alist
; CONSP (tail
); tail
= Fcdr (tail
))
2200 parms
[i
] = Fcar (elt
);
2201 values
[i
] = Fcdr (elt
);
2205 /* Now process them in reverse of specified order. */
2206 for (i
--; i
>= 0; i
--)
2210 store_frame_param (f
, prop
, val
);
2214 return unbind_to (count
, Qnil
);
2217 DEFUN ("frame-char-height", Fframe_char_height
, Sframe_char_height
,
2219 doc
: /* Height in pixels of a line in the font in frame FRAME.
2220 If FRAME is omitted, the selected frame is used.
2221 For a terminal frame, the value is always 1. */)
2228 frame
= selected_frame
;
2229 CHECK_FRAME (frame
);
2232 #ifdef HAVE_WINDOW_SYSTEM
2233 if (FRAME_WINDOW_P (f
))
2234 return make_number (x_char_height (f
));
2237 return make_number (1);
2241 DEFUN ("frame-char-width", Fframe_char_width
, Sframe_char_width
,
2243 doc
: /* Width in pixels of characters in the font in frame FRAME.
2244 If FRAME is omitted, the selected frame is used.
2245 The width is the same for all characters, because
2246 currently Emacs supports only fixed-width fonts.
2247 For a terminal screen, the value is always 1. */)
2254 frame
= selected_frame
;
2255 CHECK_FRAME (frame
);
2258 #ifdef HAVE_WINDOW_SYSTEM
2259 if (FRAME_WINDOW_P (f
))
2260 return make_number (x_char_width (f
));
2263 return make_number (1);
2266 DEFUN ("frame-pixel-height", Fframe_pixel_height
,
2267 Sframe_pixel_height
, 0, 1, 0,
2268 doc
: /* Return a FRAME's height in pixels.
2269 This counts only the height available for text lines,
2270 not menu bars on window-system Emacs frames.
2271 For a terminal frame, the result really gives the height in characters.
2272 If FRAME is omitted, the selected frame is used. */)
2279 frame
= selected_frame
;
2280 CHECK_FRAME (frame
);
2283 #ifdef HAVE_WINDOW_SYSTEM
2284 if (FRAME_WINDOW_P (f
))
2285 return make_number (x_pixel_height (f
));
2288 return make_number (FRAME_HEIGHT (f
));
2291 DEFUN ("frame-pixel-width", Fframe_pixel_width
,
2292 Sframe_pixel_width
, 0, 1, 0,
2293 doc
: /* Return FRAME's width in pixels.
2294 For a terminal frame, the result really gives the width in characters.
2295 If FRAME is omitted, the selected frame is used. */)
2302 frame
= selected_frame
;
2303 CHECK_FRAME (frame
);
2306 #ifdef HAVE_WINDOW_SYSTEM
2307 if (FRAME_WINDOW_P (f
))
2308 return make_number (x_pixel_width (f
));
2311 return make_number (FRAME_WIDTH (f
));
2314 DEFUN ("set-frame-height", Fset_frame_height
, Sset_frame_height
, 2, 3, 0,
2315 doc
: /* Specify that the frame FRAME has LINES lines.
2316 Optional third arg non-nil means that redisplay should use LINES lines
2317 but that the idea of the actual height of the frame should not be changed. */)
2318 (frame
, lines
, pretend
)
2319 Lisp_Object frame
, lines
, pretend
;
2321 register struct frame
*f
;
2323 CHECK_NUMBER (lines
);
2325 frame
= selected_frame
;
2326 CHECK_LIVE_FRAME (frame
);
2329 /* I think this should be done with a hook. */
2330 #ifdef HAVE_WINDOW_SYSTEM
2331 if (FRAME_WINDOW_P (f
))
2333 if (XINT (lines
) != f
->height
)
2334 x_set_window_size (f
, 1, f
->width
, XINT (lines
));
2335 do_pending_window_change (0);
2339 change_frame_size (f
, XINT (lines
), 0, !NILP (pretend
), 0, 0);
2343 DEFUN ("set-frame-width", Fset_frame_width
, Sset_frame_width
, 2, 3, 0,
2344 doc
: /* Specify that the frame FRAME has COLS columns.
2345 Optional third arg non-nil means that redisplay should use COLS columns
2346 but that the idea of the actual width of the frame should not be changed. */)
2347 (frame
, cols
, pretend
)
2348 Lisp_Object frame
, cols
, pretend
;
2350 register struct frame
*f
;
2351 CHECK_NUMBER (cols
);
2353 frame
= selected_frame
;
2354 CHECK_LIVE_FRAME (frame
);
2357 /* I think this should be done with a hook. */
2358 #ifdef HAVE_WINDOW_SYSTEM
2359 if (FRAME_WINDOW_P (f
))
2361 if (XINT (cols
) != f
->width
)
2362 x_set_window_size (f
, 1, XINT (cols
), f
->height
);
2363 do_pending_window_change (0);
2367 change_frame_size (f
, 0, XINT (cols
), !NILP (pretend
), 0, 0);
2371 DEFUN ("set-frame-size", Fset_frame_size
, Sset_frame_size
, 3, 3, 0,
2372 doc
: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
2374 Lisp_Object frame
, cols
, rows
;
2376 register struct frame
*f
;
2378 CHECK_LIVE_FRAME (frame
);
2379 CHECK_NUMBER (cols
);
2380 CHECK_NUMBER (rows
);
2383 /* I think this should be done with a hook. */
2384 #ifdef HAVE_WINDOW_SYSTEM
2385 if (FRAME_WINDOW_P (f
))
2387 if (XINT (rows
) != f
->height
|| XINT (cols
) != f
->width
2388 || FRAME_NEW_HEIGHT (f
) || FRAME_NEW_WIDTH (f
))
2389 x_set_window_size (f
, 1, XINT (cols
), XINT (rows
));
2390 do_pending_window_change (0);
2394 change_frame_size (f
, XINT (rows
), XINT (cols
), 0, 0, 0);
2399 DEFUN ("set-frame-position", Fset_frame_position
,
2400 Sset_frame_position
, 3, 3, 0,
2401 doc
: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
2402 This is actually the position of the upper left corner of the frame.
2403 Negative values for XOFFSET or YOFFSET are interpreted relative to
2404 the rightmost or bottommost possible position (that stays within the screen). */)
2405 (frame
, xoffset
, yoffset
)
2406 Lisp_Object frame
, xoffset
, yoffset
;
2408 register struct frame
*f
;
2410 CHECK_LIVE_FRAME (frame
);
2411 CHECK_NUMBER (xoffset
);
2412 CHECK_NUMBER (yoffset
);
2415 /* I think this should be done with a hook. */
2416 #ifdef HAVE_WINDOW_SYSTEM
2417 if (FRAME_WINDOW_P (f
))
2418 x_set_offset (f
, XINT (xoffset
), XINT (yoffset
), 1);
2428 Qframep
= intern ("framep");
2429 staticpro (&Qframep
);
2430 Qframe_live_p
= intern ("frame-live-p");
2431 staticpro (&Qframe_live_p
);
2432 Qheight
= intern ("height");
2433 staticpro (&Qheight
);
2434 Qicon
= intern ("icon");
2436 Qminibuffer
= intern ("minibuffer");
2437 staticpro (&Qminibuffer
);
2438 Qmodeline
= intern ("modeline");
2439 staticpro (&Qmodeline
);
2440 Qname
= intern ("name");
2442 Qonly
= intern ("only");
2444 Qunsplittable
= intern ("unsplittable");
2445 staticpro (&Qunsplittable
);
2446 Qmenu_bar_lines
= intern ("menu-bar-lines");
2447 staticpro (&Qmenu_bar_lines
);
2448 Qtool_bar_lines
= intern ("tool-bar-lines");
2449 staticpro (&Qtool_bar_lines
);
2450 Qwidth
= intern ("width");
2451 staticpro (&Qwidth
);
2454 Qw32
= intern ("w32");
2456 Qpc
= intern ("pc");
2458 Qmac
= intern ("mac");
2460 Qvisible
= intern ("visible");
2461 staticpro (&Qvisible
);
2462 Qbuffer_predicate
= intern ("buffer-predicate");
2463 staticpro (&Qbuffer_predicate
);
2464 Qbuffer_list
= intern ("buffer-list");
2465 staticpro (&Qbuffer_list
);
2466 Qtitle
= intern ("title");
2467 staticpro (&Qtitle
);
2468 Qdisplay_type
= intern ("display-type");
2469 staticpro (&Qdisplay_type
);
2470 Qbackground_mode
= intern ("background-mode");
2471 staticpro (&Qbackground_mode
);
2473 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist
,
2474 doc
: /* Alist of default values for frame creation.
2475 These may be set in your init file, like this:
2476 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))
2477 These override values given in window system configuration data,
2478 including X Windows' defaults database.
2479 For values specific to the first Emacs frame, see `initial-frame-alist'.
2480 For values specific to the separate minibuffer frame, see
2481 `minibuffer-frame-alist'.
2482 The `menu-bar-lines' element of the list controls whether new frames
2483 have menu bars; `menu-bar-mode' works by altering this element. */);
2484 Vdefault_frame_alist
= Qnil
;
2486 Qinhibit_default_face_x_resources
2487 = intern ("inhibit-default-face-x-resources");
2488 staticpro (&Qinhibit_default_face_x_resources
);
2490 DEFVAR_LISP ("terminal-frame", &Vterminal_frame
,
2491 doc
: /* The initial frame-object, which represents Emacs's stdout. */);
2493 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified
,
2494 doc
: /* Non-nil if all of emacs is iconified and frame updates are not needed. */);
2495 Vemacs_iconified
= Qnil
;
2497 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function
,
2498 doc
: /* If non-nil, function to transform normal value of `mouse-position'.
2499 `mouse-position' calls this function, passing its usual return value as
2500 argument, and returns whatever this function returns.
2501 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
2502 which need to do mouse handling at the Lisp level. */);
2503 Vmouse_position_function
= Qnil
;
2505 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame
,
2506 doc
: /* Minibufferless frames use this frame's minibuffer.
2508 Emacs cannot create minibufferless frames unless this is set to an
2509 appropriate surrogate.
2511 Emacs consults this variable only when creating minibufferless
2512 frames; once the frame is created, it sticks with its assigned
2513 minibuffer, no matter what this variable is set to. This means that
2514 this variable doesn't necessarily say anything meaningful about the
2515 current set of frames, or where the minibuffer is currently being
2518 This variable is local to the current terminal and cannot be buffer-local. */);
2520 staticpro (&Vframe_list
);
2522 defsubr (&Sactive_minibuffer_window
);
2524 defsubr (&Sframe_live_p
);
2525 defsubr (&Smake_terminal_frame
);
2526 defsubr (&Shandle_switch_frame
);
2527 defsubr (&Signore_event
);
2528 defsubr (&Sselect_frame
);
2529 defsubr (&Sselected_frame
);
2530 defsubr (&Swindow_frame
);
2531 defsubr (&Sframe_root_window
);
2532 defsubr (&Sframe_first_window
);
2533 defsubr (&Sframe_selected_window
);
2534 defsubr (&Sset_frame_selected_window
);
2535 defsubr (&Sframe_list
);
2536 defsubr (&Snext_frame
);
2537 defsubr (&Sprevious_frame
);
2538 defsubr (&Sdelete_frame
);
2539 defsubr (&Smouse_position
);
2540 defsubr (&Smouse_pixel_position
);
2541 defsubr (&Sset_mouse_position
);
2542 defsubr (&Sset_mouse_pixel_position
);
2544 defsubr (&Sframe_configuration
);
2545 defsubr (&Srestore_frame_configuration
);
2547 defsubr (&Smake_frame_visible
);
2548 defsubr (&Smake_frame_invisible
);
2549 defsubr (&Siconify_frame
);
2550 defsubr (&Sframe_visible_p
);
2551 defsubr (&Svisible_frame_list
);
2552 defsubr (&Sraise_frame
);
2553 defsubr (&Slower_frame
);
2554 defsubr (&Sredirect_frame_focus
);
2555 defsubr (&Sframe_focus
);
2556 defsubr (&Sframe_parameters
);
2557 defsubr (&Sframe_parameter
);
2558 defsubr (&Smodify_frame_parameters
);
2559 defsubr (&Sframe_char_height
);
2560 defsubr (&Sframe_char_width
);
2561 defsubr (&Sframe_pixel_height
);
2562 defsubr (&Sframe_pixel_width
);
2563 defsubr (&Sset_frame_height
);
2564 defsubr (&Sset_frame_width
);
2565 defsubr (&Sset_frame_size
);
2566 defsubr (&Sset_frame_position
);
2572 initial_define_lispy_key (global_map
, "switch-frame", "handle-switch-frame");
2573 initial_define_lispy_key (global_map
, "delete-frame", "handle-delete-frame");
2574 initial_define_lispy_key (global_map
, "iconify-frame", "ignore-event");
2575 initial_define_lispy_key (global_map
, "make-frame-visible", "ignore-event");