annotate src/frame.c @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents c42ec1d1cded
children 57709be46d1b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Generic frame functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
25 /* This file has been Mule-ized. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "buffer.h" /* for Vbuffer_alist */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "glyphs.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "menubar.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "msdos.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include "scrollbar.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include <errno.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include "sysdep.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Lisp_Object Vselect_frame_hook, Qselect_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object Vdeselect_frame_hook, Qdeselect_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Lisp_Object Vcreate_frame_hook, Qcreate_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object Vdelete_frame_hook, Qdelete_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object Vmouse_enter_frame_hook, Qmouse_enter_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Lisp_Object Vmouse_leave_frame_hook, Qmouse_leave_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object Vmap_frame_hook, Qmap_frame_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Vunmap_frame_hook, Qunmap_frame_hook;
146
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 142
diff changeset
56 int allow_deletion_of_last_visible_frame;
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
57 Lisp_Object Vadjust_frame_function;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Lisp_Object Vmouse_motion_handler;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object Vsynchronize_minibuffers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Lisp_Object Qsynchronize_minibuffers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Lisp_Object Qbuffer_predicate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Lisp_Object Qmake_initial_minibuffer_frame;
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
63 Lisp_Object Qcustom_initialize_frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 /* We declare all these frame properties here even though many of them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 are currently only used in frame-x.c, because we should generalize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Lisp_Object Qminibuffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Lisp_Object Qunsplittable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Lisp_Object Qinternal_border_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 Lisp_Object Qtop_toolbar_shadow_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Lisp_Object Qbottom_toolbar_shadow_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Lisp_Object Qbackground_toolbar_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Lisp_Object Qtop_toolbar_shadow_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Lisp_Object Qbottom_toolbar_shadow_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Lisp_Object Qtoolbar_shadow_thickness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Lisp_Object Qscrollbar_placement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Lisp_Object Qinter_line_space;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Lisp_Object Qvisual_bell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Lisp_Object Qbell_volume;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 Lisp_Object Qpointer_background;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Lisp_Object Qpointer_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Lisp_Object Qtext_pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 Lisp_Object Qspace_pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 Lisp_Object Qmodeline_pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Lisp_Object Qgc_pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 Lisp_Object Qinitially_unmapped;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 Lisp_Object Quse_backing_store;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Lisp_Object Qborder_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Lisp_Object Qborder_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Lisp_Object Qframep, Qframe_live_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object Qframe_x_p, Qframe_tty_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Lisp_Object Qdelete_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
97 Lisp_Object Qframe_title_format, Vframe_title_format;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
98 Lisp_Object Qframe_icon_title_format, Vframe_icon_title_format;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Lisp_Object Vdefault_frame_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Lisp_Object Vdefault_frame_plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object Vframe_icon_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
105 Lisp_Object Qhidden;
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
106
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 Lisp_Object Qvisible, Qiconic, Qinvisible, Qvisible_iconic, Qinvisible_iconic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Lisp_Object Qnomini, Qvisible_nomini, Qiconic_nomini, Qinvisible_nomini;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Lisp_Object Qvisible_iconic_nomini, Qinvisible_iconic_nomini;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 Lisp_Object Qset_specifier, Qset_glyph_image, Qset_face_property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Lisp_Object Qface_property_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Lisp_Object Qframe_property_alias;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 /* If this is non-nil, it is the frame that make-frame is currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 creating. We can't set the current frame to this in case the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 debugger goes off because it would try and display to it. However,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 there are some places which need to reference it which have no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 other way of getting it if it isn't the selected frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 Lisp_Object Vframe_being_created;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Lisp_Object Qframe_being_created;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 static void store_minibuf_frame_prop (struct frame *f, Lisp_Object val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
126 EXFUN (Fset_frame_properties, 2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 mark_frame (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 struct frame *f = XFRAME (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #define MARKED_SLOT(x) ((markobj) (f->x));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 #include "frameslots.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #undef MARKED_SLOT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 ((markobj) (f->toolbar_data[0]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 ((markobj) (f->toolbar_data[1]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 ((markobj) (f->toolbar_data[2]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ((markobj) (f->toolbar_data[3]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ((markobj) (f->toolbar_size[0]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ((markobj) (f->toolbar_size[1]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ((markobj) (f->toolbar_size[2]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 ((markobj) (f->toolbar_size[3]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ((markobj) (f->toolbar_visible_p[0]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 ((markobj) (f->toolbar_visible_p[1]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ((markobj) (f->toolbar_visible_p[2]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 ((markobj) (f->toolbar_visible_p[3]));
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
153 #endif /* HAVE_TOOLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 if (FRAME_LIVE_P (f)) /* device is nil for a dead frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 MAYBE_FRAMEMETH (f, mark_frame, (f, markobj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 print_frame (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 struct frame *frm = XFRAME (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 char buf[200];
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
166
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 error ("printing unreadable object #<frame %s 0x%x>",
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
169 XSTRING_DATA (frm->name), frm->header.uid);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 sprintf (buf, "#<%s-frame ", !FRAME_LIVE_P (frm) ? "dead" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 FRAME_TYPE_NAME (frm));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 print_internal (frm->name, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 sprintf (buf, " 0x%x>", frm->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
179 DEFINE_LRECORD_IMPLEMENTATION ("frame", frame,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
180 mark_frame, print_frame, 0, 0, 0,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
181 struct frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 nuke_all_frame_slots (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 #define MARKED_SLOT(x) f->x = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #include "frameslots.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 #undef MARKED_SLOT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 f->toolbar_data[0] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 f->toolbar_data[1] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 f->toolbar_data[2] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 f->toolbar_data[3] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 f->toolbar_size[0] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 f->toolbar_size[1] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 f->toolbar_size[2] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 f->toolbar_size[3] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 f->toolbar_visible_p[0] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 f->toolbar_visible_p[1] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 f->toolbar_visible_p[2] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 f->toolbar_visible_p[3] = Qnil;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
205 #endif /* HAVE_TOOLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 /* Allocate a new frame object and set all its fields to reasonable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 values. The root window is created but the minibuffer will be done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 later. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 static struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 allocate_frame_core (Lisp_Object device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 /* This function can GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
216 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 Lisp_Object root_window;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
218 struct frame *f = alloc_lcrecord_type (struct frame, lrecord_frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 zero_lcrecord (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 nuke_all_frame_slots (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 f->device = device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 f->framemeths = XDEVICE (device)->devmeths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 f->buffer_alist = Fcopy_sequence (Vbuffer_alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 root_window = allocate_window ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 XWINDOW (root_window)->frame = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 /* 10 is arbitrary,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 just so that there is "something there."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 Correct size will be set up later with change_frame_size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 f->width = 10;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 f->height = 10;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 XWINDOW (root_window)->pixel_width = 10;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 XWINDOW (root_window)->pixel_height = 9;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 /* The size of the minibuffer window is now set in x_create_frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 in xfns.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 f->root_window = root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 f->selected_window = root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 f->last_nonminibuf_window = root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 /* Choose a buffer for the frame's root window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 XWINDOW (root_window)->buffer = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 Lisp_Object buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 buf = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 a space), try to find another one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 if (string_char (XSTRING (Fbuffer_name (buf)), 0) == ' ')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 buf = Fother_buffer (buf, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 Fset_window_buffer (root_window, buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 setup_normal_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 Lisp_Object mini_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 mini_window = allocate_window ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 XWINDOW (f->root_window)->next = mini_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 XWINDOW (mini_window)->prev = f->root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 XWINDOW (mini_window)->mini_p = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 XWINDOW (mini_window)->frame = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 f->minibuffer_window = mini_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 f->has_minibuffer = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 XWINDOW (mini_window)->buffer = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 Fset_window_buffer (mini_window, Vminibuffer_zero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 /* Make a frame using a separate minibuffer window on another frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 MINI_WINDOW is the minibuffer window to use. nil means use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 default-minibuffer-frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 setup_frame_without_minibuffer (struct frame *f, Lisp_Object mini_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 Lisp_Object device = f->device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 if (!NILP (mini_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 CHECK_LIVE_WINDOW (mini_window);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
296
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 if (!NILP (mini_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 && !EQ (DEVICE_CONSOLE (XDEVICE (device)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 FRAME_CONSOLE (XFRAME (XWINDOW (mini_window)->frame))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 error ("frame and minibuffer must be on the same console");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 if (NILP (mini_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 struct console *con = XCONSOLE (FRAME_CONSOLE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 /* Use default-minibuffer-frame if possible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 if (!FRAMEP (con->default_minibuffer_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 || ! FRAME_LIVE_P (XFRAME (con->default_minibuffer_frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /* If there's no minibuffer frame to use, create one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 con->default_minibuffer_frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 = call1 (Qmake_initial_minibuffer_frame, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 mini_window = XFRAME (con->default_minibuffer_frame)->minibuffer_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 /* Install the chosen minibuffer window, with proper buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 store_minibuf_frame_prop (f, mini_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 Fset_window_buffer (mini_window, Vminibuffer_zero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 /* Make a frame containing only a minibuffer window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 setup_minibuffer_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 /* First make a frame containing just a root window, no minibuffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 Lisp_Object mini_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 f->no_split = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 f->has_minibuffer = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 /* Now label the root window as also being the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 Avoid infinite looping on the window chain by marking next pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 as nil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 mini_window = f->minibuffer_window = f->root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 XWINDOW (mini_window)->mini_p = Qt;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
342 XWINDOW (mini_window)->next = Qnil;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
343 XWINDOW (mini_window)->prev = Qnil;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
344 XWINDOW (mini_window)->frame = frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 /* Put the proper buffer in that window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 Fset_window_buffer (mini_window, Vminibuffer_zero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 make_sure_its_a_fresh_plist (Lisp_Object foolist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 if (CONSP (Fcar (foolist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 /* looks like an alist to me. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 foolist = Fcopy_alist (foolist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 foolist = Fdestructive_alist_to_plist (foolist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 foolist = Fcopy_sequence (foolist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 return foolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
366 DEFUN ("make-frame", Fmake_frame, 0, 2, "", /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
367 Create and return a new frame, displaying the current buffer.
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
368 Runs the functions listed in `create-frame-hook' after frame creation.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 Optional argument PROPS is a property list (a list of alternating
151
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
371 keyword-value specifications) of properties for the new frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 \(An alist is accepted for backward compatibility but should not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 be passed in.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 See `set-frame-properties', `default-x-frame-plist', and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 `default-tty-frame-plist' for the specially-recognized properties.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
377 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
378 (props, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 Lisp_Object frame = Qnil, name = Qnil, minibuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 int first_frame_on_device = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 int first_frame_on_console = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 XSETDEVICE (device, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 /* PROPS and NAME may be freshly-created, so make sure to GCPRO. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 GCPRO3 (frame, props, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 props = make_sure_its_a_fresh_plist (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 if (DEVICE_SPECIFIC_FRAME_PROPS (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 /* Put the device-specific props before the more general ones so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 that they override them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 props = nconc2 (props,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 make_sure_its_a_fresh_plist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (*DEVICE_SPECIFIC_FRAME_PROPS (d)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 props = nconc2 (props, make_sure_its_a_fresh_plist (Vdefault_frame_plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 Fcanonicalize_lax_plist (props, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 name = Flax_plist_get (props, Qname, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 if (!NILP (name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 CHECK_STRING (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 else if (STRINGP (Vdefault_frame_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 name = Vdefault_frame_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 name = build_string ("emacs");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 if (!NILP (Fstring_match (make_string ((CONST Bufbyte *) "\\.", 2), name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 Qnil, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 signal_simple_error (". not allowed in frame names", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 f = allocate_frame_core (device);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
417 XSETFRAME (frame, f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 specbind (Qframe_being_created, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 f->name = name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 FRAMEMETH (f, init_frame_1, (f, props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 minibuf = Flax_plist_get (props, Qminibuffer, Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 if (UNBOUNDP (minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 /* If minibuf is unspecified, then look for a minibuffer X resource. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 /* #### Not implemented any more. We need to fix things up so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 that we search out all X resources and append them to the end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 props, above. This is the only way in general to assure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 coherent behavior for all frame properties/resources/etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 props = Flax_plist_remprop (props, Qminibuffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 if (EQ (minibuf, Qnone) || NILP (minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 setup_frame_without_minibuffer (f, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 else if (EQ (minibuf, Qonly))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 setup_minibuffer_frame (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 else if (WINDOWP (minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 setup_frame_without_minibuffer (f, minibuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 else if (EQ (minibuf, Qt) || UNBOUNDP (minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 setup_normal_frame (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 signal_simple_error ("Invalid value for `minibuffer'", minibuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 update_frame_window_mirror (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 if (initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 if (!NILP (f->minibuffer_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 reset_face_cachels (XWINDOW (f->minibuffer_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 reset_face_cachels (XWINDOW (f->root_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
456 /* If no frames on this device formerly existed, say this is the
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
457 first frame. It kind of assumes that frameless devices don't
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
458 exist, but it shouldn't be too harmful. */
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
459 if (NILP (DEVICE_FRAME_LIST (d)))
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
460 first_frame_on_device = 1;
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
461
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 /* This *must* go before the init_*() methods. Those functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 call Lisp code, and if any of them causes a warning to be displayed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 and the *Warnings* buffer to be created, it won't get added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 the frame-specific version of the buffer-alist unless the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 is accessible from the device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
468 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 DEVICE_FRAME_LIST (d) = nconc2 (DEVICE_FRAME_LIST (d), Fcons (frame, Qnil));
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
470 #endif
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
471 DEVICE_FRAME_LIST (d) = Fcons (frame, DEVICE_FRAME_LIST (d));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 RESET_CHANGED_SET_FLAGS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 /* Now make sure that the initial cached values are set correctly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 Do this after the init_frame method is called because that may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 do things (e.g. create widgets) that are necessary for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 specifier value-changed methods to work OK. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 recompute_all_cached_specifiers_in_frame (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 if (!DEVICE_STREAM_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 init_frame_faces (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 /* Finish up resourcing the scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 init_frame_scrollbars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 /* Create the initial toolbars. We have to do this after the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 methods are called because it may potentially call some things itself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 which depend on the normal frame methods having initialized
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 things. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 init_frame_toolbars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 reset_face_cachels (XWINDOW (FRAME_SELECTED_WINDOW (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 reset_glyph_cachels (XWINDOW (FRAME_SELECTED_WINDOW (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 change_frame_size (f, f->height, f->width, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 MAYBE_FRAMEMETH (f, init_frame_2, (f, props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 Fset_frame_properties (frame, props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 MAYBE_FRAMEMETH (f, init_frame_3, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 /* Hallelujah, praise the lord. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 f->init_finished = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 /* If this is the first frame on the device, make it the selected one. */
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
510 if (first_frame_on_device && NILP (DEVICE_SELECTED_FRAME (d)))
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
511 set_device_selected_frame (d, frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 /* If at startup or if the current console is a stream console
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (usually also at startup), make this console the selected one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 so that messages show up on it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 if (NILP (Fselected_console ()) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 CONSOLE_STREAM_P (XCONSOLE (Fselected_console ())))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 Fselect_console (DEVICE_CONSOLE (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 first_frame_on_console =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (first_frame_on_device &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 XINT (Flength (CONSOLE_DEVICE_LIST (XCONSOLE (DEVICE_CONSOLE (d)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 == 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 /* #### all this calling of frame methods at various odd times
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 is somewhat of a mess. It's necessary to do it this way due
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 to strange console-type-specific things that need to be done. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 MAYBE_FRAMEMETH (f, after_init_frame, (f, first_frame_on_device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 first_frame_on_console));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 if (first_frame_on_device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 if (first_frame_on_console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 va_run_hook_with_args (Qcreate_console_hook, 1, DEVICE_CONSOLE (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 va_run_hook_with_args (Qcreate_device_hook, 1, device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 va_run_hook_with_args (Qcreate_frame_hook, 1, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
539 /* Initialize custom-specific stuff. */
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
540 if (!UNBOUNDP (symbol_function (XSYMBOL (Qcustom_initialize_frame))))
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
541 call1 (Qcustom_initialize_frame, frame);
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
542
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 /* this function should be used in most cases when a Lisp function is passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 a FRAME argument. Use this unless you don't accept nil == current frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (in which case, do a CHECK_LIVE_FRAME() and then an XFRAME()) or you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 allow dead frames. Note that very few functions should accept dead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 frames. It could be argued that functions should just do nothing when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 given a dead frame, but the presence of a dead frame usually indicates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 an oversight in the Lisp code that could potentially lead to strange
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 results and so it is better to catch the error early.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 If you only accept X frames, use decode_x_frame(), which does what this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 function does but also makes sure the frame is an X frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 decode_frame (Lisp_Object frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 if (NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 return selected_frame ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
567
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
568 CHECK_LIVE_FRAME (frame);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
569 return XFRAME (frame);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 decode_frame_or_selected (Lisp_Object cdf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 if (CONSOLEP (cdf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 cdf = CONSOLE_SELECTED_DEVICE (decode_console (cdf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 if (DEVICEP (cdf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 cdf = DEVICE_SELECTED_FRAME (decode_device (cdf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 return decode_frame (cdf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 make_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
585 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 * window size changes are held up during critical regions. Afterwards,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 * we want to deal with any delayed changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 hold_frame_size_changes (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 in_display = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 unhold_one_frame_size_changes (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 in_display = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 if (f->size_change_pending)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 change_frame_size (f, f->new_height, f->new_width, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 unhold_frame_size_changes (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 unhold_one_frame_size_changes (XFRAME (XCAR (frmcons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 }
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
618
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
619 void
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
620 invalidate_vertical_divider_cache_in_frame (struct frame *f)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
621 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
622 /* Invalidate cached value of needs_vertical_divider_p in
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
623 every and all windows */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
624 map_windows (f, invalidate_vertical_divider_cache_in_window, 0);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
625 }
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
626
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
627 /*
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
628 * Frame size may change due to changes in scrollbars, toolbars,
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
629 * default font etc. These changes are applied early in redisplay
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
630 * frame.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
631 */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
632 void
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
633 adjust_frame_size (struct frame *f)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
634 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
635 int keep_char_size = 0;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
636 Lisp_Object frame;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
637 XSETFRAME (frame, f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
638
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
639 if (!f->size_slipped)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
640 return;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
641
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
642 /* Don't adjust tty frames. #### May break when TTY have menubars.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
643 Then, write an Vadjust_frame_function which will return t for TTY
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
644 frames. Another solution is frame_size_fixed_p method for TTYs,
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
645 which always returned yes it's fixed.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
646 */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
647 if (!FRAME_WIN_P (f))
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
648 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
649 CLEAR_FRAME_SIZE_SLIPPED (f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
650 return;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
651 }
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
652
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
653 /* frame_size_fixed_p tells that frame size cannot currently
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
654 be changed change due to external conditions */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
655 if (!FRAMEMETH_OR_GIVEN (f, frame_size_fixed_p, (f), 0))
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
656 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
657 if (NILP (Vadjust_frame_function))
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
658 keep_char_size = 1;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
659 else if (EQ (Vadjust_frame_function, Qt))
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
660 keep_char_size = 0;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
661 else
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
662 keep_char_size =
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
663 NILP (call1_trapping_errors ("Error in adjust-frame-function",
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
664 Vadjust_frame_function, frame));
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
665
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
666 if (keep_char_size)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
667 Fset_frame_size (frame, make_int (FRAME_CHARWIDTH(f)),
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
668 make_int (FRAME_CHARHEIGHT(f)), Qnil);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
669 }
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
670
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
671 if (!keep_char_size)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
672 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
673 int height, width;
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
674 pixel_to_char_size (f, FRAME_PIXWIDTH(f), FRAME_PIXHEIGHT(f),
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
675 &width, &height);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
676 change_frame_size (f, height, width, 0);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
677 CLEAR_FRAME_SIZE_SLIPPED (f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
678 }
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
679 }
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
680
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
681 /*
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
682 * This is a "specifier changed in frame" handler for various specifiers
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
683 * changing which causes frame size adjustment
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
684 */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
685 void
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
686 frame_size_slipped (Lisp_Object specifier, struct frame *f,
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
687 Lisp_Object oldval)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
688 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
689 MARK_FRAME_SIZE_SLIPPED(f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
690 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
692 DEFUN ("framep", Fframep, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 Return non-nil if OBJECT is a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 Also see `frame-live-p'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 Note that FSF Emacs kludgily returns a value indicating what type of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 frame this is. Use the cleaner function `frame-type' for that.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
697 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
698 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
700 return FRAMEP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
703 DEFUN ("frame-live-p", Fframe_live_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 Return non-nil if OBJECT is a frame which has not been deleted.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
705 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
706 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
708 return FRAMEP (object) && FRAME_LIVE_P (XFRAME (object)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
712 DEFUN ("focus-frame", Ffocus_frame, 1, 1, 0, /*
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
713 Select FRAME and give it the window system focus.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
714 This function is not affected by the value of `focus-follows-mouse'.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
715 */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
716 (frame))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
717 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
718 CHECK_LIVE_FRAME (frame);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
719
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
720 MAYBE_DEVMETH (XDEVICE (FRAME_DEVICE (XFRAME (frame))), focus_on_frame,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
721 (XFRAME (frame)));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
722 /* FRAME will be selected by the time we receive the next event.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
723 However, it is better to select it explicitly now, in case the
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
724 Lisp code depends on frame being selected. */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
725 Fselect_frame (frame);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
726 return Qnil;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
727 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
728
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 /* Called from Fselect_window() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 select_frame_1 (Lisp_Object frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 struct frame *f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 Lisp_Object old_selected_frame = Fselected_frame (Qnil);
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
735
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 if (EQ (frame, old_selected_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 /* now select the frame's device */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 set_device_selected_frame (XDEVICE (FRAME_DEVICE (f)), frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 select_device_1 (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 update_frame_window_mirror (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
746 DEFUN ("select-frame", Fselect_frame, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 Select the frame FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 Subsequent editing commands apply to its selected window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 The selection of FRAME lasts until the next time the user does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 something to select a different frame, or until the next time this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 function is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
753 Note that this does not actually cause the window-system focus to be
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
754 set to this frame, or the `select-frame-hook' or `deselect-frame-hook'
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 to be run, until the next time that XEmacs is waiting for an event.
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
756
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
757 Also note that when focus-follows-mouse is non-nil, the frame
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
758 selection is temporary and is reverted when the current command
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
759 terminates, much like the buffer selected by `set-buffer'. In order
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
760 to effect a permanent focus change, use `focus-frame'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
761 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
762 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 CHECK_LIVE_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 /* select the frame's selected window. This will call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 selected_frame_1(). */
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
768 Fselect_window (FRAME_SELECTED_WINDOW (XFRAME (frame)), Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 /* Nothing should be depending on the return value of this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 But, of course, there is stuff out there which is. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 /* use this to retrieve the currently selected frame. You should use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 this in preference to Fselected_frame (Qnil) unless you are prepared
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 to handle the possibility of there being no selected frame (this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 happens at some points during startup). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 selected_frame (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 Lisp_Object device = Fselected_device (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 Lisp_Object frame = DEVICE_SELECTED_FRAME (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 if (NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 signal_simple_error ("No frames exist on device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 return XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 /* use this instead of XFRAME (DEVICE_SELECTED_FRAME (d)) to catch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 the possibility of there being no frames on the device (just created).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 There is no point doing this inside of redisplay because errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 cause an abort(), indicating a flaw in the logic, and error_check_frame()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 will catch this just as well. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 device_selected_frame (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 Lisp_Object frame = DEVICE_SELECTED_FRAME (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 if (NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 XSETDEVICE (device, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 signal_simple_error ("No frames exist on device", device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 return XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
811 xxDEFUN ("handle-switch-frame", Fhandle_switch_frame, 1, 2, "e", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 Handle a switch-frame event EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 Switch-frame events are usually bound to this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 A switch-frame event tells Emacs that the window manager has requested
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 that the user's events be directed to the frame mentioned in the event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 This function selects the selected window of the frame of EVENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 If EVENT is frame object, handle it as if it were a switch-frame event
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 to that frame.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
820 */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
821 (frame, no_enter))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 /* Preserve prefix arg that the command loop just cleared. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 XCONSOLE (Vselected_console)->prefix_arg = Vcurrent_prefix_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 #if 0 /* unclean! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 run_hook (Qmouse_leave_buffer_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 return do_switch_frame (frame, no_enter, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
831 /* A load of garbage. */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
832 xxDEFUN ("ignore-event", Fignore_event, 0, 0, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 Do nothing, but preserve any prefix argument already specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 This is a suitable binding for iconify-frame and make-frame-visible.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
835 */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
836 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 struct console *c = XCONSOLE (Vselected_console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 c->prefix_arg = Vcurrent_prefix_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
844 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
846 DEFUN ("selected-frame", Fselected_frame, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 Return the frame that is now selected on device DEVICE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 If DEVICE is not specified, the selected device will be used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 If no frames exist on the device, nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
850 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
851 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 if (NILP (device) && NILP (Fselected_device (Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 return Qnil; /* happens early in temacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 return DEVICE_SELECTED_FRAME (decode_device (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 frame_first_window (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 Lisp_Object w = f->root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 if (! NILP (XWINDOW (w)->hchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 w = XWINDOW (w)->hchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 else if (! NILP (XWINDOW (w)->vchild))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 w = XWINDOW (w)->vchild;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 return w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
876 DEFUN ("active-minibuffer-window", Factive_minibuffer_window, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 Return the currently active minibuffer window, or nil if none.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
878 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
879 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 return minibuf_level ? minibuf_window : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
884 DEFUN ("last-nonminibuf-frame", Flast_nonminibuf_frame, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 Return the most-recently-selected non-minibuffer-only frame on CONSOLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 This will always be the same as (selected-frame device) unless the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 selected frame is a minibuffer-only frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 CONSOLE defaults to the selected console if omitted.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
889 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
890 (console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 XSETCONSOLE (console, decode_console (console));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 /* Just in case the machinations in delete_frame_internal() resulted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 in the last-nonminibuf-frame getting out of sync, make sure and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 return the selected frame if it's acceptable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 result = Fselected_frame (CONSOLE_SELECTED_DEVICE (XCONSOLE (console)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 if (!NILP (result) && !FRAME_MINIBUF_ONLY_P (XFRAME (result)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 return CONSOLE_LAST_NONMINIBUF_FRAME (XCONSOLE (console));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
904 DEFUN ("frame-root-window", Fframe_root_window, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 Return the root-window of FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 If omitted, FRAME defaults to the currently selected frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
907 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
908 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
910 struct frame *f = decode_frame (frame);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
911 return FRAME_ROOT_WINDOW (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
914 DEFUN ("frame-selected-window", Fframe_selected_window, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 Return the selected window of frame object FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 If omitted, FRAME defaults to the currently selected frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
917 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
918 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
920 struct frame *f = decode_frame (frame);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
921 return FRAME_SELECTED_WINDOW (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 set_frame_selected_window (struct frame *f, Lisp_Object window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 assert (XFRAME (WINDOW_FRAME (XWINDOW (window))) == f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 f->selected_window = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 if (!MINI_WINDOW_P (XWINDOW (window)) || FRAME_MINIBUF_ONLY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 f->last_nonminibuf_window = window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
933 DEFUN ("set-frame-selected-window", Fset_frame_selected_window, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 Set the selected window of frame object FRAME to WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 If FRAME is nil, the selected frame is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 If FRAME is the selected frame, this makes WINDOW the selected window.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
937 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
938 (frame, window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 XSETFRAME (frame, decode_frame (frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 CHECK_LIVE_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 if (XFRAME (frame) == selected_frame ())
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
947 return Fselect_window (window, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 set_frame_selected_window (XFRAME (frame), window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 return window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
954 DEFUN ("frame-device", Fframe_device, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 Return the device that FRAME is on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 If omitted, FRAME defaults to the currently selected frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
957 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
958 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
960 return FRAME_DEVICE (decode_frame (frame));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 is_surrogate_for_selected_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 struct device *d = XDEVICE (f->device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 struct frame *dsf = device_selected_frame (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 /* Can't be a surrogate for ourselves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 if (f == dsf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 if (!FRAME_HAS_MINIBUF_P (dsf) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 f == XFRAME (WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (dsf)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 frame_matches_frametype (Lisp_Object frame, Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 struct frame *f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 if (WINDOWP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 CHECK_LIVE_WINDOW (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 if (EQ (FRAME_MINIBUF_WINDOW (f), type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 /* Check that F either is, or has forwarded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 its focus to, TYPE's frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 && (EQ (WINDOW_FRAME (XWINDOW (type)), frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 || EQ (WINDOW_FRAME (XWINDOW (type)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 FRAME_FOCUS_FRAME (f))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 if (EQ (type, Qvisible) || EQ (type, Qiconic) || EQ (type, Qvisible_iconic)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 || EQ (type, Qvisible_nomini) || EQ (type, Qiconic_nomini)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 || EQ (type, Qvisible_iconic_nomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 FRAME_SAMPLE_VISIBILITY (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 if (NILP (type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 type = Qnomini;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 if (ZEROP (type))
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 70
diff changeset
1010 type = Qvisible_iconic;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 if (EQ (type, Qvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 return FRAME_VISIBLE_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 if (EQ (type, Qiconic))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 return FRAME_ICONIFIED_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 if (EQ (type, Qinvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 return !FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 if (EQ (type, Qvisible_iconic))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 return FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 if (EQ (type, Qinvisible_iconic))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 return !FRAME_VISIBLE_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 if (EQ (type, Qnomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 return !FRAME_MINIBUF_ONLY_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 if (EQ (type, Qvisible_nomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 return FRAME_VISIBLE_P (f) && !FRAME_MINIBUF_ONLY_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 if (EQ (type, Qiconic_nomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 return FRAME_ICONIFIED_P (f) && !FRAME_MINIBUF_ONLY_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 if (EQ (type, Qinvisible_nomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 return !FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 !FRAME_MINIBUF_ONLY_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 if (EQ (type, Qvisible_iconic_nomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 return ((FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 && !FRAME_MINIBUF_ONLY_P (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 if (EQ (type, Qinvisible_iconic_nomini))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 return !FRAME_VISIBLE_P (f) && !FRAME_MINIBUF_ONLY_P (f);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1037
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 device_matches_console_spec (Lisp_Object frame, Lisp_Object device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 Lisp_Object console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 if (EQ (console, Qwindow_system))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 return DEVICE_WIN_P (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 if (NILP (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 console = (DEVICE_CONSOLE (XDEVICE (FRAME_DEVICE (XFRAME (frame)))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 if (DEVICEP (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 return EQ (device, console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 if (CONSOLEP (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 return EQ (DEVICE_CONSOLE (XDEVICE (device)), console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 if (valid_console_type_p (console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 return EQ (DEVICE_TYPE (XDEVICE (device)), console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 /* Return the next frame in the frame list after FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 FRAMETYPE and CONSOLE control which frames and devices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 are considered; see `next-frame'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 next_frame_internal (Lisp_Object frame, Lisp_Object frametype,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 Lisp_Object console, int called_from_delete_device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 int passed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 int started_over = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 /* If this frame is dead, it won't be in frame_list, and we'll loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 forever. Forestall that. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 CHECK_LIVE_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 Lisp_Object device = XCAR (devcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 Lisp_Object frmcons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 if (!device_matches_console_spec (frame, device, console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 DEVICE_FRAME_LOOP (frmcons, XDEVICE (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 Lisp_Object f = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 if (passed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 /* #### Doing this here is bad and is now
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 unnecessary. The real bug was that f->iconified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 was never, ever updated unless a user explicitly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 called frame-iconified-p. That has now been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 fixed. With this change removed all of the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 changes made to support this routine having the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 called_from_delete_device arg could be removed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 But it is too close to release to do that now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 /* Make sure the visibility and iconified flags are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 up-to-date unless we're being deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 if (!called_from_delete_device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 Fframe_iconified_p (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 Fframe_visible_p (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 /* Decide whether this frame is eligible to be returned. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1109
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 /* If we've looped all the way around without finding any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 eligible frames, return the original frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 if (EQ (f, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
1115 if (frame_matches_frametype (f, frametype))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1118
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 if (EQ (frame, f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 passed++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 /* We hit the end of the list, and need to start over again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 if (started_over)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 started_over++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 next_frame (Lisp_Object frame, Lisp_Object frametype, Lisp_Object console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 return next_frame_internal (frame, frametype, console, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 /* Return the previous frame in the frame list before FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 FRAMETYPE and CONSOLE control which frames and devices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 are considered; see `next-frame'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 prev_frame (Lisp_Object frame, Lisp_Object frametype, Lisp_Object console)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 Lisp_Object prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 /* If this frame is dead, it won't be in frame_list, and we'll loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 forever. Forestall that. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 CHECK_LIVE_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 Lisp_Object device = XCAR (devcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 Lisp_Object frmcons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 if (!device_matches_console_spec (frame, device, console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 DEVICE_FRAME_LOOP (frmcons, XDEVICE (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 Lisp_Object f = XCAR (frmcons);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1162
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 if (EQ (frame, f) && !NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 return prev;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1165
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 /* Decide whether this frame is eligible to be returned,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 according to frametype. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
1169 if (frame_matches_frametype (f, frametype))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 prev = f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 /* We've scanned the entire list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 /* We went through the whole frame list without finding a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 acceptable frame. Return the original frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 /* There were no acceptable frames in the list before FRAME; otherwise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 we would have returned directly from the loop. Since PREV is the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 acceptable frame in the list, return it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 return prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1187 DEFUN ("next-frame", Fnext_frame, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 Return the next frame of the right type in the frame list after FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 FRAMETYPE controls which frames are eligible to be returned; all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 others will be skipped. Note that if there is only one eligible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 frame, then `next-frame' called repeatedly will always return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 the same frame, and if there is no eligible frame, then FRAME is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 Possible values for FRAMETYPE are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 'visible Consider only frames that are visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 'iconic Consider only frames that are iconic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 'invisible Consider only frames that are invisible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (this is different from iconic).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 'visible-iconic Consider frames that are visible or iconic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 'invisible-iconic Consider frames that are invisible or iconic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 'nomini Consider all frames except minibuffer-only ones.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 'visible-nomini Like `visible' but omits minibuffer-only frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 'iconic-nomini Like `iconic' but omits minibuffer-only frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 'invisible-nomini Like `invisible' but omits minibuffer-only frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 'visible-iconic-nomini Like `visible-iconic' but omits minibuffer-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 'invisible-iconic-nomini Like `invisible-iconic' but omits minibuffer-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 any other value Consider all frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 If FRAMETYPE is omitted, 'nomini is used. A FRAMETYPE of 0 (a number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 is treated like 'iconic, for backwards compatibility.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 If FRAMETYPE is a window, include only its own frame and any frame now
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 using that window as the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 Optional third argument CONSOLE controls which consoles or devices the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 returned frame may be on. If CONSOLE is a console, return frames only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 on that console. If CONSOLE is a device, return frames only on that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 device. If CONSOLE is a console type, return frames only on consoles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 of that type. If CONSOLE is 'window-system, return any frames on any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 window-system consoles. If CONSOLE is nil or omitted, return frames only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 on the FRAME's console. Otherwise, all frames are considered.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1226 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1227 (frame, frametype, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 XSETFRAME (frame, decode_frame (frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1231 return next_frame (frame, frametype, console);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1234 DEFUN ("previous-frame", Fprevious_frame, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 Return the next frame of the right type in the frame list after FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 FRAMETYPE controls which frames are eligible to be returned; all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 others will be skipped. Note that if there is only one eligible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 frame, then `previous-frame' called repeatedly will always return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 the same frame, and if there is no eligible frame, then FRAME is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 See `next-frame' for an explanation of the FRAMETYPE and CONSOLE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 arguments.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1244 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1245 (frame, frametype, console))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 XSETFRAME (frame, decode_frame (frame));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1249 return prev_frame (frame, frametype, console);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 /* Return any frame for which PREDICATE is non-zero, or return Qnil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 if there aren't any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 find_some_frame (int (*predicate) (Lisp_Object, void *),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 Lisp_Object framecons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 FRAME_LOOP_NO_BREAK (framecons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 Lisp_Object frame = XCAR (framecons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 if ((predicate) (frame, closure))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1274 /* extern void free_line_insertion_deletion_costs (struct frame *f); */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 /* Return 1 if it is ok to delete frame F;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 0 if all frames aside from F are invisible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (Exception: if F is a stream frame, it's OK to delete if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 any other frames exist.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 other_visible_frames_internal (struct frame *f, int called_from_delete_device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1284 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 if (FRAME_STREAM_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 return !EQ (frame, next_frame_internal (frame, Qt, Qt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 called_from_delete_device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 return !EQ (frame, next_frame_internal (frame, Qvisible_iconic_nomini, Qt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 called_from_delete_device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 other_visible_frames (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 return other_visible_frames_internal (f, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 /* Delete frame F.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 If FORCE is non-zero, allow deletion of the only frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 If CALLED_FROM_DELETE_DEVICE is non-zero, then, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 deleting the last frame on a device, just delete it,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 instead of calling `delete-device'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 If FROM_IO_ERROR is non-zero, then the frame is gone due
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 to an I/O error. This affects what happens if we exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 (we do an emergency exit instead of `save-buffers-kill-emacs'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 delete_frame_internal (struct frame *f, int force,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 int called_from_delete_device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 int from_io_error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 int minibuffer_selected;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 struct console *con;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1322 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 Lisp_Object console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 /* OK to delete an already deleted frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 if (! FRAME_LIVE_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 GCPRO1 (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 device = FRAME_DEVICE (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 d = XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 console = DEVICE_CONSOLE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 con = XCONSOLE (console);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 if (!called_from_delete_device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 /* If we're deleting the only non-minibuffer frame on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 device, delete the device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 if (EQ (frame, next_frame (frame, Qnomini, FRAME_DEVICE (f))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 delete_device_internal (d, force, 0, from_io_error);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 /* In FSF, delete-frame will not normally allow you to delete the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 last visible frame. This was too annoying, so we changed it to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 only frame. However, this would let people shoot themselves by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 deleting all frames which were either visible or iconified and thus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 losing any way of communicating with the still running XEmacs process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 So we put it back. */
146
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 142
diff changeset
1357 if (!force && !allow_deletion_of_last_visible_frame &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 !other_visible_frames_internal (f, called_from_delete_device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 error ("Attempt to delete the sole visible or iconified frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 /* Does this frame have a minibuffer, and is it the surrogate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 minibuffer for any other frame? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 if (FRAME_HAS_MINIBUF_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 Lisp_Object this = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 if (! EQ (this, frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 && EQ (frame, (WINDOW_FRAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 (XWINDOW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 (FRAME_MINIBUF_WINDOW (XFRAME (this)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 /* We've found another frame whose minibuffer is on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 this frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 ("Attempt to delete a surrogate minibuffer frame", frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1384 /* Test for popup frames hanging around. */
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1385 /* Deletion of a parent frame with popups is deadly. */
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1386 {
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1387 Lisp_Object frmcons, devcons, concons;
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1388
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1389 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1390 {
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1391 Lisp_Object this = XCAR (frmcons);
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1392
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1393
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1394 if (! EQ (this, frame))
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1395 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1396 struct device *devcons_d = XDEVICE (XCAR (devcons));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1397 if (EQ (frame, DEVMETH_OR_GIVEN (devcons_d, get_frame_parent,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1398 (XFRAME (this)),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1399 Qnil)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1400 /* We've found a popup frame whose parent is this frame. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1401 signal_simple_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1402 ("Attempt to delete a frame with live popups", frame);
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1403 }
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1404 }
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1405 }
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 88
diff changeset
1406
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1407 /* Before here, we haven't made any dangerous changes (just checked for
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1408 error conditions). Now run the delete-frame-hook. Remember that
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1409 user code there could do any number of dangerous things, including
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1410 signalling an error. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1411
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1412 va_run_hook_with_args (Qdelete_frame_hook, 1, frame);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1413
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1414 if (!FRAME_LIVE_P (f)) /* Make sure the delete-frame-hook didn't */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1415 { /* go ahead and delete anything. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1416 UNGCPRO;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1417 return;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1418 }
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1419
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1420 /* Call the delete-device-hook and delete-console-hook now if
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1421 appropriate, before we do any dangerous things -- they too could
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1422 signal an error. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1423 if (XINT (Flength (DEVICE_FRAME_LIST (d))) == 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1424 {
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1425 va_run_hook_with_args (Qdelete_device_hook, 1, device);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1426 if (!FRAME_LIVE_P (f)) /* Make sure the delete-device-hook didn't */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1427 { /* go ahead and delete anything. */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1428 UNGCPRO;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1429 return;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1430 }
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1431
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1432 if (XINT (Flength (CONSOLE_DEVICE_LIST (con))) == 1)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1433 {
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1434 va_run_hook_with_args (Qdelete_console_hook, 1, console);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1435 if (!FRAME_LIVE_P (f)) /* Make sure the delete-console-hook didn't */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1436 { /* go ahead and delete anything. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1437 UNGCPRO;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1438 return;
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1439 }
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1440 }
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1441 }
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1442
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 minibuffer_selected = EQ (minibuf_window, Fselected_window (Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1445 /* If we were focused on this frame, then we're not any more.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 Assume that we lost the focus; that way, the call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 Fselect_frame() below won't end up making us explicitly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 focus on another frame, which is generally undesirable in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 a point-to-type world. If our mouse ends up sitting over
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 another frame, we will receive a FocusIn event and end up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 making that frame the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 #### This may not be an ideal solution in a click-to-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 world (in that case, we might want to explicitly choose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 another frame to have the focus, rather than relying on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 the WM, which might focus on a frame in a different app
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 or focus on nothing at all). But there's no easy way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 to detect which focus model we're running on, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 alternative is more heinous. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 if (EQ (frame, DEVICE_FRAME_WITH_FOCUS_REAL (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 if (EQ (frame, DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 if (EQ (frame, DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1468 /* Don't allow the deleted frame to remain selected.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 Note that in the former scheme of things, this would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 have caused us to regain the focus. This no longer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 applies (see above); I think the new behavior is more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 logical. If someone disagrees, it can always be
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1473 changed (or a new user variable can be introduced, ugh.) */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 if (EQ (frame, DEVICE_SELECTED_FRAME (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 /* If this is a popup frame, select its parent if possible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 Otherwise, find another visible frame; if none, just take any frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 First try the same device, then the same console. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 next = DEVMETH_OR_GIVEN (d, get_frame_parent, (f), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 if (NILP (next) || EQ (next, frame) || ! FRAME_LIVE_P (XFRAME (next)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 next = next_frame_internal (frame, Qvisible, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 called_from_delete_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 if (NILP (next) || EQ (next, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 next = next_frame_internal (frame, Qvisible, console,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 called_from_delete_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 if (NILP (next) || EQ (next, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 next = next_frame_internal (frame, Qvisible, Qt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 called_from_delete_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 if (NILP (next) || EQ (next, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 next = next_frame_internal (frame, Qt, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 called_from_delete_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 if (NILP (next) || EQ (next, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 next = next_frame_internal (frame, Qt, console,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 called_from_delete_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 if (NILP (next) || EQ (next, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 next = next_frame_internal (frame, Qt, Qt, called_from_delete_device);
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1500
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1501 /* if we haven't found another frame at this point
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1502 then there aren't any. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 if (NILP (next) || EQ (next, frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 else
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1506 {
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1507 int did_select = 0;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1508 /* if this is the global selected frame, select another one. */
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1509 if (EQ (frame, Fselected_frame (Qnil)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1510 {
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1511 Fselect_frame (next);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1512 did_select = 1;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1513 }
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1514 /*
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1515 * If the new frame we just selected is on a different
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1516 * device then we still need to change DEVICE_SELECTED_FRAME(d)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1517 * to a live frame, if there are any left on this device.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1518 */
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1519 if (!EQ (device, FRAME_DEVICE(XFRAME(next))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1520 {
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1521 Lisp_Object next_f =
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1522 next_frame_internal (frame, Qt, device,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1523 called_from_delete_device);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1524 if (NILP (next_f) || EQ (next_f, frame))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1525 ;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1526 else
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1527 set_device_selected_frame (d, next_f);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1528 }
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1529 else if (! did_select)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1530 set_device_selected_frame (d, next);
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1531
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 155
diff changeset
1532 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 /* Don't allow minibuf_window to remain on a deleted frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 if (EQ (f->minibuffer_window, minibuf_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 struct frame *sel_frame = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 Fset_window_buffer (sel_frame->minibuffer_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 XWINDOW (minibuf_window)->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 minibuf_window = sel_frame->minibuffer_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 /* If the dying minibuffer window was selected,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 select the new one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 if (minibuffer_selected)
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
1546 Fselect_window (minibuf_window, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 /* After this point, no errors must be allowed to occur. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 free_frame_menubars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 free_frame_scrollbars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 free_frame_toolbars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 /* This must be done before the window and window_mirror structures
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 are freed. The scrollbar information is attached to them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 MAYBE_FRAMEMETH (f, delete_frame, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 /* Mark all the windows that used to be on FRAME as deleted, and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 remove the reference to them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 delete_all_subwindows (XWINDOW (f->root_window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 f->root_window = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 /* Remove the frame now from the list. This way, any events generated
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1571 on this frame by the maneuvers below will disperse themselves. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1572
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1573 /* This used to be Fdelq(), but that will cause a seg fault if the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1574 QUIT checker happens to get invoked, because the frame list is in
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1575 an inconsistent state. */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1576 d->frame_list = delq_no_quit (frame, d->frame_list);
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1577 RESET_CHANGED_SET_FLAGS;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 f->dead = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 f->visible = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 free_window_mirror (f->root_mirror);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 /* free_line_insertion_deletion_costs (f); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 /* If we've deleted the last non-minibuf frame, then try to find
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 another one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 if (EQ (frame, CONSOLE_LAST_NONMINIBUF_FRAME (con)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1589 Lisp_Object frmcons, devcons;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1590
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 set_console_last_nonminibuf_frame (con, Qnil);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1592
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 CONSOLE_FRAME_LOOP_NO_BREAK (frmcons, devcons, con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 Lisp_Object ecran = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 if (!FRAME_MINIBUF_ONLY_P (XFRAME (ecran)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 set_console_last_nonminibuf_frame (con, ecran);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 goto double_break_1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 double_break_1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1605 #if 0
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1606 /* The following test is degenerate FALSE */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1607 if (called_from_delete_device < 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 /* then we're being called from delete-console, and we shouldn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 try to find another default-minibuffer frame for the console.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 con->default_minibuffer_frame = Qnil;
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
1612 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 /* If we've deleted this console's default_minibuffer_frame, try to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 find another one. Prefer minibuffer-only frames, but also notice
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 frames with other windows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 if (EQ (frame, con->default_minibuffer_frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 Lisp_Object frmcons, devcons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 Lisp_Object frame_with_minibuf;
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1622 /* Some frame we found on the same console, or nil if there are none. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 Lisp_Object frame_on_same_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 frame_on_same_console = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 frame_with_minibuf = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 set_console_last_nonminibuf_frame (con, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 CONSOLE_FRAME_LOOP_NO_BREAK (frmcons, devcons, con)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 Lisp_Object this;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 struct frame *f1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 this = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 f1 = XFRAME (this);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 /* Consider only frames on the same console
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 and only those with minibuffers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 if (FRAME_HAS_MINIBUF_P (f1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 frame_with_minibuf = this;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 if (FRAME_MINIBUF_ONLY_P (f1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 goto double_break_2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 frame_on_same_console = this;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 double_break_2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 if (!NILP (frame_on_same_console))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 /* We know that there must be some frame with a minibuffer out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 there. If this were not true, all of the frames present
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1655 would have to be minibuffer-less, which implies that at some
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 point their minibuffer frames must have been deleted, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 that is prohibited at the top; you can't delete surrogate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 minibuffer frames. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 if (NILP (frame_with_minibuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 con->default_minibuffer_frame = frame_with_minibuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 /* No frames left on this console--say no minibuffer either. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 con->default_minibuffer_frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 nuke_all_frame_slots (f); /* nobody should be accessing the device
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 or anything else any more, and making
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1671 them Qnil allows for better GC'ing
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 in case a pointer to the dead frame
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
1673 continues to hang around. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 f->framemeths = dead_console_methods;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 io_error_delete_frame (Lisp_Object frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 delete_frame_internal (XFRAME (frame), 1, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1684 DEFUN ("delete-frame", Fdelete_frame, 0, 2, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 Delete FRAME, permanently eliminating it from use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 If omitted, FRAME defaults to the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 A frame may not be deleted if its minibuffer is used by other frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 Normally, you cannot delete the last non-minibuffer-only frame (you must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 use `save-buffers-kill-emacs' or `kill-emacs'). However, if optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 second argument FORCE is non-nil, you can delete the last frame. (This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 will automatically call `save-buffers-kill-emacs'.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1692 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1693 (frame, force))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 if (NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 CHECK_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 delete_frame_internal (f, !NILP (force), 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 /* Return mouse position in character cell units. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1716 static int
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1717 mouse_pixel_position_1 (struct device *d, Lisp_Object *frame,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1718 int *x, int *y)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1719 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1720 switch (DEVMETH_OR_GIVEN (d, get_mouse_position, (d, frame, x, y), -1))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1721 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1722 case 1:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1723 return 1;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1724
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1725 case 0:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1726 *frame = Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1727 break;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1728
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1729 case -1:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1730 *frame = DEVICE_SELECTED_FRAME (d);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1731 break;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1732
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1733 default:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1734 abort (); /* method is incorrectly written */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1735 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1736
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1737 return 0;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1738 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1739
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1740 DEFUN ("mouse-pixel-position", Fmouse_pixel_position, 0, 1, 0, /*
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1741 Return a list (WINDOW X . Y) giving the current mouse window and position.
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1742 The position is given in pixel units, where (0, 0) is the upper-left corner.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1743
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1744 When the cursor is not over a window, the return value is a list (nil nil).
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1745
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1746 DEVICE specifies the device on which to read the mouse position, and
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1747 defaults to the selected device. If the device is a mouseless terminal
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1748 or Emacs hasn't been programmed to read its mouse position, it returns
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1749 the device's selected window for WINDOW and nil for X and Y.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1750 */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1751 (device))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1752 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1753 struct device *d = decode_device (device);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1754 Lisp_Object frame;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1755 Lisp_Object window = Qnil;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1756 Lisp_Object x = Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1757 Lisp_Object y = Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1758 int intx, inty;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1759
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1760 if (mouse_pixel_position_1 (d, &frame, &intx, &inty) > 0)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1761 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1762 struct window *w =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1763 find_window_by_pixel_pos (intx, inty, XFRAME (frame)->root_window);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1764 if (w)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1765 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1766 XSETWINDOW (window, w);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1767
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1768 /* Adjust the position to be relative to the window. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1769 intx -= w->pixel_left;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1770 inty -= w->pixel_top;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1771 XSETINT (x, intx);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1772 XSETINT (y, inty);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1773 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1774 }
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1775 else if (FRAMEP (frame))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1776 window = FRAME_SELECTED_WINDOW (XFRAME (frame));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1777
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1778 return Fcons (window, Fcons (x, y));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1779 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1780
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1781 DEFUN ("mouse-position", Fmouse_position, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 Return a list (WINDOW X . Y) giving the current mouse window and position.
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1783 The position is of a character under cursor, where (0, 0) is the upper-left
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1784 corner of the window.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1785
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1786 When the cursor is not over a character, or not over a window, the return
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1787 value is a list (nil nil).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 DEVICE specifies the device on which to read the mouse position, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 defaults to the selected device. If the device is a mouseless terminal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 or Emacs hasn't been programmed to read its mouse position, it returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 the device's selected window for WINDOW and nil for X and Y.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1793 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1794 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1796 struct device *d = decode_device (device);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1797 struct window *w;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1798 Lisp_Object frame, window = Qnil, lisp_x = Qnil, lisp_y = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 int x, y, obj_x, obj_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 Bufpos bufpos, closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 Charcount modeline_closest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 Lisp_Object obj1, obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1804 if (mouse_pixel_position_1 (d, &frame, &x, &y) > 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1806 int res = pixel_to_glyph_translation (XFRAME (frame), x, y, &x, &y,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1807 &obj_x, &obj_y, &w, &bufpos,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1808 &closest, &modeline_closest,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1809 &obj1, &obj2);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1810 if (res == OVER_TEXT)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1811 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1812 lisp_x = make_int (x);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1813 lisp_y = make_int (y);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1814 XSETWINDOW (window, w);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1815 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 }
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1817 else if (FRAMEP (frame))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1818 window = FRAME_SELECTED_WINDOW (XFRAME (frame));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1819
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1820 return Fcons (window, Fcons (lisp_x, lisp_y));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1823 DEFUN ("mouse-position-as-motion-event", Fmouse_position_as_motion_event, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 Return the current mouse position as a motion event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 This allows you to call the standard event functions such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 `event-over-toolbar-p' to determine where the mouse is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 DEVICE specifies the device on which to read the mouse position, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 defaults to the selected device. If the mouse position can't be determined
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
1830 \(e.g. DEVICE is a TTY device), nil is returned instead of an event.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1831 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1832 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 struct device *d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 int intx, inty;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 if (mouse_pixel_position_1 (d, &frame, &intx, &inty))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 {
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
1840 Lisp_Object event = Fmake_event (Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 XEVENT (event)->event_type = pointer_motion_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 XEVENT (event)->channel = frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 XEVENT (event)->event.motion.x = intx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 XEVENT (event)->event.motion.y = inty;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 return event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1851 DEFUN ("set-mouse-position", Fset_mouse_position, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 Move the mouse pointer to the center of character cell (X,Y) in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 Note, this is a no-op for an X frame that is not visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 If you have just created a frame, you must wait for it to become visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 before calling this function on it, like this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 (while (not (frame-visible-p frame)) (sleep-for .5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 Note also: Warping the mouse is contrary to the ICCCM, so be very sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 that the behavior won't end up being obnoxious!
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1859 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1860 (window, x, y))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 int pix_x, pix_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 CHECK_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 CHECK_INT (x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 CHECK_INT (y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 /* Warping the mouse will cause EnterNotify and Focus events under X. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 glyph_to_pixel_translation (w, XINT (x), XINT (y), &pix_x, &pix_y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 MAYBE_FRAMEMETH (XFRAME (w->frame), set_mouse_position, (w, pix_x, pix_y));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1878 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 Move the mouse pointer to pixel position (X,Y) in WINDOW.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 Note, this is a no-op for an X frame that is not visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 If you have just created a frame, you must wait for it to become visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 before calling this function on it, like this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 (while (not (frame-visible-p frame)) (sleep-for .5))
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1884 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1885 (window, x, y))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 struct window *w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 CHECK_WINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 CHECK_INT (x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 CHECK_INT (y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 /* Warping the mouse will cause EnterNotify and Focus events under X. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 w = XWINDOW (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 FRAMEMETH (XFRAME (w->frame), set_mouse_position, (w, XINT (x), XINT (y)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1900 DEFUN ("make-frame-visible", Fmake_frame_visible, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 Make the frame FRAME visible (assuming it is an X-window).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 If omitted, FRAME defaults to the currently selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 Also raises the frame so that nothing obscures it.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1904 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1905 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 MAYBE_FRAMEMETH (f, make_frame_visible, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1913 DEFUN ("make-frame-invisible", Fmake_frame_invisible, 0, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 Unconditionally removes frame from the display (assuming it is an X-window).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 If omitted, FRAME defaults to the currently selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 If what you want to do is iconify the frame (if the window manager uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 icons) then you should call `iconify-frame' instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 Normally you may not make FRAME invisible if all other frames are invisible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 and uniconified, but if the second optional argument FORCE is non-nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 you may do so.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1921 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1922 (frame, force))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 struct frame *f, *sel_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 sel_frame = XFRAME (DEVICE_SELECTED_FRAME (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 if (NILP (force) && !other_visible_frames (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 error ("Attempt to make invisible the sole visible or iconified frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 /* Don't allow minibuf_window to remain on a deleted frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 if (EQ (f->minibuffer_window, minibuf_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 Fset_window_buffer (sel_frame->minibuffer_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 XWINDOW (minibuf_window)->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 minibuf_window = sel_frame->minibuffer_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 MAYBE_FRAMEMETH (f, make_frame_invisible, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1947 DEFUN ("iconify-frame", Ficonify_frame, 0, 1, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 Make the frame FRAME into an icon, if the window manager supports icons.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 If omitted, FRAME defaults to the currently selected frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1950 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1951 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 struct frame *f, *sel_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 struct device *d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 sel_frame = XFRAME (DEVICE_SELECTED_FRAME (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 /* Don't allow minibuf_window to remain on a deleted frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 if (EQ (f->minibuffer_window, minibuf_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 Fset_window_buffer (sel_frame->minibuffer_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 XWINDOW (minibuf_window)->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 minibuf_window = sel_frame->minibuffer_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 MAYBE_FRAMEMETH (f, iconify_frame, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1973 DEFUN ("deiconify-frame", Fdeiconify_frame, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 Open (de-iconify) the iconified frame FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 Under X, this is currently the same as `make-frame-visible'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 If omitted, FRAME defaults to the currently selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 Also raises the frame so that nothing obscures it.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1978 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1979 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 return Fmake_frame_visible (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 /* FSF returns 'icon for iconized frames. What a crock! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1986 DEFUN ("frame-visible-p", Fframe_visible_p, 0, 1, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1987 Return non NIL if FRAME is now "visible" (actually in use for display).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 A frame that is not visible is not updated, and, if it works through a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 window system, may not show at all.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1990 N.B. Under X "visible" means Mapped. It the window is mapped but not
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
1991 actually visible on screen then frame_visible returns 'hidden.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1992 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1993 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 struct frame *f = decode_frame (frame);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1996 int visible = FRAMEMETH_OR_GIVEN (f, frame_visible_p, (f), f->visible);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
1997 return visible ? ( visible > 0 ? Qt : Qhidden ) : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2000 DEFUN ("frame-totally-visible-p", Fframe_totally_visible_p, 0, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2001 Return t if frame is not obscured by any other window system windows.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 Always returns t for tty frames.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2003 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2004 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 return (FRAMEMETH_OR_GIVEN (f, frame_totally_visible_p, (f), f->visible)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2008 ? Qt : Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2011 DEFUN ("frame-iconified-p", Fframe_iconified_p, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 Return t if FRAME is iconified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 Not all window managers use icons; some merely unmap the window, so this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 function is not the inverse of `frame-visible-p'. It is possible for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 frame to not be visible and not be iconified either. However, if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 frame is iconified, it will not be visible.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2017 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2018 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 if (f->visible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 f->iconified = FRAMEMETH_OR_GIVEN (f, frame_iconified_p, (f), 0);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2024 return f->iconified ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2027 DEFUN ("visible-frame-list", Fvisible_frame_list, 0, 1, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2028 Return a list of all frames now "visible" (being updated).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 If DEVICE is specified only frames on that device will be returned.
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
2030 Note that under virtual window managers not all these frame are necessarily
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
2031 really updated.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2032 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2033 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 Lisp_Object value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 value = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 assert (DEVICEP (XCAR (devcons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 if (NILP (device) || EQ (device, XCAR (devcons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 Lisp_Object frmcons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 DEVICE_FRAME_LOOP (frmcons, XDEVICE (XCAR (devcons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 Lisp_Object frame = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 f = XFRAME (frame);
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
2053 if (FRAME_VISIBLE_P(f))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 value = Fcons (frame, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2063 DEFUN ("raise-frame", Fraise_frame, 0, 1, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 Bring FRAME to the front, so it occludes any frames it overlaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 If omitted, FRAME defaults to the currently selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 If FRAME is invisible, make it visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 If Emacs is displaying on an ordinary terminal or some other device which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 doesn't support multiple overlapping frames, this function does nothing.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2069 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2070 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 /* Do like the documentation says. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 Fmake_frame_visible (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 MAYBE_FRAMEMETH (f, raise_frame, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2080 DEFUN ("lower-frame", Flower_frame, 0, 1, "", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 Send FRAME to the back, so it is occluded by any frames that overlap it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 If omitted, FRAME defaults to the currently selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 If Emacs is displaying on an ordinary terminal or some other device which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 doesn't support multiple overlapping frames, this function does nothing.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2085 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2086 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 MAYBE_FRAMEMETH (f, lower_frame, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 /* Ben thinks there is no need for `redirect-frame-focus' or `frame-focus',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 crockish FSFmacs functions. See summary on focus in event-stream.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 /***************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 /* frame properties */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 /***************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 static void internal_set_frame_size (struct frame *f, int cols, int rows,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 int pretend);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 store_minibuf_frame_prop (struct frame *f, Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 if (WINDOWP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 if (! MINI_WINDOW_P (XWINDOW (val)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 ("Surrogate minibuffer windows must be minibuffer windows",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 if (FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 ("Can't change the surrogate minibuffer of a frame with its own minibuffer", frame);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2121
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 /* Install the chosen minibuffer window, with proper buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 f->minibuffer_window = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 else if (EQ (val, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 if (FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 ("Frame already has its own minibuffer", frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 setup_normal_frame (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 f->mirror_dirty = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 update_frame_window_mirror (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 internal_set_frame_size (f, f->width, f->height, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 /* possible code if you want to have symbols such as `default-background'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 map to setting the background of `default', etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 dissect_as_face_setting (Lisp_Object sym, Lisp_Object *face_out,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 Lisp_Object *face_prop_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 Lisp_Object list = Vbuilt_in_face_specifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 struct Lisp_String *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 if (!SYMBOLP (sym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 s = symbol_name (XSYMBOL (sym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 while (!NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 Lisp_Object prop = Fcar (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 struct Lisp_String *prop_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 if (!SYMBOLP (prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 prop_name = symbol_name (XSYMBOL (prop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 if (string_length (s) > string_length (prop_name) + 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 && !memcmp (string_data (prop_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 string_data (s) + string_length (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 - string_length (prop_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 string_length (prop_name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 && string_data (s)[string_length (s) - string_length (prop_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 - 1] == '-')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 Lisp_Object face =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 Ffind_face (make_string (string_data (s),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 string_length (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 - string_length (prop_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 - 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 if (!NILP (face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 *face_out = face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 *face_prop_out = prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 list = Fcdr (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 get_property_alias (Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 Lisp_Object alias = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 if (SYMBOLP (prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 alias = Fget (prop, Qframe_property_alias, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 if (NILP (alias))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 prop = alias;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 return prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 /* #### Using this to modify the internal border width has no effect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 because the change isn't propagated to the windows. Are there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 other properties which this claims to handle, but doesn't?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 But of course. This stuff needs more work, but it's a lot closer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 to sanity now than before with the horrible frame-params stuff. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2220 DEFUN ("set-frame-properties", Fset_frame_properties, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 Change some properties of a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 PLIST is a property list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 You can also change frame properties individually using `set-frame-property',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 but it may be more efficient to change many properties at once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 Frame properties can be retrieved using `frame-property' or `frame-properties'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 The following symbols etc. have predefined meanings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2230 name Name of the frame. Used with X resources.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2231 Unchangeable after creation.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 height Height of the frame, in lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 width Width of the frame, in characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 minibuffer Gives the minibuffer behavior for this frame. Either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 t (frame has its own minibuffer), `only' (frame is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 a minibuffer-only frame), or a window (frame uses that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 window, which is on another frame, as the minibuffer).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 unsplittable If non-nil, frame cannot be split by `display-buffer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 current-display-table, menubar-visible-p, left-margin-width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 right-margin-width, minimum-line-ascent, minimum-line-descent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 use-left-overflow, use-right-overflow, scrollbar-width, scrollbar-height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 default-toolbar, top-toolbar, bottom-toolbar, left-toolbar, right-toolbar,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 default-toolbar-height, default-toolbar-width, top-toolbar-height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 bottom-toolbar-height, left-toolbar-width, right-toolbar-width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 default-toolbar-visible-p, top-toolbar-visible-p, bottom-toolbar-visible-p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 left-toolbar-visible-p, right-toolbar-visible-p, toolbar-buttons-captioned-p,
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2252 top-toolbar-border-width, bottom-toolbar-border-width,
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2253 left-toolbar-border-width, right-toolbar-border-width,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 modeline-shadow-thickness, has-modeline-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 [Giving the name of any built-in specifier variable is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 equivalent to calling `set-specifier' on the specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 with a locale of FRAME. Giving the name to `frame-property'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 calls `specifier-instance' on the specifier.]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 text-pointer-glyph, nontext-pointer-glyph, modeline-pointer-glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 selection-pointer-glyph, busy-pointer-glyph, toolbar-pointer-glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 menubar-pointer-glyph, scrollbar-pointer-glyph, gc-pointer-glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 octal-escape-glyph, control-arrow-glyph, invisible-text-glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 hscroll-glyph, truncation-glyph, continuation-glyph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 [Giving the name of any glyph variable is equivalent to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 calling `set-glyph-image' on the glyph, with a locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 of FRAME. Giving the name to `frame-property' calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 `glyph-image-instance' on the glyph.]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 [default foreground], [default background], [default font],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 [modeline foreground], [modeline background], [modeline font],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 [Giving a vector of a face and a property is equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 to calling `set-face-property' on the face and property,
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2275 with a locale of FRAME. Giving the vector to
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 `frame-property' calls `face-property-instance' on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 face and property.]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 Finally, if a frame property symbol has the property `frame-property-alias'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 on it, then the value will be used in place of that symbol when looking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 up and setting frame property values. This allows you to alias one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 frame property name to another.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
2284 See the variables `default-x-frame-plist', `default-tty-frame-plist'
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 209
diff changeset
2285 and `default-mswindows-frame-plist' for a description of the properties
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
2286 recognized for particular types of frames.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2287 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2288 (frame, plist))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 Lisp_Object *tailp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 GCPRO2 (frame, plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 Fcheck_valid_plist (plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 plist = Fcopy_sequence (plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 Fcanonicalize_lax_plist (plist, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 Lisp_Object prop = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 Lisp_Object val = Fcar (Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 prop = get_property_alias (prop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 /* mly wants this, but it's not reasonable to change the name of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 frame after it has been created, because the old name was used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 for resource lookup. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 if (EQ (prop, Qname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 CHECK_STRING (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 f->name = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 if (EQ (prop, Qminibuffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 store_minibuf_frame_prop (f, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 if (EQ (prop, Qunsplittable))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 f->no_split = !NILP (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 if (EQ (prop, Qbuffer_predicate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 f->buffer_predicate = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 if (SYMBOLP (prop) && EQ (Fbuilt_in_variable_type (prop),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 Qconst_specifier))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 call3 (Qset_specifier, Fsymbol_value (prop), val, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 if (SYMBOLP (prop) && !NILP (Fget (prop, Qconst_glyph_variable, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 call3 (Qset_glyph_image, Fsymbol_value (prop), val, frame);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2328 if (VECTORP (prop) && XVECTOR_LENGTH (prop) == 2)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2330 Lisp_Object face_prop = XVECTOR_DATA (prop)[1];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 CHECK_SYMBOL (face_prop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 call4 (Qset_face_property,
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2333 Fget_face (XVECTOR_DATA (prop)[0]),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 face_prop, val, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 MAYBE_FRAMEMETH (f, set_frame_properties, (f, plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 for (tailp = &plist; !NILP (*tailp);)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 Lisp_Object *next_tailp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 Lisp_Object prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 next = Fcdr (*tailp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 CHECK_CONS (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 next_tailp = &XCDR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 prop = Fcar (*tailp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 prop = get_property_alias (prop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 if (EQ (prop, Qminibuffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 || EQ (prop, Qunsplittable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 || EQ (prop, Qbuffer_predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 || EQ (prop, Qheight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 || EQ (prop, Qwidth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 || (SYMBOLP (prop) && EQ (Fbuilt_in_variable_type (prop),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 Qconst_specifier))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 || (SYMBOLP (prop) && !NILP (Fget (prop, Qconst_glyph_variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 Qnil)))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2361 || (VECTORP (prop) && XVECTOR_LENGTH (prop) == 2)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 || FRAMEMETH_OR_GIVEN (f, internal_frame_property_p, (f, prop), 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 *tailp = *next_tailp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 tailp = next_tailp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 f->plist = nconc2 (plist, f->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 Fcanonicalize_lax_plist (f->plist, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2373 DEFUN ("frame-property", Fframe_property, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 Return FRAME's value for property PROPERTY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 See `set-frame-properties' for the built-in property names.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2376 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2377 (frame, property, default_))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 struct frame *f = decode_frame (frame);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2380 Lisp_Object value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 property = get_property_alias (property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2386 if (EQ (Qname, property)) return f->name;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2387
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2388 if (EQ (Qheight, property) || EQ (Qwidth, property))
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2389 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2390 if (window_system_pixelated_geometry (frame))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2391 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2392 int width, height;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2393 pixel_to_real_char_size (f, FRAME_PIXWIDTH (f), FRAME_PIXHEIGHT (f),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2394 &width, &height);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2395 return make_int (EQ (Qheight, property) ? height: width);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2396 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2397 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2398 return make_int (EQ (Qheight, property) ?
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2399 FRAME_HEIGHT (f) :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2400 FRAME_WIDTH (f));
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2401 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2402
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 /* NOTE: FSF returns Qnil instead of Qt for FRAME_HAS_MINIBUF_P.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 This is over-the-top bogosity, because it's inconsistent with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 the semantics of `minibuffer' when passed to `make-frame'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 Returning Qt makes things consistent. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2407 if (EQ (Qminibuffer, property))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2408 return (FRAME_MINIBUF_ONLY_P (f) ? Qonly :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2409 FRAME_HAS_MINIBUF_P (f) ? Qt :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2410 FRAME_MINIBUF_WINDOW (f));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2411 if (EQ (Qunsplittable, property))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2412 return FRAME_NO_SPLIT_P (f) ? Qt : Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2413 if (EQ (Qbuffer_predicate, property))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2414 return f->buffer_predicate;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2415
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2416 if (SYMBOLP (property))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2418 if (EQ (Fbuilt_in_variable_type (property), Qconst_specifier))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2419 return Fspecifier_instance (Fsymbol_value (property),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2420 frame, default_, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2421 if (!NILP (Fget (property, Qconst_glyph_variable, Qnil)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2422 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2423 Lisp_Object glyph = Fsymbol_value (property);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2424 CHECK_GLYPH (glyph);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2425 return Fspecifier_instance (XGLYPH_IMAGE (glyph),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2426 frame, default_, Qnil);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2427 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2429
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2430 if (VECTORP (property) && XVECTOR_LENGTH (property) == 2)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2432 Lisp_Object face_prop = XVECTOR_DATA (property)[1];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 CHECK_SYMBOL (face_prop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 return call3 (Qface_property_instance,
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2435 Fget_face (XVECTOR_DATA (property)[0]),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 face_prop, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2439 if (HAS_FRAMEMETH_P (f, frame_property))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2440 if (!UNBOUNDP (value = FRAMEMETH (f, frame_property, (f, property))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2443 if (!UNBOUNDP (value = external_plist_get (&f->plist, property, 1, ERROR_ME)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2444 return value;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2445
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2446 return default_;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2449 DEFUN ("frame-properties", Fframe_properties, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 Return a property list of the properties of FRAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 Do not modify this list; use `set-frame-property' instead.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2452 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2453 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 GCPRO1 (result);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2460
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2461 XSETFRAME (frame, f);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2462
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2463 /* #### for the moment (since old code uses `frame-parameters'),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2464 we call `copy-sequence' on f->plist. That allows frame-parameters
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2465 to destructively convert the plist into an alist, which is more
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2466 efficient than doing it non-destructively. At some point we
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2467 should remove the call to copy-sequence. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2468 result = Fcopy_sequence (f->plist);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2469
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2470 /* #### should we be adding all the specifiers and glyphs?
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2471 That would entail having a list of them all. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2472 if (HAS_FRAMEMETH_P (f, frame_properties))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2473 result = nconc2 (FRAMEMETH (f, frame_properties, (f)), result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2474
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2475 if (!NILP (f->buffer_predicate))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2476 result = cons3 (Qbuffer_predicate, f->buffer_predicate, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2477
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2478 if (FRAME_NO_SPLIT_P (f))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2479 result = cons3 (Qunsplittable, Qt, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2480
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2481 /* NOTE: FSF returns Qnil instead of Qt for FRAME_HAS_MINIBUF_P.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 This is over-the-top bogosity, because it's inconsistent with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 the semantics of `minibuffer' when passed to `make-frame'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 Returning Qt makes things consistent. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2485 result = cons3 (Qminibuffer,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2486 (FRAME_MINIBUF_ONLY_P (f) ? Qonly :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2487 FRAME_HAS_MINIBUF_P (f) ? Qt :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2488 FRAME_MINIBUF_WINDOW (f)),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2489 result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2491 int width, height;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2492
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2493 if (window_system_pixelated_geometry (frame))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2494 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2495 pixel_to_real_char_size (f, FRAME_PIXWIDTH (f), FRAME_PIXHEIGHT (f),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2496 &width, &height);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2497 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2498 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2499 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2500 height = FRAME_HEIGHT (f);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2501 width = FRAME_WIDTH (f);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2502 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2503 result = cons3 (Qwidth , make_int (width), result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2504 result = cons3 (Qheight, make_int (height), result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2506
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2507 result = cons3 (Qname, f->name, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2508
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2509 UNGCPRO;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2510 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2514 DEFUN ("frame-pixel-height", Fframe_pixel_height, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 Return the height in pixels of FRAME.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2516 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2517 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2519 return make_int (decode_frame (frame)->pixheight);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2522 DEFUN ("frame-pixel-width", Fframe_pixel_width, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 Return the width in pixels of FRAME.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2524 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2525 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2527 return make_int (decode_frame (frame)->pixwidth);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2530 DEFUN ("frame-name", Fframe_name, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 Return the name of FRAME (defaulting to the selected frame).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 This is not the same as the `title' of the frame.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2533 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2534 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2536 return decode_frame (frame)->name;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2539 DEFUN ("frame-modified-tick", Fframe_modified_tick, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 Return FRAME's tick counter, incremented for each change to the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 Each frame has a tick counter which is incremented each time the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 is resized, a window is resized, added, or deleted, a face is changed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 `set-window-buffer' or `select-window' is called on a window in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 frame, the window-start of a window in the frame has changed, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 anything else interesting has happened. It wraps around occasionally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 No argument or nil as argument means use selected frame as FRAME.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2547 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2548 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 return make_int (decode_frame (frame)->modiff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 internal_set_frame_size (struct frame *f, int cols, int rows, int pretend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 {
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2556 /* An explicit size change cancels any pending frame size adjustment */
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2557 CLEAR_FRAME_SIZE_SLIPPED(f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2558
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 if (pretend || !HAS_FRAMEMETH_P (f, set_frame_size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 change_frame_size (f, rows, cols, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 FRAMEMETH (f, set_frame_size, (f, cols, rows));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2565 DEFUN ("set-frame-height", Fset_frame_height, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 Specify that the frame FRAME has LINES lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 Optional third arg non-nil means that redisplay should use LINES lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 but that the idea of the actual height of the frame should not be changed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2569 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2570 (frame, rows, pretend))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 struct frame *f = decode_frame (frame);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2573 int height, width;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 CHECK_INT (rows);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2576
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2577 if (window_system_pixelated_geometry (frame))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2578 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2579 char_to_real_pixel_size (f, 0, XINT (rows), 0, &height);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2580 width = FRAME_PIXWIDTH (f);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2581 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2582 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2583 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2584 height = XINT (rows);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2585 width = FRAME_WIDTH (f);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2586 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2587
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2588 internal_set_frame_size (f, width, height, !NILP (pretend));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2592 DEFUN ("set-frame-width", Fset_frame_width, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 Specify that the frame FRAME has COLS columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 Optional third arg non-nil means that redisplay should use COLS columns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 but that the idea of the actual width of the frame should not be changed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2596 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2597 (frame, cols, pretend))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 struct frame *f = decode_frame (frame);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2600 int width, height;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 CHECK_INT (cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2604 if (window_system_pixelated_geometry (frame))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2605 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2606 char_to_real_pixel_size (f, XINT (cols), 0, &width, 0);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2607 height = FRAME_PIXHEIGHT (f);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2608 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2609 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2610 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2611 width = XINT (cols);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2612 height = FRAME_HEIGHT (f);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2613 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2614
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2615 internal_set_frame_size (f, width, height, !NILP (pretend));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2619 DEFUN ("set-frame-size", Fset_frame_size, 3, 4, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2620 Set the size of FRAME to COLS by ROWS.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 Optional fourth arg non-nil means that redisplay should use COLS by ROWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 but that the idea of the actual size of the frame should not be changed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2623 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2624 (frame, cols, rows, pretend))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 struct frame *f = decode_frame (frame);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2627 int height, width;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 CHECK_INT (cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 CHECK_INT (rows);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2632 if (window_system_pixelated_geometry (frame))
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2633 char_to_real_pixel_size (f, XINT (cols), XINT (rows), &width, &height);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2634 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2635 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2636 height = XINT (rows);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2637 width = XINT (cols);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2638 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2639
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2640 internal_set_frame_size (f, width, height, !NILP (pretend));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2644 DEFUN ("set-frame-position", Fset_frame_position, 3, 3, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
2645 Set position of FRAME in pixels to XOFFSET by YOFFSET.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 This is actually the position of the upper left corner of the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 Negative values for XOFFSET or YOFFSET are interpreted relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 the rightmost or bottommost possible position (that stays within the screen).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2649 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2650 (frame, xoffset, yoffset))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 CHECK_INT (xoffset);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 CHECK_INT (yoffset);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 MAYBE_FRAMEMETH (f, set_frame_position, (f, XINT (xoffset), XINT (yoffset)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 /* Frame size conversion functions moved here from EmacsFrame.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 because they're generic and really don't belong in that file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 Function get_default_char_pixel_size() removed because it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 exactly the same as default_face_height_and_width(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 frame_conversion_internal (struct frame *f, int pixel_to_char,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 int *pixel_width, int *pixel_height,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2670 int *char_width, int *char_height,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2671 int real_face)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 int cpw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 int cph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 int egw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 int obw, obh, bdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 Lisp_Object frame, window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 XSETFRAME (frame, f);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2680 if (real_face)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2681 default_face_height_and_width (frame, &cph, &cpw);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2682 else
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2683 default_face_height_and_width_1 (frame, &cph, &cpw);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2684
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 window = FRAME_SELECTED_WINDOW (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 egw = max (glyph_width (Vcontinuation_glyph, Vdefault_face, 0, window),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 glyph_width (Vtruncation_glyph, Vdefault_face, 0, window));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 egw = max (egw, cpw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 bdr = 2 * f->internal_border_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 obw = FRAME_SCROLLBAR_WIDTH (f) + FRAME_THEORETICAL_LEFT_TOOLBAR_WIDTH (f) +
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2692 FRAME_THEORETICAL_RIGHT_TOOLBAR_WIDTH (f) +
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2693 2 * FRAME_THEORETICAL_LEFT_TOOLBAR_BORDER_WIDTH (f) +
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2694 2 * FRAME_THEORETICAL_RIGHT_TOOLBAR_BORDER_WIDTH (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 obh = FRAME_SCROLLBAR_HEIGHT (f) + FRAME_THEORETICAL_TOP_TOOLBAR_HEIGHT (f) +
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2696 FRAME_THEORETICAL_BOTTOM_TOOLBAR_HEIGHT (f) +
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2697 2 * FRAME_THEORETICAL_TOP_TOOLBAR_BORDER_WIDTH (f) +
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
2698 2 * FRAME_THEORETICAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 if (pixel_to_char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2702 if (char_width)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2703 *char_width = 1 + ((*pixel_width - egw) - bdr - obw) / cpw;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2704 if (char_height)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2705 *char_height = (*pixel_height - bdr - obh) / cph;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2709 if (pixel_width)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2710 *pixel_width = (*char_width - 1) * cpw + egw + bdr + obw;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2711 if (pixel_height)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2712 *pixel_height = *char_height * cph + bdr + obh;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2715
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 /* This takes the size in pixels of the text area, and returns the number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 of characters that will fit there, taking into account the internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 border width, and the pixel width of the line terminator glyphs (which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 always count as one "character" wide, even if they are not the same size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 as the default character size of the default font). The frame scrollbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 width and left and right toolbar widths are also subtracted out of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 available width. The frame scrollbar height and top and bottom toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 heights are subtracted out of the available height.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 Therefore the result is not necessarily a multiple of anything in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 particular. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 pixel_to_char_size (struct frame *f, int pixel_width, int pixel_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 int *char_width, int *char_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 frame_conversion_internal (f, 1, &pixel_width, &pixel_height, char_width,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2732 char_height, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 /* Given a character size, this returns the minimum number of pixels
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 necessary to display that many characters, taking into account the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 internal border width, scrollbar height and width, toolbar heights and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 widths and the size of the line terminator glyphs (assuming the line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 terminators take up exactly one character position).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 Therefore the result is not necessarily a multiple of anything in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 particular. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 char_to_pixel_size (struct frame *f, int char_width, int char_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 int *pixel_width, int *pixel_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 frame_conversion_internal (f, 0, pixel_width, pixel_height, &char_width,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2748 &char_height, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 /* Given a pixel size, rounds DOWN to the smallest size in pixels necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 to display the same number of characters as are displayable now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 round_size_to_char (struct frame *f, int in_width, int in_height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 int *out_width, int *out_height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 int char_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 int char_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 pixel_to_char_size (f, in_width, in_height, &char_width, &char_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 char_to_pixel_size (f, char_width, char_height, out_width, out_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2764 /* Versions of the above which always account for real font metrics.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2765 */
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2766 void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2767 pixel_to_real_char_size (struct frame *f, int pixel_width, int pixel_height,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2768 int *char_width, int *char_height)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2769 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2770 frame_conversion_internal (f, 1, &pixel_width, &pixel_height, char_width,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2771 char_height, 1);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2772 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2773
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2774 void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2775 char_to_real_pixel_size (struct frame *f, int char_width, int char_height,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2776 int *pixel_width, int *pixel_height)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2777 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2778 frame_conversion_internal (f, 0, pixel_width, pixel_height, &char_width,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2779 &char_height, 1);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2780 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2781
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2782 void
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2783 round_size_to_real_char (struct frame *f, int in_width, int in_height,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2784 int *out_width, int *out_height)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2785 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2786 int char_width;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2787 int char_height;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2788 pixel_to_real_char_size (f, in_width, in_height, &char_width, &char_height);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2789 char_to_real_pixel_size (f, char_width, char_height, out_width, out_height);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2790 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2791
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 /* Change the frame height and/or width. Values may be given as zero to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 indicate no change is to take place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 change_frame_size_1 (struct frame *f, int newheight, int newwidth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 int new_pixheight, new_pixwidth;
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2799 int font_height, real_font_height, font_width;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 /* #### Chuck -- shouldn't we be checking to see if the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 is being "changed" to its existing size, and do nothing if so? */
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
2803 /* No, because it would hose toolbar updates. The toolbar
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
2804 update code relies on this function to cause window `top' and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
2805 `left' coordinates to be recomputed even though no frame size
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 197
diff changeset
2806 change occurs. --kyle */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 if (in_display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 XSETFRAME (frame, f);
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
2811
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2812 default_face_height_and_width (frame, &real_font_height, 0);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2813 default_face_height_and_width_1 (frame, &font_height, &font_width);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 /* This size-change overrides any pending one for this frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 FRAME_NEW_HEIGHT (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 FRAME_NEW_WIDTH (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 new_pixheight = newheight * font_height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 new_pixwidth = (newwidth - 1) * font_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 /* #### dependency on FRAME_WIN_P should be removed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 if (FRAME_WIN_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 new_pixheight += FRAME_SCROLLBAR_HEIGHT (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 new_pixwidth += FRAME_SCROLLBAR_WIDTH (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 /* when frame_conversion_internal() calculated the number of rows/cols
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2830 in the frame, the theoretical toolbar sizes were subtracted out.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2831 The caluclations below adjust for real toolbar height/width in
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2832 frame, which may be different from frame spec, taking the above
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2833 fact into account */
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2834 new_pixheight +=
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2835 + FRAME_THEORETICAL_TOP_TOOLBAR_HEIGHT (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2836 + 2 * FRAME_THEORETICAL_TOP_TOOLBAR_BORDER_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2837 - FRAME_REAL_TOP_TOOLBAR_HEIGHT (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2838 - 2 * FRAME_REAL_TOP_TOOLBAR_BORDER_WIDTH (f);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2839
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2840 new_pixheight +=
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2841 + FRAME_THEORETICAL_BOTTOM_TOOLBAR_HEIGHT (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2842 + 2 * FRAME_THEORETICAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2843 - FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2844 - 2 * FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2845
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2846 new_pixwidth +=
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2847 + FRAME_THEORETICAL_LEFT_TOOLBAR_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2848 + 2 * FRAME_THEORETICAL_LEFT_TOOLBAR_BORDER_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2849 - FRAME_REAL_LEFT_TOOLBAR_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2850 - 2 * FRAME_REAL_LEFT_TOOLBAR_BORDER_WIDTH (f);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2851
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2852 new_pixwidth +=
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2853 + FRAME_THEORETICAL_RIGHT_TOOLBAR_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2854 + 2 * FRAME_THEORETICAL_RIGHT_TOOLBAR_BORDER_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2855 - FRAME_REAL_RIGHT_TOOLBAR_WIDTH (f)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2856 - 2 * FRAME_REAL_RIGHT_TOOLBAR_BORDER_WIDTH (f);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 272
diff changeset
2857
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 /* Adjust the width for the end glyph which may be a different width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 than the default character width. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 int adjustment, trunc_width, cont_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 trunc_width = glyph_width (Vtruncation_glyph, Vdefault_face, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 FRAME_SELECTED_WINDOW (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 cont_width = glyph_width (Vcontinuation_glyph, Vdefault_face, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 FRAME_SELECTED_WINDOW (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 adjustment = max (trunc_width, cont_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 adjustment = max (adjustment, font_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 new_pixwidth += adjustment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 /* If we don't have valid values, exit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 if (!new_pixheight && !new_pixwidth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 if (new_pixheight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_top = FRAME_TOP_BORDER_END (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 if (FRAME_HAS_MINIBUF_P (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 && ! FRAME_MINIBUF_ONLY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 /* Frame has both root and minibuffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 {
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2885 /*
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2886 * Leave the minibuffer height the same if the frame has
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2887 * been initialized, and the minibuffer height is tall
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2888 * enough to display at least one line of text in the default
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2889 * font, and the old minibuffer height is a multiple of the
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2890 * default font height. This should cause the minibuffer
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2891 * height to be recomputed on font changes but not for
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2892 * other frame size changes, which seems reasonable.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2893 */
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2894 int old_minibuf_height =
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2895 XWINDOW(FRAME_MINIBUF_WINDOW(f))->pixel_height;
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2896 int minibuf_height =
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2897 f->init_finished && (old_minibuf_height % real_font_height) == 0 ?
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2898 max(old_minibuf_height, real_font_height) :
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
2899 real_font_height;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 set_window_pixheight (FRAME_ROOT_WINDOW (f),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 /* - font_height for minibuffer */
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2902 new_pixheight - minibuf_height, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 XWINDOW (FRAME_MINIBUF_WINDOW (f))->pixel_top =
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2905 new_pixheight - minibuf_height + FRAME_TOP_BORDER_END (f);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
2906
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
2907 set_window_pixheight (FRAME_MINIBUF_WINDOW (f), minibuf_height, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 /* Frame has just one top-level window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 set_window_pixheight (FRAME_ROOT_WINDOW (f), new_pixheight, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 FRAME_HEIGHT (f) = newheight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 if (FRAME_TTY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 f->pixheight = newheight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 if (new_pixwidth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 XWINDOW (FRAME_ROOT_WINDOW (f))->pixel_left = FRAME_LEFT_BORDER_END (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 set_window_pixwidth (FRAME_ROOT_WINDOW (f), new_pixwidth, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 if (FRAME_HAS_MINIBUF_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 XWINDOW (FRAME_MINIBUF_WINDOW (f))->pixel_left =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 FRAME_LEFT_BORDER_END (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 set_window_pixwidth (FRAME_MINIBUF_WINDOW (f), new_pixwidth, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 FRAME_WIDTH (f) = newwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 if (FRAME_TTY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 f->pixwidth = newwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2935 if (window_system_pixelated_geometry (frame))
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2936 pixel_to_real_char_size (f, FRAME_PIXWIDTH (f), FRAME_PIXHEIGHT (f),
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2937 &FRAME_CHARWIDTH (f), &FRAME_CHARHEIGHT (f));
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2938 else
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2939 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2940 FRAME_CHARWIDTH (f) = FRAME_WIDTH (f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2941 FRAME_CHARHEIGHT (f) = FRAME_HEIGHT (f);
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2942 }
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2943
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 MARK_FRAME_TOOLBARS_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 MARK_FRAME_CHANGED (f);
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
2946 f->echo_area_garbaged = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 change_frame_size (struct frame *f, int newheight, int newwidth, int delay)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 /* sometimes we get passed a size that's too small (esp. when a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 client widget gets resized, since we have no control over this).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 So deal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 check_frame_size (f, &newheight, &newwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 if (delay || in_display || gc_in_progress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 MARK_FRAME_SIZE_CHANGED (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 f->new_width = newwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 f->new_height = newheight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 f->size_change_pending = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 /* For TTY frames, it's like one, like all ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 Can't have two TTY frames of different sizes on the same device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 if (FRAME_TTY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 Lisp_Object frmcons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 DEVICE_FRAME_LOOP (frmcons, XDEVICE (FRAME_DEVICE (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 change_frame_size_1 (XFRAME (XCAR (frmcons)), newheight, newwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 change_frame_size_1 (f, newheight, newwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 update_frame_title (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 Lisp_Object title_format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 Lisp_Object icon_format;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2986 Bufbyte *title;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 /* We don't change the title for the minibuffer unless the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 only has a minibuffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 if (MINI_WINDOW_P (w) && !FRAME_MINIBUF_ONLY_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 /* And we don't want dead buffers to blow up on us. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2994 if (!BUFFER_LIVE_P (XBUFFER (w->buffer)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2997 title = NULL;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2998 title_format = symbol_value_in_buffer (Qframe_title_format, w->buffer);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2999 icon_format = symbol_value_in_buffer (Qframe_icon_title_format, w->buffer);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3000
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3001 if (HAS_FRAMEMETH_P (f, set_title_from_bufbyte))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3003 title = generate_formatted_string (w, title_format, Qnil,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3004 DEFAULT_INDEX, CURRENT_DISP);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3005 FRAMEMETH (f, set_title_from_bufbyte, (f, title));
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3006 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3007
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3008 if (HAS_FRAMEMETH_P (f, set_icon_name_from_bufbyte))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3009 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3010 if (!EQ (icon_format, title_format) || !title)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3012 if (title)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3013 xfree (title);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3014
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3015 title = generate_formatted_string (w, icon_format, Qnil,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3016 DEFAULT_INDEX, CURRENT_DISP);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3018 FRAMEMETH (f, set_icon_name_from_bufbyte, (f, title));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3021 if (title)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3022 xfree (title);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3026 DEFUN ("set-frame-pointer", Fset_frame_pointer, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 Set the mouse pointer of FRAME to the given pointer image instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 You should not call this function directly. Instead, set one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 the variables `text-pointer-glyph', `nontext-pointer-glyph',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 `modeline-pointer-glyph', `selection-pointer-glyph',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 `busy-pointer-glyph', or `toolbar-pointer-glyph'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3032 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3033 (frame, image_instance))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 struct frame *f = decode_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 CHECK_POINTER_IMAGE_INSTANCE (image_instance);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 if (!EQ (f->pointer, image_instance))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 f->pointer = image_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 MAYBE_FRAMEMETH (f, set_frame_pointer, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 update_frame_icon (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 if (f->icon_changed || f->windows_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3051 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 Lisp_Object new_icon;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 new_icon = glyph_image_instance (Vframe_icon_glyph, frame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 ERROR_ME_WARN, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 if (!EQ (new_icon, f->icon))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 f->icon = new_icon;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 MAYBE_FRAMEMETH (f, set_frame_icon, (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 f->icon_changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 icon_glyph_changed (Lisp_Object glyph, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 MARK_ICON_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 syms_of_frame (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 defsymbol (&Qdelete_frame_hook, "delete-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 defsymbol (&Qselect_frame_hook, "select-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 defsymbol (&Qdeselect_frame_hook, "deselect-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 defsymbol (&Qcreate_frame_hook, "create-frame-hook");
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
3082 defsymbol (&Qcustom_initialize_frame, "custom-initialize-frame");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 defsymbol (&Qmouse_enter_frame_hook, "mouse-enter-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 defsymbol (&Qmouse_leave_frame_hook, "mouse-leave-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 defsymbol (&Qmap_frame_hook, "map-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 defsymbol (&Qunmap_frame_hook, "unmap-frame-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 defsymbol (&Qframep, "framep");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 defsymbol (&Qframe_live_p, "frame-live-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 defsymbol (&Qframe_x_p, "frame-x-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 defsymbol (&Qframe_tty_p, "frame-tty-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 defsymbol (&Qdelete_frame, "delete-frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 defsymbol (&Qsynchronize_minibuffers, "synchronize-minibuffers");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 defsymbol (&Qbuffer_predicate, "buffer-predicate");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 defsymbol (&Qframe_being_created, "frame-being-created");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 defsymbol (&Qmake_initial_minibuffer_frame, "make-initial-minibuffer-frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3098 defsymbol (&Qframe_title_format, "frame-title-format");
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3099 defsymbol (&Qframe_icon_title_format, "frame-icon-title-format");
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3100
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 98
diff changeset
3101 defsymbol (&Qhidden, "hidden");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 defsymbol (&Qvisible, "visible");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 defsymbol (&Qiconic, "iconic");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 defsymbol (&Qinvisible, "invisible");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 defsymbol (&Qvisible_iconic, "visible-iconic");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 defsymbol (&Qinvisible_iconic, "invisible-iconic");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 defsymbol (&Qnomini, "nomini");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 defsymbol (&Qvisible_nomini, "visible-nomini");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 defsymbol (&Qiconic_nomini, "iconic-nomini");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 defsymbol (&Qinvisible_nomini, "invisible-nomini");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 defsymbol (&Qvisible_iconic_nomini, "visible-iconic-nomini");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 defsymbol (&Qinvisible_iconic_nomini, "invisible-iconic-nomini");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 defsymbol (&Qminibuffer, "minibuffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 defsymbol (&Qunsplittable, "unsplittable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 defsymbol (&Qinternal_border_width, "internal-border-width");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 defsymbol (&Qtop_toolbar_shadow_color, "top-toolbar-shadow-color");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 defsymbol (&Qbottom_toolbar_shadow_color, "bottom-toolbar-shadow-color");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 defsymbol (&Qbackground_toolbar_color, "background-toolbar-color");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 defsymbol (&Qtop_toolbar_shadow_pixmap, "top-toolbar-shadow-pixmap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 defsymbol (&Qbottom_toolbar_shadow_pixmap, "bottom-toolbar-shadow-pixmap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 defsymbol (&Qtoolbar_shadow_thickness, "toolbar-shadow-thickness");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 defsymbol (&Qscrollbar_placement, "scrollbar-placement");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 defsymbol (&Qinter_line_space, "inter-line-space");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 /* Qiconic already in this function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 defsymbol (&Qvisual_bell, "visual-bell");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 defsymbol (&Qbell_volume, "bell-volume");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 defsymbol (&Qpointer_background, "pointer-background");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 defsymbol (&Qpointer_color, "pointer-color");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 defsymbol (&Qtext_pointer, "text-pointer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 defsymbol (&Qspace_pointer, "space-pointer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 defsymbol (&Qmodeline_pointer, "modeline-pointer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 defsymbol (&Qgc_pointer, "gc-pointer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 defsymbol (&Qinitially_unmapped, "initially-unmapped");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 defsymbol (&Quse_backing_store, "use-backing-store");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 defsymbol (&Qborder_color, "border-color");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 defsymbol (&Qborder_width, "border-width");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 /* Qwidth, Qheight, Qleft, Qtop in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 defsymbol (&Qset_specifier, "set-specifier");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 defsymbol (&Qset_glyph_image, "set-glyph-image");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 defsymbol (&Qset_face_property, "set-face-property");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 defsymbol (&Qface_property_instance, "face-property-instance");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 defsymbol (&Qframe_property_alias, "frame-property-alias");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3145 DEFSUBR (Fmake_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3146 DEFSUBR (Fframep);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3147 DEFSUBR (Fframe_live_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 #if 0 /* FSFmacs */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3149 DEFSUBR (Fignore_event);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 #endif
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
3151 DEFSUBR (Ffocus_frame);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3152 DEFSUBR (Fselect_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3153 DEFSUBR (Fselected_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3154 DEFSUBR (Factive_minibuffer_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3155 DEFSUBR (Flast_nonminibuf_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3156 DEFSUBR (Fframe_root_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3157 DEFSUBR (Fframe_selected_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3158 DEFSUBR (Fset_frame_selected_window);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3159 DEFSUBR (Fframe_device);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3160 DEFSUBR (Fnext_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3161 DEFSUBR (Fprevious_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3162 DEFSUBR (Fdelete_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3163 DEFSUBR (Fmouse_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3164 DEFSUBR (Fmouse_pixel_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3165 DEFSUBR (Fmouse_position_as_motion_event);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3166 DEFSUBR (Fset_mouse_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3167 DEFSUBR (Fset_mouse_pixel_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3168 DEFSUBR (Fmake_frame_visible);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3169 DEFSUBR (Fmake_frame_invisible);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3170 DEFSUBR (Ficonify_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3171 DEFSUBR (Fdeiconify_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3172 DEFSUBR (Fframe_visible_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3173 DEFSUBR (Fframe_totally_visible_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3174 DEFSUBR (Fframe_iconified_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3175 DEFSUBR (Fvisible_frame_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3176 DEFSUBR (Fraise_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3177 DEFSUBR (Flower_frame);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3178 DEFSUBR (Fframe_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3179 DEFSUBR (Fframe_properties);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3180 DEFSUBR (Fset_frame_properties);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3181 DEFSUBR (Fframe_pixel_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3182 DEFSUBR (Fframe_pixel_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3183 DEFSUBR (Fframe_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3184 DEFSUBR (Fframe_modified_tick);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3185 DEFSUBR (Fset_frame_height);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3186 DEFSUBR (Fset_frame_width);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3187 DEFSUBR (Fset_frame_size);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3188 DEFSUBR (Fset_frame_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3189 DEFSUBR (Fset_frame_pointer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 vars_of_frame (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 /* */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 Vframe_being_created = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 staticpro (&Vframe_being_created);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3199 #ifdef HAVE_CDE
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
3200 Fprovide (intern ("cde"));
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3201 #endif
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3202
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
3203 #ifdef HAVE_OFFIX_DND
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
3204 Fprovide (intern ("offix"));
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
3205 #endif
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 173
diff changeset
3206
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 #if 0 /* FSFmacs stupidity */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 xxDEFVAR_LISP ("emacs-iconified", &Vemacs_iconified /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 Non-nil if all of emacs is iconified and frame updates are not needed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 Vemacs_iconified = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 DEFVAR_LISP ("select-frame-hook", &Vselect_frame_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 Function or functions to run just after a new frame is given the focus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 Note that calling `select-frame' does not necessarily set the focus:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 The actual window-system focus will not be changed until the next time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 that XEmacs is waiting for an event, and even then, the window manager
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 may refuse the focus-change request.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 Vselect_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 DEFVAR_LISP ("deselect-frame-hook", &Vdeselect_frame_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 Function or functions to run just before a frame loses the focus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 See `select-frame-hook'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 Vdeselect_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 DEFVAR_LISP ("delete-frame-hook", &Vdelete_frame_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 Function or functions to call when a frame is deleted.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3231 One argument, the about-to-be-deleted frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 Vdelete_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 DEFVAR_LISP ("create-frame-hook", &Vcreate_frame_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 Function or functions to call when a frame is created.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 One argument, the newly-created frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 Vcreate_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 DEFVAR_LISP ("mouse-enter-frame-hook", &Vmouse_enter_frame_hook /*
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3242 Function or functions to call when the mouse enters a frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 One argument, the frame.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3244 Be careful not to make assumptions about the window manager's focus model.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 In most cases, the `deselect-frame-hook' is more appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 Vmouse_enter_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 DEFVAR_LISP ("mouse-leave-frame-hook", &Vmouse_leave_frame_hook /*
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3250 Function or functions to call when the mouse leaves a frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 One argument, the frame.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3252 Be careful not to make assumptions about the window manager's focus model.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 In most cases, the `select-frame-hook' is more appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 Vmouse_leave_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 DEFVAR_LISP ("map-frame-hook", &Vmap_frame_hook /*
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3258 Function or functions to call when a frame is mapped.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 One argument, the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 Vmap_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 DEFVAR_LISP ("unmap-frame-hook", &Vunmap_frame_hook /*
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3264 Function or functions to call when a frame is unmapped.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 One argument, the frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 Vunmap_frame_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268
142
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 108
diff changeset
3269 DEFVAR_BOOL ("allow-deletion-of-last-visible-frame",
146
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 142
diff changeset
3270 &allow_deletion_of_last_visible_frame /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 *Non-nil means to assume the force option to delete-frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 */ );
146
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 142
diff changeset
3273 allow_deletion_of_last_visible_frame = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3275 DEFVAR_LISP ("adjust-frame-function", &Vadjust_frame_function /*
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3276 Function or constant controlling adjustment of frame.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3277 When scrollbars, toolbars, default font etc. change in frame, the frame
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3278 needs to be adjusted. The adjustment is controlled by this variable.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3279 Legal values are:
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3280 nil to keep character frame size unchanged when possible (resize)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3281 t to keep pixel size unchanged (never resize)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3282 function symbol or lambda form. This function must return boolean
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3283 value which is treated as above. Function is passed one parameter,
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3284 the frame being adjusted. It function should not modify or delete
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3285 the frame.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 */ );
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3287 Vadjust_frame_function = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 DEFVAR_LISP ("mouse-motion-handler", &Vmouse_motion_handler /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 Handler for motion events. One arg, the event.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 For most applications, you should use `mode-motion-hook' instead of this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 Vmouse_motion_handler = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295 DEFVAR_LISP ("synchronize-minibuffers",&Vsynchronize_minibuffers /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 Set to t if all minibuffer windows are to be synchronized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 This will cause echo area messages to appear in the minibuffers of all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 visible frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 Vsynchronize_minibuffers = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 DEFVAR_LISP ("frame-title-format", &Vframe_title_format /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 Controls the title of the X window corresponding to the selected frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 This is the same format as `modeline-format' with the exception that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 %- is ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 Vframe_title_format = Fpurecopy (build_string ("%S: %b"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 DEFVAR_LISP ("frame-icon-title-format", &Vframe_icon_title_format /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 Controls the title of the icon corresponding to the selected frame.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
3311 See also the variable `frame-title-format'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 Vframe_icon_title_format = Fpurecopy (build_string ("%b"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 DEFVAR_LISP ("default-frame-name", &Vdefault_frame_name /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 The default name to assign to newly-created frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 This can be overridden by arguments to `make-frame'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 This must be a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 */ );
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3320 #ifndef INFODOCK
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 Vdefault_frame_name = Fpurecopy (build_string ("emacs"));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3322 #else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3323 Vdefault_frame_name = Fpurecopy (build_string ("InfoDock"));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3324 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 DEFVAR_LISP ("default-frame-plist", &Vdefault_frame_plist /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 Plist of default values for frame creation, other than the first one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 These may be set in your init file, like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 \(setq default-frame-plist '(width 80 height 55))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 The properties may be in alist format for backward compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 but you should not rely on this behavior.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 These override values given in window system configuration data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 including X Windows' defaults database.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 Since the first X frame is created before loading your .emacs file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 you must use the X resource database for that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 For values specific to the first Emacs frame, see `initial-frame-plist'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 For values specific to the separate minibuffer frame, see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 `minibuffer-frame-plist'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 See also the variables `default-x-frame-plist' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 `default-tty-frame-plist', which are like `default-frame-plist'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 except that they apply only to X or tty frames, respectively
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 189
diff changeset
3348 \(whereas `default-frame-plist' applies to all types of frames).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 Vdefault_frame_plist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 DEFVAR_LISP ("frame-icon-glyph", &Vframe_icon_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 Icon glyph used to iconify a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 complex_vars_of_frame (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 Vframe_icon_glyph = allocate_glyph (GLYPH_ICON, icon_glyph_changed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 }