annotate src/frame.c @ 90614:8dd8c8286063

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 460-475) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 145-152) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-118
author Miles Bader <miles@gnu.org>
date Sun, 15 Oct 2006 02:54:13 +0000
parents 7f3f771c85fa 108f4a391eaa
children 02cf29720f31
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1 /* Generic frame functions.
90386
2ecafc6d5db7 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-58
Miles Bader <miles@gnu.org>
parents: 90299 70198
diff changeset
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2006,
68651
3bd95f4f2941 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 68395
diff changeset
3 2004, 2005, 2006 Free Software Foundation, Inc.
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5 This file is part of GNU Emacs.
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 GNU Emacs is free software; you can redistribute it and/or modify
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
9 the Free Software Foundation; either version 2, or (at your option)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10 any later version.
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 GNU General Public License for more details.
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 along with GNU Emacs; see the file COPYING. If not, write to
64084
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63698
diff changeset
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
a8fa7c632ee4 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63698
diff changeset
20 Boston, MA 02110-1301, USA. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
22 #include <config.h>
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
23
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
24 #include <stdio.h>
987
afb21e974ed2 * frame.c (make_frame): Stop passing zero to make_window; it's not
Jim Blandy <jimb@redhat.com>
parents: 965
diff changeset
25 #include "lisp.h"
88351
aac41b50c875 Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents: 43442
diff changeset
26 #include "character.h"
21825
697991d2a2c4 Conditionally include xterm.h using HAVE_X_WINDOWS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21524
diff changeset
27 #ifdef HAVE_X_WINDOWS
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21359
diff changeset
28 #include "xterm.h"
17032
814257735e7d Include "charset.h"
Karl Heuer <kwzh@gnu.org>
parents: 16588
diff changeset
29 #endif
27633
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27575
diff changeset
30 #ifdef WINDOWSNT
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27575
diff changeset
31 #include "w32term.h"
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27575
diff changeset
32 #endif
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 43717
diff changeset
33 #ifdef MAC_OS
32752
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32545
diff changeset
34 #include "macterm.h"
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32545
diff changeset
35 #endif
31102
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
36 #include "buffer.h"
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
37 /* These help us bind and responding to switch-frame events. */
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
38 #include "commands.h"
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
39 #include "keyboard.h"
987
afb21e974ed2 * frame.c (make_frame): Stop passing zero to make_window; it's not
Jim Blandy <jimb@redhat.com>
parents: 965
diff changeset
40 #include "frame.h"
23515
1e52542fb338 Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents: 22188
diff changeset
41 #ifdef HAVE_WINDOW_SYSTEM
1e52542fb338 Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents: 22188
diff changeset
42 #include "fontset.h"
1e52542fb338 Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents: 22188
diff changeset
43 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
44 #include "blockinput.h"
5392
d8d5844c3ba6 Always include termhooks.h.
Richard M. Stallman <rms@gnu.org>
parents: 5231
diff changeset
45 #include "termhooks.h"
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21359
diff changeset
46 #include "dispextern.h"
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
47 #include "window.h"
9572
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9309
diff changeset
48 #ifdef MSDOS
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9309
diff changeset
49 #include "msdos.h"
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
50 #include "dosfns.h"
9572
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9309
diff changeset
51 #endif
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 714
diff changeset
52
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
53
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
54 #ifdef HAVE_WINDOW_SYSTEM
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
55
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
56 #ifdef USE_FONT_BACKEND
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
57 #include "font.h"
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
58 #endif /* USE_FONT_BACKEND */
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
59
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
60 /* The name we're using in resource queries. Most often "emacs". */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
61
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
62 Lisp_Object Vx_resource_name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
63
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
64 /* The application class we're using in resource queries.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
65 Normally "Emacs". */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
66
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
67 Lisp_Object Vx_resource_class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
68
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
69 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
70
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
71 Lisp_Object Qframep, Qframe_live_p;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
72 Lisp_Object Qicon, Qmodeline;
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
73 Lisp_Object Qonly;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
74 Lisp_Object Qx, Qw32, Qmac, Qpc;
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
75 Lisp_Object Qvisible;
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
76 Lisp_Object Qdisplay_type;
31448
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
77 Lisp_Object Qbackground_mode;
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
78 Lisp_Object Qinhibit_default_face_x_resources;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
79
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
80 Lisp_Object Qx_frame_parameter;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
81 Lisp_Object Qx_resource_name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
82
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
83 /* Frame parameters (set or reported). */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
84
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
85 Lisp_Object Qauto_raise, Qauto_lower;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
86 Lisp_Object Qborder_color, Qborder_width;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
87 Lisp_Object Qcursor_color, Qcursor_type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
88 Lisp_Object Qgeometry; /* Not used */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
89 Lisp_Object Qheight, Qwidth;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
90 Lisp_Object Qleft, Qright;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
91 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
92 Lisp_Object Qinternal_border_width;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
93 Lisp_Object Qmouse_color;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
94 Lisp_Object Qminibuffer;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
95 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
96 Lisp_Object Qvisibility;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
97 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
98 Lisp_Object Qscreen_gamma;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
99 Lisp_Object Qline_spacing;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
100 Lisp_Object Quser_position, Quser_size;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
101 Lisp_Object Qwait_for_wm;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
102 Lisp_Object Qwindow_id;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
103 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
104 Lisp_Object Qouter_window_id;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
105 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
106 Lisp_Object Qparent_id;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
107 Lisp_Object Qtitle, Qname;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
108 Lisp_Object Qunsplittable;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
109 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
110 Lisp_Object Qleft_fringe, Qright_fringe;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
111 Lisp_Object Qbuffer_predicate, Qbuffer_list;
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
112 Lisp_Object Qtty_color_mode;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
114 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
115 #ifdef USE_FONT_BACKEND
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
116 Lisp_Object Qfont_backend;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
117 #endif /* USE_FONT_BACKEND */
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
118
73253
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
119 Lisp_Object Qinhibit_face_set_after_frame_default;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
120 Lisp_Object Qface_set_after_frame_default;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
121
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
122
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
123 Lisp_Object Vterminal_frame;
13522
6a97ea1245b5 (syms_of_frame_1): Set up Vdefault_frame_alist here.
Richard M. Stallman <rms@gnu.org>
parents: 13498
diff changeset
124 Lisp_Object Vdefault_frame_alist;
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
125 Lisp_Object Vdefault_frame_scroll_bars;
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
126 Lisp_Object Vmouse_position_function;
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
127 Lisp_Object Vmouse_highlight;
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
128 Lisp_Object Vdelete_frame_functions;
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
129
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
130 static void
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
131 set_menu_bar_lines_1 (window, n)
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
132 Lisp_Object window;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
133 int n;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
134 {
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
135 struct window *w = XWINDOW (window);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
136
13498
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
137 XSETFASTINT (w->last_modified, 0);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
138 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
139 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
140
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
141 if (INTEGERP (w->orig_top_line))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
142 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
143 if (INTEGERP (w->orig_total_lines))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
144 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
145
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
146 /* Handle just the top child in a vertical split. */
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
147 if (!NILP (w->vchild))
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
148 set_menu_bar_lines_1 (w->vchild, n);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
149
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
150 /* Adjust all children in a horizontal split. */
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
151 for (window = w->hchild; !NILP (window); window = w->next)
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
152 {
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
153 w = XWINDOW (window);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
154 set_menu_bar_lines_1 (window, n);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
155 }
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
156 }
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
157
20038
bb460edc7187 (set_menu_bar_lines): Make the function external instead
Eli Zaretskii <eliz@gnu.org>
parents: 19532
diff changeset
158 void
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
159 set_menu_bar_lines (f, value, oldval)
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
160 struct frame *f;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
161 Lisp_Object value, oldval;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
162 {
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
163 int nlines;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
164 int olines = FRAME_MENU_BAR_LINES (f);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
165
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
166 /* Right now, menu bars don't work properly in minibuf-only frames;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
167 most of the commands try to apply themselves to the minibuffer
16051
ccf489f8596e Removed support for !MULTI_FRAME.
Karl Heuer <kwzh@gnu.org>
parents: 15696
diff changeset
168 frame itself, and get an error because you can't switch buffers
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
169 in or split the minibuffer window. */
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
170 if (FRAME_MINIBUF_ONLY_P (f))
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
171 return;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
172
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
173 if (INTEGERP (value))
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
174 nlines = XINT (value);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
175 else
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
176 nlines = 0;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
177
13498
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
178 if (nlines != olines)
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
179 {
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
180 windows_or_buffers_changed++;
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
181 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
182 FRAME_MENU_BAR_LINES (f) = nlines;
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
183 set_menu_bar_lines_1 (f->root_window, nlines - olines);
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
184 adjust_glyphs (f);
13498
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
185 }
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
186 }
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
187
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
188 Lisp_Object Vemacs_iconified;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
189 Lisp_Object Vframe_list;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
190
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
191 struct x_output tty_display;
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
192
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193 extern Lisp_Object Vminibuffer_list;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 extern Lisp_Object get_minibuffer ();
5172
9aa201005b16 (Fhandle_switch_frame, Fredirect_frame_focus): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 5105
diff changeset
195 extern Lisp_Object Fhandle_switch_frame ();
9aa201005b16 (Fhandle_switch_frame, Fredirect_frame_focus): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 5105
diff changeset
196 extern Lisp_Object Fredirect_frame_focus ();
12005
4a722a97c8d3 Declare x_get_focus_frame.
Karl Heuer <kwzh@gnu.org>
parents: 11906
diff changeset
197 extern Lisp_Object x_get_focus_frame ();
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
199 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
200 doc: /* Return non-nil if OBJECT is a frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
201 Value is t for a termcap frame (a character-only terminal),
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
202 `x' for an Emacs frame that is really an X window,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
203 `w32' for an Emacs frame that is a window on MS-Windows display,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
204 `mac' for an Emacs frame on a Macintosh display,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
205 `pc' for a direct-write MS-DOS frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
206 See also `frame-live-p'. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
207 (object)
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
208 Lisp_Object object;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
209 {
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
210 if (!FRAMEP (object))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
211 return Qnil;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
212 switch (XFRAME (object)->output_method)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
213 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
214 case output_termcap:
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
215 return Qt;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
216 case output_x_window:
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
217 return Qx;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16568
diff changeset
218 case output_w32:
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16568
diff changeset
219 return Qw32;
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
220 case output_msdos_raw:
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
221 return Qpc;
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
222 case output_mac:
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
223 return Qmac;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224 default:
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 abort ();
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
226 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
227 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
229 DEFUN ("frame-live-p", Fframe_live_p, Sframe_live_p, 1, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
230 doc: /* Return non-nil if OBJECT is a frame which has not been deleted.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
231 Value is nil if OBJECT is not a live frame. If object is a live
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
232 frame, the return value indicates what sort of output device it is
41239
e44a82a4871e (Fframe_live_p): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
233 displayed on. See the documentation of `framep' for possible
40568
c73c1890d989 (Fframe_live_p): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40319
diff changeset
234 return values. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
235 (object)
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
236 Lisp_Object object;
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
237 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
238 return ((FRAMEP (object)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
239 && FRAME_LIVE_P (XFRAME (object)))
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
240 ? Fframep (object)
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
241 : Qnil);
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
242 }
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
243
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
244 struct frame *
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
245 make_frame (mini_p)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246 int mini_p;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
248 Lisp_Object frame;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
249 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
250 register Lisp_Object root_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
251 register Lisp_Object mini_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
252
36433
20b42ba5a623 (make_frame): Use allocate_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 35817
diff changeset
253 f = allocate_frame ();
9972
92b33538b36a (make_frame): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9901
diff changeset
254 XSETFRAME (frame, f);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
256 f->desired_matrix = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
257 f->current_matrix = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
258 f->desired_pool = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
259 f->current_pool = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
260 f->glyphs_initialized_p = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
261 f->decode_mode_spec_buffer = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
262 f->visible = 0;
1652
93497cd89204 * frame.c (make_frame): Initialize async_visible and
Jim Blandy <jimb@redhat.com>
parents: 1514
diff changeset
263 f->async_visible = 0;
12667
a3466dad7d6d Renamings: frame->display => frame->output, struct x_display -> sruct x_output.
Richard M. Stallman <rms@gnu.org>
parents: 12630
diff changeset
264 f->output_data.nothing = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
265 f->iconified = 0;
1652
93497cd89204 * frame.c (make_frame): Initialize async_visible and
Jim Blandy <jimb@redhat.com>
parents: 1514
diff changeset
266 f->async_iconified = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
267 f->wants_modeline = 1;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
268 f->auto_raise = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
269 f->auto_lower = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
270 f->no_split = 0;
27725
fb13a4706619 (make_frame): Set frame initiallly to `garbaged'.
Gerd Moellmann <gerd@gnu.org>
parents: 27633
diff changeset
271 f->garbaged = 1;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
272 f->has_minibuffer = mini_p;
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
273 f->focus_frame = Qnil;
1006
a13ee72d74a2 * frame.c (make_frame): Clear the explicit_name member of the new
Jim Blandy <jimb@redhat.com>
parents: 987
diff changeset
274 f->explicit_name = 0;
1989
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
275 f->can_have_scroll_bars = 0;
16263
a369af16e836 (make_frame): Switch from boolean `has_vertical_scrollbars' integer to
Richard M. Stallman <rms@gnu.org>
parents: 16184
diff changeset
276 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
277 f->param_alist = Qnil;
1989
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
278 f->scroll_bars = Qnil;
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
279 f->condemned_scroll_bars = Qnil;
2417
8c07933beed9 (make_frame): Init face_alist field.
Richard M. Stallman <rms@gnu.org>
parents: 2298
diff changeset
280 f->face_alist = Qnil;
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
281 f->face_cache = NULL;
6130
d4e5878462cb (make_frame): Init menu_bar_items field to 0.
Richard M. Stallman <rms@gnu.org>
parents: 6054
diff changeset
282 f->menu_bar_items = Qnil;
7095
098b87bde5a7 (make_frame): Initialize fields menu_bar_vector and menu_bar_items_used.
Richard M. Stallman <rms@gnu.org>
parents: 7055
diff changeset
283 f->menu_bar_vector = Qnil;
098b87bde5a7 (make_frame): Initialize fields menu_bar_vector and menu_bar_items_used.
Richard M. Stallman <rms@gnu.org>
parents: 7055
diff changeset
284 f->menu_bar_items_used = 0;
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
285 f->buffer_predicate = Qnil;
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
286 f->buffer_list = Qnil;
11017
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
287 #ifdef MULTI_KBOARD
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
288 f->kboard = initial_kboard;
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
289 #endif
14303
48e3ee5005cd (make_frame): Initialize title parameter to Qnil.
Karl Heuer <kwzh@gnu.org>
parents: 14223
diff changeset
290 f->namebuf = 0;
14223
596bb10704dd (make_frame): Initialize frame title field to nil.
Erik Naggum <erik@naggum.no>
parents: 14217
diff changeset
291 f->title = Qnil;
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
292 f->menu_bar_window = Qnil;
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25523
diff changeset
293 f->tool_bar_window = Qnil;
33760
22dc6e2e7410 (make_frame): Change initialization of tool bar
Gerd Moellmann <gerd@gnu.org>
parents: 33512
diff changeset
294 f->tool_bar_items = Qnil;
25544
693ca9ba497a Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents: 25523
diff changeset
295 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
33760
22dc6e2e7410 (make_frame): Change initialization of tool bar
Gerd Moellmann <gerd@gnu.org>
parents: 33512
diff changeset
296 f->n_tool_bar_items = 0;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
297 f->left_fringe_width = f->right_fringe_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
298 f->fringe_cols = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
299 f->scroll_bar_actual_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
300 f->border_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
301 f->internal_border_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
302 f->column_width = 1; /* !FRAME_WINDOW_P value */
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
303 f->line_height = 1; /* !FRAME_WINDOW_P value */
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
304 f->x_pixels_diff = f->y_pixels_diff = 0;
51225
695efa86354b * frame.c (make_frame): Condition want_fullscreen with
Jan Djärv <jan.h.d@swipnet.se>
parents: 51194
diff changeset
305 #ifdef HAVE_WINDOW_SYSTEM
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
306 f->want_fullscreen = FULLSCREEN_NONE;
51225
695efa86354b * frame.c (make_frame): Condition want_fullscreen with
Jan Djärv <jan.h.d@swipnet.se>
parents: 51194
diff changeset
307 #endif
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
308 f->size_hint_flags = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
309 f->win_gravity = 0;
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
310 #ifdef USE_FONT_BACKEND
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
311 f->font_driver_list = NULL;
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
312 #endif /* USE_FONT_BACKEND */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313
987
afb21e974ed2 * frame.c (make_frame): Stop passing zero to make_window; it's not
Jim Blandy <jimb@redhat.com>
parents: 965
diff changeset
314 root_window = make_window ();
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 if (mini_p)
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
316 {
987
afb21e974ed2 * frame.c (make_frame): Stop passing zero to make_window; it's not
Jim Blandy <jimb@redhat.com>
parents: 965
diff changeset
317 mini_window = make_window ();
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318 XWINDOW (root_window)->next = mini_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 XWINDOW (mini_window)->prev = root_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 XWINDOW (mini_window)->mini_p = Qt;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
321 XWINDOW (mini_window)->frame = frame;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
322 f->minibuffer_window = mini_window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 else
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
325 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
326 mini_window = Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327 XWINDOW (root_window)->next = Qnil;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
328 f->minibuffer_window = Qnil;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
329 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
330
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
331 XWINDOW (root_window)->frame = frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
332
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
333 /* 10 is arbitrary,
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334 just so that there is "something there."
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
335 Correct size will be set up later with change_frame_size. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
337 SET_FRAME_COLS (f, 10);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
338 FRAME_LINES (f) = 10;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
339
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
340 XSETFASTINT (XWINDOW (root_window)->total_cols, 10);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
341 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343 if (mini_p)
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
345 XSETFASTINT (XWINDOW (mini_window)->total_cols, 10);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
346 XSETFASTINT (XWINDOW (mini_window)->top_line, 9);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
347 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
350 /* Choose a buffer for the frame's root window. */
386
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
351 {
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
352 Lisp_Object buf;
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
353
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
354 XWINDOW (root_window)->buffer = Qt;
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
355 buf = Fcurrent_buffer ();
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
356 /* If buf is a 'hidden' buffer (i.e. one whose name starts with
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
357 a space), try to find another one. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
358 if (SREF (Fbuffer_name (buf), 0) == ' ')
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
359 buf = Fother_buffer (buf, Qnil, Qnil);
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
360
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
361 /* Use set_window_buffer, not Fset_window_buffer, and don't let
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
362 hooks be run by it. The reason is that the whole frame/window
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
363 arrangement is not yet fully intialized at this point. Windows
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
364 don't have the right size, glyph matrices aren't initialized
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
365 etc. Running Lisp functions at this point surely ends in a
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
366 SEGV. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
367 set_window_buffer (root_window, buf, 0, 0);
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
368 f->buffer_list = Fcons (buf, Qnil);
386
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
369 }
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
370
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371 if (mini_p)
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373 XWINDOW (mini_window)->buffer = Qt;
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
374 set_window_buffer (mini_window,
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
375 (NILP (Vminibuffer_list)
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
376 ? get_minibuffer (0)
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
377 : Fcar (Vminibuffer_list)),
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
378 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
379 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
380
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
381 f->root_window = root_window;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
382 f->selected_window = root_window;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
383 /* Make sure this window seems more recently used than
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
384 a newly-created, never-selected window. */
58265
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 57971
diff changeset
385 ++window_select_count;
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 57971
diff changeset
386 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
387
51665
c1f65dfc56eb Fix some of the font/face problems.
Jan Djärv <jan.h.d@swipnet.se>
parents: 51225
diff changeset
388 f->default_face_done_p = 0;
c1f65dfc56eb Fix some of the font/face problems.
Jan Djärv <jan.h.d@swipnet.se>
parents: 51225
diff changeset
389
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
390 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
391 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392
21359
f66e706fc9d6 (make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents: 21244
diff changeset
393 #ifdef HAVE_WINDOW_SYSTEM
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
394 /* Make a frame using a separate minibuffer window on another frame.
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395 MINI_WINDOW is the minibuffer window to use. nil means use the
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396 default (the global minibuffer). */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
397
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
398 struct frame *
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
399 make_frame_without_minibuffer (mini_window, kb, display)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400 register Lisp_Object mini_window;
11775
fe7852953b75 (make_frame_without_minibuffer): New arg KB.
Karl Heuer <kwzh@gnu.org>
parents: 11773
diff changeset
401 KBOARD *kb;
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
402 Lisp_Object display;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
403 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
404 register struct frame *f;
15555
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
405 struct gcpro gcpro1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
407 if (!NILP (mini_window))
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
408 CHECK_LIVE_WINDOW (mini_window);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
409
11775
fe7852953b75 (make_frame_without_minibuffer): New arg KB.
Karl Heuer <kwzh@gnu.org>
parents: 11773
diff changeset
410 #ifdef MULTI_KBOARD
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
411 if (!NILP (mini_window)
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
412 && XFRAME (XWINDOW (mini_window)->frame)->kboard != kb)
63698
e7e58f0947fe (make_frame_without_minibuffer): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63643
diff changeset
413 error ("Frame and minibuffer must be on the same display");
11775
fe7852953b75 (make_frame_without_minibuffer): New arg KB.
Karl Heuer <kwzh@gnu.org>
parents: 11773
diff changeset
414 #endif
fe7852953b75 (make_frame_without_minibuffer): New arg KB.
Karl Heuer <kwzh@gnu.org>
parents: 11773
diff changeset
415
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
416 /* Make a frame containing just a root window. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
417 f = make_frame (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
418
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
419 if (NILP (mini_window))
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
420 {
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
421 /* Use default-minibuffer-frame if possible. */
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
422 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
423 || ! FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame)))
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
424 {
15555
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
425 Lisp_Object frame_dummy;
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
426
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
427 XSETFRAME (frame_dummy, f);
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
428 GCPRO1 (frame_dummy);
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
429 /* If there's no minibuffer frame to use, create one. */
15555
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
430 kb->Vdefault_minibuffer_frame =
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
431 call1 (intern ("make-initial-minibuffer-frame"), display);
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
432 UNGCPRO;
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
433 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
434
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
435 mini_window = XFRAME (kb->Vdefault_minibuffer_frame)->minibuffer_window;
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
436 }
15001
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
437
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
438 f->minibuffer_window = mini_window;
15001
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
439
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
440 /* Make the chosen minibuffer window display the proper minibuffer,
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
441 unless it is already showing a minibuffer. */
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
442 if (NILP (Fmemq (XWINDOW (mini_window)->buffer, Vminibuffer_list)))
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
443 Fset_window_buffer (mini_window,
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
444 (NILP (Vminibuffer_list)
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
445 ? get_minibuffer (0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
446 : Fcar (Vminibuffer_list)), Qnil);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
447 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
448 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
449
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
450 /* Make a frame containing only a minibuffer window. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
451
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
452 struct frame *
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
453 make_minibuffer_frame ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
455 /* First make a frame containing just a root window, no minibuffer. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
457 register struct frame *f = make_frame (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
458 register Lisp_Object mini_window;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
459 register Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
461 XSETFRAME (frame, f);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
462
1006
a13ee72d74a2 * frame.c (make_frame): Clear the explicit_name member of the new
Jim Blandy <jimb@redhat.com>
parents: 987
diff changeset
463 f->auto_raise = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
464 f->auto_lower = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
465 f->no_split = 1;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
466 f->wants_modeline = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
467 f->has_minibuffer = 1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
468
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
469 /* Now label the root window as also being the minibuffer.
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470 Avoid infinite looping on the window chain by marking next pointer
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
471 as nil. */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
473 mini_window = f->minibuffer_window = f->root_window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 XWINDOW (mini_window)->mini_p = Qt;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 XWINDOW (mini_window)->next = Qnil;
1006
a13ee72d74a2 * frame.c (make_frame): Clear the explicit_name member of the new
Jim Blandy <jimb@redhat.com>
parents: 987
diff changeset
476 XWINDOW (mini_window)->prev = Qnil;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
477 XWINDOW (mini_window)->frame = frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 /* Put the proper buffer in that window. */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 Fset_window_buffer (mini_window,
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 454
diff changeset
482 (NILP (Vminibuffer_list)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 ? get_minibuffer (0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
484 : Fcar (Vminibuffer_list)), Qnil);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
485 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486 }
21359
f66e706fc9d6 (make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents: 21244
diff changeset
487 #endif /* HAVE_WINDOW_SYSTEM */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
489 /* Construct a frame that refers to the terminal (stdin and stdout). */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
490
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
491 static int terminal_frame_count;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
492
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
493 struct frame *
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
494 make_terminal_frame ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
496 register struct frame *f;
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
497 Lisp_Object frame;
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
498 char name[20];
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499
11017
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
500 #ifdef MULTI_KBOARD
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
501 if (!initial_kboard)
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
502 {
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
503 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
504 init_kboard (initial_kboard);
11364
9c609a5bd245 (make_terminal_frame): all_kboards means initial_kboard too.
Karl Heuer <kwzh@gnu.org>
parents: 11355
diff changeset
505 initial_kboard->next_kboard = all_kboards;
9c609a5bd245 (make_terminal_frame): all_kboards means initial_kboard too.
Karl Heuer <kwzh@gnu.org>
parents: 11355
diff changeset
506 all_kboards = initial_kboard;
11017
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
507 }
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
508 #endif
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
509
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
510 /* The first call must initialize Vframe_list. */
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
511 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
512 Vframe_list = Qnil;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
513
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
514 f = make_frame (1);
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
515
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
516 XSETFRAME (frame, f);
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
517 Vframe_list = Fcons (frame, Vframe_list);
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
518
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
519 terminal_frame_count++;
17857
c39f34ef5d76 (make_terminal_frame): Don't add `Emacs' to frame name.
Richard M. Stallman <rms@gnu.org>
parents: 17573
diff changeset
520 sprintf (name, "F%d", terminal_frame_count);
c39f34ef5d76 (make_terminal_frame): Don't add `Emacs' to frame name.
Richard M. Stallman <rms@gnu.org>
parents: 17573
diff changeset
521 f->name = build_string (name);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
522
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
523 f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
524 f->async_visible = 1; /* Don't let visible be cleared later. */
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
525 #ifdef MSDOS
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
526 f->output_data.x = &the_only_x_display;
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
527 if (!inhibit_window_system
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
528 && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
529 || XFRAME (selected_frame)->output_method == output_msdos_raw))
31470
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
530 {
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
531 f->output_method = output_msdos_raw;
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
532 /* This initialization of foreground and background pixels is
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
533 only important for the initial frame created in temacs. If
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
534 we don't do that, we get black background and foreground in
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
535 the dumped Emacs because the_only_x_display is a static
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
536 variable, hence it is born all-zeroes, and zero is the code
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
537 for the black color. Other frames all inherit their pixels
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
538 from what's already in the_only_x_display. */
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
539 if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
540 && f->output_data.x->background_pixel == 0
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
541 && f->output_data.x->foreground_pixel == 0)
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
542 {
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
543 f->output_data.x->background_pixel = FACE_TTY_DEFAULT_BG_COLOR;
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
544 f->output_data.x->foreground_pixel = FACE_TTY_DEFAULT_FG_COLOR;
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
545 }
2e399023961d (make_terminal_frame): Initialize frame foreground and
Eli Zaretskii <eliz@gnu.org>
parents: 31448
diff changeset
546 }
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
547 else
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
548 f->output_method = output_termcap;
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
549 #else
35003
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
550 #ifdef WINDOWSNT
35447
c6cb860208d8 (Qw32_console): Remove variable.
Andrew Innes <andrewi@gnu.org>
parents: 35003
diff changeset
551 f->output_method = output_termcap;
35003
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
552 f->output_data.x = &tty_display;
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
553 #else
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 43717
diff changeset
554 #ifdef MAC_OS8
32752
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32545
diff changeset
555 make_mac_terminal_frame (f);
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32545
diff changeset
556 #else
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
557 f->output_data.x = &tty_display;
47036
9d848dcc4b5d (make_terminal_frame) [CANNOT_DUMP]: Initialize
Kim F. Storm <storm@cua.dk>
parents: 46467
diff changeset
558 #ifdef CANNOT_DUMP
9d848dcc4b5d (make_terminal_frame) [CANNOT_DUMP]: Initialize
Kim F. Storm <storm@cua.dk>
parents: 46467
diff changeset
559 FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR;
9d848dcc4b5d (make_terminal_frame) [CANNOT_DUMP]: Initialize
Kim F. Storm <storm@cua.dk>
parents: 46467
diff changeset
560 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
9d848dcc4b5d (make_terminal_frame) [CANNOT_DUMP]: Initialize
Kim F. Storm <storm@cua.dk>
parents: 46467
diff changeset
561 #endif
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 43717
diff changeset
562 #endif /* MAC_OS8 */
35003
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
563 #endif /* WINDOWSNT */
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
564 #endif /* MSDOS */
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
565
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
566 if (!noninteractive)
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
567 init_frame_faces (f);
32752
923b8d6d8277 Initial check-in: changes for building Emacs under Mac OS.
Andrew Choi <akochoi@shaw.ca>
parents: 32545
diff changeset
568
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
569 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
570 }
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
571
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
572 DEFUN ("make-terminal-frame", Fmake_terminal_frame, Smake_terminal_frame,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
573 1, 1, 0,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
574 doc: /* Create an additional terminal frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
575 You can create multiple frames on a text-only terminal in this way.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
576 Only the selected terminal frame is actually displayed.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
577 This function takes one argument, an alist specifying frame parameters.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
578 In practice, generally you don't need to specify any parameters.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
579 Note that changing the size of one terminal frame automatically affects all. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
580 (parms)
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
581 Lisp_Object parms;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
582 {
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
583 struct frame *f;
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
584 Lisp_Object frame, tem;
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
585 struct frame *sf = SELECTED_FRAME ();
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
586
15392
ac7e878c5526 (Fmake_terminal_frame): Test MSDOS, not __MSDOS__.
Richard M. Stallman <rms@gnu.org>
parents: 15391
diff changeset
587 #ifdef MSDOS
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
588 if (sf->output_method != output_msdos_raw
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
589 && sf->output_method != output_termcap)
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
590 abort ();
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
591 #else /* not MSDOS */
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
592
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 43717
diff changeset
593 #ifdef MAC_OS
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
594 if (sf->output_method != output_mac)
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
595 error ("Not running on a Macintosh screen; cannot make a new Macintosh frame");
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
596 #else
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
597 if (sf->output_method != output_termcap)
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
598 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
599 #endif
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
600 #endif /* not MSDOS */
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
601
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
602 f = make_terminal_frame ();
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
603
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
604 change_frame_size (f, FRAME_LINES (sf),
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
605 FRAME_COLS (sf), 0, 0, 0);
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
606 adjust_glyphs (f);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
607 calculate_costs (f);
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
608 XSETFRAME (frame, f);
16184
ca018789eb73 (Fmake_terminal_frame): Use Vdefault_frame_alist.
Richard M. Stallman <rms@gnu.org>
parents: 16112
diff changeset
609 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
610 Fmodify_frame_parameters (frame, parms);
25209
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
611
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
612 /* Make the frame face alist be frame-specific, so that each
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
613 frame could change its face definitions independently. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
614 f->face_alist = Fcopy_alist (sf->face_alist);
25209
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
615 /* Simple Fcopy_alist isn't enough, because we need the contents of
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
616 the vectors which are the CDRs of associations in face_alist to
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
617 be copied as well. */
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
618 for (tem = f->face_alist; CONSP (tem); tem = XCDR (tem))
39973
579177964efa Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents: 39918
diff changeset
619 XSETCDR (XCAR (tem), Fcopy_sequence (XCDR (XCAR (tem))));
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
620 return frame;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
621 }
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
622
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
623
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
624 /* Perform the switch to frame FRAME.
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
625
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
626 If FRAME is a switch-frame event `(switch-frame FRAME1)', use
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
627 FRAME1 as frame.
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
628
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
629 If TRACK is non-zero and the frame that currently has the focus
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
630 redirects its focus to the selected frame, redirect that focused
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
631 frame's focus to FRAME instead.
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
632
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
633 FOR_DELETION non-zero means that the selected frame is being
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
634 deleted, which includes the possibility that the frame's display
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
635 is dead. */
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
636
12286
723569a0028c (Fdelete_frame): Use do_switch_frame directly.
Richard M. Stallman <rms@gnu.org>
parents: 12283
diff changeset
637 Lisp_Object
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
638 do_switch_frame (frame, track, for_deletion)
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
639 Lisp_Object frame;
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
640 int track, for_deletion;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
641 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
642 struct frame *sf = SELECTED_FRAME ();
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
643
1385
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
644 /* If FRAME is a switch-frame event, extract the frame we should
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
645 switch to. */
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
646 if (CONSP (frame)
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
647 && EQ (XCAR (frame), Qswitch_frame)
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
648 && CONSP (XCDR (frame)))
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
649 frame = XCAR (XCDR (frame));
1385
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
650
6352
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
651 /* This used to say CHECK_LIVE_FRAME, but apparently it's possible for
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
652 a switch-frame event to arrive after a frame is no longer live,
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
653 especially when deleting the initial frame during startup. */
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
654 CHECK_FRAME (frame);
6352
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
655 if (! FRAME_LIVE_P (XFRAME (frame)))
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
656 return Qnil;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
657
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
658 if (sf == XFRAME (frame))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
659 return frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
660
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
661 /* This is too greedy; it causes inappropriate focus redirection
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
662 that's hard to get rid of. */
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
663 #if 0
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
664 /* If a frame's focus has been redirected toward the currently
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
665 selected frame, we should change the redirection to point to the
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
666 newly selected frame. This means that if the focus is redirected
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
667 from a minibufferless frame to a surrogate minibuffer frame, we
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
668 can use `other-window' to switch between all the frames using
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
669 that minibuffer frame, and the focus redirection will follow us
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
670 around. */
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
671 if (track)
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
672 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
673 Lisp_Object tail;
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
674
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
675 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
676 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
677 Lisp_Object focus;
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
678
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
679 if (!FRAMEP (XCAR (tail)))
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
680 abort ();
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
681
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
682 focus = FRAME_FOCUS_FRAME (XFRAME (XCAR (tail)));
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
683
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
684 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
685 Fredirect_frame_focus (XCAR (tail), frame);
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
686 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
687 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
688 #else /* ! 0 */
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
689 /* Instead, apply it only to the frame we're pointing to. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
690 #ifdef HAVE_WINDOW_SYSTEM
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
691 if (track && FRAME_WINDOW_P (XFRAME (frame)))
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
692 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
693 Lisp_Object focus, xfocus;
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
694
11529
5beffe62d4ef (do_switch_frame): x_get_focus_frame needs an arg.
Karl Heuer <kwzh@gnu.org>
parents: 11495
diff changeset
695 xfocus = x_get_focus_frame (XFRAME (frame));
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
696 if (FRAMEP (xfocus))
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
697 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
698 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
699 if (FRAMEP (focus) && XFRAME (focus) == SELECTED_FRAME ())
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
700 Fredirect_frame_focus (xfocus, frame);
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
701 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
702 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
703 #endif /* HAVE_X_WINDOWS */
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
704 #endif /* ! 0 */
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
705
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
706 if (!for_deletion && FRAME_HAS_MINIBUF_P (sf))
35611
3e7efd5ea1da (do_switch_frame): If selected frame has a mini-window,
Gerd Moellmann <gerd@gnu.org>
parents: 35447
diff changeset
707 resize_mini_window (XWINDOW (FRAME_MINIBUF_WINDOW (sf)), 1);
3e7efd5ea1da (do_switch_frame): If selected frame has a mini-window,
Gerd Moellmann <gerd@gnu.org>
parents: 35447
diff changeset
708
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
709 selected_frame = frame;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
710 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
711 last_nonminibuf_frame = XFRAME (selected_frame);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
712
51048
7ac9c3bea5ea (Fselect_window): Add optional arg `norecord'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50390
diff changeset
713 Fselect_window (XFRAME (frame)->selected_window, Qnil);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
714
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
715 #ifndef WINDOWSNT
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
716 /* Make sure to switch the tty color mode to that of the newly
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
717 selected frame. */
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
718 sf = SELECTED_FRAME ();
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
719 if (FRAME_TERMCAP_P (sf))
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
720 {
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
721 Lisp_Object color_mode_spec, color_mode;
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
722
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
723 color_mode_spec = assq_no_quit (Qtty_color_mode, sf->param_alist);
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
724 if (CONSP (color_mode_spec))
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
725 color_mode = XCDR (color_mode_spec);
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
726 else
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
727 color_mode = make_number (0);
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
728 set_tty_color_mode (sf, color_mode);
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
729 }
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
730 #endif /* !WINDOWSNT */
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
731
1920
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
732 /* We want to make sure that the next event generates a frame-switch
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3497
diff changeset
733 event to the appropriate frame. This seems kludgy to me, but
1920
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
734 before you take it out, make sure that evaluating something like
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
735 (select-window (frame-root-window (new-frame))) doesn't end up
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
736 with your typing being interpreted in the new frame instead of
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
737 the one you're actually typing in. */
10853
3db086133785 (do_switch_frame): Undo Feb 6 change.
Karl Heuer <kwzh@gnu.org>
parents: 10851
diff changeset
738 internal_last_event_frame = Qnil;
1920
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
739
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
740 return frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
742
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
743 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 1, "e",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
744 doc: /* Select the frame FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
745 Subsequent editing commands apply to its selected window.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
746 The selection of FRAME lasts until the next time the user does
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
747 something to select a different frame, or until the next time this
56517
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
748 function is called. If you are using a window system, the previously
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
749 selected frame may be restored as the selected frame after return to
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
750 the command loop, because it still may have the window system's input
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
751 focus. On a text-only terminal, the next redisplay will display FRAME.
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
752
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
753 This function returns FRAME, or nil if FRAME has been deleted. */)
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
754 (frame)
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
755 Lisp_Object frame;
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
756 {
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
757 return do_switch_frame (frame, 1, 0);
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
758 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
759
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
760
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
761 DEFUN ("handle-switch-frame", Fhandle_switch_frame, Shandle_switch_frame, 1, 1, "e",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
762 doc: /* Handle a switch-frame event EVENT.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
763 Switch-frame events are usually bound to this function.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
764 A switch-frame event tells Emacs that the window manager has requested
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
765 that the user's events be directed to the frame mentioned in the event.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
766 This function selects the selected window of the frame of EVENT.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
767
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
768 If EVENT is frame object, handle it as if it were a switch-frame event
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
769 to that frame. */)
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
770 (event)
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
771 Lisp_Object event;
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
772 {
12255
41083bd094ac (Fhandle_switch_frame): Preserve prefix arg.
Karl Heuer <kwzh@gnu.org>
parents: 12222
diff changeset
773 /* Preserve prefix arg that the command loop just cleared. */
41083bd094ac (Fhandle_switch_frame): Preserve prefix arg.
Karl Heuer <kwzh@gnu.org>
parents: 12222
diff changeset
774 current_kboard->Vprefix_arg = Vcurrent_prefix_arg;
13106
22011e724596 (Qmouse_leave_buffer_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12987
diff changeset
775 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
776 return do_switch_frame (event, 0, 0);
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
777 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
778
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
779 DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
780 doc: /* Return the frame that is now selected. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
781 ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
783 return selected_frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784 }
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
785
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
786 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 1, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
787 doc: /* Return the frame object that window WINDOW is on. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
788 (window)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
789 Lisp_Object window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
790 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
791 CHECK_LIVE_WINDOW (window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
792 return XWINDOW (window)->frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
793 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
794
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
795 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
796 doc: /* Returns the topmost, leftmost window of FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
797 If omitted, FRAME defaults to the currently selected frame. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
798 (frame)
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
799 Lisp_Object frame;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
800 {
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
801 Lisp_Object w;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
802
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
803 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
804 w = SELECTED_FRAME ()->root_window;
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
805 else
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
806 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
807 CHECK_LIVE_FRAME (frame);
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
808 w = XFRAME (frame)->root_window;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
809 }
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
810 while (NILP (XWINDOW (w)->buffer))
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
811 {
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
812 if (! NILP (XWINDOW (w)->hchild))
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
813 w = XWINDOW (w)->hchild;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
814 else if (! NILP (XWINDOW (w)->vchild))
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
815 w = XWINDOW (w)->vchild;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
816 else
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
817 abort ();
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
818 }
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
819 return w;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
820 }
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
821
11169
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
822 DEFUN ("active-minibuffer-window", Factive_minibuffer_window,
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
823 Sactive_minibuffer_window, 0, 0, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
824 doc: /* Return the currently active minibuffer window, or nil if none. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
825 ()
11169
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
826 {
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
827 return minibuf_level ? minibuf_window : Qnil;
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
828 }
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
829
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
830 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
831 doc: /* Returns the root-window of FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
832 If omitted, FRAME defaults to the currently selected frame. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
833 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
834 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
835 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
836 Lisp_Object window;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
837
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
838 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
839 window = SELECTED_FRAME ()->root_window;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
840 else
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
841 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
842 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
843 window = XFRAME (frame)->root_window;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
844 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
845
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
846 return window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
847 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
848
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
849 DEFUN ("frame-selected-window", Fframe_selected_window,
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
850 Sframe_selected_window, 0, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
851 doc: /* Return the selected window of frame object FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
852 If omitted, FRAME defaults to the currently selected frame. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
853 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
854 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
856 Lisp_Object window;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
857
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
858 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
859 window = SELECTED_FRAME ()->selected_window;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
860 else
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
861 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
862 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
863 window = XFRAME (frame)->selected_window;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
864 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
865
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
866 return window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
867 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
868
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
869 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
870 Sset_frame_selected_window, 2, 2, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
871 doc: /* Set the selected window of frame object FRAME to WINDOW.
56517
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
872 Return WINDOW.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
873 If FRAME is nil, the selected frame is used.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
874 If FRAME is the selected frame, this makes WINDOW the selected window. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
875 (frame, window)
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
876 Lisp_Object frame, window;
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
877 {
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
878 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
879 frame = selected_frame;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
880
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
881 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
882 CHECK_LIVE_WINDOW (window);
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
883
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
884 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
885 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
886
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
887 if (EQ (frame, selected_frame))
51048
7ac9c3bea5ea (Fselect_window): Add optional arg `norecord'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50390
diff changeset
888 return Fselect_window (window, Qnil);
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
889
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
890 return XFRAME (frame)->selected_window = window;
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
891 }
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
892
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
893 DEFUN ("frame-list", Fframe_list, Sframe_list,
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
894 0, 0, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
895 doc: /* Return a list of all frames. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
896 ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
897 {
36971
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
898 Lisp_Object frames;
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
899 frames = Fcopy_sequence (Vframe_list);
36984
1b91be709189 (Fframe_list): Don't reference tip_frame if HAVE_WINDOW_SYSTEM is not defined.
Eli Zaretskii <eliz@gnu.org>
parents: 36971
diff changeset
900 #ifdef HAVE_WINDOW_SYSTEM
36971
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
901 if (FRAMEP (tip_frame))
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
902 frames = Fdelq (tip_frame, frames);
36984
1b91be709189 (Fframe_list): Don't reference tip_frame if HAVE_WINDOW_SYSTEM is not defined.
Eli Zaretskii <eliz@gnu.org>
parents: 36971
diff changeset
903 #endif
36971
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
904 return frames;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
905 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
906
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
907 /* Return the next frame in the frame list after FRAME.
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
908 If MINIBUF is nil, exclude minibuffer-only frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
909 If MINIBUF is a window, include only its own frame
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
910 and any frame now using that window as the minibuffer.
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
911 If MINIBUF is `visible', include all visible frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
912 If MINIBUF is 0, include all visible and iconified frames.
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
913 Otherwise, include all frames. */
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
914
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
915 static Lisp_Object
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
916 next_frame (frame, minibuf)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
917 Lisp_Object frame;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
918 Lisp_Object minibuf;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
919 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
920 Lisp_Object tail;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
921 int passed = 0;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
922
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
923 /* There must always be at least one frame in Vframe_list. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
924 if (! CONSP (Vframe_list))
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
925 abort ();
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
926
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
927 /* If this frame is dead, it won't be in Vframe_list, and we'll loop
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
928 forever. Forestall that. */
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
929 CHECK_LIVE_FRAME (frame);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
930
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
931 while (1)
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
932 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
933 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
934 Lisp_Object f;
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
935
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
936 f = XCAR (tail);
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
937
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
938 if (passed
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
939 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
940 {
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
941 /* Decide whether this frame is eligible to be returned. */
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
942
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
943 /* If we've looped all the way around without finding any
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
944 eligible frames, return the original frame. */
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
945 if (EQ (f, frame))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
946 return f;
335
33aa13a3f279 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 286
diff changeset
947
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
948 /* Let minibuf decide if this frame is acceptable. */
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
949 if (NILP (minibuf))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
950 {
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
951 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
952 return f;
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
953 }
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
954 else if (EQ (minibuf, Qvisible))
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
955 {
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
956 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
957 if (FRAME_VISIBLE_P (XFRAME (f)))
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
958 return f;
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
959 }
29987
c38afaed3dd0 (next_frame): Don't check frame-focus redirection in
Gerd Moellmann <gerd@gnu.org>
parents: 29616
diff changeset
960 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
961 {
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
962 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
963 if (FRAME_VISIBLE_P (XFRAME (f))
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
964 || FRAME_ICONIFIED_P (XFRAME (f)))
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
965 return f;
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
966 }
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
967 else if (WINDOWP (minibuf))
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
968 {
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
969 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
29995
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
970 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
971 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
972 FRAME_FOCUS_FRAME (XFRAME (f))))
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
973 return f;
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
974 }
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
975 else
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
976 return f;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
977 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
978
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
979 if (EQ (frame, f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980 passed++;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
983
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
984 /* Return the previous frame in the frame list before FRAME.
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
985 If MINIBUF is nil, exclude minibuffer-only frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
986 If MINIBUF is a window, include only its own frame
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
987 and any frame now using that window as the minibuffer.
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
988 If MINIBUF is `visible', include all visible frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
989 If MINIBUF is 0, include all visible and iconified frames.
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
990 Otherwise, include all frames. */
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
991
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
992 static Lisp_Object
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
993 prev_frame (frame, minibuf)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
994 Lisp_Object frame;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
995 Lisp_Object minibuf;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
996 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997 Lisp_Object tail;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
998 Lisp_Object prev;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
999
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1000 /* There must always be at least one frame in Vframe_list. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1001 if (! CONSP (Vframe_list))
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1002 abort ();
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1003
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004 prev = Qnil;
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1005 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1006 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1007 Lisp_Object f;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1008
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1009 f = XCAR (tail);
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
1010 if (!FRAMEP (f))
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1011 abort ();
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1012
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1013 if (EQ (frame, f) && !NILP (prev))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1014 return prev;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1015
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1016 if (FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1017 {
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1018 /* Decide whether this frame is eligible to be returned,
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1019 according to minibuf. */
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1020 if (NILP (minibuf))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1021 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1022 if (! FRAME_MINIBUF_ONLY_P (XFRAME (f)))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1023 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1024 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1025 else if (WINDOWP (minibuf))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1026 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1027 if (EQ (FRAME_MINIBUF_WINDOW (XFRAME (f)), minibuf)
29995
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
1028 || EQ (WINDOW_FRAME (XWINDOW (minibuf)), f)
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
1029 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
1030 FRAME_FOCUS_FRAME (XFRAME (f))))
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1031 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1032 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1033 else if (EQ (minibuf, Qvisible))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1034 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1035 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1036 if (FRAME_VISIBLE_P (XFRAME (f)))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1037 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1038 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1039 else if (XFASTINT (minibuf) == 0)
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1040 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1041 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1042 if (FRAME_VISIBLE_P (XFRAME (f))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1043 || FRAME_ICONIFIED_P (XFRAME (f)))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1044 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1045 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1046 else
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1047 prev = f;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1048 }
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1049 }
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1050
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1051 /* We've scanned the entire list. */
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1052 if (NILP (prev))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1053 /* We went through the whole frame list without finding a single
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1054 acceptable frame. Return the original frame. */
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1055 return frame;
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1056 else
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1057 /* There were no acceptable frames in the list before FRAME; otherwise,
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1058 we would have returned directly from the loop. Since PREV is the last
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1059 acceptable frame in the list, return it. */
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1060 return prev;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1061 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1062
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1063
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1064 DEFUN ("next-frame", Fnext_frame, Snext_frame, 0, 2, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1065 doc: /* Return the next frame in the frame list after FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1066 It considers only frames on the same terminal as FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1067 By default, skip minibuffer-only frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1068 If omitted, FRAME defaults to the selected frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1069 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1070 If MINIFRAME is a window, include only its own frame
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1071 and any frame now using that window as the minibuffer.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1072 If MINIFRAME is `visible', include all visible frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1073 If MINIFRAME is 0, include all visible and iconified frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1074 Otherwise, include all frames. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1075 (frame, miniframe)
1251
4e556fda7a4d * frame.c (Fselect_frame, Fframe_root_window,
Jim Blandy <jimb@redhat.com>
parents: 1118
diff changeset
1076 Lisp_Object frame, miniframe;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1077 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1078 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1079 frame = selected_frame;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1080
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1081 CHECK_LIVE_FRAME (frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1082 return next_frame (frame, miniframe);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 }
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1084
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1085 DEFUN ("previous-frame", Fprevious_frame, Sprevious_frame, 0, 2, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1086 doc: /* Return the previous frame in the frame list before FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1087 It considers only frames on the same terminal as FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1088 By default, skip minibuffer-only frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1089 If omitted, FRAME defaults to the selected frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1090 If optional argument MINIFRAME is nil, exclude minibuffer-only frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1091 If MINIFRAME is a window, include only its own frame
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1092 and any frame now using that window as the minibuffer.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1093 If MINIFRAME is `visible', include all visible frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1094 If MINIFRAME is 0, include all visible and iconified frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1095 Otherwise, include all frames. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1096 (frame, miniframe)
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1097 Lisp_Object frame, miniframe;
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1098 {
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1099 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1100 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1101 CHECK_LIVE_FRAME (frame);
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1102 return prev_frame (frame, miniframe);
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1103 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1104
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1105 /* Return 1 if it is ok to delete frame F;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1106 0 if all frames aside from F are invisible.
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1107 (Exception: if F is the terminal frame, and we are using X, return 1.) */
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1108
7646
de2c4334fad4 (other_visible_frames): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 7570
diff changeset
1109 int
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1110 other_visible_frames (f)
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1111 FRAME_PTR f;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1112 {
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1113 /* We know the selected frame is visible,
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1114 so if F is some other frame, it can't be the sole visible one. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1115 if (f == SELECTED_FRAME ())
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1116 {
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1117 Lisp_Object frames;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1118 int count = 0;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1119
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1120 for (frames = Vframe_list;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1121 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1122 frames = XCDR (frames))
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1123 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1124 Lisp_Object this;
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1125
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1126 this = XCAR (frames);
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1127 /* Verify that the frame's window still exists
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1128 and we can still talk to it. And note any recent change
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1129 in visibility. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1130 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1131 if (FRAME_WINDOW_P (XFRAME (this)))
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1132 {
9648
14b1481b7c6d (other_visible_frames): Pass a frame ptr to x_sync.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
1133 x_sync (XFRAME (this));
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1134 FRAME_SAMPLE_VISIBILITY (XFRAME (this));
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1135 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1136 #endif
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1137
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1138 if (FRAME_VISIBLE_P (XFRAME (this))
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1139 || FRAME_ICONIFIED_P (XFRAME (this))
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1140 /* Allow deleting the terminal frame when at least
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1141 one X frame exists! */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1142 || (FRAME_WINDOW_P (XFRAME (this)) && !FRAME_WINDOW_P (f)))
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1143 count++;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1144 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1145 return count > 1;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1146 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1147 return 1;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1148 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1149
4341
d07ef5ea3b58 (Fdelete_frame): New arg FORCE allows deletion of last non-invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 4227
diff changeset
1150 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1151 doc: /* Delete FRAME, permanently eliminating it from use.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1152 If omitted, FRAME defaults to the selected frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1153 A frame may not be deleted if its minibuffer is used by other frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1154 Normally, you may not delete a frame if all other frames are invisible,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1155 but if the second optional argument FORCE is non-nil, you may do so.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1156
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1157 This function runs `delete-frame-functions' before actually deleting the
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1158 frame, unless the frame is a tooltip.
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1159 The functions are run with one arg, the frame to be deleted. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1160 (frame, force)
4341
d07ef5ea3b58 (Fdelete_frame): New arg FORCE allows deletion of last non-invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 4227
diff changeset
1161 Lisp_Object frame, force;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1162 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1163 struct frame *f;
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1164 struct frame *sf = SELECTED_FRAME ();
12222
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1165 int minibuffer_selected;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1166
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1167 if (EQ (frame, Qnil))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1168 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1169 f = sf;
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
1170 XSETFRAME (frame, f);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1171 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1172 else
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1173 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1174 CHECK_FRAME (frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1175 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1176 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1177
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1178 if (! FRAME_LIVE_P (f))
1920
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
1179 return Qnil;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1180
35660
b9366f467430 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
Andrew Choi <akochoi@shaw.ca>
parents: 35611
diff changeset
1181 if (NILP (force) && !other_visible_frames (f)
44890
01b93e5e53a7 Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents: 43717
diff changeset
1182 #ifdef MAC_OS8
35660
b9366f467430 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
Andrew Choi <akochoi@shaw.ca>
parents: 35611
diff changeset
1183 /* Terminal frame deleted before any other visible frames are
b9366f467430 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
Andrew Choi <akochoi@shaw.ca>
parents: 35611
diff changeset
1184 created. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
1185 && strcmp (SDATA (f->name), "F1") != 0
35660
b9366f467430 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
Andrew Choi <akochoi@shaw.ca>
parents: 35611
diff changeset
1186 #endif
b9366f467430 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
Andrew Choi <akochoi@shaw.ca>
parents: 35611
diff changeset
1187 )
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1188 error ("Attempt to delete the sole visible or iconified frame");
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1189
18945
7f491075707a (Fdelete_frame): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18698
diff changeset
1190 #if 0
7f491075707a (Fdelete_frame): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18698
diff changeset
1191 /* This is a nice idea, but x_connection_closed needs to be able
7f491075707a (Fdelete_frame): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18698
diff changeset
1192 to delete the last frame, if it is gone. */
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1193 if (NILP (XCDR (Vframe_list)))
18698
52271ad26a1d (Fdelete_frame): Always err for deleting the only frame.
Richard M. Stallman <rms@gnu.org>
parents: 18380
diff changeset
1194 error ("Attempt to delete the only frame");
18945
7f491075707a (Fdelete_frame): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18698
diff changeset
1195 #endif
18698
52271ad26a1d (Fdelete_frame): Always err for deleting the only frame.
Richard M. Stallman <rms@gnu.org>
parents: 18380
diff changeset
1196
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1197 /* Does this frame have a minibuffer, and is it the surrogate
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1198 minibuffer for any other frame? */
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1199 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1200 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1201 Lisp_Object frames;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1202
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1203 for (frames = Vframe_list;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1204 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1205 frames = XCDR (frames))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1206 {
6157
9422e430f067 (Fdelete_frame): Don't initialize a Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents: 6130
diff changeset
1207 Lisp_Object this;
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1208 this = XCAR (frames);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1209
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1210 if (! EQ (this, frame)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1211 && EQ (frame,
6157
9422e430f067 (Fdelete_frame): Don't initialize a Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents: 6130
diff changeset
1212 WINDOW_FRAME (XWINDOW
9422e430f067 (Fdelete_frame): Don't initialize a Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents: 6130
diff changeset
1213 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1214 error ("Attempt to delete a surrogate minibuffer frame");
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1215 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1216 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1217
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1218 /* Run `delete-frame-functions' unless frame is a tooltip. */
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1219 if (!NILP (Vrun_hooks)
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1220 && NILP (Fframe_parameter (frame, intern ("tooltip"))))
32909
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1221 {
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1222 Lisp_Object args[2];
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
1223 args[0] = intern ("delete-frame-functions");
32909
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1224 args[1] = frame;
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1225 Frun_hook_with_args (2, args);
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1226 }
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1227
12222
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1228 minibuffer_selected = EQ (minibuf_window, selected_window);
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1229
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1230 /* Don't let the frame remain selected. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1231 if (f == sf)
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1232 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1233 Lisp_Object tail, frame1;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1234
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1235 /* Look for another visible frame on the same terminal. */
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1236 frame1 = next_frame (frame, Qvisible);
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1237
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1238 /* If there is none, find *some* other frame. */
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1239 if (NILP (frame1) || EQ (frame1, frame))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1240 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1241 FOR_EACH_FRAME (tail, frame1)
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1242 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1243 if (! EQ (frame, frame1))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1244 break;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1245 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1246 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1247
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
1248 do_switch_frame (frame1, 0, 1);
25736
84179b4e7743 (Fdelete_frame): Correct local variable pointing to
Gerd Moellmann <gerd@gnu.org>
parents: 25710
diff changeset
1249 sf = SELECTED_FRAME ();
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1250 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1251
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1252 /* Don't allow minibuf_window to remain on a deleted frame. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1253 if (EQ (f->minibuffer_window, minibuf_window))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1254 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1255 Fset_window_buffer (sf->minibuffer_window,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
1256 XWINDOW (minibuf_window)->buffer, Qnil);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1257 minibuf_window = sf->minibuffer_window;
12222
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1258
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1259 /* If the dying minibuffer window was selected,
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1260 select the new one. */
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1261 if (minibuffer_selected)
51048
7ac9c3bea5ea (Fselect_window): Add optional arg `norecord'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50390
diff changeset
1262 Fselect_window (minibuf_window, Qnil);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1263 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1264
27800
403b2b833ce2 (Fdelete_frame): Don't let echo_area_window to remain on a deleted frame.
Eli Zaretskii <eliz@gnu.org>
parents: 27797
diff changeset
1265 /* Don't let echo_area_window to remain on a deleted frame. */
403b2b833ce2 (Fdelete_frame): Don't let echo_area_window to remain on a deleted frame.
Eli Zaretskii <eliz@gnu.org>
parents: 27797
diff changeset
1266 if (EQ (f->minibuffer_window, echo_area_window))
403b2b833ce2 (Fdelete_frame): Don't let echo_area_window to remain on a deleted frame.
Eli Zaretskii <eliz@gnu.org>
parents: 27797
diff changeset
1267 echo_area_window = sf->minibuffer_window;
403b2b833ce2 (Fdelete_frame): Don't let echo_area_window to remain on a deleted frame.
Eli Zaretskii <eliz@gnu.org>
parents: 27797
diff changeset
1268
8099
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1269 /* Clear any X selections for this frame. */
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1270 #ifdef HAVE_X_WINDOWS
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1271 if (FRAME_X_P (f))
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1272 x_clear_frame_selections (f);
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1273 #endif
61784
64c5a821e9cd (Fdelete_frame) [MAC_OS]: Call x_clear_frame_selections.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 60754
diff changeset
1274 #ifdef MAC_OS
64c5a821e9cd (Fdelete_frame) [MAC_OS]: Call x_clear_frame_selections.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 60754
diff changeset
1275 if (FRAME_MAC_P (f))
64c5a821e9cd (Fdelete_frame) [MAC_OS]: Call x_clear_frame_selections.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 60754
diff changeset
1276 x_clear_frame_selections (f);
64c5a821e9cd (Fdelete_frame) [MAC_OS]: Call x_clear_frame_selections.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 60754
diff changeset
1277 #endif
8099
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1278
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1279 /* Free glyphs.
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1280 This function must be called before the window tree of the
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1281 frame is deleted because windows contain dynamically allocated
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1282 memory. */
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1283 free_glyphs (f);
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1284
1680
ea9f3949f153 * frame.c (Fdelete_frame): Delete all the windows in the frame's
Jim Blandy <jimb@redhat.com>
parents: 1652
diff changeset
1285 /* Mark all the windows that used to be on FRAME as deleted, and then
ea9f3949f153 * frame.c (Fdelete_frame): Delete all the windows in the frame's
Jim Blandy <jimb@redhat.com>
parents: 1652
diff changeset
1286 remove the reference to them. */
ea9f3949f153 * frame.c (Fdelete_frame): Delete all the windows in the frame's
Jim Blandy <jimb@redhat.com>
parents: 1652
diff changeset
1287 delete_all_subwindows (XWINDOW (f->root_window));
ea9f3949f153 * frame.c (Fdelete_frame): Delete all the windows in the frame's
Jim Blandy <jimb@redhat.com>
parents: 1652
diff changeset
1288 f->root_window = Qnil;
ea9f3949f153 * frame.c (Fdelete_frame): Delete all the windows in the frame's
Jim Blandy <jimb@redhat.com>
parents: 1652
diff changeset
1289
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1290 Vframe_list = Fdelq (frame, Vframe_list);
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1291 FRAME_SET_VISIBLE (f, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1292
11495
da1a40d86231 (Fdelete_frame): Free f->namebuf.
Karl Heuer <kwzh@gnu.org>
parents: 11494
diff changeset
1293 if (f->namebuf)
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1294 xfree (f->namebuf);
52753
551e8ebadb62 Fix memory leaks (from YAMAMOTO Mitsuharu)
Jan Djärv <jan.h.d@swipnet.se>
parents: 52752
diff changeset
1295 if (f->decode_mode_spec_buffer)
551e8ebadb62 Fix memory leaks (from YAMAMOTO Mitsuharu)
Jan Djärv <jan.h.d@swipnet.se>
parents: 52752
diff changeset
1296 xfree (f->decode_mode_spec_buffer);
8666
844edbc22875 (Fdelete_frame): Free the frame's glyphs arrays.
Richard M. Stallman <rms@gnu.org>
parents: 8586
diff changeset
1297 if (FRAME_INSERT_COST (f))
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1298 xfree (FRAME_INSERT_COST (f));
8666
844edbc22875 (Fdelete_frame): Free the frame's glyphs arrays.
Richard M. Stallman <rms@gnu.org>
parents: 8586
diff changeset
1299 if (FRAME_DELETEN_COST (f))
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1300 xfree (FRAME_DELETEN_COST (f));
8666
844edbc22875 (Fdelete_frame): Free the frame's glyphs arrays.
Richard M. Stallman <rms@gnu.org>
parents: 8586
diff changeset
1301 if (FRAME_INSERTN_COST (f))
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1302 xfree (FRAME_INSERTN_COST (f));
8666
844edbc22875 (Fdelete_frame): Free the frame's glyphs arrays.
Richard M. Stallman <rms@gnu.org>
parents: 8586
diff changeset
1303 if (FRAME_DELETE_COST (f))
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1304 xfree (FRAME_DELETE_COST (f));
17573
bfd86808adcc (Fdelete_frame): Free FRAME_MESSAGE_BUF.
Richard M. Stallman <rms@gnu.org>
parents: 17235
diff changeset
1305 if (FRAME_MESSAGE_BUF (f))
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1306 xfree (FRAME_MESSAGE_BUF (f));
8666
844edbc22875 (Fdelete_frame): Free the frame's glyphs arrays.
Richard M. Stallman <rms@gnu.org>
parents: 8586
diff changeset
1307
1809
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1308 /* Since some events are handled at the interrupt level, we may get
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1309 an event for f at any time; if we zero out the frame's display
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1310 now, then we may trip up the event-handling code. Instead, we'll
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1311 promise that the display of the frame must be valid until we have
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1312 called the window-system-dependent frame destruction routine. */
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1313
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1314 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1315 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1316 if (FRAME_WINDOW_P (f))
1809
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1317 x_destroy_window (f);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1318 #endif
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1319
12667
a3466dad7d6d Renamings: frame->display => frame->output, struct x_display -> sruct x_output.
Richard M. Stallman <rms@gnu.org>
parents: 12630
diff changeset
1320 f->output_data.nothing = 0;
1809
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1321
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1322 /* If we've deleted the last_nonminibuf_frame, then try to find
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1323 another one. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1324 if (f == last_nonminibuf_frame)
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1325 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1326 Lisp_Object frames;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1327
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1328 last_nonminibuf_frame = 0;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1329
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1330 for (frames = Vframe_list;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1331 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1332 frames = XCDR (frames))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1333 {
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1334 f = XFRAME (XCAR (frames));
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1335 if (!FRAME_MINIBUF_ONLY_P (f))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1336 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1337 last_nonminibuf_frame = f;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1338 break;
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1339 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1340 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1341 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1342
56453
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1343 /* If there's no other frame on the same kboard, get out of
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1344 single-kboard state if we're in it for this kboard. */
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1345 {
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1346 Lisp_Object frames;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1347 /* Some frame we found on the same kboard, or nil if there are none. */
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1348 Lisp_Object frame_on_same_kboard;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1349
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1350 frame_on_same_kboard = Qnil;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1351
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1352 for (frames = Vframe_list;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1353 CONSP (frames);
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1354 frames = XCDR (frames))
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1355 {
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1356 Lisp_Object this;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1357 struct frame *f1;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1358
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1359 this = XCAR (frames);
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1360 if (!FRAMEP (this))
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1361 abort ();
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1362 f1 = XFRAME (this);
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1363
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1364 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1365 frame_on_same_kboard = this;
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1366 }
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1367
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1368 if (NILP (frame_on_same_kboard))
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1369 not_single_kboard_state (FRAME_KBOARD (f));
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1370 }
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1371
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1372
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1373 /* If we've deleted this keyboard's default_minibuffer_frame, try to
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1374 find another one. Prefer minibuffer-only frames, but also notice
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1375 frames with other windows. */
11779
6234b3610a6f Vdefault_minibuffer_frame is now part of KBOARD instead
Karl Heuer <kwzh@gnu.org>
parents: 11775
diff changeset
1376 if (EQ (frame, FRAME_KBOARD (f)->Vdefault_minibuffer_frame))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1377 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1378 Lisp_Object frames;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1379
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1380 /* The last frame we saw with a minibuffer, minibuffer-only or not. */
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1381 Lisp_Object frame_with_minibuf;
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1382 /* Some frame we found on the same kboard, or nil if there are none. */
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1383 Lisp_Object frame_on_same_kboard;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1384
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1385 frame_on_same_kboard = Qnil;
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1386 frame_with_minibuf = Qnil;
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1387
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1388 for (frames = Vframe_list;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1389 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1390 frames = XCDR (frames))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1391 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1392 Lisp_Object this;
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1393 struct frame *f1;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1394
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1395 this = XCAR (frames);
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
1396 if (!FRAMEP (this))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1397 abort ();
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1398 f1 = XFRAME (this);
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1399
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1400 /* Consider only frames on the same kboard
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1401 and only those with minibuffers. */
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1402 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1)
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1403 && FRAME_HAS_MINIBUF_P (f1))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1404 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1405 frame_with_minibuf = this;
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1406 if (FRAME_MINIBUF_ONLY_P (f1))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1407 break;
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1408 }
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1409
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1410 if (FRAME_KBOARD (f) == FRAME_KBOARD (f1))
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1411 frame_on_same_kboard = this;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1412 }
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1413
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1414 if (!NILP (frame_on_same_kboard))
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1415 {
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1416 /* We know that there must be some frame with a minibuffer out
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1417 there. If this were not true, all of the frames present
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1418 would have to be minibufferless, which implies that at some
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1419 point their minibuffer frames must have been deleted, but
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1420 that is prohibited at the top; you can't delete surrogate
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1421 minibuffer frames. */
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1422 if (NILP (frame_with_minibuf))
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1423 abort ();
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1424
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1425 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = frame_with_minibuf;
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1426 }
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1427 else
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1428 /* No frames left on this kboard--say no minibuffer either. */
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1429 FRAME_KBOARD (f)->Vdefault_minibuffer_frame = Qnil;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1430 }
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1431
16280
f4833d0bfaaa (Fdelete_frame): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents: 16263
diff changeset
1432 /* Cause frame titles to update--necessary if we now have just one frame. */
f4833d0bfaaa (Fdelete_frame): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents: 16263
diff changeset
1433 update_mode_lines = 1;
f4833d0bfaaa (Fdelete_frame): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents: 16263
diff changeset
1434
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1435 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1436 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1438 /* Return mouse position in character cell units. */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1439
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1440 DEFUN ("mouse-position", Fmouse_position, Smouse_position, 0, 0, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1441 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1442 The position is given in character cells, where (0, 0) is the
72364
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1443 upper-left corner of the frame, X is the horizontal offset, and Y is
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1444 the vertical offset.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1445 If Emacs is running on a mouseless terminal or hasn't been programmed
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1446 to read the mouse position, it returns the selected frame for FRAME
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1447 and nil for X and Y.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1448 If `mouse-position-function' is non-nil, `mouse-position' calls it,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1449 passing the normal return value to that function as an argument,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1450 and returns whatever that function returns. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1451 ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1452 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1453 FRAME_PTR f;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1454 Lisp_Object lispy_dummy;
1989
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
1455 enum scroll_bar_part party_dummy;
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
1456 Lisp_Object x, y, retval;
6054
24ffc4bc4067 (Fmouse_position): Convert to glyph units.
Richard M. Stallman <rms@gnu.org>
parents: 6012
diff changeset
1457 int col, row;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1458 unsigned long long_dummy;
27797
da774b48eb7f (Fmouse_position): GCPRO retval instead of x and y.
Gerd Moellmann <gerd@gnu.org>
parents: 27795
diff changeset
1459 struct gcpro gcpro1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1461 f = SELECTED_FRAME ();
3658
c2831d419bec (Fmouse_position): Set up defaults before calling the hook.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1462 x = y = Qnil;
c2831d419bec (Fmouse_position): Set up defaults before calling the hook.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1463
11025
6c5aef697fbe (Fmouse_position): Do work only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11017
diff changeset
1464 #ifdef HAVE_MOUSE
3658
c2831d419bec (Fmouse_position): Set up defaults before calling the hook.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1465 /* It's okay for the hook to refrain from storing anything. */
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1466 if (mouse_position_hook)
20178
fb9facb8fda0 (Fmouse_pixel_position, Fmouse_position):
Karl Heuer <kwzh@gnu.org>
parents: 20038
diff changeset
1467 (*mouse_position_hook) (&f, -1,
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1468 &lispy_dummy, &party_dummy,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1469 &x, &y,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1470 &long_dummy);
6854
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1471 if (! NILP (x))
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1472 {
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1473 col = XINT (x);
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1474 row = XINT (y);
12006
3e9db7cb1d05 (Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords.
Karl Heuer <kwzh@gnu.org>
parents: 12005
diff changeset
1475 pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1);
6854
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1476 XSETINT (x, col);
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1477 XSETINT (y, row);
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1478 }
11025
6c5aef697fbe (Fmouse_position): Do work only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11017
diff changeset
1479 #endif
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
1480 XSETFRAME (lispy_dummy, f);
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
1481 retval = Fcons (lispy_dummy, Fcons (x, y));
27797
da774b48eb7f (Fmouse_position): GCPRO retval instead of x and y.
Gerd Moellmann <gerd@gnu.org>
parents: 27795
diff changeset
1482 GCPRO1 (retval);
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
1483 if (!NILP (Vmouse_position_function))
27797
da774b48eb7f (Fmouse_position): GCPRO retval instead of x and y.
Gerd Moellmann <gerd@gnu.org>
parents: 27795
diff changeset
1484 retval = call1 (Vmouse_position_function, retval);
da774b48eb7f (Fmouse_position): GCPRO retval instead of x and y.
Gerd Moellmann <gerd@gnu.org>
parents: 27795
diff changeset
1485 RETURN_UNGCPRO (retval);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1486 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1488 DEFUN ("mouse-pixel-position", Fmouse_pixel_position,
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1489 Smouse_pixel_position, 0, 0, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1490 doc: /* Return a list (FRAME X . Y) giving the current mouse frame and position.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1491 The position is given in pixel units, where (0, 0) is the
72364
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1492 upper-left corner of the frame, X is the horizontal offset, and Y is
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1493 the vertical offset.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1494 If Emacs is running on a mouseless terminal or hasn't been programmed
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1495 to read the mouse position, it returns the selected frame for FRAME
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1496 and nil for X and Y. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1497 ()
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1498 {
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1499 FRAME_PTR f;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1500 Lisp_Object lispy_dummy;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1501 enum scroll_bar_part party_dummy;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1502 Lisp_Object x, y;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1503 unsigned long long_dummy;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1504
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1505 f = SELECTED_FRAME ();
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1506 x = y = Qnil;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1507
11126
786f1c82a38e (Fmouse_position--both definitions): Pass 0 for `insist'.
Richard M. Stallman <rms@gnu.org>
parents: 11025
diff changeset
1508 #ifdef HAVE_MOUSE
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1509 /* It's okay for the hook to refrain from storing anything. */
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1510 if (mouse_position_hook)
20178
fb9facb8fda0 (Fmouse_pixel_position, Fmouse_position):
Karl Heuer <kwzh@gnu.org>
parents: 20038
diff changeset
1511 (*mouse_position_hook) (&f, -1,
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1512 &lispy_dummy, &party_dummy,
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1513 &x, &y,
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1514 &long_dummy);
11126
786f1c82a38e (Fmouse_position--both definitions): Pass 0 for `insist'.
Richard M. Stallman <rms@gnu.org>
parents: 11025
diff changeset
1515 #endif
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
1516 XSETFRAME (lispy_dummy, f);
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1517 return Fcons (lispy_dummy, Fcons (x, y));
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1518 }
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1519
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 DEFUN ("set-mouse-position", Fset_mouse_position, Sset_mouse_position, 3, 3, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1521 doc: /* Move the mouse pointer to the center of character cell (X,Y) in FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1522 Coordinates are relative to the frame, not a window,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1523 so the coordinates of the top left character in the frame
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1524 may be nonzero due to left-hand scroll bars or the menu bar.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1525
72364
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1526 The position is given in character cells, where (0, 0) is the
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1527 upper-left corner of the frame, X is the horizontal offset, and Y is
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1528 the vertical offset.
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1529
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1530 This function is a no-op for an X frame that is not visible.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1531 If you have just created a frame, you must wait for it to become visible
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1532 before calling this function on it, like this.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1533 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1534 (frame, x, y)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1535 Lisp_Object frame, x, y;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1536 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1537 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1538 CHECK_NUMBER (x);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1539 CHECK_NUMBER (y);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1540
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1541 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1542 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1543 if (FRAME_WINDOW_P (XFRAME (frame)))
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1544 /* Warping the mouse will cause enternotify and focus events. */
21524
e4ab93e19658 (Fset_mouse_position, Fset_mouse_pixel_position): Fix
Andreas Schwab <schwab@suse.de>
parents: 21514
diff changeset
1545 x_set_mouse_position (XFRAME (frame), XINT (x), XINT (y));
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1546 #else
15396
fbecc317220d Whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents: 15392
diff changeset
1547 #if defined (MSDOS) && defined (HAVE_MOUSE)
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1548 if (FRAME_MSDOS_P (XFRAME (frame)))
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1549 {
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
1550 Fselect_frame (frame);
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1551 mouse_moveto (XINT (x), XINT (y));
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1552 }
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1553 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1554 #endif
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1555
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1556 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1557 }
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1558
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1559 DEFUN ("set-mouse-pixel-position", Fset_mouse_pixel_position,
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1560 Sset_mouse_pixel_position, 3, 3, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1561 doc: /* Move the mouse pointer to pixel position (X,Y) in FRAME.
72364
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1562 The position is given in pixels, where (0, 0) is the upper-left corner
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1563 of the frame, X is the horizontal offset, and Y is the vertical offset.
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1564
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1565 Note, this is a no-op for an X frame that is not visible.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1566 If you have just created a frame, you must wait for it to become visible
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1567 before calling this function on it, like this.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1568 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1569 (frame, x, y)
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1570 Lisp_Object frame, x, y;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1571 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1572 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1573 CHECK_NUMBER (x);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1574 CHECK_NUMBER (y);
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1575
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1576 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1577 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1578 if (FRAME_WINDOW_P (XFRAME (frame)))
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1579 /* Warping the mouse will cause enternotify and focus events. */
21524
e4ab93e19658 (Fset_mouse_position, Fset_mouse_pixel_position): Fix
Andreas Schwab <schwab@suse.de>
parents: 21514
diff changeset
1580 x_set_mouse_pixel_position (XFRAME (frame), XINT (x), XINT (y));
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1581 #else
15396
fbecc317220d Whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents: 15392
diff changeset
1582 #if defined (MSDOS) && defined (HAVE_MOUSE)
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1583 if (FRAME_MSDOS_P (XFRAME (frame)))
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1584 {
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
1585 Fselect_frame (frame);
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1586 mouse_moveto (XINT (x), XINT (y));
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1587 }
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1588 #endif
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1589 #endif
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1590
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1591 return Qnil;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1592 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1593
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1594 static void make_frame_visible_1 P_ ((Lisp_Object));
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1595
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1596 DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
3834
1b2144b795aa * frame.c (Fmake_frame_visible): Make this interactively callable;
Jim Blandy <jimb@redhat.com>
parents: 3763
diff changeset
1597 0, 1, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1598 doc: /* Make the frame FRAME visible (assuming it is an X window).
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1599 If omitted, FRAME defaults to the currently selected frame. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1600 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1601 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1602 {
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1603 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1604 frame = selected_frame;
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1605
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1606 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1607
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1608 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1609 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1610 if (FRAME_WINDOW_P (XFRAME (frame)))
5105
9b41ddf1b5f7 (Fmake_frame_visible): Use FRAME_SAMPLE_VISIBILITY. Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4961
diff changeset
1611 {
9b41ddf1b5f7 (Fmake_frame_visible): Use FRAME_SAMPLE_VISIBILITY. Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4961
diff changeset
1612 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
9b41ddf1b5f7 (Fmake_frame_visible): Use FRAME_SAMPLE_VISIBILITY. Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4961
diff changeset
1613 x_make_frame_visible (XFRAME (frame));
9b41ddf1b5f7 (Fmake_frame_visible): Use FRAME_SAMPLE_VISIBILITY. Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4961
diff changeset
1614 }
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1615 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1616
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1617 make_frame_visible_1 (XFRAME (frame)->root_window);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1618
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1619 /* Make menu bar update for the Buffers and Frames menus. */
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1620 windows_or_buffers_changed++;
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1621
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1622 return frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1623 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1624
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1625 /* Update the display_time slot of the buffers shown in WINDOW
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1626 and all its descendents. */
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1627
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1628 static void
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1629 make_frame_visible_1 (window)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1630 Lisp_Object window;
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1631 {
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1632 struct window *w;
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1633
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1634 for (;!NILP (window); window = w->next)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1635 {
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1636 w = XWINDOW (window);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1637
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1638 if (!NILP (w->buffer))
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1639 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1640
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1641 if (!NILP (w->vchild))
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1642 make_frame_visible_1 (w->vchild);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1643 if (!NILP (w->hchild))
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1644 make_frame_visible_1 (w->hchild);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1645 }
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1646 }
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1647
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1648 DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible,
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1649 0, 2, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1650 doc: /* Make the frame FRAME invisible (assuming it is an X window).
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1651 If omitted, FRAME defaults to the currently selected frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1652 Normally you may not make FRAME invisible if all other frames are invisible,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1653 but if the second optional argument FORCE is non-nil, you may do so. */)
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1654 (frame, force)
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1655 Lisp_Object frame, force;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1656 {
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1657 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1658 frame = selected_frame;
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1659
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1660 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1661
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1662 if (NILP (force) && !other_visible_frames (XFRAME (frame)))
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1663 error ("Attempt to make invisible the sole visible or iconified frame");
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1664
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1665 #if 0 /* This isn't logically necessary, and it can do GC. */
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1666 /* Don't let the frame remain selected. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1667 if (EQ (frame, selected_frame))
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
1668 do_switch_frame (next_frame (frame, Qt), 0, 0)
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1669 #endif
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1670
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1671 /* Don't allow minibuf_window to remain on a deleted frame. */
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1672 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1673 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1674 struct frame *sf = XFRAME (selected_frame);
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1675 Fset_window_buffer (sf->minibuffer_window,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
1676 XWINDOW (minibuf_window)->buffer, Qnil);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1677 minibuf_window = sf->minibuffer_window;
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1678 }
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1679
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1680 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1681 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1682 if (FRAME_WINDOW_P (XFRAME (frame)))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1683 x_make_frame_invisible (XFRAME (frame));
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1684 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1685
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1686 /* Make menu bar update for the Buffers and Frames menus. */
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1687 windows_or_buffers_changed++;
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1688
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1689 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1690 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1691
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1692 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1693 0, 1, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1694 doc: /* Make the frame FRAME into an icon.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1695 If omitted, FRAME defaults to the currently selected frame. */)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1696 (frame)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1697 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1698 {
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1699 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1700 frame = selected_frame;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1701
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1702 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1703
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1704 #if 0 /* This isn't logically necessary, and it can do GC. */
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1705 /* Don't let the frame remain selected. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1706 if (EQ (frame, selected_frame))
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
1707 Fhandle_switch_frame (next_frame (frame, Qt));
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1708 #endif
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1709
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1710 /* Don't allow minibuf_window to remain on a deleted frame. */
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1711 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1712 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1713 struct frame *sf = XFRAME (selected_frame);
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1714 Fset_window_buffer (sf->minibuffer_window,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
1715 XWINDOW (minibuf_window)->buffer, Qnil);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1716 minibuf_window = sf->minibuffer_window;
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1717 }
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1718
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1719 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1720 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
1721 if (FRAME_WINDOW_P (XFRAME (frame)))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1722 x_iconify_frame (XFRAME (frame));
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1723 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1724
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1725 /* Make menu bar update for the Buffers and Frames menus. */
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1726 windows_or_buffers_changed++;
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1727
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1728 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1729 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1730
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1731 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1732 1, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1733 doc: /* Return t if FRAME is now \"visible\" (actually in use for display).
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1734 A frame that is not \"visible\" is not updated and, if it works through
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1735 a window system, it may not show at all.
56517
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1736 Return the symbol `icon' if frame is visible only as an icon.
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1737
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1738 On a text-only terminal, all frames are considered visible, whether
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1739 they are currently being displayed or not, and this function returns t
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1740 for all frames. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1741 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1742 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1743 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1744 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1745
6012
650c0f231d17 (Fframe_visible_p): Do FRAME_SAMPLE_VISIBILITY first.
Richard M. Stallman <rms@gnu.org>
parents: 5925
diff changeset
1746 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
650c0f231d17 (Fframe_visible_p): Do FRAME_SAMPLE_VISIBILITY first.
Richard M. Stallman <rms@gnu.org>
parents: 5925
diff changeset
1747
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1748 if (FRAME_VISIBLE_P (XFRAME (frame)))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1749 return Qt;
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1750 if (FRAME_ICONIFIED_P (XFRAME (frame)))
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1751 return Qicon;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1752 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1753 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1754
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1755 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1756 0, 0, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1757 doc: /* Return a list of all frames now \"visible\" (being updated). */)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1758 ()
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1759 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1760 Lisp_Object tail, frame;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1761 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1762 Lisp_Object value;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1763
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1764 value = Qnil;
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1765 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1766 {
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1767 frame = XCAR (tail);
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
1768 if (!FRAMEP (frame))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1769 continue;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1770 f = XFRAME (frame);
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1771 if (FRAME_VISIBLE_P (f))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1772 value = Fcons (frame, value);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1773 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1774 return value;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1775 }
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1776
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1777
11754
7691dbfc7571 (Fraise_frame, Flower_frame): Make arg FRAME optional.
Richard M. Stallman <rms@gnu.org>
parents: 11535
diff changeset
1778 DEFUN ("raise-frame", Fraise_frame, Sraise_frame, 0, 1, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1779 doc: /* Bring FRAME to the front, so it occludes any frames it overlaps.
56517
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1780 If FRAME is invisible or iconified, make it visible.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1781 If you don't specify a frame, the selected frame is used.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1782 If Emacs is displaying on an ordinary terminal or some other device which
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1783 doesn't support multiple overlapping frames, this function does nothing. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1784 (frame)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1785 Lisp_Object frame;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1786 {
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
1787 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1788 frame = selected_frame;
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
1789
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1790 CHECK_LIVE_FRAME (frame);
4961
dd67510308ae (Fraise_frame): Do like the documentation says, and make
Richard M. Stallman <rms@gnu.org>
parents: 4798
diff changeset
1791
dd67510308ae (Fraise_frame): Do like the documentation says, and make
Richard M. Stallman <rms@gnu.org>
parents: 4798
diff changeset
1792 /* Do like the documentation says. */
dd67510308ae (Fraise_frame): Do like the documentation says, and make
Richard M. Stallman <rms@gnu.org>
parents: 4798
diff changeset
1793 Fmake_frame_visible (frame);
dd67510308ae (Fraise_frame): Do like the documentation says, and make
Richard M. Stallman <rms@gnu.org>
parents: 4798
diff changeset
1794
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1795 if (frame_raise_lower_hook)
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1796 (*frame_raise_lower_hook) (XFRAME (frame), 1);
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1797
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1798 return Qnil;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1799 }
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1800
2282
f727944c11aa * frame.c (Fraise_frame, Flower_frame): Renamed from
Jim Blandy <jimb@redhat.com>
parents: 2207
diff changeset
1801 /* Should we have a corresponding function called Flower_Power? */
11754
7691dbfc7571 (Fraise_frame, Flower_frame): Make arg FRAME optional.
Richard M. Stallman <rms@gnu.org>
parents: 11535
diff changeset
1802 DEFUN ("lower-frame", Flower_frame, Slower_frame, 0, 1, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1803 doc: /* Send FRAME to the back, so it is occluded by any frames that overlap it.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1804 If you don't specify a frame, the selected frame is used.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1805 If Emacs is displaying on an ordinary terminal or some other device which
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1806 doesn't support multiple overlapping frames, this function does nothing. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1807 (frame)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1808 Lisp_Object frame;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1809 {
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
1810 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1811 frame = selected_frame;
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
1812
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1813 CHECK_LIVE_FRAME (frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1814
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1815 if (frame_raise_lower_hook)
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1816 (*frame_raise_lower_hook) (XFRAME (frame), 0);
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1817
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1818 return Qnil;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1819 }
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1820
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1821
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1822 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1823 1, 2, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1824 doc: /* Arrange for keystrokes typed at FRAME to be sent to FOCUS-FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1825 In other words, switch-frame events caused by events in FRAME will
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1826 request a switch to FOCUS-FRAME, and `last-event-frame' will be
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1827 FOCUS-FRAME after reading an event typed at FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1828
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1829 If FOCUS-FRAME is omitted or nil, any existing redirection is
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1830 cancelled, and the frame again receives its own keystrokes.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1831
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1832 Focus redirection is useful for temporarily redirecting keystrokes to
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1833 a surrogate minibuffer frame when a frame doesn't have its own
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1834 minibuffer window.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1835
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
1836 A frame's focus redirection can be changed by `select-frame'. If frame
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1837 FOO is selected, and then a different frame BAR is selected, any
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1838 frames redirecting their focus to FOO are shifted to redirect their
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1839 focus to BAR. This allows focus redirection to work properly when the
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1840 user switches from one frame to another using `select-window'.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1841
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1842 This means that a frame whose focus is redirected to itself is treated
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1843 differently from a frame whose focus is redirected to nil; the former
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
1844 is affected by `select-frame', while the latter is not.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1845
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1846 The redirection lasts until `redirect-frame-focus' is called to change it. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1847 (frame, focus_frame)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1848 Lisp_Object frame, focus_frame;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1849 {
3970
020fe391d5c1 * frame.c (Fredirect_frame_focus): Allow redirection of focus of
Jim Blandy <jimb@redhat.com>
parents: 3834
diff changeset
1850 /* Note that we don't check for a live frame here. It's reasonable
020fe391d5c1 * frame.c (Fredirect_frame_focus): Allow redirection of focus of
Jim Blandy <jimb@redhat.com>
parents: 3834
diff changeset
1851 to redirect the focus of a frame you're about to delete, if you
020fe391d5c1 * frame.c (Fredirect_frame_focus): Allow redirection of focus of
Jim Blandy <jimb@redhat.com>
parents: 3834
diff changeset
1852 know what other frame should receive those keystrokes. */
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1853 CHECK_FRAME (frame);
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1854
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1855 if (! NILP (focus_frame))
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1856 CHECK_LIVE_FRAME (focus_frame);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1857
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1858 XFRAME (frame)->focus_frame = focus_frame;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1859
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1860 if (frame_rehighlight_hook)
11535
ae282c46aec2 (Fredirect_frame_focus): Fix earlier change; use a frame known to be non-nil.
Karl Heuer <kwzh@gnu.org>
parents: 11532
diff changeset
1861 (*frame_rehighlight_hook) (XFRAME (frame));
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1862
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1863 return Qnil;
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1864 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1865
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1866
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1867 DEFUN ("frame-focus", Fframe_focus, Sframe_focus, 1, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1868 doc: /* Return the frame to which FRAME's keystrokes are currently being sent.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1869 This returns nil if FRAME's focus is not redirected.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1870 See `redirect-frame-focus'. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1871 (frame)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1872 Lisp_Object frame;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1873 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1874 CHECK_LIVE_FRAME (frame);
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1875
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1876 return FRAME_FOCUS_FRAME (XFRAME (frame));
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1877 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1878
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1879
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1880
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1881 /* Return the value of frame parameter PROP in frame FRAME. */
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1882
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1883 Lisp_Object
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1884 get_frame_param (frame, prop)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1885 register struct frame *frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1886 Lisp_Object prop;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1887 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1888 register Lisp_Object tem;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1889
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1890 tem = Fassq (prop, frame->param_alist);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1891 if (EQ (tem, Qnil))
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1892 return tem;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1893 return Fcdr (tem);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1894 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1895
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1896 /* Return the buffer-predicate of the selected frame. */
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1897
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1898 Lisp_Object
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1899 frame_buffer_predicate (frame)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1900 Lisp_Object frame;
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1901 {
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1902 return XFRAME (frame)->buffer_predicate;
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1903 }
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1904
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1905 /* Return the buffer-list of the selected frame. */
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1906
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1907 Lisp_Object
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1908 frame_buffer_list (frame)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1909 Lisp_Object frame;
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1910 {
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1911 return XFRAME (frame)->buffer_list;
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1912 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1913
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1914 /* Set the buffer-list of the selected frame. */
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1915
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1916 void
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1917 set_frame_buffer_list (frame, list)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1918 Lisp_Object frame, list;
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1919 {
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1920 XFRAME (frame)->buffer_list = list;
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1921 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1922
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1923 /* Discard BUFFER from the buffer-list of each frame. */
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1924
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1925 void
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1926 frames_discard_buffer (buffer)
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1927 Lisp_Object buffer;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1928 {
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1929 Lisp_Object frame, tail;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1930
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1931 FOR_EACH_FRAME (tail, frame)
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1932 {
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1933 XFRAME (frame)->buffer_list
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1934 = Fdelq (buffer, XFRAME (frame)->buffer_list);
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1935 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1936 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
1937
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1938 /* Modify the alist in *ALISTPTR to associate PROP with VAL.
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1939 If the alist already has an element for PROP, we change it. */
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
1940
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1941 void
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1942 store_in_alist (alistptr, prop, val)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1943 Lisp_Object *alistptr, val;
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1944 Lisp_Object prop;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1945 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1946 register Lisp_Object tem;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1947
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1948 tem = Fassq (prop, *alistptr);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1949 if (EQ (tem, Qnil))
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1950 *alistptr = Fcons (Fcons (prop, val), *alistptr);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1951 else
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1952 Fsetcdr (tem, val);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1953 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1954
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1955 static int
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1956 frame_name_fnn_p (str, len)
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1957 char *str;
89549
eaae96c859d2 (frame_name_fnn_p): Make len EMACS_INT.
Dave Love <fx@gnu.org>
parents: 89483
diff changeset
1958 EMACS_INT len;
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1959 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1960 if (len > 1 && str[0] == 'F')
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1961 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1962 char *end_ptr;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1963
25789
d68642dd5bbf (frame_name_fnn_p): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents: 25736
diff changeset
1964 strtol (str + 1, &end_ptr, 10);
d68642dd5bbf (frame_name_fnn_p): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents: 25736
diff changeset
1965
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1966 if (end_ptr == str + len)
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1967 return 1;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1968 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1969 return 0;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1970 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1971
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1972 /* Set the name of the terminal frame. Also used by MSDOS frames.
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1973 Modeled after x_set_name which is used for WINDOW frames. */
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1974
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
1975 static void
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1976 set_term_frame_name (f, name)
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1977 struct frame *f;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1978 Lisp_Object name;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1979 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1980 f->explicit_name = ! NILP (name);
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1981
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1982 /* If NAME is nil, set the name to F<num>. */
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1983 if (NILP (name))
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1984 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1985 char namebuf[20];
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1986
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1987 /* Check for no change needed in this very common case
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1988 before we do any consing. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
1989 if (frame_name_fnn_p (SDATA (f->name),
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
1990 SBYTES (f->name)))
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1991 return;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1992
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1993 terminal_frame_count++;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1994 sprintf (namebuf, "F%d", terminal_frame_count);
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1995 name = build_string (namebuf);
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1996 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1997 else
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
1998 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1999 CHECK_STRING (name);
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2000
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2001 /* Don't change the name if it's already NAME. */
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2002 if (! NILP (Fstring_equal (name, f->name)))
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2003 return;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2004
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2005 /* Don't allow the user to set the frame name to F<num>, so it
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2006 doesn't clash with the names we generate for terminal frames. */
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2007 if (frame_name_fnn_p (SDATA (name), SBYTES (name)))
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2008 error ("Frame names of the form F<num> are usurped by Emacs");
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2009 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2010
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2011 f->name = name;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2012 update_mode_lines = 1;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2013 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2014
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2015 void
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2016 store_frame_param (f, prop, val)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2017 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2018 Lisp_Object prop, val;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2019 {
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2020 register Lisp_Object old_alist_elt;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2021
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2022 /* The buffer-alist parameter is stored in a special place and is
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2023 not in the alist. */
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2024 if (EQ (prop, Qbuffer_list))
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2025 {
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2026 f->buffer_list = val;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2027 return;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2028 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2029
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2030 /* If PROP is a symbol which is supposed to have frame-local values,
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2031 and it is set up based on this frame, switch to the global
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2032 binding. That way, we can create or alter the frame-local binding
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2033 without messing up the symbol's status. */
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2034 if (SYMBOLP (prop))
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2035 {
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2036 Lisp_Object valcontents;
39581
6d9fa06012a6 Use SYMBOL_VALUE/SET_SYMBOL_VALUE macros instead of accessing
Gerd Moellmann <gerd@gnu.org>
parents: 39503
diff changeset
2037 valcontents = SYMBOL_VALUE (prop);
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2038 if ((BUFFER_LOCAL_VALUEP (valcontents)
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2039 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2040 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2041 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2042 swap_in_global_binding (prop);
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2043 }
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2044
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2045 #ifndef WINDOWSNT
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2046 /* The tty color mode needs to be set before the frame's parameter
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2047 alist is updated with the new value, because set_tty_color_mode
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2048 wants to look at the old mode. */
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2049 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode))
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2050 set_tty_color_mode (f, val);
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2051 #endif
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2052
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2053 /* Update the frame parameter alist. */
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2054 old_alist_elt = Fassq (prop, f->param_alist);
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2055 if (EQ (old_alist_elt, Qnil))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2056 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2057 else
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2058 Fsetcdr (old_alist_elt, val);
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2059
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2060 /* Update some other special parameters in their special places
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2061 in addition to the alist. */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2062
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2063 if (EQ (prop, Qbuffer_predicate))
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2064 f->buffer_predicate = val;
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2065
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2066 if (! FRAME_WINDOW_P (f))
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2067 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2068 if (EQ (prop, Qmenu_bar_lines))
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2069 set_menu_bar_lines (f, val, make_number (FRAME_MENU_BAR_LINES (f)));
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2070 else if (EQ (prop, Qname))
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2071 set_term_frame_name (f, val);
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2072 }
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
2073
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
2074 if (EQ (prop, Qminibuffer) && WINDOWP (val))
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2075 {
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2076 if (! MINI_WINDOW_P (XWINDOW (val)))
53072
8787289602d1 Remove period at end of error message.
Jan Djärv <jan.h.d@swipnet.se>
parents: 52754
diff changeset
2077 error ("Surrogate minibuffer windows must be minibuffer windows");
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2078
25710
ee1da070c50f (Fnext_frame): Remove unused variable(s).
Gerd Moellmann <gerd@gnu.org>
parents: 25669
diff changeset
2079 if ((FRAME_HAS_MINIBUF_P (f) || FRAME_MINIBUF_ONLY_P (f))
16371
906cef1d36bd (store_frame_param): Allow setting a frame's minibuffer
Karl Heuer <kwzh@gnu.org>
parents: 16280
diff changeset
2080 && !EQ (val, f->minibuffer_window))
906cef1d36bd (store_frame_param): Allow setting a frame's minibuffer
Karl Heuer <kwzh@gnu.org>
parents: 16280
diff changeset
2081 error ("Can't change the surrogate minibuffer of a frame with its own minibuffer");
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2082
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2083 /* Install the chosen minibuffer window, with proper buffer. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2084 f->minibuffer_window = val;
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2085 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2086 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2087
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2088 DEFUN ("frame-parameters", Fframe_parameters, Sframe_parameters, 0, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2089 doc: /* Return the parameters-alist of frame FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2090 It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2091 The meaningful PARMs depend on the kind of frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2092 If FRAME is omitted, return information on the currently selected frame. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2093 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2094 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2095 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2096 Lisp_Object alist;
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2097 FRAME_PTR f;
15062
de7528327c39 (Fframe_parameters, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15001
diff changeset
2098 int height, width;
27575
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2099 struct gcpro gcpro1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2100
36804
e4331ae9636d (Fframe_parameters): In the `buffer-list' frame
Gerd Moellmann <gerd@gnu.org>
parents: 36433
diff changeset
2101 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2102 frame = selected_frame;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2103
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2104 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2105 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2106
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2107 if (!FRAME_LIVE_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2108 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2109
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2110 alist = Fcopy_alist (f->param_alist);
27575
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2111 GCPRO1 (alist);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2112
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
2113 if (!FRAME_WINDOW_P (f))
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2114 {
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
2115 int fg = FRAME_FOREGROUND_PIXEL (f);
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
2116 int bg = FRAME_BACKGROUND_PIXEL (f);
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2117 Lisp_Object elt;
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
2118
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2119 /* If the frame's parameter alist says the colors are
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2120 unspecified and reversed, take the frame's background pixel
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2121 for foreground and vice versa. */
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2122 elt = Fassq (Qforeground_color, alist);
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2123 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2124 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2125 if (strncmp (SDATA (XCDR (elt)),
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2126 unspecified_bg,
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2127 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2128 store_in_alist (&alist, Qforeground_color, tty_color_name (f, bg));
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2129 else if (strncmp (SDATA (XCDR (elt)),
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2130 unspecified_fg,
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2131 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2132 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2133 }
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2134 else
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2135 store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg));
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2136 elt = Fassq (Qbackground_color, alist);
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2137 if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt)))
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2138 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2139 if (strncmp (SDATA (XCDR (elt)),
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2140 unspecified_fg,
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2141 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2142 store_in_alist (&alist, Qbackground_color, tty_color_name (f, fg));
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2143 else if (strncmp (SDATA (XCDR (elt)),
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2144 unspecified_bg,
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2145 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2146 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2147 }
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2148 else
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2149 store_in_alist (&alist, Qbackground_color, tty_color_name (f, bg));
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
2150 store_in_alist (&alist, intern ("font"),
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
2151 build_string (FRAME_MSDOS_P (f)
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
2152 ? "ms-dos"
35003
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
2153 : FRAME_W32_P (f) ? "w32term"
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
2154 :"tty"));
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2155 }
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2156 store_in_alist (&alist, Qname, f->name);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2157 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
15062
de7528327c39 (Fframe_parameters, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15001
diff changeset
2158 store_in_alist (&alist, Qheight, make_number (height));
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2159 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
15062
de7528327c39 (Fframe_parameters, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15001
diff changeset
2160 store_in_alist (&alist, Qwidth, make_number (width));
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2161 store_in_alist (&alist, Qmodeline, (FRAME_WANTS_MODELINE_P (f) ? Qt : Qnil));
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2162 store_in_alist (&alist, Qminibuffer,
1870
d90e9fecad48 * frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents: 1821
diff changeset
2163 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2164 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2165 : FRAME_MINIBUF_WINDOW (f)));
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2166 store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil));
36804
e4331ae9636d (Fframe_parameters): In the `buffer-list' frame
Gerd Moellmann <gerd@gnu.org>
parents: 36433
diff changeset
2167 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2168
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2169 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2170 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2171 if (FRAME_WINDOW_P (f))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2172 x_report_frame_params (f, &alist);
8244
15d4c2bd29e6 [MULTI_FRAME] (Fframe_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 8168
diff changeset
2173 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2174 #endif
8904
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2175 {
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2176 /* This ought to be correct in f->param_alist for an X frame. */
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2177 Lisp_Object lines;
9309
27370f65dfa1 (make_frame, Fframe_parameters, Fselected_frame, syms_of_frame): Don't use
Karl Heuer <kwzh@gnu.org>
parents: 9268
diff changeset
2178 XSETFASTINT (lines, FRAME_MENU_BAR_LINES (f));
8904
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2179 store_in_alist (&alist, Qmenu_bar_lines, lines);
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2180 }
27575
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2181
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2182 UNGCPRO;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2183 return alist;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2184 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2185
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2186
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2187 DEFUN ("frame-parameter", Fframe_parameter, Sframe_parameter, 2, 2, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2188 doc: /* Return FRAME's value for parameter PARAMETER.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2189 If FRAME is nil, describe the currently selected frame. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2190 (frame, parameter)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2191 Lisp_Object frame, parameter;
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2192 {
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2193 struct frame *f;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2194 Lisp_Object value;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2195
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2196 if (NILP (frame))
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2197 frame = selected_frame;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2198 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2199 CHECK_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2200 CHECK_SYMBOL (parameter);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2201
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2202 f = XFRAME (frame);
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2203 value = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2204
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2205 if (FRAME_LIVE_P (f))
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2206 {
40319
52af99ad587f Resurrect a comment lost in the previous commit.
Eli Zaretskii <eliz@gnu.org>
parents: 40317
diff changeset
2207 /* Avoid consing in frequent cases. */
31442
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2208 if (EQ (parameter, Qname))
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2209 value = f->name;
31448
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
2210 #ifdef HAVE_X_WINDOWS
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
2211 else if (EQ (parameter, Qdisplay) && FRAME_X_P (f))
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
2212 value = XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element);
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
2213 #endif /* HAVE_X_WINDOWS */
40313
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2214 else if (EQ (parameter, Qbackground_color)
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2215 || EQ (parameter, Qforeground_color))
31442
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2216 {
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2217 value = Fassq (parameter, f->param_alist);
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2218 if (CONSP (value))
32254
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2219 {
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2220 value = XCDR (value);
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2221 /* Fframe_parameters puts the actual fg/bg color names,
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2222 even if f->param_alist says otherwise. This is
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2223 important when param_alist's notion of colors is
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2224 "unspecified". We need to do the same here. */
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2225 if (STRINGP (value) && !FRAME_WINDOW_P (f))
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2226 {
46467
1a3b3b66171c (Fframe_parameter): Use const for pointer to lisp
Ken Raeburn <raeburn@raeburn.org>
parents: 46370
diff changeset
2227 const char *color_name;
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2228 EMACS_INT csz;
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2229
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2230 if (EQ (parameter, Qbackground_color))
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2231 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2232 color_name = SDATA (value);
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2233 csz = SCHARS (value);
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2234 if (strncmp (color_name, unspecified_bg, csz) == 0)
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2235 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2236 else if (strncmp (color_name, unspecified_fg, csz) == 0)
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2237 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2238 }
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2239 else if (EQ (parameter, Qforeground_color))
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2240 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2241 color_name = SDATA (value);
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2242 csz = SCHARS (value);
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2243 if (strncmp (color_name, unspecified_fg, csz) == 0)
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2244 value = tty_color_name (f, FRAME_FOREGROUND_PIXEL (f));
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2245 else if (strncmp (color_name, unspecified_bg, csz) == 0)
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2246 value = tty_color_name (f, FRAME_BACKGROUND_PIXEL (f));
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2247 }
32254
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2248 }
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2249 }
40317
dfb2afb0aa8a (Fframe_parameter): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 40313
diff changeset
2250 else
dfb2afb0aa8a (Fframe_parameter): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 40313
diff changeset
2251 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
31442
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2252 }
40313
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2253 else if (EQ (parameter, Qdisplay_type)
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2254 || EQ (parameter, Qbackground_mode))
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2255 value = Fcdr (Fassq (parameter, f->param_alist));
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2256 else
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2257 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2258 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2259
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2260 return value;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2261 }
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2262
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2263
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2264 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2265 Smodify_frame_parameters, 2, 2, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2266 doc: /* Modify the parameters of frame FRAME according to ALIST.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2267 If FRAME is nil, it defaults to the selected frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2268 ALIST is an alist of parameters to change and their new values.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2269 Each element of ALIST has the form (PARM . VALUE), where PARM is a symbol.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2270 The meaningful PARMs depend on the kind of frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2271 Undefined PARMs are ignored, but stored in the frame's parameter list
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2272 so that `frame-parameters' will return them.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2273
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2274 The value of frame parameter FOO can also be accessed
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2275 as a frame-local binding for the variable FOO, if you have
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2276 enabled such bindings for that variable with `make-variable-frame-local'. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2277 (frame, alist)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2278 Lisp_Object frame, alist;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2279 {
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2280 FRAME_PTR f;
25710
ee1da070c50f (Fnext_frame): Remove unused variable(s).
Gerd Moellmann <gerd@gnu.org>
parents: 25669
diff changeset
2281 register Lisp_Object tail, prop, val;
46285
3f111801efb4 Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents: 46015
diff changeset
2282 int count = SPECPDL_INDEX ();
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2283
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2284 /* Bind this to t to inhibit initialization of the default face from
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2285 X resources in face-set-after-frame-default. If we don't inhibit
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2286 this, modifying the `font' frame parameter, for example, while
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2287 there is a `default.attributeFont' X resource, won't work,
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2288 because `default's font is reset to the value of the X resource
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2289 and that resets the `font' frame parameter. */
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2290 specbind (Qinhibit_default_face_x_resources, Qt);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2291
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2292 if (EQ (frame, Qnil))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2293 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2294 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2295 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2296
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2297 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2298 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2299 if (FRAME_WINDOW_P (f))
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2300 x_set_frame_parameters (f, alist);
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2301 else
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2302 #endif
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2303 #ifdef MSDOS
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2304 if (FRAME_MSDOS_P (f))
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2305 IT_set_frame_parameters (f, alist);
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2306 else
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2307 #endif
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
2308
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2309 {
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2310 int length = XINT (Flength (alist));
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2311 int i;
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2312 Lisp_Object *parms
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2313 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2314 Lisp_Object *values
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2315 = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2316
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2317 /* Extract parm names and values into those vectors. */
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2318
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2319 i = 0;
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2320 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2321 {
25710
ee1da070c50f (Fnext_frame): Remove unused variable(s).
Gerd Moellmann <gerd@gnu.org>
parents: 25669
diff changeset
2322 Lisp_Object elt;
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2323
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2324 elt = Fcar (tail);
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2325 parms[i] = Fcar (elt);
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2326 values[i] = Fcdr (elt);
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2327 i++;
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2328 }
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2329
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2330 /* Now process them in reverse of specified order. */
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2331 for (i--; i >= 0; i--)
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2332 {
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2333 prop = parms[i];
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2334 val = values[i];
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2335 store_frame_param (f, prop, val);
63643
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2336
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2337 /* Changing the background color might change the background
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2338 mode, so that we have to load new defface specs.
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2339 Call frame-set-background-mode to do that. */
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2340 if (EQ (prop, Qbackground_color))
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2341 call1 (Qframe_set_background_mode, frame);
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2342 }
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2343 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2344
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
2345 return unbind_to (count, Qnil);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2346 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2347
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2348 DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2349 0, 1, 0,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2350 doc: /* Height in pixels of a line in the font in frame FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2351 If FRAME is omitted, the selected frame is used.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2352 For a terminal frame, the value is always 1. */)
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2353 (frame)
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2354 Lisp_Object frame;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2355 {
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2356 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2357
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2358 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2359 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2360 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2361 f = XFRAME (frame);
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2362
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2363 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2364 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2365 return make_number (x_char_height (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2366 else
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2367 #endif
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2368 return make_number (1);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2369 }
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2370
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2371
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2372 DEFUN ("frame-char-width", Fframe_char_width, Sframe_char_width,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2373 0, 1, 0,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2374 doc: /* Width in pixels of characters in the font in frame FRAME.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2375 If FRAME is omitted, the selected frame is used.
64713
fb0a0e5596b6 (Fframe_char_width): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 64084
diff changeset
2376 On a graphical screen, the width is the standard width of the default font.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2377 For a terminal screen, the value is always 1. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2378 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2379 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2380 {
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2381 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2382
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2383 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2384 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2385 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2386 f = XFRAME (frame);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2387
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2388 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2389 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2390 return make_number (x_char_width (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2391 else
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2392 #endif
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2393 return make_number (1);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2394 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2395
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2396 DEFUN ("frame-pixel-height", Fframe_pixel_height,
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2397 Sframe_pixel_height, 0, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2398 doc: /* Return a FRAME's height in pixels.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2399 This counts only the height available for text lines,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2400 not menu bars on window-system Emacs frames.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2401 For a terminal frame, the result really gives the height in characters.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2402 If FRAME is omitted, the selected frame is used. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2403 (frame)
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2404 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2405 {
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2406 struct frame *f;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2407
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2408 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2409 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2410 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2411 f = XFRAME (frame);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2412
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2413 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2414 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2415 return make_number (x_pixel_height (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2416 else
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2417 #endif
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2418 return make_number (FRAME_LINES (f));
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2419 }
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2420
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2421 DEFUN ("frame-pixel-width", Fframe_pixel_width,
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2422 Sframe_pixel_width, 0, 1, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2423 doc: /* Return FRAME's width in pixels.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2424 For a terminal frame, the result really gives the width in characters.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2425 If FRAME is omitted, the selected frame is used. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2426 (frame)
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2427 Lisp_Object frame;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2428 {
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2429 struct frame *f;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2430
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2431 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2432 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2433 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2434 f = XFRAME (frame);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2435
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2436 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2437 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2438 return make_number (x_pixel_width (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2439 else
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2440 #endif
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2441 return make_number (FRAME_COLS (f));
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2442 }
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2443
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2444 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2445 doc: /* Specify that the frame FRAME has LINES lines.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2446 Optional third arg non-nil means that redisplay should use LINES lines
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2447 but that the idea of the actual height of the frame should not be changed. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2448 (frame, lines, pretend)
14077
a6d3ce4a2f8e (Fhandle_switch_frame, Fset_frame_height): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13748
diff changeset
2449 Lisp_Object frame, lines, pretend;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2450 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2451 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2452
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2453 CHECK_NUMBER (lines);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2454 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2455 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2456 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2457 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2458
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2459 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2460 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2461 if (FRAME_WINDOW_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2462 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2463 if (XINT (lines) != FRAME_LINES (f))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2464 x_set_window_size (f, 1, FRAME_COLS (f), XINT (lines));
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2465 do_pending_window_change (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2466 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2467 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2468 #endif
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2469 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2470 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2471 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2472
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2473 DEFUN ("set-frame-width", Fset_frame_width, Sset_frame_width, 2, 3, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2474 doc: /* Specify that the frame FRAME has COLS columns.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2475 Optional third arg non-nil means that redisplay should use COLS columns
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2476 but that the idea of the actual width of the frame should not be changed. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2477 (frame, cols, pretend)
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2478 Lisp_Object frame, cols, pretend;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2479 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2480 register struct frame *f;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2481 CHECK_NUMBER (cols);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2482 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2483 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2484 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2485 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2486
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2487 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2488 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2489 if (FRAME_WINDOW_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2490 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2491 if (XINT (cols) != FRAME_COLS (f))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2492 x_set_window_size (f, 1, XINT (cols), FRAME_LINES (f));
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2493 do_pending_window_change (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2494 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2495 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2496 #endif
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2497 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2498 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2499 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2500
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2501 DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2502 doc: /* Sets size of FRAME to COLS by ROWS, measured in characters. */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2503 (frame, cols, rows)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2504 Lisp_Object frame, cols, rows;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2505 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2506 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2507
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2508 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2509 CHECK_NUMBER (cols);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2510 CHECK_NUMBER (rows);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2511 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2512
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2513 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2514 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2515 if (FRAME_WINDOW_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2516 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2517 if (XINT (rows) != FRAME_LINES (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2518 || XINT (cols) != FRAME_COLS (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2519 || f->new_text_lines || f->new_text_cols)
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
2520 x_set_window_size (f, 1, XINT (cols), XINT (rows));
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2521 do_pending_window_change (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2522 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2523 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2524 #endif
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2525 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2526
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2527 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2528 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2529
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2530 DEFUN ("set-frame-position", Fset_frame_position,
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2531 Sset_frame_position, 3, 3, 0,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2532 doc: /* Sets position of FRAME in pixels to XOFFSET by YOFFSET.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2533 This is actually the position of the upper left corner of the frame.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2534 Negative values for XOFFSET or YOFFSET are interpreted relative to
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2535 the rightmost or bottommost possible position (that stays within the screen). */)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2536 (frame, xoffset, yoffset)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2537 Lisp_Object frame, xoffset, yoffset;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2538 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2539 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2540
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2541 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2542 CHECK_NUMBER (xoffset);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2543 CHECK_NUMBER (yoffset);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2544 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2545
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2546 /* I think this should be done with a hook. */
13412
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2547 #ifdef HAVE_WINDOW_SYSTEM
1ed740e9aa64 [HAVE_NTGUI]: Test for a Win32 frame in procedures that test for an X frame.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13396
diff changeset
2548 if (FRAME_WINDOW_P (f))
6921
50060d486c47 (Fset_frame_position): Pass new arg to x_set_offset.
Richard M. Stallman <rms@gnu.org>
parents: 6854
diff changeset
2549 x_set_offset (f, XINT (xoffset), XINT (yoffset), 1);
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2550 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2551
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2552 return Qt;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2553 }
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2554
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2555
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2556 /***********************************************************************
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2557 Frame Parameters
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2558 ***********************************************************************/
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2559
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2560 /* Connect the frame-parameter names for X frames
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2561 to the ways of passing the parameter values to the window system.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2562
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2563 The name of a parameter, as a Lisp symbol,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2564 has an `x-frame-parameter' property which is an integer in Lisp
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2565 that is an index in this table. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2566
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2567 struct frame_parm_table {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2568 char *name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2569 Lisp_Object *variable;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2570 };
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2571
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2572 static struct frame_parm_table frame_parms[] =
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2573 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2574 {"auto-raise", &Qauto_raise},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2575 {"auto-lower", &Qauto_lower},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2576 {"background-color", 0},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2577 {"border-color", &Qborder_color},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2578 {"border-width", &Qborder_width},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2579 {"cursor-color", &Qcursor_color},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2580 {"cursor-type", &Qcursor_type},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2581 {"font", 0},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2582 {"foreground-color", 0},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2583 {"icon-name", &Qicon_name},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2584 {"icon-type", &Qicon_type},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2585 {"internal-border-width", &Qinternal_border_width},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2586 {"menu-bar-lines", &Qmenu_bar_lines},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2587 {"mouse-color", &Qmouse_color},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2588 {"name", &Qname},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2589 {"scroll-bar-width", &Qscroll_bar_width},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2590 {"title", &Qtitle},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2591 {"unsplittable", &Qunsplittable},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2592 {"vertical-scroll-bars", &Qvertical_scroll_bars},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2593 {"visibility", &Qvisibility},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2594 {"tool-bar-lines", &Qtool_bar_lines},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2595 {"scroll-bar-foreground", &Qscroll_bar_foreground},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2596 {"scroll-bar-background", &Qscroll_bar_background},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2597 {"screen-gamma", &Qscreen_gamma},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2598 {"line-spacing", &Qline_spacing},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2599 {"left-fringe", &Qleft_fringe},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2600 {"right-fringe", &Qright_fringe},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2601 {"wait-for-wm", &Qwait_for_wm},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2602 {"fullscreen", &Qfullscreen},
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
2603 #ifdef USE_FONT_BACKEND
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
2604 {"font-backend", &Qfont_backend}
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
2605 #endif /* USE_FONT_BACKEND */
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2606 };
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2607
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2608 #ifdef HAVE_WINDOW_SYSTEM
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2609
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2610 extern Lisp_Object Qbox;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2611 extern Lisp_Object Qtop;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2612
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2613 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2614 wanted positions of the WM window (not emacs window).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2615 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2616 window (FRAME_X_WINDOW).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2617 */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2618
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2619 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2620 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2621 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2622 int *width;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2623 int *height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2624 int *top_pos;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2625 int *left_pos;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2626 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2627 int newwidth = FRAME_COLS (f);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2628 int newheight = FRAME_LINES (f);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2629
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2630 *top_pos = f->top_pos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2631 *left_pos = f->left_pos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2632
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2633 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2634 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2635 int ph;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2636
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2637 ph = FRAME_X_DISPLAY_INFO (f)->height;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2638 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2639 ph = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, newheight) - f->y_pixels_diff;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2640 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2641 *top_pos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2642 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2643
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2644 if (f->want_fullscreen & FULLSCREEN_WIDTH)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2645 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2646 int pw;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2647
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2648 pw = FRAME_X_DISPLAY_INFO (f)->width;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2649 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2650 pw = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, newwidth) - f->x_pixels_diff;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2651 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2652 *left_pos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2653 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2654
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2655 *width = newwidth;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2656 *height = newheight;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2657 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2658
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2659
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2660 /* Change the parameters of frame F as specified by ALIST.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2661 If a parameter is not specially recognized, do nothing special;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2662 otherwise call the `x_set_...' function for that parameter.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2663 Except for certain geometry properties, always call store_frame_param
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2664 to store the new value in the parameter alist. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2665
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2666 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2667 x_set_frame_parameters (f, alist)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2668 FRAME_PTR f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2669 Lisp_Object alist;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2670 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2671 Lisp_Object tail;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2672
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2673 /* If both of these parameters are present, it's more efficient to
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2674 set them both at once. So we wait until we've looked at the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2675 entire list before we set them. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2676 int width, height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2677
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2678 /* Same here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2679 Lisp_Object left, top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2680
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2681 /* Same with these. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2682 Lisp_Object icon_left, icon_top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2683
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2684 /* Record in these vectors all the parms specified. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2685 Lisp_Object *parms;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2686 Lisp_Object *values;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2687 int i, p;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2688 int left_no_change = 0, top_no_change = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2689 int icon_left_no_change = 0, icon_top_no_change = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2690 int fullscreen_is_being_set = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2691
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2692 struct gcpro gcpro1, gcpro2;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2693
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2694 i = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2695 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2696 i++;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2697
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2698 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2699 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2700
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2701 /* Extract parm names and values into those vectors. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2702
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2703 i = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2704 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2705 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2706 Lisp_Object elt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2707
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2708 elt = Fcar (tail);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2709 parms[i] = Fcar (elt);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2710 values[i] = Fcdr (elt);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2711 i++;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2712 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2713 /* TAIL and ALIST are not used again below here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2714 alist = tail = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2715
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2716 GCPRO2 (*parms, *values);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2717 gcpro1.nvars = i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2718 gcpro2.nvars = i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2719
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2720 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2721 because their values appear in VALUES and strings are not valid. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2722 top = left = Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2723 icon_left = icon_top = Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2724
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2725 /* Provide default values for HEIGHT and WIDTH. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2726 width = (f->new_text_cols ? f->new_text_cols : FRAME_COLS (f));
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2727 height = (f->new_text_lines ? f->new_text_lines : FRAME_LINES (f));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2728
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2729 /* Process foreground_color and background_color before anything else.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2730 They are independent of other properties, but other properties (e.g.,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2731 cursor_color) are dependent upon them. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2732 /* Process default font as well, since fringe widths depends on it. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2733 /* Also, process fullscreen, width and height depend upon that */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2734 for (p = 0; p < i; p++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2735 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2736 Lisp_Object prop, val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2737
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2738 prop = parms[p];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2739 val = values[p];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2740 if (EQ (prop, Qforeground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2741 || EQ (prop, Qbackground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2742 || EQ (prop, Qfont)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2743 || EQ (prop, Qfullscreen))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2744 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2745 register Lisp_Object param_index, old_value;
73253
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2746 int count = SPECPDL_INDEX ();
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2747
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2748 old_value = get_frame_param (f, prop);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2749 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2750
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2751 if (NILP (Fequal (val, old_value)))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2752 {
73253
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2753 /* For :font attributes, the frame_parm_handler
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2754 x_set_font calls `face-set-after-frame-default'.
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2755 Unless we bind inhibit-face-set-after-frame-default
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2756 here, this would reset the :font attribute that we
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2757 just applied to the default value for new faces. */
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2758 specbind (Qinhibit_face_set_after_frame_default, Qt);
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2759
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2760 store_frame_param (f, prop, val);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2761
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2762 param_index = Fget (prop, Qx_frame_parameter);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2763 if (NATNUMP (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2764 && (XFASTINT (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2765 < sizeof (frame_parms)/sizeof (frame_parms[0]))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2766 && rif->frame_parm_handlers[XINT (param_index)])
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2767 (*(rif->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
73253
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2768
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
2769 unbind_to (count, Qnil);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2770 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2771 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2772 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2773
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2774 /* Now process them in reverse of specified order. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2775 for (i--; i >= 0; i--)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2776 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2777 Lisp_Object prop, val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2778
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2779 prop = parms[i];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2780 val = values[i];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2781
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2782 if (EQ (prop, Qwidth) && NUMBERP (val))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2783 width = XFASTINT (val);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2784 else if (EQ (prop, Qheight) && NUMBERP (val))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2785 height = XFASTINT (val);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2786 else if (EQ (prop, Qtop))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2787 top = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2788 else if (EQ (prop, Qleft))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2789 left = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2790 else if (EQ (prop, Qicon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2791 icon_top = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2792 else if (EQ (prop, Qicon_left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2793 icon_left = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2794 else if (EQ (prop, Qforeground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2795 || EQ (prop, Qbackground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2796 || EQ (prop, Qfont)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2797 || EQ (prop, Qfullscreen))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2798 /* Processed above. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2799 continue;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2800 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2801 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2802 register Lisp_Object param_index, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2803
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2804 old_value = get_frame_param (f, prop);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2805
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2806 store_frame_param (f, prop, val);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2807
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2808 param_index = Fget (prop, Qx_frame_parameter);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2809 if (NATNUMP (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2810 && (XFASTINT (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2811 < sizeof (frame_parms)/sizeof (frame_parms[0]))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2812 && rif->frame_parm_handlers[XINT (param_index)])
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2813 (*(rif->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2814 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2815 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2816
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2817 /* Don't die if just one of these was set. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2818 if (EQ (left, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2819 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2820 left_no_change = 1;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2821 if (f->left_pos < 0)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2822 left = Fcons (Qplus, Fcons (make_number (f->left_pos), Qnil));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2823 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2824 XSETINT (left, f->left_pos);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2825 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2826 if (EQ (top, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2827 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2828 top_no_change = 1;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2829 if (f->top_pos < 0)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2830 top = Fcons (Qplus, Fcons (make_number (f->top_pos), Qnil));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2831 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2832 XSETINT (top, f->top_pos);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2833 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2834
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2835 /* If one of the icon positions was not set, preserve or default it. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2836 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2837 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2838 icon_left_no_change = 1;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2839 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2840 if (NILP (icon_left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2841 XSETINT (icon_left, 0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2842 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2843 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2844 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2845 icon_top_no_change = 1;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2846 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2847 if (NILP (icon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2848 XSETINT (icon_top, 0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2849 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2850
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2851 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2852 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2853 /* If the frame is visible already and the fullscreen parameter is
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2854 being set, it is too late to set WM manager hints to specify
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2855 size and position.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2856 Here we first get the width, height and position that applies to
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2857 fullscreen. We then move the frame to the appropriate
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2858 position. Resize of the frame is taken care of in the code after
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2859 this if-statement. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2860 int new_left, new_top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2861
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2862 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
52754
d08832a11cfd * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
Jan Djärv <jan.h.d@swipnet.se>
parents: 52753
diff changeset
2863 if (new_top != f->top_pos || new_left != f->left_pos)
d08832a11cfd * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
Jan Djärv <jan.h.d@swipnet.se>
parents: 52753
diff changeset
2864 x_set_offset (f, new_left, new_top, 1);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2865 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2866
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2867 /* Don't set these parameters unless they've been explicitly
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2868 specified. The window might be mapped or resized while we're in
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2869 this function, and we don't want to override that unless the lisp
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2870 code has asked for it.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2871
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2872 Don't set these parameters unless they actually differ from the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2873 window's current parameters; the window may not actually exist
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2874 yet. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2875 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2876 Lisp_Object frame;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2877
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2878 check_frame_size (f, &height, &width);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2879
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2880 XSETFRAME (frame, f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2881
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2882 if (width != FRAME_COLS (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2883 || height != FRAME_LINES (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2884 || f->new_text_lines || f->new_text_cols)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2885 Fset_frame_size (frame, make_number (width), make_number (height));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2886
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2887 if ((!NILP (left) || !NILP (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2888 && ! (left_no_change && top_no_change)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2889 && ! (NUMBERP (left) && XINT (left) == f->left_pos
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2890 && NUMBERP (top) && XINT (top) == f->top_pos))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2891 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2892 int leftpos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2893 int toppos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2894
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2895 /* Record the signs. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2896 f->size_hint_flags &= ~ (XNegative | YNegative);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2897 if (EQ (left, Qminus))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2898 f->size_hint_flags |= XNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2899 else if (INTEGERP (left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2900 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2901 leftpos = XINT (left);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2902 if (leftpos < 0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2903 f->size_hint_flags |= XNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2904 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2905 else if (CONSP (left) && EQ (XCAR (left), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2906 && CONSP (XCDR (left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2907 && INTEGERP (XCAR (XCDR (left))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2908 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2909 leftpos = - XINT (XCAR (XCDR (left)));
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2910 f->size_hint_flags |= XNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2911 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2912 else if (CONSP (left) && EQ (XCAR (left), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2913 && CONSP (XCDR (left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2914 && INTEGERP (XCAR (XCDR (left))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2915 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2916 leftpos = XINT (XCAR (XCDR (left)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2917 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2918
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2919 if (EQ (top, Qminus))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2920 f->size_hint_flags |= YNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2921 else if (INTEGERP (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2922 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2923 toppos = XINT (top);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2924 if (toppos < 0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2925 f->size_hint_flags |= YNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2926 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2927 else if (CONSP (top) && EQ (XCAR (top), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2928 && CONSP (XCDR (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2929 && INTEGERP (XCAR (XCDR (top))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2930 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2931 toppos = - XINT (XCAR (XCDR (top)));
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2932 f->size_hint_flags |= YNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2933 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2934 else if (CONSP (top) && EQ (XCAR (top), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2935 && CONSP (XCDR (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2936 && INTEGERP (XCAR (XCDR (top))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2937 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2938 toppos = XINT (XCAR (XCDR (top)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2939 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2940
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2941
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2942 /* Store the numeric value of the position. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2943 f->top_pos = toppos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2944 f->left_pos = leftpos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2945
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2946 f->win_gravity = NorthWestGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2947
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2948 /* Actually set that position, and convert to absolute. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2949 x_set_offset (f, leftpos, toppos, -1);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2950 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2951
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2952 if ((!NILP (icon_left) || !NILP (icon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2953 && ! (icon_left_no_change && icon_top_no_change))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2954 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2955 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2956
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2957 UNGCPRO;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2958 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2959
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2960
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2961 /* Insert a description of internally-recorded parameters of frame X
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2962 into the parameter alist *ALISTPTR that is to be given to the user.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2963 Only parameters that are specific to the X window system
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2964 and whose values are not correctly recorded in the frame's
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2965 param_alist need to be considered here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2966
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2967 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2968 x_report_frame_params (f, alistptr)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2969 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2970 Lisp_Object *alistptr;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2971 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2972 char buf[16];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2973 Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2974
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2975 /* Represent negative positions (off the top or left screen edge)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2976 in a way that Fmodify_frame_parameters will understand correctly. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2977 XSETINT (tem, f->left_pos);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2978 if (f->left_pos >= 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2979 store_in_alist (alistptr, Qleft, tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2980 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2981 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2982
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2983 XSETINT (tem, f->top_pos);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2984 if (f->top_pos >= 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2985 store_in_alist (alistptr, Qtop, tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2986 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2987 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2988
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2989 store_in_alist (alistptr, Qborder_width,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2990 make_number (f->border_width));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2991 store_in_alist (alistptr, Qinternal_border_width,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2992 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2993 store_in_alist (alistptr, Qleft_fringe,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2994 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2995 store_in_alist (alistptr, Qright_fringe,
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2996 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2997 store_in_alist (alistptr, Qscroll_bar_width,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2998 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2999 ? make_number (0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3000 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3001 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3002 /* nil means "use default width"
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3003 for non-toolkit scroll bar.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3004 ruler-mode.el depends on this. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3005 : Qnil));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3006 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3007 store_in_alist (alistptr, Qwindow_id,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3008 build_string (buf));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3009 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3010 #ifdef USE_X_TOOLKIT
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3011 /* Tooltip frame may not have this widget. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3012 if (FRAME_X_OUTPUT (f)->widget)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3013 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3014 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3015 store_in_alist (alistptr, Qouter_window_id,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3016 build_string (buf));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3017 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3018 store_in_alist (alistptr, Qicon_name, f->icon_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3019 FRAME_SAMPLE_VISIBILITY (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3020 store_in_alist (alistptr, Qvisibility,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3021 (FRAME_VISIBLE_P (f) ? Qt
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3022 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3023 store_in_alist (alistptr, Qdisplay,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3024 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3025
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3026 if (FRAME_X_OUTPUT (f)->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3027 tem = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3028 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3029 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3030 store_in_alist (alistptr, Qparent_id, tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3031 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3032
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3033
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3034 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3035 the previous value of that parameter, NEW_VALUE is the new value. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3036
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3037 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3038 x_set_fullscreen (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3039 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3040 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3041 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3042 if (NILP (new_value))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3043 f->want_fullscreen = FULLSCREEN_NONE;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3044 else if (EQ (new_value, Qfullboth))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3045 f->want_fullscreen = FULLSCREEN_BOTH;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3046 else if (EQ (new_value, Qfullwidth))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3047 f->want_fullscreen = FULLSCREEN_WIDTH;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3048 else if (EQ (new_value, Qfullheight))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3049 f->want_fullscreen = FULLSCREEN_HEIGHT;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3050 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3051
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3052
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3053 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3054 the previous value of that parameter, NEW_VALUE is the new value. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3055
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3056 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3057 x_set_line_spacing (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3058 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3059 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3060 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3061 if (NILP (new_value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3062 f->extra_line_spacing = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3063 else if (NATNUMP (new_value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3064 f->extra_line_spacing = XFASTINT (new_value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3065 else
71980
423c880b693f (x_set_line_spacing, x_set_screen_gamma): Use signal_error.
Kim F. Storm <storm@cua.dk>
parents: 70732
diff changeset
3066 signal_error ("Invalid line-spacing", new_value);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3067 if (FRAME_VISIBLE_P (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3068 redraw_frame (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3069 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3070
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3071
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3072 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3073 the previous value of that parameter, NEW_VALUE is the new value. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3074
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3075 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3076 x_set_screen_gamma (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3077 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3078 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3079 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3080 if (NILP (new_value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3081 f->gamma = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3082 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3083 /* The value 0.4545 is the normal viewing gamma. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3084 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3085 else
71980
423c880b693f (x_set_line_spacing, x_set_screen_gamma): Use signal_error.
Kim F. Storm <storm@cua.dk>
parents: 70732
diff changeset
3086 signal_error ("Invalid screen-gamma", new_value);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3087
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3088 clear_face_cache (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3089 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3090
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3091
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3092 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3093 x_set_font (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3094 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3095 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3096 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3097 Lisp_Object result;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3098 Lisp_Object fontset_name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3099 Lisp_Object frame;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3100 int old_fontset = FRAME_FONTSET(f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3101
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3102 #ifdef USE_FONT_BACKEND
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3103 if (enable_font_backend)
90465
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3104 {
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3105 int fontset = -1;
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3106 Lisp_Object font_object;
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3107
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3108 /* ARG is a fontset name, a font name, or a font object.
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3109 In the last case, this function never fail. */
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3110 if (STRINGP (arg))
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3111 {
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3112 fontset = fs_query_fontset (arg, Qnil);
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3113 if (fontset < 0)
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3114 font_object = font_open_by_name (f, SDATA (arg));
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3115 else if (fontset > 0)
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3116 {
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3117 Lisp_Object ascii_font = fontset_ascii (fontset);
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3118
90486
f0ccc964a392 (x_set_font) [USE_FONT_BACKEND]: Fix argument to
Kenichi Handa <handa@m17n.org>
parents: 90465
diff changeset
3119 font_object = font_open_by_name (f, SDATA (ascii_font));
90465
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3120 }
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3121 }
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3122 else
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3123 font_object = arg;
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3124
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3125 if (fontset < 0 && ! NILP (font_object))
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3126 fontset = new_fontset_from_font (font_object);
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3127
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3128 if (fontset == 0)
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3129 /* Refuse the default fontset. */
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3130 result = Qt;
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3131 else if (NILP (font_object))
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3132 result = Qnil;
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3133 else
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3134 result = x_new_fontset2 (f, fontset, font_object);
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3135 }
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3136 else
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3137 {
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3138 #endif /* USE_FONT_BACKEND */
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3139 CHECK_STRING (arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3140
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3141 fontset_name = Fquery_fontset (arg, Qnil);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3142
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3143 BLOCK_INPUT;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3144 result = (STRINGP (fontset_name)
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 88351
diff changeset
3145 ? x_new_fontset (f, fontset_name)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 88351
diff changeset
3146 : x_new_fontset (f, arg));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3147 UNBLOCK_INPUT;
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3148 #ifdef USE_FONT_BACKEND
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3149 }
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3150 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3151
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3152 if (EQ (result, Qnil))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3153 error ("Font `%s' is not defined", SDATA (arg));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3154 else if (EQ (result, Qt))
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 88351
diff changeset
3155 error ("The default fontset can't be used for a frame font");
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3156 else if (STRINGP (result))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3157 {
60512
d82c0ae36f1e (x_set_font): Call set_default_ascii_font if an
Kenichi Handa <handa@m17n.org>
parents: 59146
diff changeset
3158 set_default_ascii_font (result);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3159 if (STRINGP (fontset_name))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3160 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3161 /* Fontset names are built from ASCII font names, so the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3162 names may be equal despite there was a change. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3163 if (old_fontset == FRAME_FONTSET (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3164 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3165 }
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 88351
diff changeset
3166 store_frame_param (f, Qfont, result);
90386
2ecafc6d5db7 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-58
Miles Bader <miles@gnu.org>
parents: 90299 70198
diff changeset
3167
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 88351
diff changeset
3168 if (!NILP (Fequal (result, oldval)))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3169 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3170
70198
29a0b82dbf7a (x_set_font): Clear f->n_tool_bar_rows and current frame
Kim F. Storm <storm@cua.dk>
parents: 68918
diff changeset
3171 /* Recalculate toolbar height. */
29a0b82dbf7a (x_set_font): Clear f->n_tool_bar_rows and current frame
Kim F. Storm <storm@cua.dk>
parents: 68918
diff changeset
3172 f->n_tool_bar_rows = 0;
29a0b82dbf7a (x_set_font): Clear f->n_tool_bar_rows and current frame
Kim F. Storm <storm@cua.dk>
parents: 68918
diff changeset
3173 /* Ensure we redraw it. */
29a0b82dbf7a (x_set_font): Clear f->n_tool_bar_rows and current frame
Kim F. Storm <storm@cua.dk>
parents: 68918
diff changeset
3174 clear_current_matrices (f);
29a0b82dbf7a (x_set_font): Clear f->n_tool_bar_rows and current frame
Kim F. Storm <storm@cua.dk>
parents: 68918
diff changeset
3175
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3176 recompute_basic_faces (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3177 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3178 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3179 abort ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3180
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3181 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3182
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3183 /* Don't call `face-set-after-frame-default' when faces haven't been
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3184 initialized yet. This is the case when called from
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3185 Fx_create_frame. In that case, the X widget or window doesn't
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3186 exist either, and we can end up in x_report_frame_params with a
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3187 null widget which gives a segfault. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3188 if (FRAME_FACE_CACHE (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3189 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3190 XSETFRAME (frame, f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3191 call1 (Qface_set_after_frame_default, frame);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3192 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3193 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3194
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3195
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3196 #ifdef USE_FONT_BACKEND
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3197 void
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3198 x_set_font_backend (f, new_value, old_value)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3199 struct frame *f;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3200 Lisp_Object new_value, old_value;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3201 {
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3202 if (! NILP (new_value)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3203 && !CONSP (new_value))
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3204 {
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3205 char *p0, *p1;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3206
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3207 CHECK_STRING (new_value);
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3208 p0 = p1 = SDATA (new_value);
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3209 new_value = Qnil;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3210 while (*p0)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3211 {
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3212 while (*p1 && *p1 != ',') p1++;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3213 if (p0 < p1)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3214 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3215 new_value);
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3216 if (*p1)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3217 p1++;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3218 p0 = p1;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3219 }
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3220 new_value = Fnreverse (new_value);
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3221 }
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3222
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3223 if (! NILP (old_value) && ! NILP (Fequal (old_value, new_value)))
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3224 return;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3225
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3226 if (FRAME_FONT_OBJECT (f))
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3227 {
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3228 free_all_realized_faces (Qnil);
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3229 Fclear_font_cache ();
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3230 }
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3231
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3232 new_value = font_update_drivers (f, new_value);
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3233 if (NILP (new_value))
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3234 error ("No font backend available");
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3235 store_frame_param (f, Qfont_backend, new_value);
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3236
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3237 if (FRAME_FONT_OBJECT (f))
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3238 {
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3239 Lisp_Object frame;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3240
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3241 XSETFRAME (frame, f);
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3242 x_set_font (f, Fframe_parameter (frame, Qfont), Qnil);
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3243 ++face_change_count;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3244 ++windows_or_buffers_changed;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3245 }
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3246 }
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3247 #endif /* USE_FONT_BACKEND */
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3248
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3249
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3250 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3251 x_set_fringe_width (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3252 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3253 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3254 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3255 compute_fringe_widths (f, 1);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3256 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3257
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3258 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3259 x_set_border_width (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3260 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3261 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3262 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3263 CHECK_NUMBER (arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3264
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3265 if (XINT (arg) == f->border_width)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3266 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3267
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3268 if (FRAME_X_WINDOW (f) != 0)
70647
1cadc44e0431 (x_set_border_width): Fix error message to say "frame", not "window".
Eli Zaretskii <eliz@gnu.org>
parents: 70198
diff changeset
3269 error ("Cannot change the border width of a frame");
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3270
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3271 f->border_width = XINT (arg);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3272 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3273
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3274 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3275 x_set_internal_border_width (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3276 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3277 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3278 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3279 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3280
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3281 CHECK_NUMBER (arg);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3282 FRAME_INTERNAL_BORDER_WIDTH (f) = XINT (arg);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3283 if (FRAME_INTERNAL_BORDER_WIDTH (f) < 0)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3284 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3285
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3286 #ifdef USE_X_TOOLKIT
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3287 if (FRAME_X_OUTPUT (f)->edit_widget)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3288 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3289 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3290
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3291 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3292 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3293
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3294 if (FRAME_X_WINDOW (f) != 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3295 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3296 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3297 SET_FRAME_GARBAGED (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3298 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3299 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3300 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3301 SET_FRAME_GARBAGED (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3302 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3303
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3304 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3305 x_set_visibility (f, value, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3306 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3307 Lisp_Object value, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3308 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3309 Lisp_Object frame;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3310 XSETFRAME (frame, f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3311
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3312 if (NILP (value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3313 Fmake_frame_invisible (frame, Qt);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3314 else if (EQ (value, Qicon))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3315 Ficonify_frame (frame);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3316 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3317 Fmake_frame_visible (frame);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3318 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3319
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3320 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3321 x_set_autoraise (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3322 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3323 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3324 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3325 f->auto_raise = !EQ (Qnil, arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3326 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3327
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3328 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3329 x_set_autolower (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3330 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3331 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3332 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3333 f->auto_lower = !EQ (Qnil, arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3334 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3335
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3336 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3337 x_set_unsplittable (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3338 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3339 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3340 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3341 f->no_split = !NILP (arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3342 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3343
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3344 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3345 x_set_vertical_scroll_bars (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3346 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3347 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3348 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3349 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3350 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3351 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3352 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3353 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3354 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3355 = (NILP (arg)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3356 ? vertical_scroll_bar_none
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3357 : EQ (Qleft, arg)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3358 ? vertical_scroll_bar_left
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3359 : EQ (Qright, arg)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3360 ? vertical_scroll_bar_right
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3361 : EQ (Qleft, Vdefault_frame_scroll_bars)
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3362 ? vertical_scroll_bar_left
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3363 : EQ (Qright, Vdefault_frame_scroll_bars)
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3364 ? vertical_scroll_bar_right
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3365 : vertical_scroll_bar_none);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3366
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3367 /* We set this parameter before creating the X window for the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3368 frame, so we can get the geometry right from the start.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3369 However, if the window hasn't been created yet, we shouldn't
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3370 call x_set_window_size. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3371 if (FRAME_X_WINDOW (f))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3372 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3373 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3374 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3375 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3376
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3377 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3378 x_set_scroll_bar_width (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3379 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3380 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3381 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3382 int wid = FRAME_COLUMN_WIDTH (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3383
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3384 if (NILP (arg))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3385 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3386 x_set_scroll_bar_default_width (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3387
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3388 if (FRAME_X_WINDOW (f))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3389 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3390 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3391 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3392 else if (INTEGERP (arg) && XINT (arg) > 0
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3393 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3394 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3395 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3396 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3397
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3398 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = XFASTINT (arg);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3399 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3400 if (FRAME_X_WINDOW (f))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3401 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3402 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3403 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3404
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3405 change_frame_size (f, 0, FRAME_COLS (f), 0, 0, 0);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3406 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3407 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3408 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3409
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3410
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3411
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3412 /* Return non-nil if frame F wants a bitmap icon. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3413
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3414 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3415 x_icon_type (f)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3416 FRAME_PTR f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3417 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3418 Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3419
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3420 tem = assq_no_quit (Qicon_type, f->param_alist);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3421 if (CONSP (tem))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3422 return XCDR (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3423 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3424 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3425 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3426
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3427
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3428 /* Subroutines of creating an X frame. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3429
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3430 /* Make sure that Vx_resource_name is set to a reasonable value.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3431 Fix it up, or set it to `emacs' if it is too hopeless. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3432
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3433 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3434 validate_x_resource_name ()
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3435 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3436 int len = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3437 /* Number of valid characters in the resource name. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3438 int good_count = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3439 /* Number of invalid characters in the resource name. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3440 int bad_count = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3441 Lisp_Object new;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3442 int i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3443
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3444 if (!STRINGP (Vx_resource_class))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3445 Vx_resource_class = build_string (EMACS_CLASS);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3446
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3447 if (STRINGP (Vx_resource_name))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3448 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3449 unsigned char *p = SDATA (Vx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3450 int i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3451
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3452 len = SBYTES (Vx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3453
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3454 /* Only letters, digits, - and _ are valid in resource names.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3455 Count the valid characters and count the invalid ones. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3456 for (i = 0; i < len; i++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3457 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3458 int c = p[i];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3459 if (! ((c >= 'a' && c <= 'z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3460 || (c >= 'A' && c <= 'Z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3461 || (c >= '0' && c <= '9')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3462 || c == '-' || c == '_'))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3463 bad_count++;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3464 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3465 good_count++;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3466 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3467 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3468 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3469 /* Not a string => completely invalid. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3470 bad_count = 5, good_count = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3471
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3472 /* If name is valid already, return. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3473 if (bad_count == 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3474 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3475
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3476 /* If name is entirely invalid, or nearly so, use `emacs'. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3477 if (good_count == 0
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3478 || (good_count == 1 && bad_count > 0))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3479 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3480 Vx_resource_name = build_string ("emacs");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3481 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3482 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3483
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3484 /* Name is partly valid. Copy it and replace the invalid characters
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3485 with underscores. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3486
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3487 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3488
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3489 for (i = 0; i < len; i++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3490 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3491 int c = SREF (new, i);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3492 if (! ((c >= 'a' && c <= 'z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3493 || (c >= 'A' && c <= 'Z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3494 || (c >= '0' && c <= '9')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3495 || c == '-' || c == '_'))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3496 SSET (new, i, '_');
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3497 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3498 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3499
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3500
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3501 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3502 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3503
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3504
63698
e7e58f0947fe (make_frame_without_minibuffer): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63643
diff changeset
3505 /* Get specified attribute from resource database RDB.
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3506 See Fx_get_resource below for other parameters. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3507
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3508 static Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3509 xrdb_get_resource (rdb, attribute, class, component, subclass)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3510 XrmDatabase rdb;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3511 Lisp_Object attribute, class, component, subclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3512 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3513 register char *value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3514 char *name_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3515 char *class_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3516
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3517 CHECK_STRING (attribute);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3518 CHECK_STRING (class);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3519
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3520 if (!NILP (component))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3521 CHECK_STRING (component);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3522 if (!NILP (subclass))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3523 CHECK_STRING (subclass);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3524 if (NILP (component) != NILP (subclass))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3525 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3526
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3527 validate_x_resource_name ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3528
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3529 /* Allocate space for the components, the dots which separate them,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3530 and the final '\0'. Make them big enough for the worst case. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3531 name_key = (char *) alloca (SBYTES (Vx_resource_name)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3532 + (STRINGP (component)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3533 ? SBYTES (component) : 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3534 + SBYTES (attribute)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3535 + 3);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3536
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3537 class_key = (char *) alloca (SBYTES (Vx_resource_class)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3538 + SBYTES (class)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3539 + (STRINGP (subclass)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3540 ? SBYTES (subclass) : 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3541 + 3);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3542
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3543 /* Start with emacs.FRAMENAME for the name (the specific one)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3544 and with `Emacs' for the class key (the general one). */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3545 strcpy (name_key, SDATA (Vx_resource_name));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3546 strcpy (class_key, SDATA (Vx_resource_class));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3547
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3548 strcat (class_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3549 strcat (class_key, SDATA (class));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3550
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3551 if (!NILP (component))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3552 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3553 strcat (class_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3554 strcat (class_key, SDATA (subclass));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3555
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3556 strcat (name_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3557 strcat (name_key, SDATA (component));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3558 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3559
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3560 strcat (name_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3561 strcat (name_key, SDATA (attribute));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3562
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3563 value = x_get_string_resource (rdb, name_key, class_key);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3564
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3565 if (value != (char *) 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3566 return build_string (value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3567 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3568 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3569 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3570
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3571
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3572 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3573 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3574 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3575 class, where INSTANCE is the name under which Emacs was invoked, or
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3576 the name specified by the `-name' or `-rn' command-line arguments.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3577
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3578 The optional arguments COMPONENT and SUBCLASS add to the key and the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3579 class, respectively. You must specify both of them or neither.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3580 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3581 and the class is `Emacs.CLASS.SUBCLASS'. */)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3582 (attribute, class, component, subclass)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3583 Lisp_Object attribute, class, component, subclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3584 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3585 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3586 check_x ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3587 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3588
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3589 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3590 attribute, class, component, subclass);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3591 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3592
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3593 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3594
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3595 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3596 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
50375
8be64cfd36fe (display_x_get_resource): Use Display_Info argument, not x_display_info.
Juanma Barranquero <lekktu@gmail.com>
parents: 50373
diff changeset
3597 Display_Info *dpyinfo;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3598 Lisp_Object attribute, class, component, subclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3599 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3600 return xrdb_get_resource (dpyinfo->xrdb,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3601 attribute, class, component, subclass);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3602 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3603
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3604 /* Used when C code wants a resource value. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3605
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3606 char *
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3607 x_get_resource_string (attribute, class)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3608 char *attribute, *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3609 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3610 char *name_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3611 char *class_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3612 struct frame *sf = SELECTED_FRAME ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3613
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3614 /* Allocate space for the components, the dots which separate them,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3615 and the final '\0'. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3616 name_key = (char *) alloca (SBYTES (Vinvocation_name)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3617 + strlen (attribute) + 2);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3618 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3619 + strlen (class) + 2);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3620
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3621 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3622 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3623
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3624 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3625 name_key, class_key);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3626 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3627
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3628
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3629 /* Return the value of parameter PARAM.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3630
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3631 First search ALIST, then Vdefault_frame_alist, then the X defaults
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3632 database, using ATTRIBUTE as the attribute name and CLASS as its class.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3633
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3634 Convert the resource to the type specified by desired_type.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3635
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3636 If no default is specified, return Qunbound. If you call
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3637 x_get_arg, make sure you deal with Qunbound in a reasonable way,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3638 and don't let it get stored in any Lisp-visible variables! */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3639
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3640 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3641 x_get_arg (dpyinfo, alist, param, attribute, class, type)
63698
e7e58f0947fe (make_frame_without_minibuffer): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63643
diff changeset
3642 Display_Info *dpyinfo;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3643 Lisp_Object alist, param;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3644 char *attribute;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3645 char *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3646 enum resource_types type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3647 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3648 register Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3649
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3650 tem = Fassq (param, alist);
68395
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3651
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3652 if (!NILP (tem))
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3653 {
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3654 /* If we find this parm in ALIST, clear it out
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3655 so that it won't be "left over" at the end. */
68918
5aa4a7ce059a (x_get_arg): Clear out PARAM in ALIST also on Mac.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents: 68905
diff changeset
3656 #ifndef WINDOWSNT /* w32fns.c has not yet been changed to cope with this. */
68905
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3657 Lisp_Object tail;
68395
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3658 XSETCAR (tem, Qnil);
68905
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3659 /* In case the parameter appears more than once in the alist,
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3660 clear it out. */
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3661 for (tail = alist; CONSP (tail); tail = XCDR (tail))
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3662 if (CONSP (XCAR (tail))
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3663 && EQ (XCAR (XCAR (tail)), param))
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3664 XSETCAR (XCAR (tail), Qnil);
68395
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3665 #endif
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3666 }
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3667 else
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3668 tem = Fassq (param, Vdefault_frame_alist);
68395
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3669
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3670 /* If it wasn't specified in ALIST or the Lisp-level defaults,
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3671 look in the X resources. */
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3672 if (EQ (tem, Qnil))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3673 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3674 if (attribute)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3675 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3676 tem = display_x_get_resource (dpyinfo,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3677 build_string (attribute),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3678 build_string (class),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3679 Qnil, Qnil);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3680
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3681 if (NILP (tem))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3682 return Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3683
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3684 switch (type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3685 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3686 case RES_TYPE_NUMBER:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3687 return make_number (atoi (SDATA (tem)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3688
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3689 case RES_TYPE_FLOAT:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3690 return make_float (atof (SDATA (tem)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3691
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3692 case RES_TYPE_BOOLEAN:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3693 tem = Fdowncase (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3694 if (!strcmp (SDATA (tem), "on")
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3695 || !strcmp (SDATA (tem), "true"))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3696 return Qt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3697 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3698 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3699
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3700 case RES_TYPE_STRING:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3701 return tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3702
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3703 case RES_TYPE_SYMBOL:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3704 /* As a special case, we map the values `true' and `on'
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3705 to Qt, and `false' and `off' to Qnil. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3706 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3707 Lisp_Object lower;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3708 lower = Fdowncase (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3709 if (!strcmp (SDATA (lower), "on")
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3710 || !strcmp (SDATA (lower), "true"))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3711 return Qt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3712 else if (!strcmp (SDATA (lower), "off")
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3713 || !strcmp (SDATA (lower), "false"))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3714 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3715 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3716 return Fintern (tem, Qnil);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3717 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3718
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3719 default:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3720 abort ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3721 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3722 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3723 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3724 return Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3725 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3726 return Fcdr (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3727 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3728
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3729 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3730 x_frame_get_arg (f, alist, param, attribute, class, type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3731 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3732 Lisp_Object alist, param;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3733 char *attribute;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3734 char *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3735 enum resource_types type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3736 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3737 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3738 alist, param, attribute, class, type);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3739 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3740
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3741 /* Like x_frame_get_arg, but also record the value in f->param_alist. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3742
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3743 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3744 x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3745 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3746 Lisp_Object alist, param;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3747 char *attribute;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3748 char *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3749 enum resource_types type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3750 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3751 Lisp_Object value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3752
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3753 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3754 attribute, class, type);
68242
c0002338a5e8 (x_frame_get_and_record_arg): Don't record Qunbound value in f->param_alist.
Richard M. Stallman <rms@gnu.org>
parents: 65976
diff changeset
3755 if (! NILP (value) && ! EQ (value, Qunbound))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3756 store_frame_param (f, param, value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3757
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3758 return value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3759 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3760
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3761
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3762 /* Record in frame F the specified or default value according to ALIST
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3763 of the parameter named PROP (a Lisp symbol).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3764 If no value is specified for PROP, look for an X default for XPROP
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3765 on the frame named NAME.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3766 If that is not found either, use the value DEFLT. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3767
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3768 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3769 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3770 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3771 Lisp_Object alist;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3772 Lisp_Object prop;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3773 Lisp_Object deflt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3774 char *xprop;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3775 char *xclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3776 enum resource_types type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3777 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3778 Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3779
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3780 tem = x_frame_get_arg (f, alist, prop, xprop, xclass, type);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3781 if (EQ (tem, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3782 tem = deflt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3783 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3784 return tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3785 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3786
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3787
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3788
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3789
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3790 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3791 doc: /* Parse an X-style geometry string STRING.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3792 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3793 The properties returned may include `top', `left', `height', and `width'.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3794 The value of `left' or `top' may be an integer,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3795 or a list (+ N) meaning N pixels relative to top/left corner,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3796 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3797 (string)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3798 Lisp_Object string;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3799 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3800 int geometry, x, y;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3801 unsigned int width, height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3802 Lisp_Object result;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3803
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3804 CHECK_STRING (string);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3805
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3806 geometry = XParseGeometry ((char *) SDATA (string),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3807 &x, &y, &width, &height);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3808
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3809 #if 0
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3810 if (!!(geometry & XValue) != !!(geometry & YValue))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3811 error ("Must specify both x and y position, or neither");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3812 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3813
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3814 result = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3815 if (geometry & XValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3816 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3817 Lisp_Object element;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3818
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3819 if (x >= 0 && (geometry & XNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3820 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3821 else if (x < 0 && ! (geometry & XNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3822 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3823 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3824 element = Fcons (Qleft, make_number (x));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3825 result = Fcons (element, result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3826 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3827
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3828 if (geometry & YValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3829 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3830 Lisp_Object element;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3831
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3832 if (y >= 0 && (geometry & YNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3833 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3834 else if (y < 0 && ! (geometry & YNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3835 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3836 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3837 element = Fcons (Qtop, make_number (y));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3838 result = Fcons (element, result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3839 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3840
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3841 if (geometry & WidthValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3842 result = Fcons (Fcons (Qwidth, make_number (width)), result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3843 if (geometry & HeightValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3844 result = Fcons (Fcons (Qheight, make_number (height)), result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3845
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3846 return result;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3847 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3848
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3849 /* Calculate the desired size and position of frame F.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3850 Return the flags saying which aspects were specified.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3851
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3852 Also set the win_gravity and size_hint_flags of F.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3853
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3854 Adjust height for toolbar if TOOLBAR_P is 1.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3855
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3856 This function does not make the coordinates positive. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3857
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3858 #define DEFAULT_ROWS 40
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3859 #define DEFAULT_COLS 80
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3860
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3861 int
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3862 x_figure_window_size (f, parms, toolbar_p)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3863 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3864 Lisp_Object parms;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3865 int toolbar_p;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3866 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3867 register Lisp_Object tem0, tem1, tem2;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3868 long window_prompting = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3869 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3870
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3871 /* Default values if we fall through.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3872 Actually, if that happens we should get
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3873 window manager prompting. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3874 SET_FRAME_COLS (f, DEFAULT_COLS);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3875 FRAME_LINES (f) = DEFAULT_ROWS;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3876 /* Window managers expect that if program-specified
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3877 positions are not (0,0), they're intentional, not defaults. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3878 f->top_pos = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3879 f->left_pos = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3880
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3881 /* Ensure that old new_text_cols and new_text_lines will not override the
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3882 values set here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3883 /* ++KFS: This was specific to W32, but seems ok for all platforms */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3884 f->new_text_cols = f->new_text_lines = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3885
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3886 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3887 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3888 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3889 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3890 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3891 if (!EQ (tem0, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3892 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3893 CHECK_NUMBER (tem0);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3894 FRAME_LINES (f) = XINT (tem0);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3895 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3896 if (!EQ (tem1, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3897 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3898 CHECK_NUMBER (tem1);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3899 SET_FRAME_COLS (f, XINT (tem1));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3900 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3901 if (!NILP (tem2) && !EQ (tem2, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3902 window_prompting |= USSize;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3903 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3904 window_prompting |= PSize;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3905 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3906
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3907 f->scroll_bar_actual_width
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3908 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3909
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3910 /* This used to be done _before_ calling x_figure_window_size, but
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3911 since the height is reset here, this was really a no-op. I
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3912 assume that moving it here does what Gerd intended (although he
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3913 no longer can remember what that was... ++KFS, 2003-03-25. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3914
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3915 /* Add the tool-bar height to the initial frame height so that the
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3916 user gets a text display area of the size he specified with -g or
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3917 via .Xdefaults. Later changes of the tool-bar height don't
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3918 change the frame size. This is done so that users can create
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3919 tall Emacs frames without having to guess how tall the tool-bar
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3920 will get. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3921 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3922 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3923 int margin, relief, bar_height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3924
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3925 relief = (tool_bar_button_relief >= 0
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3926 ? tool_bar_button_relief
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3927 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3928
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3929 if (INTEGERP (Vtool_bar_button_margin)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3930 && XINT (Vtool_bar_button_margin) > 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3931 margin = XFASTINT (Vtool_bar_button_margin);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3932 else if (CONSP (Vtool_bar_button_margin)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3933 && INTEGERP (XCDR (Vtool_bar_button_margin))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3934 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3935 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3936 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3937 margin = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3938
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3939 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3940 FRAME_LINES (f) += (bar_height + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3941 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3942
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3943 compute_fringe_widths (f, 0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3944
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3945 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, FRAME_COLS (f));
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3946 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3947
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3948 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3949 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3950 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3951 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3952 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3953 if (EQ (tem0, Qminus))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3954 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3955 f->top_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3956 window_prompting |= YNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3957 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3958 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3959 && CONSP (XCDR (tem0))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3960 && INTEGERP (XCAR (XCDR (tem0))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3961 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3962 f->top_pos = - XINT (XCAR (XCDR (tem0)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3963 window_prompting |= YNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3964 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3965 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3966 && CONSP (XCDR (tem0))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3967 && INTEGERP (XCAR (XCDR (tem0))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3968 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3969 f->top_pos = XINT (XCAR (XCDR (tem0)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3970 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3971 else if (EQ (tem0, Qunbound))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3972 f->top_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3973 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3974 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3975 CHECK_NUMBER (tem0);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3976 f->top_pos = XINT (tem0);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3977 if (f->top_pos < 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3978 window_prompting |= YNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3979 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3980
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3981 if (EQ (tem1, Qminus))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3982 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3983 f->left_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3984 window_prompting |= XNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3985 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3986 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3987 && CONSP (XCDR (tem1))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3988 && INTEGERP (XCAR (XCDR (tem1))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3989 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3990 f->left_pos = - XINT (XCAR (XCDR (tem1)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3991 window_prompting |= XNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3992 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3993 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3994 && CONSP (XCDR (tem1))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3995 && INTEGERP (XCAR (XCDR (tem1))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3996 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3997 f->left_pos = XINT (XCAR (XCDR (tem1)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3998 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3999 else if (EQ (tem1, Qunbound))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4000 f->left_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4001 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4002 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4003 CHECK_NUMBER (tem1);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4004 f->left_pos = XINT (tem1);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4005 if (f->left_pos < 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4006 window_prompting |= XNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4007 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4008
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4009 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4010 window_prompting |= USPosition;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4011 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4012 window_prompting |= PPosition;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4013 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4014
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4015 if (f->want_fullscreen != FULLSCREEN_NONE)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4016 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4017 int left, top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4018 int width, height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4019
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4020 /* It takes both for some WM:s to place it where we want */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4021 window_prompting = USPosition | PPosition;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4022 x_fullscreen_adjust (f, &width, &height, &top, &left);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4023 FRAME_COLS (f) = width;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4024 FRAME_LINES (f) = height;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4025 FRAME_PIXEL_WIDTH (f) = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4026 FRAME_PIXEL_HEIGHT (f) = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4027 f->left_pos = left;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4028 f->top_pos = top;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4029 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4030
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4031 if (window_prompting & XNegative)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4032 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4033 if (window_prompting & YNegative)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4034 f->win_gravity = SouthEastGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4035 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4036 f->win_gravity = NorthEastGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4037 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4038 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4039 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4040 if (window_prompting & YNegative)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4041 f->win_gravity = SouthWestGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4042 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4043 f->win_gravity = NorthWestGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4044 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4045
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4046 f->size_hint_flags = window_prompting;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4047
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4048 return window_prompting;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4049 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4050
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4051
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4052
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4053 #endif /* HAVE_WINDOW_SYSTEM */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4054
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4055
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4056
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4057 /***********************************************************************
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4058 Initialization
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4059 ***********************************************************************/
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4060
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21359
diff changeset
4061 void
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4062 syms_of_frame ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4063 {
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4064 Qframep = intern ("framep");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4065 staticpro (&Qframep);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4066 Qframe_live_p = intern ("frame-live-p");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4067 staticpro (&Qframe_live_p);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4068 Qheight = intern ("height");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4069 staticpro (&Qheight);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4070 Qicon = intern ("icon");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4071 staticpro (&Qicon);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4072 Qminibuffer = intern ("minibuffer");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4073 staticpro (&Qminibuffer);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4074 Qmodeline = intern ("modeline");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4075 staticpro (&Qmodeline);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4076 Qonly = intern ("only");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4077 staticpro (&Qonly);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4078 Qwidth = intern ("width");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4079 staticpro (&Qwidth);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4080 Qgeometry = intern ("geometry");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4081 staticpro (&Qgeometry);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4082 Qicon_left = intern ("icon-left");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4083 staticpro (&Qicon_left);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4084 Qicon_top = intern ("icon-top");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4085 staticpro (&Qicon_top);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4086 Qleft = intern ("left");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4087 staticpro (&Qleft);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4088 Qright = intern ("right");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4089 staticpro (&Qright);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4090 Quser_position = intern ("user-position");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4091 staticpro (&Quser_position);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4092 Quser_size = intern ("user-size");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4093 staticpro (&Quser_size);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4094 Qwindow_id = intern ("window-id");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4095 staticpro (&Qwindow_id);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4096 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4097 Qouter_window_id = intern ("outer-window-id");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4098 staticpro (&Qouter_window_id);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4099 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4100 Qparent_id = intern ("parent-id");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4101 staticpro (&Qparent_id);
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4102 Qx = intern ("x");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4103 staticpro (&Qx);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4104 Qw32 = intern ("w32");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4105 staticpro (&Qw32);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4106 Qpc = intern ("pc");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4107 staticpro (&Qpc);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4108 Qmac = intern ("mac");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4109 staticpro (&Qmac);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4110 Qvisible = intern ("visible");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4111 staticpro (&Qvisible);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4112 Qbuffer_predicate = intern ("buffer-predicate");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4113 staticpro (&Qbuffer_predicate);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4114 Qbuffer_list = intern ("buffer-list");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4115 staticpro (&Qbuffer_list);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4116 Qdisplay_type = intern ("display-type");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4117 staticpro (&Qdisplay_type);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4118 Qbackground_mode = intern ("background-mode");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4119 staticpro (&Qbackground_mode);
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
4120 Qtty_color_mode = intern ("tty-color-mode");
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
4121 staticpro (&Qtty_color_mode);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4122
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4123 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4124 staticpro (&Qface_set_after_frame_default);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4125
73253
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
4126 Qinhibit_face_set_after_frame_default
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
4127 = intern ("inhibit-face-set-after-frame-default");
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
4128 staticpro (&Qinhibit_face_set_after_frame_default);
108f4a391eaa * frame.c (Qinhibit_face_set_after_frame_default): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 72364
diff changeset
4129
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4130 Qfullwidth = intern ("fullwidth");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4131 staticpro (&Qfullwidth);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4132 Qfullheight = intern ("fullheight");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4133 staticpro (&Qfullheight);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4134 Qfullboth = intern ("fullboth");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4135 staticpro (&Qfullboth);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4136 Qx_resource_name = intern ("x-resource-name");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4137 staticpro (&Qx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4138
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4139 Qx_frame_parameter = intern ("x-frame-parameter");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4140 staticpro (&Qx_frame_parameter);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4141
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4142 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4143 int i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4144
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4145 for (i = 0; i < sizeof (frame_parms) / sizeof (frame_parms[0]); i++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4146 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4147 Lisp_Object v = intern (frame_parms[i].name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4148 if (frame_parms[i].variable)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4149 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4150 *frame_parms[i].variable = v;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4151 staticpro (frame_parms[i].variable);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4152 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4153 Fput (v, Qx_frame_parameter, make_number (i));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4154 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4155 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4156
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
4157 #ifdef HAVE_WINDOW_SYSTEM
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4158 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4159 doc: /* The name Emacs uses to look up X resources.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4160 `x-get-resource' uses this as the first component of the instance name
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4161 when requesting resource values.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4162 Emacs initially sets `x-resource-name' to the name under which Emacs
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4163 was invoked, or to the value specified with the `-name' or `-rn'
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4164 switches, if present.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4165
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4166 It may be useful to bind this variable locally around a call
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4167 to `x-get-resource'. See also the variable `x-resource-class'. */);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4168 Vx_resource_name = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4169
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4170 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4171 doc: /* The class Emacs uses to look up X resources.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4172 `x-get-resource' uses this as the first component of the instance class
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4173 when requesting resource values.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4174
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4175 Emacs initially sets `x-resource-class' to "Emacs".
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4176
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4177 Setting this variable permanently is not a reasonable thing to do,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4178 but binding this variable locally around a call to `x-get-resource'
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4179 is a reasonable practice. See also the variable `x-resource-name'. */);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4180 Vx_resource_class = build_string (EMACS_CLASS);
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
4181 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4182
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4183 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4184 doc: /* Alist of default values for frame creation.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4185 These may be set in your init file, like this:
57971
c6da09b5384b (syms_of_frame): Fix the example in the doc string.
Eli Zaretskii <eliz@gnu.org>
parents: 56517
diff changeset
4186 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1)))
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4187 These override values given in window system configuration data,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4188 including X Windows' defaults database.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4189 For values specific to the first Emacs frame, see `initial-frame-alist'.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4190 For values specific to the separate minibuffer frame, see
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4191 `minibuffer-frame-alist'.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4192 The `menu-bar-lines' element of the list controls whether new frames
43716
bb64514bd572 2002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43442
diff changeset
4193 have menu bars; `menu-bar-mode' works by altering this element.
43717
a459b58a6d95 Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 43716
diff changeset
4194 Setting this variable does not affect existing frames, only new ones. */);
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4195 Vdefault_frame_alist = Qnil;
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4196
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4197 DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4198 doc: /* Default position of scroll bars on this window-system. */);
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4199 #ifdef HAVE_WINDOW_SYSTEM
59146
9bde7721ad0f * dispextern.h: Change HAVE_CARBON to MAC_OS.
Steven Tamm <steventamm@mac.com>
parents: 58265
diff changeset
4200 #if defined(HAVE_NTGUI) || defined(MAC_OS)
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4201 /* MS-Windows has scroll bars on the right by default. */
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4202 Vdefault_frame_scroll_bars = Qright;
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4203 #else
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4204 Vdefault_frame_scroll_bars = Qleft;
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4205 #endif
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4206 #else
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4207 Vdefault_frame_scroll_bars = Qnil;
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4208 #endif
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4209
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4210 Qinhibit_default_face_x_resources
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4211 = intern ("inhibit-default-face-x-resources");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4212 staticpro (&Qinhibit_default_face_x_resources);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4213
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4214 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4215 doc: /* The initial frame-object, which represents Emacs's stdout. */);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4216
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4217 DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4218 doc: /* Non-nil if all of emacs is iconified and frame updates are not needed. */);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4219 Vemacs_iconified = Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4220
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
4221 DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4222 doc: /* If non-nil, function to transform normal value of `mouse-position'.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4223 `mouse-position' calls this function, passing its usual return value as
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4224 argument, and returns whatever this function returns.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4225 This abnormal hook exists for the benefit of packages like `xt-mouse.el'
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4226 which need to do mouse handling at the Lisp level. */);
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
4227 Vmouse_position_function = Qnil;
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
4228
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4229 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
4230 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4231 If the value is an integer, highlighting is only shown after moving the
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4232 mouse, while keyboard input turns off the highlight even when the mouse
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4233 is over the clickable text. However, the mouse shape still indicates
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4234 when the mouse is over clickable text. */);
43442
400971c52790 (syms_of_frame): Change mouse-highlight default to t.
Kim F. Storm <storm@cua.dk>
parents: 43366
diff changeset
4235 Vmouse_highlight = Qt;
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4236
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4237 DEFVAR_LISP ("delete-frame-functions", &Vdelete_frame_functions,
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4238 doc: /* Functions to be run before deleting a frame.
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4239 The functions are run with one arg, the frame to be deleted.
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4240 See `delete-frame'. */);
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4241 Vdelete_frame_functions = Qnil;
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4242
11779
6234b3610a6f Vdefault_minibuffer_frame is now part of KBOARD instead
Karl Heuer <kwzh@gnu.org>
parents: 11775
diff changeset
4243 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4244 doc: /* Minibufferless frames use this frame's minibuffer.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4245
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4246 Emacs cannot create minibufferless frames unless this is set to an
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4247 appropriate surrogate.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4248
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4249 Emacs consults this variable only when creating minibufferless
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4250 frames; once the frame is created, it sticks with its assigned
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4251 minibuffer, no matter what this variable is set to. This means that
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4252 this variable doesn't necessarily say anything meaningful about the
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4253 current set of frames, or where the minibuffer is currently being
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4254 displayed.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4255
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4256 This variable is local to the current terminal and cannot be buffer-local. */);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4257
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4258 staticpro (&Vframe_list);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4259
11169
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
4260 defsubr (&Sactive_minibuffer_window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4261 defsubr (&Sframep);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
4262 defsubr (&Sframe_live_p);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
4263 defsubr (&Smake_terminal_frame);
2298
872a3a2c3fed * frame.c (Fhandle_switch_frame): Renamed from Fselect_frame.
Jim Blandy <jimb@redhat.com>
parents: 2282
diff changeset
4264 defsubr (&Shandle_switch_frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4265 defsubr (&Sselect_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4266 defsubr (&Sselected_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4267 defsubr (&Swindow_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4268 defsubr (&Sframe_root_window);
7570
20cbb114367b (syms_of_frame): Set up frame-first-window as Lisp fn.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
4269 defsubr (&Sframe_first_window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4270 defsubr (&Sframe_selected_window);
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
4271 defsubr (&Sset_frame_selected_window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4272 defsubr (&Sframe_list);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4273 defsubr (&Snext_frame);
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
4274 defsubr (&Sprevious_frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4275 defsubr (&Sdelete_frame);
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
4276 defsubr (&Smouse_position);
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
4277 defsubr (&Smouse_pixel_position);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4278 defsubr (&Sset_mouse_position);
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
4279 defsubr (&Sset_mouse_pixel_position);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4280 #if 0
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4281 defsubr (&Sframe_configuration);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4282 defsubr (&Srestore_frame_configuration);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4283 #endif
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4284 defsubr (&Smake_frame_visible);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4285 defsubr (&Smake_frame_invisible);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4286 defsubr (&Siconify_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4287 defsubr (&Sframe_visible_p);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4288 defsubr (&Svisible_frame_list);
2282
f727944c11aa * frame.c (Fraise_frame, Flower_frame): Renamed from
Jim Blandy <jimb@redhat.com>
parents: 2207
diff changeset
4289 defsubr (&Sraise_frame);
f727944c11aa * frame.c (Fraise_frame, Flower_frame): Renamed from
Jim Blandy <jimb@redhat.com>
parents: 2207
diff changeset
4290 defsubr (&Slower_frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4291 defsubr (&Sredirect_frame_focus);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4292 defsubr (&Sframe_focus);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4293 defsubr (&Sframe_parameters);
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
4294 defsubr (&Sframe_parameter);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4295 defsubr (&Smodify_frame_parameters);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4296 defsubr (&Sframe_char_height);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4297 defsubr (&Sframe_char_width);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4298 defsubr (&Sframe_pixel_height);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4299 defsubr (&Sframe_pixel_width);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4300 defsubr (&Sset_frame_height);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4301 defsubr (&Sset_frame_width);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4302 defsubr (&Sset_frame_size);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4303 defsubr (&Sset_frame_position);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4304
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4305 #ifdef HAVE_WINDOW_SYSTEM
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4306 defsubr (&Sx_get_resource);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4307 defsubr (&Sx_parse_geometry);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4308 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4309
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4310 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51665
diff changeset
4311
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51665
diff changeset
4312 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51665
diff changeset
4313 (do not change this comment) */