annotate src/frame.c @ 102402:53f455933f5f

More Rmail details.
author Glenn Morris <rgm@gnu.org>
date Thu, 05 Mar 2009 03:40:35 +0000
parents a94440e70b7c
children 66d0ea986f06
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.
64770
a0d1312ede66 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64713
diff changeset
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
100825
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
3 2004, 2005, 2006, 2007, 2008, 2009 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
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94933
diff changeset
7 GNU Emacs is free software: you can redistribute it and/or modify
286
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
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94933
diff changeset
9 the Free Software Foundation, either version 3 of the License, or
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94933
diff changeset
10 (at your option) any later version.
286
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
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94933
diff changeset
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
20 #include <config.h>
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
21
7900
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
22 #include <stdio.h>
96082
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
23 #include <ctype.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
24 #include "lisp.h"
88351
aac41b50c875 Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents: 43442
diff changeset
25 #include "character.h"
21825
697991d2a2c4 Conditionally include xterm.h using HAVE_X_WINDOWS.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21524
diff changeset
26 #ifdef HAVE_X_WINDOWS
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21359
diff changeset
27 #include "xterm.h"
17032
814257735e7d Include "charset.h"
Karl Heuer <kwzh@gnu.org>
parents: 16588
diff changeset
28 #endif
27633
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27575
diff changeset
29 #ifdef WINDOWSNT
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27575
diff changeset
30 #include "w32term.h"
ab6c81c6edf8 [WINDOWSNT]: Include w32term.h.
Andrew Innes <andrewi@gnu.org>
parents: 27575
diff changeset
31 #endif
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
32 #ifdef HAVE_NS
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
33 #include "nsterm.h"
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
34 #endif
31102
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
35 #include "buffer.h"
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
36 /* 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
37 #include "commands.h"
6a0caa788013 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 29995
diff changeset
38 #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
39 #include "frame.h"
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
40 #include "blockinput.h"
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
41 #include "termchar.h"
5392
d8d5844c3ba6 Always include termhooks.h.
Richard M. Stallman <rms@gnu.org>
parents: 5231
diff changeset
42 #include "termhooks.h"
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21359
diff changeset
43 #include "dispextern.h"
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
44 #include "window.h"
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
45 #ifdef HAVE_WINDOW_SYSTEM
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
46 #include "font.h"
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
47 #include "fontset.h"
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
48 #endif
9572
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9309
diff changeset
49 #ifdef MSDOS
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9309
diff changeset
50 #include "msdos.h"
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
51 #include "dosfns.h"
9572
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9309
diff changeset
52 #endif
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 714
diff changeset
53
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
54
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
55 #ifdef HAVE_WINDOW_SYSTEM
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
56
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
57 /* 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
58
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
59 Lisp_Object Vx_resource_name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
60
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
61 /* The application class we're using in resource queries.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
62 Normally "Emacs". */
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 Lisp_Object Vx_resource_class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
65
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
66 /* Lower limit value of the frame opacity (alpha transparency). */
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
67
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
68 Lisp_Object Vframe_alpha_lower_limit;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
69
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
70 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
71
97449
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
72 #ifdef HAVE_NS
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
73 Lisp_Object Qns_parse_geometry;
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
74 #endif
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
75
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
76 Lisp_Object Qframep, Qframe_live_p;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
77 Lisp_Object Qicon, Qmodeline;
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
78 Lisp_Object Qonly;
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
79 Lisp_Object Qx, Qw32, Qmac, Qpc, Qns;
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
80 Lisp_Object Qvisible;
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
81 Lisp_Object Qdisplay_type;
31448
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
82 Lisp_Object Qbackground_mode;
91732
c33ec1f680a9 * frame.c (Qnoelisp): New symbol.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91641
diff changeset
83 Lisp_Object Qnoelisp;
50357
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 Qx_frame_parameter;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
86 Lisp_Object Qx_resource_name;
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
87 Lisp_Object Qterminal;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
88 Lisp_Object Qterminal_live_p;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
89
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
90 /* Frame parameters (set or reported). */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
91
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
92 Lisp_Object Qauto_raise, Qauto_lower;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
93 Lisp_Object Qborder_color, Qborder_width;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
94 Lisp_Object Qcursor_color, Qcursor_type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
95 Lisp_Object Qgeometry; /* Not used */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
96 Lisp_Object Qheight, Qwidth;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
97 Lisp_Object Qleft, Qright;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
98 Lisp_Object Qicon_left, Qicon_top, Qicon_type, Qicon_name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
99 Lisp_Object Qinternal_border_width;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
100 Lisp_Object Qmouse_color;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
101 Lisp_Object Qminibuffer;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
102 Lisp_Object Qscroll_bar_width, Qvertical_scroll_bars;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
103 Lisp_Object Qvisibility;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
104 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
105 Lisp_Object Qscreen_gamma;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
106 Lisp_Object Qline_spacing;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
107 Lisp_Object Quser_position, Quser_size;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
108 Lisp_Object Qwait_for_wm;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
109 Lisp_Object Qwindow_id;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
110 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
111 Lisp_Object Qouter_window_id;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
112 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
113 Lisp_Object Qparent_id;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
114 Lisp_Object Qtitle, Qname;
79048
ab853f85e4dc (Qexplicit_name): New variable.
Martin Rudalics <rudalics@gmx.at>
parents: 78984
diff changeset
115 Lisp_Object Qexplicit_name;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
116 Lisp_Object Qunsplittable;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
117 Lisp_Object Qmenu_bar_lines, Qtool_bar_lines;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
118 Lisp_Object Qleft_fringe, Qright_fringe;
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
119 Lisp_Object Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list;
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
120 Lisp_Object Qtty_color_mode;
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
121 Lisp_Object Qtty, Qtty_type;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
123 Lisp_Object Qfullscreen, Qfullwidth, Qfullheight, Qfullboth;
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
124 Lisp_Object Qfont_backend;
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
125 Lisp_Object Qalpha;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
126
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
127 Lisp_Object Qface_set_after_frame_default;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
128
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
129 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
130 Lisp_Object Vdefault_frame_alist;
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
131 Lisp_Object Vdefault_frame_scroll_bars;
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
132 Lisp_Object Vmouse_position_function;
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
133 Lisp_Object Vmouse_highlight;
93369
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
134 static Lisp_Object Vdelete_frame_functions, Qdelete_frame_functions;
78984
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
135
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
136 int focus_follows_mouse;
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
137
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
138 static void
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
139 set_menu_bar_lines_1 (window, n)
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
140 Lisp_Object window;
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
141 int n;
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
142 {
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
143 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
144
13498
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
145 XSETFASTINT (w->last_modified, 0);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
146 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
147 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
148
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
149 if (INTEGERP (w->orig_top_line))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
150 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
151 if (INTEGERP (w->orig_total_lines))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
152 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
153
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
154 /* 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
155 if (!NILP (w->vchild))
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
156 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
157
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
158 /* 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
159 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
160 {
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
161 w = XWINDOW (window);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
162 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
163 }
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
164 }
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
165
20038
bb460edc7187 (set_menu_bar_lines): Make the function external instead
Eli Zaretskii <eliz@gnu.org>
parents: 19532
diff changeset
166 void
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
167 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
168 struct frame *f;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
169 Lisp_Object value, oldval;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
170 {
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
171 int nlines;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
172 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
173
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
174 /* 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
175 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
176 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
177 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
178 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
179 return;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
180
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
181 if (INTEGERP (value))
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
182 nlines = XINT (value);
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
183 else
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
184 nlines = 0;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
185
13498
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
186 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
187 {
c10046894834 (set_menu_bar_lines): Record the fact that the window configuration changes.
Richard M. Stallman <rms@gnu.org>
parents: 13412
diff changeset
188 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
189 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
190 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
191 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
192 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
193 }
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
194 }
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
195
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
196 Lisp_Object Vframe_list;
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
197
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198 extern Lisp_Object Vminibuffer_list;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199 extern Lisp_Object get_minibuffer ();
5172
9aa201005b16 (Fhandle_switch_frame, Fredirect_frame_focus): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 5105
diff changeset
200 extern Lisp_Object Fhandle_switch_frame ();
9aa201005b16 (Fhandle_switch_frame, Fredirect_frame_focus): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 5105
diff changeset
201 extern Lisp_Object Fredirect_frame_focus ();
12005
4a722a97c8d3 Declare x_get_focus_frame.
Karl Heuer <kwzh@gnu.org>
parents: 11906
diff changeset
202 extern Lisp_Object x_get_focus_frame ();
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
203
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
204 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
205 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
206 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
207 `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
208 `w32' for an Emacs frame that is a window on MS-Windows display,
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
209 `ns' for an Emacs frame on a GNUstep or Macintosh Cocoa display,
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
210 `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
211 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
212 (object)
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
213 Lisp_Object object;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
214 {
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
215 if (!FRAMEP (object))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
216 return Qnil;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
217 switch (XFRAME (object)->output_method)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
218 {
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
219 case output_initial: /* The initial frame is like a termcap frame. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
220 case output_termcap:
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 return Qt;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
222 case output_x_window:
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
223 return Qx;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16568
diff changeset
224 case output_w32:
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16568
diff changeset
225 return Qw32;
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
226 case output_msdos_raw:
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
227 return Qpc;
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
228 case output_mac:
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
229 return Qmac;
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
230 case output_ns:
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
231 return Qns;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
232 default:
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233 abort ();
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
235 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
237 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
238 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
239 Value is nil if OBJECT is not a live frame. If object is a live
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
240 frame, the return value indicates what sort of terminal device it is
41239
e44a82a4871e (Fframe_live_p): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 40656
diff changeset
241 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
242 return values. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
243 (object)
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
244 Lisp_Object object;
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
245 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
246 return ((FRAMEP (object)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
247 && FRAME_LIVE_P (XFRAME (object)))
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
248 ? Fframep (object)
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
249 : Qnil);
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
250 }
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
251
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
252 DEFUN ("window-system", Fwindow_system, Swindow_system, 0, 1, 0,
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
253 doc: /* The name of the window system that FRAME is displaying through.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
254 The value is a symbol---for instance, 'x' for X windows.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
255 The value is nil if Emacs is using a text-only terminal.
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
256
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
257 FRAME defaults to the currently selected frame. */)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
258 (frame)
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
259 Lisp_Object frame;
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
260 {
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
261 Lisp_Object type;
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
262 if (NILP (frame))
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
263 frame = selected_frame;
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
264
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
265 type = Fframep (frame);
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
266
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
267 if (NILP (type))
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
268 wrong_type_argument (Qframep, frame);
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
269
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
270 if (EQ (type, Qt))
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
271 return Qnil;
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
272 else
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
273 return type;
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
274 }
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
275
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
276 struct frame *
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
277 make_frame (mini_p)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
278 int mini_p;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
280 Lisp_Object frame;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
281 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282 register Lisp_Object root_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283 register Lisp_Object mini_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284
36433
20b42ba5a623 (make_frame): Use allocate_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 35817
diff changeset
285 f = allocate_frame ();
9972
92b33538b36a (make_frame): Use allocate_vectorlike and VECSIZE.
Karl Heuer <kwzh@gnu.org>
parents: 9901
diff changeset
286 XSETFRAME (frame, f);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
287
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
288 f->desired_matrix = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
289 f->current_matrix = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
290 f->desired_pool = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
291 f->current_pool = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
292 f->glyphs_initialized_p = 0;
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
293 f->decode_mode_spec_buffer = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
294 f->visible = 0;
1652
93497cd89204 * frame.c (make_frame): Initialize async_visible and
Jim Blandy <jimb@redhat.com>
parents: 1514
diff changeset
295 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
296 f->output_data.nothing = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
297 f->iconified = 0;
1652
93497cd89204 * frame.c (make_frame): Initialize async_visible and
Jim Blandy <jimb@redhat.com>
parents: 1514
diff changeset
298 f->async_iconified = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
299 f->wants_modeline = 1;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
300 f->auto_raise = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
301 f->auto_lower = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
302 f->no_split = 0;
27725
fb13a4706619 (make_frame): Set frame initiallly to `garbaged'.
Gerd Moellmann <gerd@gnu.org>
parents: 27633
diff changeset
303 f->garbaged = 1;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
304 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
305 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
306 f->explicit_name = 0;
1989
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
307 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
308 f->vertical_scroll_bar_type = vertical_scroll_bar_none;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
309 f->param_alist = Qnil;
1989
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
310 f->scroll_bars = Qnil;
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
311 f->condemned_scroll_bars = Qnil;
2417
8c07933beed9 (make_frame): Init face_alist field.
Richard M. Stallman <rms@gnu.org>
parents: 2298
diff changeset
312 f->face_alist = Qnil;
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
313 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
314 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
315 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
316 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
317 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
318 f->buffer_list = Qnil;
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
319 f->buried_buffer_list = Qnil;
14303
48e3ee5005cd (make_frame): Initialize title parameter to Qnil.
Karl Heuer <kwzh@gnu.org>
parents: 14223
diff changeset
320 f->namebuf = 0;
14223
596bb10704dd (make_frame): Initialize frame title field to nil.
Erik Naggum <erik@naggum.no>
parents: 14217
diff changeset
321 f->title = Qnil;
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
322 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
323 f->tool_bar_window = Qnil;
33760
22dc6e2e7410 (make_frame): Change initialization of tool bar
Gerd Moellmann <gerd@gnu.org>
parents: 33512
diff changeset
324 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
325 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
326 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
327 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
328 f->fringe_cols = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
329 f->scroll_bar_actual_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
330 f->border_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
331 f->internal_border_width = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
332 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
333 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
334 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
335 #ifdef HAVE_WINDOW_SYSTEM
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
336 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
337 #endif
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
338 f->size_hint_flags = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
339 f->win_gravity = 0;
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
340 f->font_driver_list = NULL;
91111
8781d295c455 (make_frame): Initialize f->font_data_list to NULL.
Kenichi Handa <handa@m17n.org>
parents: 91085
diff changeset
341 f->font_data_list = NULL;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342
987
afb21e974ed2 * frame.c (make_frame): Stop passing zero to make_window; it's not
Jim Blandy <jimb@redhat.com>
parents: 965
diff changeset
343 root_window = make_window ();
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 if (mini_p)
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 {
987
afb21e974ed2 * frame.c (make_frame): Stop passing zero to make_window; it's not
Jim Blandy <jimb@redhat.com>
parents: 965
diff changeset
346 mini_window = make_window ();
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 XWINDOW (root_window)->next = mini_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 XWINDOW (mini_window)->prev = root_window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349 XWINDOW (mini_window)->mini_p = Qt;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
350 XWINDOW (mini_window)->frame = frame;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
351 f->minibuffer_window = mini_window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 else
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355 mini_window = Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 XWINDOW (root_window)->next = Qnil;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
357 f->minibuffer_window = Qnil;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
359
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
360 XWINDOW (root_window)->frame = frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 /* 10 is arbitrary,
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 just so that there is "something there."
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
364 Correct size will be set up later with change_frame_size. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
366 SET_FRAME_COLS (f, 10);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
367 FRAME_LINES (f) = 10;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
368
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
369 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
370 XSETFASTINT (XWINDOW (root_window)->total_lines, (mini_p ? 9 : 10));
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372 if (mini_p)
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
373 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
374 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
375 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
376 XSETFASTINT (XWINDOW (mini_window)->total_lines, 1);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
377 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
378
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
379 /* Choose a buffer for the frame's root window. */
386
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
380 {
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
381 Lisp_Object buf;
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
382
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
383 XWINDOW (root_window)->buffer = Qt;
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
384 buf = Fcurrent_buffer ();
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
385 /* 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
386 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
387 if (SREF (Fbuffer_name (buf), 0) == ' ')
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
388 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
389
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
390 /* 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
391 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
392 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
393 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
394 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
395 SEGV. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
396 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
397 f->buffer_list = Fcons (buf, Qnil);
386
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
398 }
6acd2a203aa8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 363
diff changeset
399
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400 if (mini_p)
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
401 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
402 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
403 set_window_buffer (mini_window,
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
404 (NILP (Vminibuffer_list)
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
405 ? get_minibuffer (0)
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
406 : Fcar (Vminibuffer_list)),
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
407 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
408 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
409
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
410 f->root_window = root_window;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
411 f->selected_window = root_window;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
412 /* Make sure this window seems more recently used than
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
413 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
414 ++window_select_count;
491080266027 Avoid side-effects inside XSETFASTINT's arguments.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 57971
diff changeset
415 XSETFASTINT (XWINDOW (f->selected_window)->use_time, window_select_count);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
416
51665
c1f65dfc56eb Fix some of the font/face problems.
Jan Djärv <jan.h.d@swipnet.se>
parents: 51225
diff changeset
417 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
418
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
419 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
420 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
421
21359
f66e706fc9d6 (make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents: 21244
diff changeset
422 #ifdef HAVE_WINDOW_SYSTEM
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
423 /* Make a frame using a separate minibuffer window on another frame.
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
424 MINI_WINDOW is the minibuffer window to use. nil means use the
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425 default (the global minibuffer). */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
426
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
427 struct frame *
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
428 make_frame_without_minibuffer (mini_window, kb, display)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
429 register Lisp_Object mini_window;
11775
fe7852953b75 (make_frame_without_minibuffer): New arg KB.
Karl Heuer <kwzh@gnu.org>
parents: 11773
diff changeset
430 KBOARD *kb;
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
431 Lisp_Object display;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
433 register struct frame *f;
15555
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
434 struct gcpro gcpro1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
436 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
437 CHECK_LIVE_WINDOW (mini_window);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
439 if (!NILP (mini_window)
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
440 && FRAME_KBOARD (XFRAME (XWINDOW (mini_window)->frame)) != kb)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
441 error ("Frame and minibuffer must be on the same terminal");
11775
fe7852953b75 (make_frame_without_minibuffer): New arg KB.
Karl Heuer <kwzh@gnu.org>
parents: 11773
diff changeset
442
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
443 /* Make a frame containing just a root window. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
444 f = make_frame (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
446 if (NILP (mini_window))
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
447 {
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
448 /* Use default-minibuffer-frame if possible. */
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
449 if (!FRAMEP (kb->Vdefault_minibuffer_frame)
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
450 || ! 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
451 {
15555
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
452 Lisp_Object frame_dummy;
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
453
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
454 XSETFRAME (frame_dummy, f);
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
455 GCPRO1 (frame_dummy);
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
456 /* 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
457 kb->Vdefault_minibuffer_frame =
5ceed3aa6a1c (make_frame_without_minibuffer): GCPRO the frame f.
Richard M. Stallman <rms@gnu.org>
parents: 15396
diff changeset
458 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
459 UNGCPRO;
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
460 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
461
12010
57eb365d32f0 (make_frame_without_minibuffer): New arg DISPLAY.
Karl Heuer <kwzh@gnu.org>
parents: 12006
diff changeset
462 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
463 }
15001
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
464
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
465 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
466
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
467 /* 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
468 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
469 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
470 Fset_window_buffer (mini_window,
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
471 (NILP (Vminibuffer_list)
c74ce6421d04 (make_frame_without_minibuffer): Don't change the
Richard M. Stallman <rms@gnu.org>
parents: 14966
diff changeset
472 ? get_minibuffer (0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
473 : Fcar (Vminibuffer_list)), Qnil);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
474 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
477 /* Make a frame containing only a minibuffer window. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
479 struct frame *
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
480 make_minibuffer_frame ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
482 /* First make a frame containing just a root window, no minibuffer. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
484 register struct frame *f = make_frame (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485 register Lisp_Object mini_window;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
486 register Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
488 XSETFRAME (frame, f);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
489
1006
a13ee72d74a2 * frame.c (make_frame): Clear the explicit_name member of the new
Jim Blandy <jimb@redhat.com>
parents: 987
diff changeset
490 f->auto_raise = 0;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
491 f->auto_lower = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
492 f->no_split = 1;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
493 f->wants_modeline = 0;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
494 f->has_minibuffer = 1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
496 /* Now label the root window as also being the minibuffer.
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
497 Avoid infinite looping on the window chain by marking next pointer
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 as nil. */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
500 mini_window = f->minibuffer_window = f->root_window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
501 XWINDOW (mini_window)->mini_p = Qt;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
502 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
503 XWINDOW (mini_window)->prev = Qnil;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
504 XWINDOW (mini_window)->frame = frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
505
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
506 /* Put the proper buffer in that window. */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
508 Fset_window_buffer (mini_window,
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 454
diff changeset
509 (NILP (Vminibuffer_list)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
510 ? get_minibuffer (0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
511 : Fcar (Vminibuffer_list)), Qnil);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
512 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513 }
21359
f66e706fc9d6 (make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents: 21244
diff changeset
514 #endif /* HAVE_WINDOW_SYSTEM */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
516 /* Construct a frame that refers to a terminal. */
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
518 static int tty_frame_count;
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
519
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
520 struct frame *
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
521 make_initial_frame (void)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522 {
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
523 struct frame *f;
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
524 struct terminal *terminal;
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
525 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
526
85839
f32c70475c8e * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85688
diff changeset
527 eassert (initial_kboard);
11017
f7c4ece024d5 (make_frame): Initialize kboard member.
Karl Heuer <kwzh@gnu.org>
parents: 10853
diff changeset
528
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
529 /* The first call must initialize Vframe_list. */
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
530 if (! (NILP (Vframe_list) || CONSP (Vframe_list)))
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
531 Vframe_list = Qnil;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
532
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
533 terminal = init_initial_terminal ();
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
534
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
535 f = make_frame (1);
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
536 XSETFRAME (frame, f);
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
537
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
538 Vframe_list = Fcons (frame, Vframe_list);
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
539
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
540 tty_frame_count = 1;
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
541 f->name = build_string ("F1");
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
542
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
543 f->visible = 1;
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
544 f->async_visible = 1;
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
545
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
546 f->output_method = terminal->type;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
547 f->terminal = terminal;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
548 f->terminal->reference_count++;
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
549 f->output_data.nothing = 0;
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
550
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
551 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
552 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
553
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
554 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
555 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
556
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
557 #ifdef CANNOT_DUMP
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
558 if (!noninteractive)
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
559 init_frame_faces (f);
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
560 #endif
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
561
83008
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
562 return f;
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
563 }
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
564
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
565
040dd41ed7d0 Hookified termcap devices, added bootstrap display device, plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83004
diff changeset
566 struct frame *
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
567 make_terminal_frame (struct terminal *terminal)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
568 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
569 register struct frame *f;
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
570 Lisp_Object frame;
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
571 char name[20];
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572
84688
7abdec20dc91 (make_terminal_frame): Use terminal->name as liveness status.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84375
diff changeset
573 if (!terminal->name)
7abdec20dc91 (make_terminal_frame): Use terminal->name as liveness status.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84375
diff changeset
574 error ("Terminal is not live, can't create new frames on it");
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
575
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
576 f = make_frame (1);
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
577
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
578 XSETFRAME (frame, f);
5231
6646271e8d32 (make_terminal_frame): Add frame to Vframe_list.
Richard M. Stallman <rms@gnu.org>
parents: 5172
diff changeset
579 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
580
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
581 tty_frame_count++;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
582 sprintf (name, "F%d", tty_frame_count);
17857
c39f34ef5d76 (make_terminal_frame): Don't add `Emacs' to frame name.
Richard M. Stallman <rms@gnu.org>
parents: 17573
diff changeset
583 f->name = build_string (name);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
584
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
585 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
586 f->async_visible = 1; /* Don't let visible be cleared later. */
97690
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
587 f->terminal = terminal;
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
588 f->terminal->reference_count++;
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
589 #ifdef MSDOS
97659
6358f03eb003 (make_terminal_frame) [MSDOS]: Adjust initialization of f->output_data.tty.
Eli Zaretskii <eliz@gnu.org>
parents: 97449
diff changeset
590 f->output_data.tty->display_info = &the_only_display_info;
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
591 if (!inhibit_window_system
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
592 && (!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
593 || XFRAME (selected_frame)->output_method == output_msdos_raw))
98590
2d6205c3076b (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed away code.
Eli Zaretskii <eliz@gnu.org>
parents: 98579
diff changeset
594 f->output_method = output_msdos_raw;
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
595 else
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
596 f->output_method = output_termcap;
100825
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
597 #else /* not MSDOS */
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
598 f->output_method = output_termcap;
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
599 create_tty_output (f);
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
600 FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
601 FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
aa7072ec5fe2 (make_terminal_frame): Remove redundant code and useless
Dan Nicolaescu <dann@ics.uci.edu>
parents: 100780
diff changeset
602 #endif /* not MSDOS */
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
603
97690
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
604 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
605 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
606
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
607 /* Set the top frame to the newly created frame. */
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
608 if (FRAMEP (FRAME_TTY (f)->top_frame)
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
609 && FRAME_LIVE_P (XFRAME (FRAME_TTY (f)->top_frame)))
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
610 XFRAME (FRAME_TTY (f)->top_frame)->async_visible = 2; /* obscured */
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
611
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
612 FRAME_TTY (f)->top_frame = frame;
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
613
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
614 if (!noninteractive)
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
615 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
616
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
617 return f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
618 }
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
619
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
620 /* Get a suitable value for frame parameter PARAMETER for a newly
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
621 created frame, based on (1) the user-supplied frame parameter
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
622 alist SUPPLIED_PARMS, (2) CURRENT_VALUE, and finally, if all else
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
623 fails, (3) Vdefault_frame_alist. */
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
624
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
625 static Lisp_Object
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
626 get_future_frame_param (Lisp_Object parameter,
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
627 Lisp_Object supplied_parms,
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
628 char *current_value)
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
629 {
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
630 Lisp_Object result;
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
631
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
632 result = Fassq (parameter, supplied_parms);
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
633 if (NILP (result))
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
634 result = Fassq (parameter, XFRAME (selected_frame)->param_alist);
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
635 if (NILP (result) && current_value != NULL)
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
636 result = build_string (current_value);
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
637 if (NILP (result))
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
638 result = Fassq (parameter, Vdefault_frame_alist);
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
639 if (!NILP (result) && !STRINGP (result))
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
640 result = XCDR (result);
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
641 if (NILP (result) || !STRINGP (result))
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
642 result = Qnil;
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
643
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
644 return result;
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
645 }
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
646
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
647 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
648 1, 1, 0,
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
649 doc: /* Create an additional terminal frame, possibly on another terminal.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
650 This function takes one argument, an alist specifying frame parameters.
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
651
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
652 You can create multiple frames on a single text-only terminal, but
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
653 only one of them (the selected terminal frame) is actually displayed.
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
654
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
655 In practice, generally you don't need to specify any parameters,
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
656 except when you want to create a new frame on another terminal.
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
657 In that case, the `tty' parameter specifies the device file to open,
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
658 and the `tty-type' parameter specifies the terminal type. Example:
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
659
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
660 (make-terminal-frame '((tty . "/dev/pts/5") (tty-type . "xterm")))
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
661
83065
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83016
diff changeset
662 Note that changing the size of one terminal frame automatically
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83016
diff changeset
663 affects all frames on the same terminal device. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
664 (parms)
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
665 Lisp_Object parms;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
666 {
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
667 struct frame *f;
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
668 struct terminal *t = NULL;
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
669 Lisp_Object frame, tem;
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
670 struct frame *sf = SELECTED_FRAME ();
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
671
15392
ac7e878c5526 (Fmake_terminal_frame): Test MSDOS, not __MSDOS__.
Richard M. Stallman <rms@gnu.org>
parents: 15391
diff changeset
672 #ifdef MSDOS
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
673 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
674 && sf->output_method != output_termcap)
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
675 abort ();
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
676 #else /* not MSDOS */
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
677
100614
67eba8ea51bb (Fmake_terminal_frame): Raise an error when called from
Jason Rumney <jasonr@gnu.org>
parents: 100611
diff changeset
678 #ifdef WINDOWSNT /* This should work now! */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
679 if (sf->output_method != output_termcap)
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
680 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
681 #endif
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
682 #endif /* not MSDOS */
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
683
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
684 {
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
685 Lisp_Object terminal;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
686
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
687 terminal = Fassq (Qterminal, parms);
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
688 if (!NILP (terminal))
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
689 {
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
690 terminal = XCDR (terminal);
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
691 t = get_terminal (terminal, 1);
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
692 }
97690
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
693 #ifdef MSDOS
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
694 if (t && t != the_only_display_info.terminal)
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
695 /* msdos.c assumes a single tty_display_info object. */
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
696 error ("Multiple terminals are not supported on this platform");
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
697 if (!t)
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
698 t = the_only_display_info.terminal;
af1ed0096327 (make_terminal_frame): Initialize f->terminal, f->terminal->reference_count,
Eli Zaretskii <eliz@gnu.org>
parents: 97659
diff changeset
699 #endif
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
700 }
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
701
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
702 if (!t)
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
703 {
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
704 char *name = 0, *type = 0;
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
705 Lisp_Object tty, tty_type;
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
706
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
707 tty = get_future_frame_param
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
708 (Qtty, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
709 ? FRAME_TTY (XFRAME (selected_frame))->name
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
710 : NULL));
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
711 if (!NILP (tty))
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
712 {
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
713 name = (char *) alloca (SBYTES (tty) + 1);
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
714 strncpy (name, SDATA (tty), SBYTES (tty));
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
715 name[SBYTES (tty)] = 0;
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
716 }
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
717
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
718 tty_type = get_future_frame_param
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
719 (Qtty_type, parms, (FRAME_TERMCAP_P (XFRAME (selected_frame))
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
720 ? FRAME_TTY (XFRAME (selected_frame))->type
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
721 : NULL));
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
722 if (!NILP (tty_type))
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
723 {
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
724 type = (char *) alloca (SBYTES (tty_type) + 1);
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
725 strncpy (type, SDATA (tty_type), SBYTES (tty_type));
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
726 type[SBYTES (tty_type)] = 0;
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
727 }
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
728
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
729 t = init_tty (name, type, 0); /* Errors are not fatal. */
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
730 }
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
731
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
732 f = make_terminal_frame (t);
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
733
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
734 {
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
735 int width, height;
83065
a871be7b26a5 Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents: 83016
diff changeset
736 get_tty_size (fileno (FRAME_TTY (f)->input), &width, &height);
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
737 change_frame_size (f, height, width, 0, 0, 0);
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
738 }
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
739
25030
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
740 adjust_glyphs (f);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
741 calculate_costs (f);
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
742 XSETFRAME (frame, f);
16184
ca018789eb73 (Fmake_terminal_frame): Use Vdefault_frame_alist.
Richard M. Stallman <rms@gnu.org>
parents: 16112
diff changeset
743 Fmodify_frame_parameters (frame, Vdefault_frame_alist);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
744 Fmodify_frame_parameters (frame, parms);
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
745 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty_type,
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
746 build_string (t->display_info.tty->type)),
83420
521d3f18b3d1 Reimplement terminal parameters in C; clean up term.c, create terminal.c.
Karoly Lorentey <lorentey@elte.hu>
parents: 83415
diff changeset
747 Qnil));
83486
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83481
diff changeset
748 if (t->display_info.tty->name != NULL)
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83481
diff changeset
749 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty,
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83481
diff changeset
750 build_string (t->display_info.tty->name)),
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83481
diff changeset
751 Qnil));
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83481
diff changeset
752 else
fc6efa09ea7a Fix segfault by `C-x 5 2' on the controlling tty. (Reported by Suresh Madhu.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83481
diff changeset
753 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtty, Qnil), Qnil));
25209
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
754
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
755 /* 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
756 frame could change its face definitions independently. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
757 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
758 /* 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
759 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
760 be copied as well. */
eea9647c8246 (Fframe_parameters): Swap foreground and background
Eli Zaretskii <eliz@gnu.org>
parents: 25158
diff changeset
761 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
762 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
763 return frame;
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
764 }
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
765
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
767 /* 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
768
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
769 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
770 FRAME1 as frame.
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
771
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
772 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
773 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
774 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
775
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
776 FOR_DELETION non-zero means that the selected frame is being
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
777 deleted, which includes the possibility that the frame's terminal
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
778 is dead.
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
779
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
780 The value of NORECORD is passed as argument to Fselect_window. */
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
781
12286
723569a0028c (Fdelete_frame): Use do_switch_frame directly.
Richard M. Stallman <rms@gnu.org>
parents: 12283
diff changeset
782 Lisp_Object
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
783 do_switch_frame (frame, track, for_deletion, norecord)
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
784 Lisp_Object frame, norecord;
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
785 int track, for_deletion;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
786 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
787 struct frame *sf = SELECTED_FRAME ();
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
788
1385
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
789 /* 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
790 switch to. */
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
791 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
792 && 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
793 && CONSP (XCDR (frame)))
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
794 frame = XCAR (XCDR (frame));
1385
a4a205bdd2c1 * frame.c: #include "commands.h" and "keyboard.h".
Jim Blandy <jimb@redhat.com>
parents: 1346
diff changeset
795
6352
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
796 /* 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
797 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
798 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
799 CHECK_FRAME (frame);
6352
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
800 if (! FRAME_LIVE_P (XFRAME (frame)))
6f48bd9145f9 (Fhandle_switch_frame): Ignore switch to dead frame.
Karl Heuer <kwzh@gnu.org>
parents: 6346
diff changeset
801 return Qnil;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
802
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
803 if (sf == XFRAME (frame))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
804 return frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
805
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
806 /* 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
807 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
808 #if 0
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
809 /* 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
810 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
811 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
812 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
813 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
814 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
815 around. */
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
816 if (track)
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
817 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
818 Lisp_Object tail;
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
819
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
820 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
821 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
822 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
823
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
824 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
825 abort ();
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
826
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
827 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
828
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
829 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
830 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
831 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
832 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
833 #else /* ! 0 */
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
834 /* 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
835 #ifdef HAVE_WINDOW_SYSTEM
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
836 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
837 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
838 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
839
11529
5beffe62d4ef (do_switch_frame): x_get_focus_frame needs an arg.
Karl Heuer <kwzh@gnu.org>
parents: 11495
diff changeset
840 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
841 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
842 {
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
843 focus = FRAME_FOCUS_FRAME (XFRAME (xfocus));
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
844 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
845 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
846 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
847 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
848 #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
849 #endif /* ! 0 */
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
850
36810
a9485f8e43d6 (do_switch_frame): Remove unused parameter NO_EVENT, add
Gerd Moellmann <gerd@gnu.org>
parents: 36804
diff changeset
851 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
852 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
853
97701
5523d496656e (do_switch_frame): Mark previously displayed frame as obscured for
Eli Zaretskii <eliz@gnu.org>
parents: 97690
diff changeset
854 if (FRAME_TERMCAP_P (XFRAME (frame)) || FRAME_MSDOS_P (XFRAME (frame)))
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
855 {
93883
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
856 if (FRAMEP (FRAME_TTY (XFRAME (frame))->top_frame))
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
857 /* Mark previously displayed frame as now obscured. */
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
858 XFRAME (FRAME_TTY (XFRAME (frame))->top_frame)->async_visible = 2;
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
859 XFRAME (frame)->async_visible = 1;
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
860 FRAME_TTY (XFRAME (frame))->top_frame = frame;
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
861 }
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
862
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
863 selected_frame = frame;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
864 if (! FRAME_MINIBUF_ONLY_P (XFRAME (selected_frame)))
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
865 last_nonminibuf_frame = XFRAME (selected_frame);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
866
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
867 Fselect_window (XFRAME (frame)->selected_window, norecord);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
868
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
869 #ifdef NS_IMPL_COCOA
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
870 /* term gets no other notification of this */
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
871 if (for_deletion)
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
872 Fraise_frame(Qnil);
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
873 #endif
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
874
1920
ac5e559a819a * frame.c (Fselect_frame): Set Vlast_event_frame to Qnil after
Jim Blandy <jimb@redhat.com>
parents: 1870
diff changeset
875 /* 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
876 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
877 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
878 (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
879 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
880 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
881 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
882
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
883 return frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
884 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
885
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
886 DEFUN ("select-frame", Fselect_frame, Sselect_frame, 1, 2, "e",
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
887 doc: /* Select FRAME.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
888 Subsequent editing commands apply to its selected window.
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
889 Optional argument NORECORD means to neither change the order of
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
890 recently selected windows nor the buffer list.
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
891
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
892 The selection of FRAME lasts until the next time the user does
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
893 something to select a different frame, or until the next time
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
894 this function is called. If you are using a window system, the
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
895 previously selected frame may be restored as the selected frame
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
896 after return to the command loop, because it still may have the
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
897 window system's input focus. On a text-only terminal, the next
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
898 redisplay will display FRAME.
56517
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
899
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
900 This function returns FRAME, or nil if FRAME has been deleted. */)
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
901 (frame, norecord)
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
902 Lisp_Object frame, norecord;
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
903 {
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
904 return do_switch_frame (frame, 1, 0, norecord);
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
905 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
906
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
907
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
908 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
909 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
910 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
911 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
912 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
913 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
914
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
915 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
916 to that frame. */)
63184
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
917 (event)
1ba4135e8efa (Fhandle_switch_frame, Fselect_frame): Delete unused arg no_enter.
Luc Teirlinck <teirllm@auburn.edu>
parents: 61784
diff changeset
918 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
919 {
12255
41083bd094ac (Fhandle_switch_frame): Preserve prefix arg.
Karl Heuer <kwzh@gnu.org>
parents: 12222
diff changeset
920 /* 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
921 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
922 call1 (Vrun_hooks, Qmouse_leave_buffer_hook);
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
923 return do_switch_frame (event, 0, 0, Qnil);
6486
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
924 }
5012ae9c6075 (do_switch_frame): Common code for Fselect_frame and handle_switch_frame.
Karl Heuer <kwzh@gnu.org>
parents: 6355
diff changeset
925
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
926 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
927 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
928 ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
929 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
930 return selected_frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
931 }
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
932
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
933 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
934 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
935 (window)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
936 Lisp_Object window;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
937 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
938 CHECK_LIVE_WINDOW (window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
939 return XWINDOW (window)->frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
940 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
941
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
942 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
943 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
944 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
945 (frame)
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
946 Lisp_Object frame;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
947 {
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
948 Lisp_Object w;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
949
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
950 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
951 w = SELECTED_FRAME ()->root_window;
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
952 else
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
953 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
954 CHECK_LIVE_FRAME (frame);
6527
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
955 w = XFRAME (frame)->root_window;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
956 }
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
957 while (NILP (XWINDOW (w)->buffer))
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
958 {
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
959 if (! NILP (XWINDOW (w)->hchild))
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
960 w = XWINDOW (w)->hchild;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
961 else if (! NILP (XWINDOW (w)->vchild))
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
962 w = XWINDOW (w)->vchild;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
963 else
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
964 abort ();
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
965 }
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
966 return w;
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
967 }
ab9f20a3f502 (Fframe_first_window): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6500
diff changeset
968
11169
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
969 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
970 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
971 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
972 ()
11169
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
973 {
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
974 return minibuf_level ? minibuf_window : Qnil;
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
975 }
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
976
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
977 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
978 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
979 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
980 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
981 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
983 Lisp_Object window;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
984
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
985 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
986 window = SELECTED_FRAME ()->root_window;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
987 else
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
988 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
989 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
990 window = XFRAME (frame)->root_window;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
991 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
992
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
993 return window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
994 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
995
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
996 DEFUN ("frame-selected-window", Fframe_selected_window,
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
997 Sframe_selected_window, 0, 1, 0,
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
998 doc: /* Return the selected window of FRAME.
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
999 FRAME defaults to the currently selected frame. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1000 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1001 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1002 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1003 Lisp_Object window;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1004
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1005 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1006 window = SELECTED_FRAME ()->selected_window;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1007 else
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1008 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1009 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1010 window = XFRAME (frame)->selected_window;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1011 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1012
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1013 return window;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1014 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1015
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1016 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1017 Sset_frame_selected_window, 2, 3, 0,
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1018 doc: /* Set selected window of FRAME to WINDOW.
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1019 If FRAME is nil, use the selected frame. If FRAME is the
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1020 selected frame, this makes WINDOW the selected window.
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1021 Optional argument NORECORD non-nil means to neither change the
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1022 order of recently selected windows nor the buffer list.
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1023 Return WINDOW. */)
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1024 (frame, window, norecord)
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1025 Lisp_Object frame, window, norecord;
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1026 {
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1027 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1028 frame = selected_frame;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1029
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1030 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1031 CHECK_LIVE_WINDOW (window);
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1032
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1033 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1034 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
1035
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1036 if (EQ (frame, selected_frame))
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1037 return Fselect_window (window, norecord);
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1038
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1039 return XFRAME (frame)->selected_window = window;
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1040 }
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
1041
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
1042
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1043 DEFUN ("frame-list", Fframe_list, Sframe_list,
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1044 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
1045 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
1046 ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1047 {
36971
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
1048 Lisp_Object frames;
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
1049 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
1050 #ifdef HAVE_WINDOW_SYSTEM
36971
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
1051 if (FRAMEP (tip_frame))
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
1052 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
1053 #endif
36971
3819e613c7c2 (Fframe_list): Don't return a tooltip frame.
Gerd Moellmann <gerd@gnu.org>
parents: 36810
diff changeset
1054 return frames;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1055 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1056
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1057 /* Return the next frame in the frame list after FRAME.
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1058 If MINIBUF is nil, exclude minibuffer-only frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1059 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
1060 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
1061 If MINIBUF is `visible', include all visible frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1062 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
1063 Otherwise, include all frames. */
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1064
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
1065 static Lisp_Object
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1066 next_frame (frame, minibuf)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1067 Lisp_Object frame;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1068 Lisp_Object minibuf;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1069 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1070 Lisp_Object tail;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1071 int passed = 0;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1072
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1073 /* There must always be at least one frame in Vframe_list. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1074 if (! CONSP (Vframe_list))
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1075 abort ();
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1076
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1077 /* 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
1078 forever. Forestall that. */
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1079 CHECK_LIVE_FRAME (frame);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1080
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1081 while (1)
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1082 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1084 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
1085
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1086 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
1087
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1088 if (passed
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1089 && ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1090 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1091 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1092 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame)))))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1093 {
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1094 /* 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
1095
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1096 /* 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
1097 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
1098 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
1099 return f;
335
33aa13a3f279 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 286
diff changeset
1100
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1101 /* 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
1102 if (NILP (minibuf))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1103 {
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1104 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
1105 return f;
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1106 }
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1107 else if (EQ (minibuf, Qvisible))
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1108 {
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1109 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1110 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
1111 return f;
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1112 }
29987
c38afaed3dd0 (next_frame): Don't check frame-focus redirection in
Gerd Moellmann <gerd@gnu.org>
parents: 29616
diff changeset
1113 else if (INTEGERP (minibuf) && XINT (minibuf) == 0)
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1114 {
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1115 FRAME_SAMPLE_VISIBILITY (XFRAME (f));
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1116 if (FRAME_VISIBLE_P (XFRAME (f))
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1117 || FRAME_ICONIFIED_P (XFRAME (f)))
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1118 return f;
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1119 }
6246
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1120 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
1121 {
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1122 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
1123 || 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
1124 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
1125 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
1126 return f;
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1127 }
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1128 else
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1129 return f;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1130 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1131
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1132 if (EQ (frame, f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1133 passed++;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1134 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1135 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1136
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1137 /* Return the previous frame in the frame list before FRAME.
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1138 If MINIBUF is nil, exclude minibuffer-only frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1139 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
1140 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
1141 If MINIBUF is `visible', include all visible frames.
8168
32fbb27091d4 (next_frame, prev_frame):
Richard M. Stallman <rms@gnu.org>
parents: 8099
diff changeset
1142 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
1143 Otherwise, include all frames. */
128dc040e121 (next_frame, prev_frame): If MINIBUF is `visible',
Richard M. Stallman <rms@gnu.org>
parents: 6157
diff changeset
1144
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
1145 static Lisp_Object
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1146 prev_frame (frame, minibuf)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1147 Lisp_Object frame;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1148 Lisp_Object minibuf;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1149 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1150 Lisp_Object tail;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1151 Lisp_Object prev;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1152
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1153 /* There must always be at least one frame in Vframe_list. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1154 if (! CONSP (Vframe_list))
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1155 abort ();
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1156
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1157 prev = Qnil;
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1158 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1159 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1160 Lisp_Object f;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1161
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1162 f = XCAR (tail);
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
1163 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
1164 abort ();
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1165
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1166 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
1167 return prev;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1168
53229
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1169 if ((!FRAME_TERMCAP_P (XFRAME (f)) && !FRAME_TERMCAP_P (XFRAME (frame))
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1170 && FRAME_KBOARD (XFRAME (f)) == FRAME_KBOARD (XFRAME (frame)))
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1171 || (FRAME_TERMCAP_P (XFRAME (f)) && FRAME_TERMCAP_P (XFRAME (frame))
33c3c7c16e13 lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents: 53226
diff changeset
1172 && FRAME_TTY (XFRAME (f)) == FRAME_TTY (XFRAME (frame))))
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1173 {
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1174 /* 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
1175 according to minibuf. */
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1176 if (NILP (minibuf))
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1177 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1178 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
1179 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1180 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1181 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
1182 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1183 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
1184 || 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
1185 || EQ (WINDOW_FRAME (XWINDOW (minibuf)),
ec33931795c4 (next_frame, prev_frame): If MINIBUF is a window,
Gerd Moellmann <gerd@gnu.org>
parents: 29987
diff changeset
1186 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
1187 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1188 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1189 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
1190 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1191 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
1192 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
1193 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1194 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1195 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
1196 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1197 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
1198 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
1199 || 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
1200 prev = f;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1201 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1202 else
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1203 prev = f;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1204 }
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1205 }
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1206
1118
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1207 /* 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
1208 if (NILP (prev))
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1209 /* 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
1210 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
1211 return frame;
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1212 else
a43d53261506 * frame.c (choose_minibuf_frame): abort if the selected frame has
Jim Blandy <jimb@redhat.com>
parents: 1006
diff changeset
1213 /* 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
1214 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
1215 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
1216 return prev;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1217 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1218
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1219
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1220 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
1221 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
1222 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
1223 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
1224 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
1225 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
1226 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
1227 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
1228 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
1229 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
1230 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
1231 (frame, miniframe)
1251
4e556fda7a4d * frame.c (Fselect_frame, Fframe_root_window,
Jim Blandy <jimb@redhat.com>
parents: 1118
diff changeset
1232 Lisp_Object frame, miniframe;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1233 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1234 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1235 frame = selected_frame;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1236
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1237 CHECK_LIVE_FRAME (frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1238 return next_frame (frame, miniframe);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1239 }
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1240
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1241 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
1242 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
1243 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
1244 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
1245 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
1246 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
1247 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
1248 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
1249 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
1250 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
1251 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
1252 (frame, miniframe)
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1253 Lisp_Object frame, miniframe;
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1254 {
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1255 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1256 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1257 CHECK_LIVE_FRAME (frame);
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1258 return prev_frame (frame, miniframe);
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
1259 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1260
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1261 /* 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
1262 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
1263 (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
1264
7646
de2c4334fad4 (other_visible_frames): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 7570
diff changeset
1265 int
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1266 other_visible_frames (f)
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1267 FRAME_PTR f;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1268 {
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1269 /* 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
1270 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
1271 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
1272 {
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1273 Lisp_Object frames;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1274 int count = 0;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1275
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1276 for (frames = Vframe_list;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1277 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1278 frames = XCDR (frames))
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1279 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1280 Lisp_Object this;
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1281
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1282 this = XCAR (frames);
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1283 /* 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
1284 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
1285 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
1286 #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
1287 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
1288 {
9648
14b1481b7c6d (other_visible_frames): Pass a frame ptr to x_sync.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
1289 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
1290 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
1291 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1292 #endif
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1293
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1294 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
1295 || 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
1296 /* 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
1297 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
1298 || (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
1299 count++;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1300 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1301 return count > 1;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1302 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1303 return 1;
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1304 }
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1305
83435
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1306 /* Error handler for `delete-frame-functions'. */
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1307 static Lisp_Object
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1308 delete_frame_handler (Lisp_Object arg)
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1309 {
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1310 add_to_log ("Error during `delete-frame': %s", arg, Qnil);
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1311 return Qnil;
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1312 }
5efa63b61ac5 Make sure `delete-frame-functions' can not prevent the frame from being deleted.
Karoly Lorentey <lorentey@elte.hu>
parents: 83431
diff changeset
1313
93369
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1314 extern Lisp_Object Qrun_hook_with_args;
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1315
100632
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1316 /* Delete FRAME. When FORCE equals Qnoelisp, delete FRAME
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1317 unconditionally. x_connection_closed and delete_terminal use
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1318 this. Any other value of FORCE implements the semantics
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1319 described for Fdelete_frame. */
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1320 Lisp_Object
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1321 delete_frame (frame, force)
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1322 register Lisp_Object frame, force;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1323 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1324 struct frame *f;
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1325 struct frame *sf = SELECTED_FRAME ();
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1326 struct kboard *kb;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1327
12222
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1328 int minibuffer_selected;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1329
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1330 if (EQ (frame, Qnil))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1331 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1332 f = sf;
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
1333 XSETFRAME (frame, f);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1334 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1335 else
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1336 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1337 CHECK_FRAME (frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1338 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1339 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1340
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1341 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
1342 return Qnil;
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1343
87730
91da483b3fa5 * movemail.c:
Dan Nicolaescu <dann@ics.uci.edu>
parents: 87649
diff changeset
1344 if (NILP (force) && !other_visible_frames (f))
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1345 error ("Attempt to delete the sole visible or iconified frame");
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1346
100632
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1347 /* x_connection_closed must have set FORCE to `noelisp' in order
18945
7f491075707a (Fdelete_frame): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18698
diff changeset
1348 to delete the last frame, if it is gone. */
100632
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1349 if (NILP (XCDR (Vframe_list)) && !EQ (force, Qnoelisp))
18698
52271ad26a1d (Fdelete_frame): Always err for deleting the only frame.
Richard M. Stallman <rms@gnu.org>
parents: 18380
diff changeset
1350 error ("Attempt to delete the only frame");
52271ad26a1d (Fdelete_frame): Always err for deleting the only frame.
Richard M. Stallman <rms@gnu.org>
parents: 18380
diff changeset
1351
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1352 /* Does this frame have a minibuffer, and is it the surrogate
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1353 minibuffer for any other frame? */
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1354 if (FRAME_HAS_MINIBUF_P (XFRAME (frame)))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1355 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1356 Lisp_Object frames;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1357
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1358 for (frames = Vframe_list;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1359 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1360 frames = XCDR (frames))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1361 {
6157
9422e430f067 (Fdelete_frame): Don't initialize a Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents: 6130
diff changeset
1362 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
1363 this = XCAR (frames);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1364
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1365 if (! EQ (this, frame)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1366 && EQ (frame,
6157
9422e430f067 (Fdelete_frame): Don't initialize a Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents: 6130
diff changeset
1367 WINDOW_FRAME (XWINDOW
9422e430f067 (Fdelete_frame): Don't initialize a Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents: 6130
diff changeset
1368 (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
91641
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1369 {
100632
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1370 /* If we MUST delete this frame, delete the other first.
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1371 But do this only if FORCE equals `noelisp'. */
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1372 if (EQ (force, Qnoelisp))
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1373 delete_frame (this, Qnoelisp);
91641
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1374 else
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1375 error ("Attempt to delete a surrogate minibuffer frame");
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1376 }
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1377 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1378 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1379
100632
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1380 /* Run `delete-frame-functions' unless FORCE is `noelisp' or
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1381 frame is a tooltip. FORCE is set to `noelisp' when handling
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1382 a disconnect from the terminal, so we don't dare call Lisp
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1383 code. */
93369
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1384 if (NILP (Vrun_hooks) || !NILP (Fframe_parameter (frame, intern ("tooltip"))))
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1385 ;
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1386 if (EQ (force, Qnoelisp))
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1387 pending_funcalls
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1388 = Fcons (list3 (Qrun_hook_with_args, Qdelete_frame_functions, frame),
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1389 pending_funcalls);
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1390 else
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
1391 safe_call2 (Qrun_hook_with_args, Qdelete_frame_functions, frame);
32909
44cb0900a858 (Fdelete_frame): Doc fix. Move running the hook
Gerd Moellmann <gerd@gnu.org>
parents: 32907
diff changeset
1392
83167
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
1393 /* The hook may sometimes (indirectly) cause the frame to be deleted. */
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
1394 if (! FRAME_LIVE_P (f))
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
1395 return Qnil;
69ebc75cb461 Implemented display ids for multiple emacsclients on the same tty. Plus assorted bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83074
diff changeset
1396
91641
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1397 /* At this point, we are committed to deleting the frame.
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1398 There is no more chance for errors to prevent it. */
d17766001931 (Fdelete_frame): If FORCE, don't call hooks.
Richard M. Stallman <rms@gnu.org>
parents: 91367
diff changeset
1399
12222
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1400 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
1401
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1402 /* Don't let the frame remain selected. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1403 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
1404 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1405 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
1406
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1407 /* 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
1408 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
1409
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1410 /* 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
1411 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
1412 {
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1413 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
1414 {
53233
fe9b37bee5f7 Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents: 53232
diff changeset
1415 if (! EQ (frame, frame1) && FRAME_LIVE_P (XFRAME (frame1)))
12379
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1416 break;
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1417 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1418 }
7149fc03ea56 (next_frame, prev_frame): Consider only frames on same kbd.
Richard M. Stallman <rms@gnu.org>
parents: 12286
diff changeset
1419
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1420 do_switch_frame (frame1, 0, 1, Qnil);
25736
84179b4e7743 (Fdelete_frame): Correct local variable pointing to
Gerd Moellmann <gerd@gnu.org>
parents: 25710
diff changeset
1421 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
1422 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1423
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1424 /* Don't allow minibuf_window to remain on a deleted frame. */
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1425 if (EQ (f->minibuffer_window, minibuf_window))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1426 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1427 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
1428 XWINDOW (minibuf_window)->buffer, Qnil);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1429 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
1430
7286ed64badd (Fdelete_frame): If the minibuf window was selected, make that remain so.
Richard M. Stallman <rms@gnu.org>
parents: 12010
diff changeset
1431 /* 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
1432 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
1433 if (minibuffer_selected)
51048
7ac9c3bea5ea (Fselect_window): Add optional arg `norecord'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50390
diff changeset
1434 Fselect_window (minibuf_window, Qnil);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1435 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1436
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
1437 /* 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
1438 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
1439 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
1440
8099
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1441 /* 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
1442 #ifdef HAVE_X_WINDOWS
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1443 if (FRAME_X_P (f))
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1444 x_clear_frame_selections (f);
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1445 #endif
a06382fd175d (Fdelete_frame): Call x_clear_frame_selections.
Richard M. Stallman <rms@gnu.org>
parents: 8054
diff changeset
1446
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1447 /* Free glyphs.
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1448 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
1449 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
1450 memory. */
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1451 free_glyphs (f);
c69d9e48269b (make_frame): Set n_current_toolbar_items to 0.
Gerd Moellmann <gerd@gnu.org>
parents: 23746
diff changeset
1452
95044
f4fac6175e87 frame.c (Fdelete_frame): Don't call font_update_drviers if
Eli Zaretskii <eliz@gnu.org>
parents: 94963
diff changeset
1453 #ifdef HAVE_WINDOW_SYSTEM
91111
8781d295c455 (make_frame): Initialize f->font_data_list to NULL.
Kenichi Handa <handa@m17n.org>
parents: 91085
diff changeset
1454 /* Give chance to each font driver to free a frame specific data. */
8781d295c455 (make_frame): Initialize f->font_data_list to NULL.
Kenichi Handa <handa@m17n.org>
parents: 91085
diff changeset
1455 font_update_drivers (f, Qnil);
95044
f4fac6175e87 frame.c (Fdelete_frame): Don't call font_update_drviers if
Eli Zaretskii <eliz@gnu.org>
parents: 94963
diff changeset
1456 #endif
91111
8781d295c455 (make_frame): Initialize f->font_data_list to NULL.
Kenichi Handa <handa@m17n.org>
parents: 91085
diff changeset
1457
1680
ea9f3949f153 * frame.c (Fdelete_frame): Delete all the windows in the frame's
Jim Blandy <jimb@redhat.com>
parents: 1652
diff changeset
1458 /* 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
1459 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
1460 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
1461 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
1462
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1463 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
1464 FRAME_SET_VISIBLE (f, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1465
100617
a714dea3017d Add comment to last change by jhd.
Chong Yidong <cyd@stupidchicken.com>
parents: 100614
diff changeset
1466 /* Allow the vector of menu bar contents to be freed in the next
a714dea3017d Add comment to last change by jhd.
Chong Yidong <cyd@stupidchicken.com>
parents: 100614
diff changeset
1467 garbage collection. The frame object itself may not be garbage
a714dea3017d Add comment to last change by jhd.
Chong Yidong <cyd@stupidchicken.com>
parents: 100614
diff changeset
1468 collected until much later, because recent_keys and other data
a714dea3017d Add comment to last change by jhd.
Chong Yidong <cyd@stupidchicken.com>
parents: 100614
diff changeset
1469 structures can still refer to it. */
100611
32c5cd30347a *** empty log message ***
Jan Djärv <jan.h.d@swipnet.se>
parents: 100408
diff changeset
1470 f->menu_bar_vector = Qnil;
32c5cd30347a *** empty log message ***
Jan Djärv <jan.h.d@swipnet.se>
parents: 100408
diff changeset
1471
100408
ff982ba457d9 (Fdelete_frame): Call free_font_driver_list.
Chong Yidong <cyd@stupidchicken.com>
parents: 100001
diff changeset
1472 free_font_driver_list (f);
95481
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1473 xfree (f->namebuf);
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1474 xfree (f->decode_mode_spec_buffer);
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1475 xfree (FRAME_INSERT_COST (f));
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1476 xfree (FRAME_DELETEN_COST (f));
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1477 xfree (FRAME_INSERTN_COST (f));
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1478 xfree (FRAME_DELETE_COST (f));
4390d64d3328 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents: 95157
diff changeset
1479 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
1480
1809
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1481 /* Since some events are handled at the interrupt level, we may get
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1482 an event for f at any time; if we zero out the frame's terminal
1809
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1483 now, then we may trip up the event-handling code. Instead, we'll
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1484 promise that the terminal of the frame must be valid until we
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1485 have called the window-system-dependent frame destruction
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1486 routine. */
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1487
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1488 if (FRAME_TERMINAL (f)->delete_frame_hook)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1489 (*FRAME_TERMINAL (f)->delete_frame_hook) (f);
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1490
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
1491 {
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1492 struct terminal *terminal = FRAME_TERMINAL (f);
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
1493 f->output_data.nothing = 0;
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1494 f->terminal = 0; /* Now the frame is dead. */
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1495
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1496 /* If needed, delete the terminal that this frame was on.
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1497 (This must be done after the frame is killed.) */
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1498 terminal->reference_count--;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1499 if (terminal->reference_count == 0)
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1500 {
91791
ad6ac471fdea (Fdelete_frame): Call Fdelete_terminal.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91761
diff changeset
1501 Lisp_Object tmp;
ad6ac471fdea (Fdelete_frame): Call Fdelete_terminal.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91761
diff changeset
1502 XSETTERMINAL (tmp, terminal);
ad6ac471fdea (Fdelete_frame): Call Fdelete_terminal.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91761
diff changeset
1503
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1504 kb = NULL;
91791
ad6ac471fdea (Fdelete_frame): Call Fdelete_terminal.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91761
diff changeset
1505 Fdelete_terminal (tmp, NILP (force) ? Qt : force);
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1506 }
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1507 else
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1508 kb = terminal->kboard;
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
1509 }
1809
69b3ee873a9b * frame.c (Fdelete_frame): Clear the frame's display after calling
Jim Blandy <jimb@redhat.com>
parents: 1784
diff changeset
1510
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1511 /* 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
1512 another one. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1513 if (f == last_nonminibuf_frame)
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1514 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1515 Lisp_Object frames;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1516
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1517 last_nonminibuf_frame = 0;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1518
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1519 for (frames = Vframe_list;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1520 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1521 frames = XCDR (frames))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1522 {
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1523 f = XFRAME (XCAR (frames));
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1524 if (!FRAME_MINIBUF_ONLY_P (f))
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1525 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1526 last_nonminibuf_frame = f;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1527 break;
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1528 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1529 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1530 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1531
56453
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1532 /* 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
1533 single-kboard state if we're in it for this kboard. */
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1534 if (kb != NULL)
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1535 {
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1536 Lisp_Object frames;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1537 /* Some frame we found on the same kboard, or nil if there are none. */
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1538 Lisp_Object frame_on_same_kboard;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1539
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1540 frame_on_same_kboard = Qnil;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1541
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1542 for (frames = Vframe_list;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1543 CONSP (frames);
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1544 frames = XCDR (frames))
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1545 {
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1546 Lisp_Object this;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1547 struct frame *f1;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1548
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1549 this = XCAR (frames);
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1550 if (!FRAMEP (this))
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1551 abort ();
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1552 f1 = XFRAME (this);
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1553
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1554 if (kb == FRAME_KBOARD (f1))
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1555 frame_on_same_kboard = this;
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1556 }
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1557
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1558 if (NILP (frame_on_same_kboard))
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1559 not_single_kboard_state (kb);
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1560 }
56453
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1561
b8b142a8e2c6 (Fdelete_frame): If we're in single_bboard_state on
Richard M. Stallman <rms@gnu.org>
parents: 53072
diff changeset
1562
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1563 /* 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
1564 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
1565 frames with other windows. */
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1566 if (kb != NULL && EQ (frame, kb->Vdefault_minibuffer_frame))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1567 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1568 Lisp_Object frames;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1569
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1570 /* 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
1571 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
1572 /* 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
1573 Lisp_Object frame_on_same_kboard;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1574
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1575 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
1576 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
1577
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1578 for (frames = Vframe_list;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1579 CONSP (frames);
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1580 frames = XCDR (frames))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1581 {
6500
551bff5cffde (next_frame, prev_frame, other_visible_frames, Fdelete_frame): Use assignment,
Karl Heuer <kwzh@gnu.org>
parents: 6486
diff changeset
1582 Lisp_Object this;
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1583 struct frame *f1;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1584
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1585 this = XCAR (frames);
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
1586 if (!FRAMEP (this))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1587 abort ();
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1588 f1 = XFRAME (this);
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1589
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1590 /* Consider only frames on the same kboard
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1591 and only those with minibuffers. */
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1592 if (kb == FRAME_KBOARD (f1)
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1593 && FRAME_HAS_MINIBUF_P (f1))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1594 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1595 frame_with_minibuf = this;
11906
3ca56969ba07 (Fdelete_frame): When updating Vdefault_minibuffer_frame,
Karl Heuer <kwzh@gnu.org>
parents: 11794
diff changeset
1596 if (FRAME_MINIBUF_ONLY_P (f1))
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1597 break;
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1598 }
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1599
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1600 if (kb == FRAME_KBOARD (f1))
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1601 frame_on_same_kboard = this;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1602 }
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1603
12380
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1604 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
1605 {
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1606 /* 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
1607 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
1608 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
1609 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
1610 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
1611 minibuffer frames. */
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1612 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
1613 abort ();
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1614
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1615 kb->Vdefault_minibuffer_frame = 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
1616 }
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1617 else
2c09b3adbb90 (Fdelete_frame): It's ok to have no minibuffer left on
Richard M. Stallman <rms@gnu.org>
parents: 12379
diff changeset
1618 /* No frames left on this kboard--say no minibuffer either. */
83323
61487e73bbc2 Cleanup: Move kboard fields from struct frame and device-specific descriptors to struct display.
Karoly Lorentey <lorentey@elte.hu>
parents: 83314
diff changeset
1619 kb->Vdefault_minibuffer_frame = Qnil;
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1620 }
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 699
diff changeset
1621
16280
f4833d0bfaaa (Fdelete_frame): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents: 16263
diff changeset
1622 /* 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
1623 update_mode_lines = 1;
f4833d0bfaaa (Fdelete_frame): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents: 16263
diff changeset
1624
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1625 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1626 }
100632
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1627
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1628 DEFUN ("delete-frame", Fdelete_frame, Sdelete_frame, 0, 2, "",
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1629 doc: /* Delete FRAME, permanently eliminating it from use.
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1630 FRAME defaults to the selected frame.
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1631
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1632 A frame may not be deleted if its minibuffer is used by other frames.
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1633 Normally, you may not delete a frame if all other frames are invisible,
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1634 but if the second optional argument FORCE is non-nil, you may do so.
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1635
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1636 This function runs `delete-frame-functions' before actually
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1637 deleting the frame, unless the frame is a tooltip.
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1638 The functions are run with one argument, the frame to be deleted. */)
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1639 (frame, force)
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1640 Lisp_Object frame, force;
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1641 {
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1642 return delete_frame (frame, !NILP (force) ? Qt : Qnil);
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1643 }
389db2f016a4 * frame.c (delete_frame): New function derived from
Martin Rudalics <rudalics@gmx.at>
parents: 100617
diff changeset
1644
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1645
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1646 /* Return mouse position in character cell units. */
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1647
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
1648 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
1649 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
1650 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
1651 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
1652 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
1653 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
1654 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
1655 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
1656 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
1657 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
1658 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
1659 ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1660 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1661 FRAME_PTR f;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1662 Lisp_Object lispy_dummy;
1989
b1c1ab20f810 Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents: 1920
diff changeset
1663 enum scroll_bar_part party_dummy;
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
1664 Lisp_Object x, y, retval;
6054
24ffc4bc4067 (Fmouse_position): Convert to glyph units.
Richard M. Stallman <rms@gnu.org>
parents: 6012
diff changeset
1665 int col, row;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1666 unsigned long long_dummy;
27797
da774b48eb7f (Fmouse_position): GCPRO retval instead of x and y.
Gerd Moellmann <gerd@gnu.org>
parents: 27795
diff changeset
1667 struct gcpro gcpro1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1668
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1669 f = SELECTED_FRAME ();
3658
c2831d419bec (Fmouse_position): Set up defaults before calling the hook.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1670 x = y = Qnil;
c2831d419bec (Fmouse_position): Set up defaults before calling the hook.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1671
81129
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1672 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
3658
c2831d419bec (Fmouse_position): Set up defaults before calling the hook.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1673 /* It's okay for the hook to refrain from storing anything. */
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1674 if (FRAME_TERMINAL (f)->mouse_position_hook)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1675 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1676 &lispy_dummy, &party_dummy,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1677 &x, &y,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1678 &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
1679 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
1680 {
c976ac5d85ec (Fmouse_position) [MULTI_FRAME]: Use pixel_to_glyph, not glyph_to_pixel. Skip
Karl Heuer <kwzh@gnu.org>
parents: 6806
diff changeset
1681 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
1682 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
1683 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
1684 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
1685 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
1686 }
11025
6c5aef697fbe (Fmouse_position): Do work only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11017
diff changeset
1687 #endif
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
1688 XSETFRAME (lispy_dummy, f);
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
1689 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
1690 GCPRO1 (retval);
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
1691 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
1692 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
1693 RETURN_UNGCPRO (retval);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1694 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1695
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1696 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
1697 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
1698 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
1699 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
1700 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
1701 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
1702 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
1703 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
1704 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
1705 ()
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1706 {
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1707 FRAME_PTR f;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1708 Lisp_Object lispy_dummy;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1709 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
1710 Lisp_Object x, y;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1711 unsigned long long_dummy;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1712
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1713 f = SELECTED_FRAME ();
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1714 x = y = Qnil;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1715
81129
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1716 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1717 /* It's okay for the hook to refrain from storing anything. */
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1718 if (FRAME_TERMINAL (f)->mouse_position_hook)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1719 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, -1,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1720 &lispy_dummy, &party_dummy,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1721 &x, &y,
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
1722 &long_dummy);
11126
786f1c82a38e (Fmouse_position--both definitions): Pass 0 for `insist'.
Richard M. Stallman <rms@gnu.org>
parents: 11025
diff changeset
1723 #endif
9268
cb55d0155265 (make_minibuffer_frame, make_terminal_frame, Fselected_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9214
diff changeset
1724 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
1725 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
1726 }
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1727
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1728 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
1729 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
1730 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
1731 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
1732 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
1733
72364
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1734 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
1735 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
1736 the vertical offset.
6aeca9f02ce7 (Fmouse_position, Fmouse_pixel_position)
Eli Zaretskii <eliz@gnu.org>
parents: 71980
diff changeset
1737
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1738 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
1739 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
1740 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
1741 (while (not (frame-visible-p frame)) (sleep-for .5)) */)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1742 (frame, x, y)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1743 Lisp_Object frame, x, y;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1744 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1745 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1746 CHECK_NUMBER (x);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1747 CHECK_NUMBER (y);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1748
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1749 /* 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
1750 #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
1751 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
1752 /* 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
1753 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
1754 #else
15396
fbecc317220d Whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents: 15392
diff changeset
1755 #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
1756 if (FRAME_MSDOS_P (XFRAME (frame)))
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1757 {
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1758 Fselect_frame (frame, Qnil);
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1759 mouse_moveto (XINT (x), XINT (y));
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1760 }
81103
a0c74ff5828c (Fset_mouse_pixel_position): Add call to
Nick Roberts <nickrob@snap.net.nz>
parents: 76029
diff changeset
1761 #else
a0c74ff5828c (Fset_mouse_pixel_position): Add call to
Nick Roberts <nickrob@snap.net.nz>
parents: 76029
diff changeset
1762 #ifdef HAVE_GPM
a0c74ff5828c (Fset_mouse_pixel_position): Add call to
Nick Roberts <nickrob@snap.net.nz>
parents: 76029
diff changeset
1763 {
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1764 Fselect_frame (frame, Qnil);
81103
a0c74ff5828c (Fset_mouse_pixel_position): Add call to
Nick Roberts <nickrob@snap.net.nz>
parents: 76029
diff changeset
1765 term_mouse_moveto (XINT (x), XINT (y));
a0c74ff5828c (Fset_mouse_pixel_position): Add call to
Nick Roberts <nickrob@snap.net.nz>
parents: 76029
diff changeset
1766 }
a0c74ff5828c (Fset_mouse_pixel_position): Add call to
Nick Roberts <nickrob@snap.net.nz>
parents: 76029
diff changeset
1767 #endif
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1768 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1769 #endif
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1770
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1771 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1772 }
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1773
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1774 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
1775 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
1776 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
1777 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
1778 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
1779
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1780 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
1781 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
1782 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
1783 (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
1784 (frame, x, y)
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1785 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
1786 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1787 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1788 CHECK_NUMBER (x);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1789 CHECK_NUMBER (y);
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1790
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1791 /* 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
1792 #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
1793 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
1794 /* 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
1795 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
1796 #else
15396
fbecc317220d Whitespace changes.
Richard M. Stallman <rms@gnu.org>
parents: 15392
diff changeset
1797 #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
1798 if (FRAME_MSDOS_P (XFRAME (frame)))
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1799 {
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1800 Fselect_frame (frame, Qnil);
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1801 mouse_moveto (XINT (x), XINT (y));
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1802 }
81129
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1803 #else
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1804 #ifdef HAVE_GPM
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1805 {
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1806 Fselect_frame (frame, Qnil);
81129
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1807 term_mouse_moveto (XINT (x), XINT (y));
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1808 }
e1b18eee2605 (Fmouse_position, Fmouse_pixel_position):
Nick Roberts <nickrob@snap.net.nz>
parents: 81103
diff changeset
1809 #endif
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
1810 #endif
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1811 #endif
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1812
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1813 return Qnil;
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
1814 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1815
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1816 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
1817
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1818 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
1819 0, 1, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1820 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
1821 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
1822 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1823 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1824 {
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1825 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1826 frame = selected_frame;
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1827
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1828 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1829
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1830 /* 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
1831 #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
1832 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
1833 {
9b41ddf1b5f7 (Fmake_frame_visible): Use FRAME_SAMPLE_VISIBILITY. Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 4961
diff changeset
1834 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
1835 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
1836 }
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1837 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1838
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1839 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
1840
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1841 /* 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
1842 windows_or_buffers_changed++;
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1843
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1844 return frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1845 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1846
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1847 /* 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
1848 and all its descendents. */
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1849
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1850 static void
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1851 make_frame_visible_1 (window)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1852 Lisp_Object window;
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1853 {
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1854 struct window *w;
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1855
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1856 for (;!NILP (window); window = w->next)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1857 {
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1858 w = XWINDOW (window);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1859
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1860 if (!NILP (w->buffer))
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1861 XBUFFER (w->buffer)->display_time = Fcurrent_time ();
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1862
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1863 if (!NILP (w->vchild))
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1864 make_frame_visible_1 (w->vchild);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1865 if (!NILP (w->hchild))
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1866 make_frame_visible_1 (w->hchild);
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1867 }
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1868 }
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
1869
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1870 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
1871 0, 2, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1872 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
1873 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
1874 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
1875 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
1876 (frame, force)
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1877 Lisp_Object frame, force;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1878 {
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1879 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1880 frame = selected_frame;
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1881
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1882 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1883
5925
806e876cacb4 (Fset_frame_height, Fset_frame_width, Fset_frame_size):
Richard M. Stallman <rms@gnu.org>
parents: 5552
diff changeset
1884 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
1885 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
1886
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1887 #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
1888 /* Don't let the frame remain selected. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1889 if (EQ (frame, selected_frame))
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
1890 do_switch_frame (next_frame (frame, Qt), 0, 0, Qnil)
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1891 #endif
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1892
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1893 /* 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
1894 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1895 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1896 struct frame *sf = XFRAME (selected_frame);
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1897 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
1898 XWINDOW (minibuf_window)->buffer, Qnil);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1899 minibuf_window = sf->minibuffer_window;
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1900 }
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1901
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1902 /* 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
1903 #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
1904 if (FRAME_WINDOW_P (XFRAME (frame)))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1905 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
1906 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1907
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1908 /* 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
1909 windows_or_buffers_changed++;
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1910
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1911 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1912 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1913
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1914 DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame,
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1915 0, 1, "",
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
1916 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
1917 If omitted, FRAME defaults to the currently selected frame. */)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1918 (frame)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1919 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1920 {
872
336ffe2bd537 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 785
diff changeset
1921 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1922 frame = selected_frame;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
1923
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1924 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1925
8586
c78654909acf (Fmake_frame_invisible, Ficonify_frame): Don't switch frames.
Karl Heuer <kwzh@gnu.org>
parents: 8264
diff changeset
1926 #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
1927 /* Don't let the frame remain selected. */
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1928 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
1929 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
1930 #endif
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1931
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1932 /* 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
1933 if (EQ (XFRAME (frame)->minibuffer_window, minibuf_window))
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1934 {
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1935 struct frame *sf = XFRAME (selected_frame);
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1936 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
1937 XWINDOW (minibuf_window)->buffer, Qnil);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
1938 minibuf_window = sf->minibuffer_window;
3283
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1939 }
e2a40a3baa4b (Ficonify_frame, Fmake_frame_invisible):
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
1940
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
1941 /* 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
1942 #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
1943 if (FRAME_WINDOW_P (XFRAME (frame)))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1944 x_iconify_frame (XFRAME (frame));
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
1945 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1946
39918
fa0407ac162f (Fset_mouse_position): Improve style of comment to follow other comments.
Pavel Janík <Pavel@Janik.cz>
parents: 39748
diff changeset
1947 /* 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
1948 windows_or_buffers_changed++;
60795e826dad Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents: 7646
diff changeset
1949
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1950 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1951 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1952
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1953 DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1954 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
1955 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
1956 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
1957 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
1958 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
1959
c9c9e7be868f (Fselect_frame, Fset_frame_selected_window)
Luc Teirlinck <teirllm@auburn.edu>
parents: 56453
diff changeset
1960 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
1961 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
1962 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
1963 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1964 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1965 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
1966 CHECK_LIVE_FRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1967
6012
650c0f231d17 (Fframe_visible_p): Do FRAME_SAMPLE_VISIBILITY first.
Richard M. Stallman <rms@gnu.org>
parents: 5925
diff changeset
1968 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
650c0f231d17 (Fframe_visible_p): Do FRAME_SAMPLE_VISIBILITY first.
Richard M. Stallman <rms@gnu.org>
parents: 5925
diff changeset
1969
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1970 if (FRAME_VISIBLE_P (XFRAME (frame)))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1971 return Qt;
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1972 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
1973 return Qicon;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1974 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1975 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1976
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1977 DEFUN ("visible-frame-list", Fvisible_frame_list, Svisible_frame_list,
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1978 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
1979 doc: /* Return a list of all frames now \"visible\" (being updated). */)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1980 ()
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1981 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1982 Lisp_Object tail, frame;
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1983 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1984 Lisp_Object value;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1985
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1986 value = Qnil;
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1987 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1988 {
26164
d39ec0a27081 more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents: 26088
diff changeset
1989 frame = XCAR (tail);
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
1990 if (!FRAMEP (frame))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1991 continue;
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1992 f = XFRAME (frame);
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
1993 if (FRAME_VISIBLE_P (f))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
1994 value = Fcons (frame, value);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1995 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1996 return value;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1997 }
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1998
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
1999
11754
7691dbfc7571 (Fraise_frame, Flower_frame): Make arg FRAME optional.
Richard M. Stallman <rms@gnu.org>
parents: 11535
diff changeset
2000 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
2001 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
2002 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
2003 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
2004 If Emacs is displaying on an ordinary terminal or some other device which
98579
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
2005 doesn't support multiple overlapping frames, this function selects FRAME. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2006 (frame)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2007 Lisp_Object frame;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2008 {
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2009 struct frame *f;
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
2010 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2011 frame = selected_frame;
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
2012
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2013 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
2014
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2015 f = XFRAME (frame);
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
2016
98579
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
2017 if (FRAME_TERMCAP_P (f))
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
2018 /* On a text-only terminal select FRAME. */
99320
9d9890aa68c5 (do_switch_frame): New argument NORECORD passed to Fselect_window.
Martin Rudalics <rudalics@gmx.at>
parents: 98590
diff changeset
2019 Fselect_frame (frame, Qnil);
98579
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
2020 else
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
2021 /* Do like the documentation says. */
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
2022 Fmake_frame_visible (frame);
4961
dd67510308ae (Fraise_frame): Do like the documentation says, and make
Richard M. Stallman <rms@gnu.org>
parents: 4798
diff changeset
2023
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2024 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2025 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 1);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2026
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2027 return Qnil;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2028 }
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2029
2282
f727944c11aa * frame.c (Fraise_frame, Flower_frame): Renamed from
Jim Blandy <jimb@redhat.com>
parents: 2207
diff changeset
2030 /* 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
2031 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
2032 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
2033 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
2034 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
2035 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
2036 (frame)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2037 Lisp_Object frame;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2038 {
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2039 struct frame *f;
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
2040
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
2041 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2042 frame = selected_frame;
11211
2f9a24a4c9eb (Fraise_frame, Flower_frame): Now interactive.
Richard M. Stallman <rms@gnu.org>
parents: 11169
diff changeset
2043
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2044 CHECK_LIVE_FRAME (frame);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2045
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2046 f = XFRAME (frame);
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
2047
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2048 if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2049 (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, 0);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2050
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2051 return Qnil;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2052 }
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2053
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2054
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2055 DEFUN ("redirect-frame-focus", Fredirect_frame_focus, Sredirect_frame_focus,
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2056 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
2057 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
2058 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
2059 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
2060 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
2061
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2062 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
2063 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
2064
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2065 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
2066 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
2067 minibuffer window.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2068
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
2069 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
2070 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
2071 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
2072 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
2073 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
2074
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2075 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
2076 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
2077 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
2078
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2079 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
2080 (frame, focus_frame)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2081 Lisp_Object frame, focus_frame;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2082 {
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2083 struct frame *f;
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
2084
3970
020fe391d5c1 * frame.c (Fredirect_frame_focus): Allow redirection of focus of
Jim Blandy <jimb@redhat.com>
parents: 3834
diff changeset
2085 /* 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
2086 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
2087 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
2088 CHECK_FRAME (frame);
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
2089
1709
b86b3237e017 * frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents: 1691
diff changeset
2090 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
2091 CHECK_LIVE_FRAME (focus_frame);
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2092
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2093 f = XFRAME (frame);
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
2094
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2095 f->focus_frame = focus_frame;
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
2096
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2097 if (FRAME_TERMINAL (f)->frame_rehighlight_hook)
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2098 (*FRAME_TERMINAL (f)->frame_rehighlight_hook) (f);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2099
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2100 return Qnil;
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2101 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2102
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2103
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2104 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
2105 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
2106 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
2107 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
2108 (frame)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2109 Lisp_Object frame;
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2110 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2111 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
2112
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2113 return FRAME_FOCUS_FRAME (XFRAME (frame));
363
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2114 }
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2115
f4f9b557d934 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 335
diff changeset
2116
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2117
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2118 /* 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
2119
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2120 Lisp_Object
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2121 get_frame_param (frame, prop)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2122 register struct frame *frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2123 Lisp_Object prop;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2124 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2125 register Lisp_Object tem;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2126
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2127 tem = Fassq (prop, frame->param_alist);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2128 if (EQ (tem, Qnil))
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2129 return tem;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2130 return Fcdr (tem);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2131 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2132
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2133 /* 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
2134
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2135 Lisp_Object
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2136 frame_buffer_predicate (frame)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2137 Lisp_Object frame;
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2138 {
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2139 return XFRAME (frame)->buffer_predicate;
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2140 }
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2141
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2142 /* 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
2143
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2144 Lisp_Object
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2145 frame_buffer_list (frame)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2146 Lisp_Object frame;
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2147 {
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2148 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
2149 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2150
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2151 /* 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
2152
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2153 void
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2154 set_frame_buffer_list (frame, list)
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2155 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
2156 {
22188
9fba463768ec (frame_buffer_predicate): New arg FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 21825
diff changeset
2157 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
2158 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2159
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2160 /* Discard BUFFER from the buffer-list and buried-buffer-list of each frame. */
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2161
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2162 void
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2163 frames_discard_buffer (buffer)
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2164 Lisp_Object buffer;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2165 {
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2166 Lisp_Object frame, tail;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2167
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2168 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
2169 {
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2170 XFRAME (frame)->buffer_list
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2171 = Fdelq (buffer, XFRAME (frame)->buffer_list);
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2172 XFRAME (frame)->buried_buffer_list
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2173 = Fdelq (buffer, XFRAME (frame)->buried_buffer_list);
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2174 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2175 }
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2176
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2177 /* 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
2178 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
2179
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2180 void
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2181 store_in_alist (alistptr, prop, val)
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2182 Lisp_Object *alistptr, val;
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2183 Lisp_Object prop;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2184 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2185 register Lisp_Object tem;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2186
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2187 tem = Fassq (prop, *alistptr);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2188 if (EQ (tem, Qnil))
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2189 *alistptr = Fcons (Fcons (prop, val), *alistptr);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2190 else
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2191 Fsetcdr (tem, val);
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2192 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2193
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2194 static int
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2195 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
2196 char *str;
89549
eaae96c859d2 (frame_name_fnn_p): Make len EMACS_INT.
Dave Love <fx@gnu.org>
parents: 89483
diff changeset
2197 EMACS_INT len;
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2198 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2199 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
2200 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2201 char *end_ptr;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2202
25789
d68642dd5bbf (frame_name_fnn_p): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents: 25736
diff changeset
2203 strtol (str + 1, &end_ptr, 10);
d68642dd5bbf (frame_name_fnn_p): Fix previous change.
Eli Zaretskii <eliz@gnu.org>
parents: 25736
diff changeset
2204
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2205 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
2206 return 1;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2207 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2208 return 0;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2209 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2210
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2211 /* 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
2212 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
2213
65976
c332e9c9e66d (Fredirect_frame_focus): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 64770
diff changeset
2214 static void
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2215 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
2216 struct frame *f;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2217 Lisp_Object name;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2218 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2219 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
2220
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2221 /* 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
2222 if (NILP (name))
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2223 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2224 char namebuf[20];
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2225
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2226 /* 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
2227 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
2228 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
2229 SBYTES (f->name)))
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2230 return;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2231
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2232 tty_frame_count++;
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
2233 sprintf (namebuf, "F%d", tty_frame_count);
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2234 name = build_string (namebuf);
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2235 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2236 else
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2237 {
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2238 CHECK_STRING (name);
20280
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2239
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2240 /* 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
2241 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
2242 return;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2243
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2244 /* 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
2245 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
2246 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
2247 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
2248 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2249
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2250 f->name = name;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2251 update_mode_lines = 1;
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2252 }
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2253
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2254 void
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2255 store_frame_param (f, prop, val)
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2256 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2257 Lisp_Object prop, val;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2258 {
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2259 register Lisp_Object old_alist_elt;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2260
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2261 /* The buffer-list parameters are stored in a special place and not
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2262 in the alist. */
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2263 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
2264 {
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2265 f->buffer_list = val;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2266 return;
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2267 }
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2268 if (EQ (prop, Qburied_buffer_list))
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2269 {
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2270 f->buried_buffer_list = val;
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2271 return;
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2272 }
17221
0530a375eb21 (frame_buffer_list, set_frame_buffer_list): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 17032
diff changeset
2273
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2274 /* 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
2275 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
2276 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
2277 without messing up the symbol's status. */
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2278 if (SYMBOLP (prop))
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2279 {
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2280 Lisp_Object valcontents;
39581
6d9fa06012a6 Use SYMBOL_VALUE/SET_SYMBOL_VALUE macros instead of accessing
Gerd Moellmann <gerd@gnu.org>
parents: 39503
diff changeset
2281 valcontents = SYMBOL_VALUE (prop);
85328
d0d527210b0c * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85311
diff changeset
2282 if ((BUFFER_LOCAL_VALUEP (valcontents))
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2283 && XBUFFER_LOCAL_VALUE (valcontents)->check_frame
83481
6319046b5d4c Fix bogus crash with -DENABLE_CHECKING.
Karoly Lorentey <lorentey@elte.hu>
parents: 83473
diff changeset
2284 && XBUFFER_LOCAL_VALUE (valcontents)->found_for_frame
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2285 && XFRAME (XBUFFER_LOCAL_VALUE (valcontents)->frame) == f)
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2286 swap_in_global_binding (prop);
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2287 }
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2288
93883
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2289 /* The tty color needed to be set before the frame's parameter
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2290 alist was updated with the new value. This is not true any more,
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2291 but we still do this test early on. */
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2292 if (FRAME_TERMCAP_P (f) && EQ (prop, Qtty_color_mode)
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2293 && f == FRAME_TTY (f)->previous_frame)
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2294 /* Force redisplay of this tty. */
722fdbc7a012 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93369
diff changeset
2295 FRAME_TTY (f)->previous_frame = NULL;
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
2296
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2297 /* Update the frame parameter alist. */
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2298 old_alist_elt = Fassq (prop, f->param_alist);
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2299 if (EQ (old_alist_elt, Qnil))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2300 f->param_alist = Fcons (Fcons (prop, val), f->param_alist);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2301 else
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2302 Fsetcdr (old_alist_elt, val);
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2303
29616
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2304 /* Update some other special parameters in their special places
8d7a0f575a0e (Fmodify_frame_parameters): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 28930
diff changeset
2305 in addition to the alist. */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2306
10207
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2307 if (EQ (prop, Qbuffer_predicate))
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2308 f->buffer_predicate = val;
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2309
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
2310 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
2311 {
7916c0d8f2ae (frame_name_fnn_p, set_term_frame_name): New functions.
Eli Zaretskii <eliz@gnu.org>
parents: 20178
diff changeset
2312 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
2313 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
2314 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
2315 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
2316 }
12761
bffb5ea6fb43 Move various Q... vars to top of file, unconditional.
Richard M. Stallman <rms@gnu.org>
parents: 12742
diff changeset
2317
9127
0b4836daa8e1 (Fframep, make_frame_without_minibuffer, do_switch_frame, prev_frame,
Karl Heuer <kwzh@gnu.org>
parents: 9032
diff changeset
2318 if (EQ (prop, Qminibuffer) && WINDOWP (val))
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2319 {
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2320 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
2321 error ("Surrogate minibuffer windows must be minibuffer windows");
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2322
25710
ee1da070c50f (Fnext_frame): Remove unused variable(s).
Gerd Moellmann <gerd@gnu.org>
parents: 25669
diff changeset
2323 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
2324 && !EQ (val, f->minibuffer_window))
906cef1d36bd (store_frame_param): Allow setting a frame's minibuffer
Karl Heuer <kwzh@gnu.org>
parents: 16280
diff changeset
2325 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
2326
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2327 /* Install the chosen minibuffer window, with proper buffer. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2328 f->minibuffer_window = val;
539
b99d4eb7ed93 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 485
diff changeset
2329 }
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2330 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2331
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2332 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
2333 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
2334 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
2335 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
2336 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
2337 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2338 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2339 {
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2340 Lisp_Object alist;
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2341 FRAME_PTR f;
15062
de7528327c39 (Fframe_parameters, both definitions):
Richard M. Stallman <rms@gnu.org>
parents: 15001
diff changeset
2342 int height, width;
27575
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2343 struct gcpro gcpro1;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2344
36804
e4331ae9636d (Fframe_parameters): In the `buffer-list' frame
Gerd Moellmann <gerd@gnu.org>
parents: 36433
diff changeset
2345 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2346 frame = selected_frame;
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2347
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2348 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2349 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2350
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2351 if (!FRAME_LIVE_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2352 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2353
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2354 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
2355 GCPRO1 (alist);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2356
26729
f5dded41adcc Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents: 26164
diff changeset
2357 if (!FRAME_WINDOW_P (f))
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2358 {
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
2359 int fg = FRAME_FOREGROUND_PIXEL (f);
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
2360 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
2361 Lisp_Object elt;
25117
f6f34f0bc1af (make_terminal_frame) [MSDOS]: Don't call
Eli Zaretskii <eliz@gnu.org>
parents: 25030
diff changeset
2362
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2363 /* 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
2364 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
2365 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
2366 elt = Fassq (Qforeground_color, alist);
85017
b0be1b2384d2 (Fframe_parameters): Minor simplification.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84851
diff changeset
2367 if (CONSP (elt) && STRINGP (XCDR (elt)))
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2368 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2369 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
2370 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
2371 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2372 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
2373 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
2374 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
2375 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2376 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
2377 }
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2378 else
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2379 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
2380 elt = Fassq (Qbackground_color, alist);
85017
b0be1b2384d2 (Fframe_parameters): Minor simplification.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 84851
diff changeset
2381 if (CONSP (elt) && STRINGP (XCDR (elt)))
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2382 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2383 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
2384 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
2385 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2386 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
2387 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
2388 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
2389 SCHARS (XCDR (elt))) == 0)
33005
87893013088c (Fframe_parameters): Fix the change from 2000-10-16:
Eli Zaretskii <eliz@gnu.org>
parents: 32909
diff changeset
2390 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
2391 }
32545
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2392 else
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2393 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
2394 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
2395 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
2396 ? "ms-dos"
35003
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
2397 : FRAME_W32_P (f) ? "w32term"
c6726a1e70ce (make_terminal_frame) [WINDOWSNT]: Make terminal frames
Andrew Innes <andrewi@gnu.org>
parents: 33760
diff changeset
2398 :"tty"));
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2399 }
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2400 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
2401 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
2402 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
2403 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
2404 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
2405 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
2406 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
2407 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
7162
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2408 : FRAME_MINIBUF_ONLY_P (f) ? Qonly
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2409 : FRAME_MINIBUF_WINDOW (f)));
06a13bf36a8c (Fframe_parameters) [!MULTI_FRAME]: Unstub it again.
Karl Heuer <kwzh@gnu.org>
parents: 7134
diff changeset
2410 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
2411 store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame));
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
2412 store_in_alist (&alist, Qburied_buffer_list, XFRAME (frame)->buried_buffer_list);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2413
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2414 /* 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
2415 #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
2416 if (FRAME_WINDOW_P (f))
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2417 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
2418 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2419 #endif
8904
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2420 {
af3ff2dbaddd (Fframe_parameters): Fix Lisp_Object vs. int problems.
Karl Heuer <kwzh@gnu.org>
parents: 8685
diff changeset
2421 /* 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
2422 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
2423 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
2424 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
2425 }
27575
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2426
2344fab04513 (Fframe_parameters): Add GCPRO because tty_color_name can GC.
Gerd Moellmann <gerd@gnu.org>
parents: 26729
diff changeset
2427 UNGCPRO;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2428 return alist;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2429 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2430
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2431
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2432 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
2433 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
2434 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
2435 (frame, parameter)
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2436 Lisp_Object frame, parameter;
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2437 {
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2438 struct frame *f;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2439 Lisp_Object value;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2440
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2441 if (NILP (frame))
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2442 frame = selected_frame;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2443 else
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2444 CHECK_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2445 CHECK_SYMBOL (parameter);
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2446
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2447 f = XFRAME (frame);
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2448 value = Qnil;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2449
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2450 if (FRAME_LIVE_P (f))
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2451 {
40319
52af99ad587f Resurrect a comment lost in the previous commit.
Eli Zaretskii <eliz@gnu.org>
parents: 40317
diff changeset
2452 /* Avoid consing in frequent cases. */
31442
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2453 if (EQ (parameter, Qname))
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2454 value = f->name;
31448
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
2455 #ifdef HAVE_X_WINDOWS
70b366918608 (Fframe_parameter): Handle `name' and `background-mode'
Gerd Moellmann <gerd@gnu.org>
parents: 31442
diff changeset
2456 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
2457 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
2458 #endif /* HAVE_X_WINDOWS */
40313
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2459 else if (EQ (parameter, Qbackground_color)
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2460 || EQ (parameter, Qforeground_color))
31442
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2461 {
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2462 value = Fassq (parameter, f->param_alist);
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2463 if (CONSP (value))
32254
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2464 {
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2465 value = XCDR (value);
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2466 /* 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
2467 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
2468 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
2469 "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
2470 if (STRINGP (value) && !FRAME_WINDOW_P (f))
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2471 {
46467
1a3b3b66171c (Fframe_parameter): Use const for pointer to lisp
Ken Raeburn <raeburn@raeburn.org>
parents: 46370
diff changeset
2472 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
2473 EMACS_INT csz;
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2474
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2475 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
2476 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2477 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
2478 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
2479 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
2480 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
2481 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
2482 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
2483 }
288723d38c06 (Fframe_parameters): If a tty's frame's param_alist says
Eli Zaretskii <eliz@gnu.org>
parents: 32254
diff changeset
2484 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
2485 {
46370
40db0673e6f0 Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents: 46285
diff changeset
2486 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
2487 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
2488 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
2489 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
2490 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
2491 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
2492 }
32254
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2493 }
f93728883f64 (Fframe_parameter): For non-windowed frames, if
Eli Zaretskii <eliz@gnu.org>
parents: 31470
diff changeset
2494 }
40317
dfb2afb0aa8a (Fframe_parameter): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 40313
diff changeset
2495 else
dfb2afb0aa8a (Fframe_parameter): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 40313
diff changeset
2496 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
31442
cb166d3ac8e7 (Fframe_parameter): Handle `name' specially.
Gerd Moellmann <gerd@gnu.org>
parents: 31399
diff changeset
2497 }
40313
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2498 else if (EQ (parameter, Qdisplay_type)
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2499 || EQ (parameter, Qbackground_mode))
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2500 value = Fcdr (Fassq (parameter, f->param_alist));
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2501 else
b2ff79e90309 (Fframe_parameter): Fix a bug whereby some
Gerd Moellmann <gerd@gnu.org>
parents: 40105
diff changeset
2502 value = Fcdr (Fassq (parameter, Fframe_parameters (frame)));
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2503 }
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2504
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2505 return value;
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2506 }
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2507
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
2508
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2509 DEFUN ("modify-frame-parameters", Fmodify_frame_parameters,
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2510 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
2511 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
2512 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
2513 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
2514 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
2515 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
2516 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
2517 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
2518
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2519 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
2520 as a frame-local binding for the variable FOO, if you have
97883
8a36a3a1b31e (Fmodify_frame_parameters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 97701
diff changeset
2521 enabled such bindings for that variable with `make-variable-frame-local'.
8a36a3a1b31e (Fmodify_frame_parameters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 97701
diff changeset
2522 Note that this functionality is obsolete as of Emacs 22.2, and its
8a36a3a1b31e (Fmodify_frame_parameters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 97701
diff changeset
2523 use is not recommended. Explicitly check for a frame-parameter instead. */)
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2524 (frame, alist)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2525 Lisp_Object frame, alist;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2526 {
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2527 FRAME_PTR f;
25710
ee1da070c50f (Fnext_frame): Remove unused variable(s).
Gerd Moellmann <gerd@gnu.org>
parents: 25669
diff changeset
2528 register Lisp_Object tail, prop, val;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2529
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2530 if (EQ (frame, Qnil))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2531 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2532 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2533 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2534
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2535 /* 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
2536 #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
2537 if (FRAME_WINDOW_P (f))
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2538 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
2539 else
e6618f52efe9 (Fmodify_frame_parameters): For non-X frames,
Richard M. Stallman <rms@gnu.org>
parents: 9972
diff changeset
2540 #endif
15391
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2541 #ifdef MSDOS
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2542 if (FRAME_MSDOS_P (f))
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2543 IT_set_frame_parameters (f, alist);
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2544 else
d4cec5d7566d (Fset_mouse_position): Remove the DOS-specific
Richard M. Stallman <rms@gnu.org>
parents: 15062
diff changeset
2545 #endif
25523
9e9eeb68482e (Fframep) [macintosh]: Handle mac frame type.
Richard M. Stallman <rms@gnu.org>
parents: 25350
diff changeset
2546
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2547 {
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2548 int length = XINT (Flength (alist));
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2549 int i;
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2550 Lisp_Object *parms
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2551 = (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
2552 Lisp_Object *values
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2553 = (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
2554
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2555 /* 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
2556
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2557 i = 0;
93203
7327632ad432 (Fmodify_frame_parameters, x_set_frame_parameters): Use XCAR/XCDR.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91791
diff changeset
2558 for (tail = alist; CONSP (tail); tail = XCDR (tail))
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2559 {
25710
ee1da070c50f (Fnext_frame): Remove unused variable(s).
Gerd Moellmann <gerd@gnu.org>
parents: 25669
diff changeset
2560 Lisp_Object elt;
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2561
93203
7327632ad432 (Fmodify_frame_parameters, x_set_frame_parameters): Use XCAR/XCDR.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91791
diff changeset
2562 elt = XCAR (tail);
16568
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2563 parms[i] = Fcar (elt);
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2564 values[i] = Fcdr (elt);
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2565 i++;
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2566 }
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2567
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2568 /* 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
2569 for (i--; i >= 0; i--)
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2570 {
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2571 prop = parms[i];
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2572 val = values[i];
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2573 store_frame_param (f, prop, val);
63643
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2574
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2575 /* Changing the background color might change the background
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2576 mode, so that we have to load new defface specs.
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2577 Call frame-set-background-mode to do that. */
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2578 if (EQ (prop, Qbackground_color))
844f9903e3f9 (Fmodify_frame_parameters):
Juri Linkov <juri@jurta.org>
parents: 63184
diff changeset
2579 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
2580 }
cc6d85f9df0f (Fmodify_frame_parameters): Use alist in reverse order.
Richard M. Stallman <rms@gnu.org>
parents: 16536
diff changeset
2581 }
75954
7988c916074a (Fmodify_frame_parameters): Return a value.
Andreas Schwab <schwab@suse.de>
parents: 75805
diff changeset
2582 return Qnil;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2583 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2584
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2585 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
2586 0, 1, 0,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2587 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
2588 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
2589 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
2590 (frame)
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2591 Lisp_Object frame;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2592 {
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2593 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2594
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2595 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2596 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2597 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2598 f = XFRAME (frame);
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2599
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
2600 #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
2601 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2602 return make_number (x_char_height (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2603 else
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2604 #endif
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2605 return make_number (1);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2606 }
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2607
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2608
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2609 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
2610 0, 1, 0,
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
2611 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
2612 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
2613 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
2614 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
2615 (frame)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2616 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2617 {
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2618 struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2619
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2620 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2621 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2622 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2623 f = XFRAME (frame);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2624
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
2625 #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
2626 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2627 return make_number (x_char_width (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2628 else
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2629 #endif
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2630 return make_number (1);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2631 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2632
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2633 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
2634 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
2635 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
2636 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
2637 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
2638 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
2639 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
2640 (frame)
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2641 Lisp_Object frame;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2642 {
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2643 struct frame *f;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2644
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2645 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2646 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2647 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2648 f = XFRAME (frame);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2649
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
2650 #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
2651 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2652 return make_number (x_pixel_height (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2653 else
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2654 #endif
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2655 return make_number (FRAME_LINES (f));
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2656 }
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2657
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2658 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
2659 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
2660 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
2661 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
2662 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
2663 (frame)
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2664 Lisp_Object frame;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2665 {
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2666 struct frame *f;
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2667
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2668 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2669 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2670 CHECK_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2671 f = XFRAME (frame);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2672
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
2673 #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
2674 if (FRAME_WINDOW_P (f))
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2675 return make_number (x_pixel_width (f));
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2676 else
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2677 #endif
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2678 return make_number (FRAME_COLS (f));
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2679 }
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
2680
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2681 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
2682 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
2683 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
2684 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
2685 (frame, lines, pretend)
14077
a6d3ce4a2f8e (Fhandle_switch_frame, Fset_frame_height): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 13748
diff changeset
2686 Lisp_Object frame, lines, pretend;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2687 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2688 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2689
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2690 CHECK_NUMBER (lines);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2691 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2692 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2693 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2694 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2695
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2696 /* 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
2697 #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
2698 if (FRAME_WINDOW_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2699 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2700 if (XINT (lines) != FRAME_LINES (f))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2701 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
2702 do_pending_window_change (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2703 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2704 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2705 #endif
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2706 change_frame_size (f, XINT (lines), 0, !NILP (pretend), 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2707 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2708 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2709
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2710 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
2711 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
2712 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
2713 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
2714 (frame, cols, pretend)
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2715 Lisp_Object frame, cols, pretend;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2716 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2717 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
2718 CHECK_NUMBER (cols);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2719 if (NILP (frame))
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2720 frame = selected_frame;
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2721 CHECK_LIVE_FRAME (frame);
25669
97d5951366cd (Fmake_terminal_frame): Use SELECTED_FRAME.
Gerd Moellmann <gerd@gnu.org>
parents: 25544
diff changeset
2722 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2723
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2724 /* 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
2725 #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
2726 if (FRAME_WINDOW_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2727 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2728 if (XINT (cols) != FRAME_COLS (f))
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2729 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
2730 do_pending_window_change (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2731 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2732 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2733 #endif
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2734 change_frame_size (f, 0, XINT (cols), !NILP (pretend), 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2735 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2736 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2737
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2738 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
2739 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
2740 (frame, cols, rows)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2741 Lisp_Object frame, cols, rows;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2742 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2743 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2744
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2745 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2746 CHECK_NUMBER (cols);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2747 CHECK_NUMBER (rows);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2748 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2749
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2750 /* 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
2751 #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
2752 if (FRAME_WINDOW_P (f))
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2753 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2754 if (XINT (rows) != FRAME_LINES (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2755 || XINT (cols) != FRAME_COLS (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2756 || 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
2757 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
2758 do_pending_window_change (0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2759 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2760 else
965
0eb68c6c452a * frame.c (Qheight, Qicon, Qmodeline, Qname, Qnone, Qonly,
Jim Blandy <jimb@redhat.com>
parents: 886
diff changeset
2761 #endif
25350
f964a1e5b29c Call change_frame_size and do_pending_window_change with
Gerd Moellmann <gerd@gnu.org>
parents: 25209
diff changeset
2762 change_frame_size (f, XINT (rows), XINT (cols), 0, 0, 0);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2763
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2764 return Qnil;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2765 }
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2766
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
2767 DEFUN ("set-frame-position", Fset_frame_position,
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2768 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
2769 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
2770 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
2771 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
2772 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
2773 (frame, xoffset, yoffset)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2774 Lisp_Object frame, xoffset, yoffset;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2775 {
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2776 register struct frame *f;
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2777
40656
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2778 CHECK_LIVE_FRAME (frame);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2779 CHECK_NUMBER (xoffset);
cdfd4d09b79a Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents: 40568
diff changeset
2780 CHECK_NUMBER (yoffset);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
2781 f = XFRAME (frame);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2782
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
2783 /* 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
2784 #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
2785 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
2786 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
2787 #endif
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2788
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2789 return Qt;
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2790 }
777
c99faf9381bb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
2791
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2792
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2793 /***********************************************************************
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2794 Frame Parameters
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2795 ***********************************************************************/
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2796
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2797 /* Connect the frame-parameter names for X frames
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2798 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
2799
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2800 The name of a parameter, as a Lisp symbol,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2801 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
2802 that is an index in this table. */
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 struct frame_parm_table {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2805 char *name;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2806 Lisp_Object *variable;
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2809 static struct frame_parm_table frame_parms[] =
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2810 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2811 {"auto-raise", &Qauto_raise},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2812 {"auto-lower", &Qauto_lower},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2813 {"background-color", 0},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2814 {"border-color", &Qborder_color},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2815 {"border-width", &Qborder_width},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2816 {"cursor-color", &Qcursor_color},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2817 {"cursor-type", &Qcursor_type},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2818 {"font", 0},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2819 {"foreground-color", 0},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2820 {"icon-name", &Qicon_name},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2821 {"icon-type", &Qicon_type},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2822 {"internal-border-width", &Qinternal_border_width},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2823 {"menu-bar-lines", &Qmenu_bar_lines},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2824 {"mouse-color", &Qmouse_color},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2825 {"name", &Qname},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2826 {"scroll-bar-width", &Qscroll_bar_width},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2827 {"title", &Qtitle},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2828 {"unsplittable", &Qunsplittable},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2829 {"vertical-scroll-bars", &Qvertical_scroll_bars},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2830 {"visibility", &Qvisibility},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2831 {"tool-bar-lines", &Qtool_bar_lines},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2832 {"scroll-bar-foreground", &Qscroll_bar_foreground},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2833 {"scroll-bar-background", &Qscroll_bar_background},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2834 {"screen-gamma", &Qscreen_gamma},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2835 {"line-spacing", &Qline_spacing},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2836 {"left-fringe", &Qleft_fringe},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2837 {"right-fringe", &Qright_fringe},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2838 {"wait-for-wm", &Qwait_for_wm},
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2839 {"fullscreen", &Qfullscreen},
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
2840 {"font-backend", &Qfont_backend},
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
2841 {"alpha", &Qalpha}
50357
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2844 #ifdef HAVE_WINDOW_SYSTEM
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2845
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2846 extern Lisp_Object Qbox;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2847 extern Lisp_Object Qtop;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2848
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2849 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
73687
420314603844 (syms_of_frame): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 73253
diff changeset
2850 wanted positions of the WM window (not Emacs window).
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2851 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
2852 window (FRAME_X_WINDOW).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2853 */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2854
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2855 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2856 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2857 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2858 int *width;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2859 int *height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2860 int *top_pos;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2861 int *left_pos;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2862 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2863 int newwidth = FRAME_COLS (f);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2864 int newheight = FRAME_LINES (f);
98240
5f73593cabcd * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
Juanma Barranquero <lekktu@gmail.com>
parents: 98225
diff changeset
2865 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2866
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2867 *top_pos = f->top_pos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2868 *left_pos = f->left_pos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2869
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2870 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
50357
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 int ph;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2873
98225
e7da931942f1 (x_fullscreen_adjust): Use x_display_pixel_height and
Chong Yidong <cyd@stupidchicken.com>
parents: 97883
diff changeset
2874 ph = x_display_pixel_height (dpyinfo);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2875 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
2876 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
2877 newheight = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, ph);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2878 *top_pos = 0;
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
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2881 if (f->want_fullscreen & FULLSCREEN_WIDTH)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2882 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2883 int pw;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2884
98225
e7da931942f1 (x_fullscreen_adjust): Use x_display_pixel_height and
Chong Yidong <cyd@stupidchicken.com>
parents: 97883
diff changeset
2885 pw = x_display_pixel_width (dpyinfo);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
2886 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
2887 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
2888 newwidth = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pw);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2889 *left_pos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2890 }
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 *width = newwidth;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2893 *height = newheight;
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2896
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2897 /* Change the parameters of frame F as specified by ALIST.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2898 If a parameter is not specially recognized, do nothing special;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2899 otherwise call the `x_set_...' function for that parameter.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2900 Except for certain geometry properties, always call store_frame_param
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2901 to store the new value in the parameter alist. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2902
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2903 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2904 x_set_frame_parameters (f, alist)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2905 FRAME_PTR f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2906 Lisp_Object alist;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2907 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2908 Lisp_Object tail;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2909
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2910 /* 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
2911 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
2912 entire list before we set them. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2913 int width, height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2914
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2915 /* Same here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2916 Lisp_Object left, top;
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 /* Same with these. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2919 Lisp_Object icon_left, icon_top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2920
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2921 /* Record in these vectors all the parms specified. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2922 Lisp_Object *parms;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2923 Lisp_Object *values;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2924 int i, p;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2925 int left_no_change = 0, top_no_change = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2926 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
2927 int fullscreen_is_being_set = 0;
100910
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
2928 int height_for_full_width = 0;
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
2929 int width_for_full_height = 0;
101019
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2930 enum fullscreen_type fullscreen_wanted = FULLSCREEN_NONE;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2931
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2932 struct gcpro gcpro1, gcpro2;
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 i = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2935 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2936 i++;
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 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2939 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
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 /* Extract parm names and values into those vectors. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2942
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2943 i = 0;
93203
7327632ad432 (Fmodify_frame_parameters, x_set_frame_parameters): Use XCAR/XCDR.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91791
diff changeset
2944 for (tail = alist; CONSP (tail); tail = XCDR (tail))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2945 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2946 Lisp_Object elt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2947
93203
7327632ad432 (Fmodify_frame_parameters, x_set_frame_parameters): Use XCAR/XCDR.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91791
diff changeset
2948 elt = XCAR (tail);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2949 parms[i] = Fcar (elt);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2950 values[i] = Fcdr (elt);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2951 i++;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2952 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2953 /* TAIL and ALIST are not used again below here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2954 alist = tail = Qnil;
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 GCPRO2 (*parms, *values);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2957 gcpro1.nvars = i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2958 gcpro2.nvars = i;
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 /* 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
2961 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
2962 top = left = Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2963 icon_left = icon_top = Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2964
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2965 /* 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
2966 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
2967 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
2968
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2969 /* Process foreground_color and background_color before anything else.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2970 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
2971 cursor_color) are dependent upon them. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2972 /* Process default font as well, since fringe widths depends on it. */
101019
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2973 /* Also, process fullscreen, width and height depend upon that. */
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2974 for (p = 0; p < i; p++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2975 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2976 Lisp_Object prop, val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2977
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2978 prop = parms[p];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2979 val = values[p];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2980 if (EQ (prop, Qforeground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2981 || EQ (prop, Qbackground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2982 || EQ (prop, Qfont)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2983 || EQ (prop, Qfullscreen))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2984 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2985 register Lisp_Object param_index, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
2986
101019
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2987 if (EQ (prop, Qfullscreen))
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2988 {
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2989 /* The parameter handler can reset f->want_fullscreen to
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2990 FULLSCREEN_NONE. But we need the requested value later
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2991 to decide whether a height or width parameter shall be
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2992 applied. Therefore, we remember the requested value in
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2993 fullscreen_wanted for the following two cases. */
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2994 if (EQ (val, Qfullheight))
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2995 fullscreen_wanted = FULLSCREEN_HEIGHT;
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2996 else if (EQ (val, Qfullwidth))
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2997 fullscreen_wanted = FULLSCREEN_WIDTH;
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2998 }
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
2999
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3000 old_value = get_frame_param (f, prop);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3001 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3002 if (NILP (Fequal (val, old_value)))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3003 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3004 store_frame_param (f, prop, val);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3005
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3006 param_index = Fget (prop, Qx_frame_parameter);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3007 if (NATNUMP (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3008 && (XFASTINT (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3009 < sizeof (frame_parms)/sizeof (frame_parms[0]))
82992
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
3010 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
3011 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3012 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3013 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3014 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3015
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3016 /* Now process them in reverse of specified order. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3017 for (i--; i >= 0; i--)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3018 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3019 Lisp_Object prop, val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3020
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3021 prop = parms[i];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3022 val = values[i];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3023
84375
3dfbf778e937 (x_set_frame_parameters): Check number is positive before using XFASTINT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83804
diff changeset
3024 if (EQ (prop, Qwidth) && NATNUMP (val))
100910
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
3025 width_for_full_height = width = XFASTINT (val);
84375
3dfbf778e937 (x_set_frame_parameters): Check number is positive before using XFASTINT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 83804
diff changeset
3026 else if (EQ (prop, Qheight) && NATNUMP (val))
100910
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
3027 height_for_full_width = height = XFASTINT (val);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3028 else if (EQ (prop, Qtop))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3029 top = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3030 else if (EQ (prop, Qleft))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3031 left = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3032 else if (EQ (prop, Qicon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3033 icon_top = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3034 else if (EQ (prop, Qicon_left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3035 icon_left = val;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3036 else if (EQ (prop, Qforeground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3037 || EQ (prop, Qbackground_color)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3038 || EQ (prop, Qfont)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3039 || EQ (prop, Qfullscreen))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3040 /* Processed above. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3041 continue;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3042 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3043 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3044 register Lisp_Object param_index, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3045
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3046 old_value = get_frame_param (f, prop);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3047
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3048 store_frame_param (f, prop, val);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3049
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3050 param_index = Fget (prop, Qx_frame_parameter);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3051 if (NATNUMP (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3052 && (XFASTINT (param_index)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3053 < sizeof (frame_parms)/sizeof (frame_parms[0]))
82992
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
3054 && FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])
5de4189e659d Got rid of the rif (window-based redisplay interface) global variable.
Karoly Lorentey <lorentey@elte.hu>
parents: 82991
diff changeset
3055 (*(FRAME_RIF (f)->frame_parm_handlers[XINT (param_index)])) (f, val, old_value);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3056 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3057 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3058
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3059 /* Don't die if just one of these was set. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3060 if (EQ (left, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3061 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3062 left_no_change = 1;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3063 if (f->left_pos < 0)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3064 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
3065 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3066 XSETINT (left, f->left_pos);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3067 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3068 if (EQ (top, Qunbound))
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 top_no_change = 1;
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3071 if (f->top_pos < 0)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3072 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
3073 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3074 XSETINT (top, f->top_pos);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3075 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3076
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3077 /* 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
3078 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
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 icon_left_no_change = 1;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3081 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3082 if (NILP (icon_left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3083 XSETINT (icon_left, 0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3084 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3085 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3086 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3087 icon_top_no_change = 1;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3088 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3089 if (NILP (icon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3090 XSETINT (icon_top, 0);
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3093 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3094 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3095 /* 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
3096 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
3097 size and position.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3098 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
3099 fullscreen. We then move the frame to the appropriate
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3100 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
3101 this if-statement. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3102 int new_left, new_top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3103
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3104 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
3105 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
3106 x_set_offset (f, new_left, new_top, 1);
100910
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
3107
101019
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
3108 /* When both height and fullwidth were requested, make sure the
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
3109 requested value for height gets applied. */
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
3110 if (height_for_full_width && fullscreen_wanted == FULLSCREEN_WIDTH)
100910
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
3111 height = height_for_full_width;
101019
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
3112 /* When both width and fullheight were requested, make sure the
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
3113 requested value for width gets applied. */
f883a64629e1 (x_set_frame_parameters): Remember requested value for
Martin Rudalics <rudalics@gmx.at>
parents: 100910
diff changeset
3114 if (width_for_full_height && fullscreen_wanted == FULLSCREEN_HEIGHT)
100910
772f216c2808 (x_set_frame_parameters): Make sure height (width) get
Martin Rudalics <rudalics@gmx.at>
parents: 100825
diff changeset
3115 width = width_for_full_height;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3116 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3117
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3118 /* Don't set these parameters unless they've been explicitly
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3119 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
3120 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
3121 code has asked for it.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3122
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3123 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
3124 window's current parameters; the window may not actually exist
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3125 yet. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3126 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3127 Lisp_Object frame;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3128
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3129 check_frame_size (f, &height, &width);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3130
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3131 XSETFRAME (frame, f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3132
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3133 if (width != FRAME_COLS (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3134 || height != FRAME_LINES (f)
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3135 || f->new_text_lines || f->new_text_cols)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3136 Fset_frame_size (frame, make_number (width), make_number (height));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3137
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3138 if ((!NILP (left) || !NILP (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3139 && ! (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
3140 && ! (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
3141 && NUMBERP (top) && XINT (top) == f->top_pos))
50357
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 int leftpos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3144 int toppos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3145
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3146 /* Record the signs. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3147 f->size_hint_flags &= ~ (XNegative | YNegative);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3148 if (EQ (left, Qminus))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3149 f->size_hint_flags |= XNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3150 else if (INTEGERP (left))
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 leftpos = XINT (left);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3153 if (leftpos < 0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3154 f->size_hint_flags |= XNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3155 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3156 else if (CONSP (left) && EQ (XCAR (left), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3157 && CONSP (XCDR (left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3158 && INTEGERP (XCAR (XCDR (left))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3159 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3160 leftpos = - XINT (XCAR (XCDR (left)));
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3161 f->size_hint_flags |= XNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3162 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3163 else if (CONSP (left) && EQ (XCAR (left), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3164 && CONSP (XCDR (left))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3165 && INTEGERP (XCAR (XCDR (left))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3166 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3167 leftpos = XINT (XCAR (XCDR (left)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3168 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3169
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3170 if (EQ (top, Qminus))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3171 f->size_hint_flags |= YNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3172 else if (INTEGERP (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3173 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3174 toppos = XINT (top);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3175 if (toppos < 0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3176 f->size_hint_flags |= YNegative;
50357
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 if (CONSP (top) && EQ (XCAR (top), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3179 && CONSP (XCDR (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3180 && INTEGERP (XCAR (XCDR (top))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3181 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3182 toppos = - XINT (XCAR (XCDR (top)));
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3183 f->size_hint_flags |= YNegative;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3184 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3185 else if (CONSP (top) && EQ (XCAR (top), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3186 && CONSP (XCDR (top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3187 && INTEGERP (XCAR (XCDR (top))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3188 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3189 toppos = XINT (XCAR (XCDR (top)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3190 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3191
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 /* 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
3194 f->top_pos = toppos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3195 f->left_pos = leftpos;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3196
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3197 f->win_gravity = NorthWestGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3198
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3199 /* Actually set that position, and convert to absolute. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3200 x_set_offset (f, leftpos, toppos, -1);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3201 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3202
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3203 if ((!NILP (icon_left) || !NILP (icon_top))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3204 && ! (icon_left_no_change && icon_top_no_change))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3205 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
3206 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3207
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3208 UNGCPRO;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3209 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3210
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3211
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3212 /* Insert a description of internally-recorded parameters of frame X
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3213 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
3214 Only parameters that are specific to the X window system
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3215 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
3216 param_alist need to be considered here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3217
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3218 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3219 x_report_frame_params (f, alistptr)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3220 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3221 Lisp_Object *alistptr;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3222 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3223 char buf[16];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3224 Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3225
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3226 /* Represent negative positions (off the top or left screen edge)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3227 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
3228 XSETINT (tem, f->left_pos);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3229 if (f->left_pos >= 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3230 store_in_alist (alistptr, Qleft, tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3231 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3232 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3233
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3234 XSETINT (tem, f->top_pos);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3235 if (f->top_pos >= 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3236 store_in_alist (alistptr, Qtop, tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3237 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3238 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3239
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3240 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
3241 make_number (f->border_width));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3242 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
3243 make_number (FRAME_INTERNAL_BORDER_WIDTH (f)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3244 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
3245 make_number (FRAME_LEFT_FRINGE_WIDTH (f)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3246 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
3247 make_number (FRAME_RIGHT_FRINGE_WIDTH (f)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3248 store_in_alist (alistptr, Qscroll_bar_width,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3249 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3250 ? make_number (0)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3251 : 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
3252 ? make_number (FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3253 /* nil means "use default width"
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3254 for non-toolkit scroll bar.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3255 ruler-mode.el depends on this. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3256 : Qnil));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3257 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3258 store_in_alist (alistptr, Qwindow_id,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3259 build_string (buf));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3260 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3261 #ifdef USE_X_TOOLKIT
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3262 /* Tooltip frame may not have this widget. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3263 if (FRAME_X_OUTPUT (f)->widget)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3264 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3265 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3266 store_in_alist (alistptr, Qouter_window_id,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3267 build_string (buf));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3268 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3269 store_in_alist (alistptr, Qicon_name, f->icon_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3270 FRAME_SAMPLE_VISIBILITY (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3271 store_in_alist (alistptr, Qvisibility,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3272 (FRAME_VISIBLE_P (f) ? Qt
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3273 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3274 store_in_alist (alistptr, Qdisplay,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3275 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3276
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3277 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
3278 tem = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3279 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3280 XSETFASTINT (tem, FRAME_X_OUTPUT (f)->parent_desc);
79048
ab853f85e4dc (Qexplicit_name): New variable.
Martin Rudalics <rudalics@gmx.at>
parents: 78984
diff changeset
3281 store_in_alist (alistptr, Qexplicit_name, (f->explicit_name ? Qt : Qnil));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3282 store_in_alist (alistptr, Qparent_id, tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3283 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3284
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 /* 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
3287 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
3288
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3289 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3290 x_set_fullscreen (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3291 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3292 Lisp_Object new_value, old_value;
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 (NILP (new_value))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3295 f->want_fullscreen = FULLSCREEN_NONE;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3296 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
3297 f->want_fullscreen = FULLSCREEN_BOTH;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3298 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
3299 f->want_fullscreen = FULLSCREEN_WIDTH;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3300 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
3301 f->want_fullscreen = FULLSCREEN_HEIGHT;
73865
cec2394c7204 (x_set_fullscreen): Call fullscreen_hook if set.
Jan Djärv <jan.h.d@swipnet.se>
parents: 73687
diff changeset
3302
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
3303 if (FRAME_TERMINAL (f)->fullscreen_hook != NULL)
83548
c71725faff1a Merged from emacs@sv.gnu.org. Last-minute emacsclient rewrites be damned!
Karoly Lorentey <lorentey@elte.hu>
parents: 83542 73865
diff changeset
3304 FRAME_TERMINAL (f)->fullscreen_hook (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3305 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3306
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3307
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3308 /* 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
3309 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
3310
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3311 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3312 x_set_line_spacing (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3313 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3314 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3315 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3316 if (NILP (new_value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3317 f->extra_line_spacing = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3318 else if (NATNUMP (new_value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3319 f->extra_line_spacing = XFASTINT (new_value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3320 else
71980
423c880b693f (x_set_line_spacing, x_set_screen_gamma): Use signal_error.
Kim F. Storm <storm@cua.dk>
parents: 70732
diff changeset
3321 signal_error ("Invalid line-spacing", new_value);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3322 if (FRAME_VISIBLE_P (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3323 redraw_frame (f);
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
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 /* 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
3328 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
3329
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3330 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3331 x_set_screen_gamma (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3332 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3333 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3334 {
76029
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3335 Lisp_Object bgcolor;
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3336
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3337 if (NILP (new_value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3338 f->gamma = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3339 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
76029
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3340 /* The value 0.4545 is the normal viewing gamma. */
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3341 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3342 else
71980
423c880b693f (x_set_line_spacing, x_set_screen_gamma): Use signal_error.
Kim F. Storm <storm@cua.dk>
parents: 70732
diff changeset
3343 signal_error ("Invalid screen-gamma", new_value);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3344
76029
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3345 /* Apply the new gamma value to the frame background. */
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3346 bgcolor = Fassq (Qbackground_color, f->param_alist);
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3347 if (CONSP (bgcolor) && (bgcolor = XCDR (bgcolor), STRINGP (bgcolor)))
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3348 {
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3349 Lisp_Object index = Fget (Qbackground_color, Qx_frame_parameter);
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3350 if (NATNUMP (index)
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3351 && (XFASTINT (index)
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3352 < sizeof (frame_parms)/sizeof (frame_parms[0]))
83557
8aaa2a0d400f Fix compilation errors. Regenerate ldefs-boot.el.
Karoly Lorentey <karoly@lorentey.hu>
parents: 83556
diff changeset
3353 && FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
8aaa2a0d400f Fix compilation errors. Regenerate ldefs-boot.el.
Karoly Lorentey <karoly@lorentey.hu>
parents: 83556
diff changeset
3354 (*FRAME_RIF (f)->frame_parm_handlers[XFASTINT (index)])
8aaa2a0d400f Fix compilation errors. Regenerate ldefs-boot.el.
Karoly Lorentey <karoly@lorentey.hu>
parents: 83556
diff changeset
3355 (f, bgcolor, Qnil);
76029
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3356 }
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3357
a235d0ff326b * frame.c (x_set_screen_gamma): Apply gamma value to the frame's bgcolor.
Chong Yidong <cyd@stupidchicken.com>
parents: 75954
diff changeset
3358 Fclear_face_cache (Qnil);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3359 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3360
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3361
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3362 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3363 x_set_font (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3364 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3365 Lisp_Object arg, oldval;
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 Lisp_Object frame;
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3368 int fontset = -1;
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3369 Lisp_Object font_object;
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3370
96746
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 96675
diff changeset
3371 /* Set the frame parameter back to the old value because we may
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3372 fail to use ARG as the new parameter value. */
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3373 store_frame_param (f, Qfont, oldval);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3374
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3375 /* ARG is a fontset name, a font name, or a font object.
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3376 In the last case, this function never fail. */
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3377 if (STRINGP (arg))
90465
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3378 {
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3379 fontset = fs_query_fontset (arg, 0);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3380 if (fontset < 0)
90465
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3381 {
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3382 font_object = font_open_by_name (f, SDATA (arg));
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3383 if (NILP (font_object))
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3384 error ("Font `%s' is not defined", SDATA (arg));
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3385 arg = AREF (font_object, FONT_NAME_INDEX);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3386 }
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3387 else if (fontset > 0)
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3388 {
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3389 Lisp_Object ascii_font = fontset_ascii (fontset);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3390
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3391 font_object = font_open_by_name (f, SDATA (ascii_font));
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3392 if (NILP (font_object))
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3393 error ("Font `%s' is not defined", SDATA (arg));
101171
a94440e70b7c (x_set_font): Always store a font to the font parameter,
Jason Rumney <jasonr@gnu.org>
parents: 101019
diff changeset
3394 arg = AREF (font_object, FONT_NAME_INDEX);
90465
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3395 }
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3396 else
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3397 error ("The default fontset can't be used for a frame font");
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3398 }
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3399 else if (FONT_OBJECT_P (arg))
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3400 {
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3401 font_object = arg;
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3402 /* This is store the XLFD font name in the frame parameter for
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3403 backward compatiblity. We should store the font-object
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3404 itself in the future. */
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3405 arg = AREF (font_object, FONT_NAME_INDEX);
90465
9430e7e49983 (x_set_font) [USE_FONT_BACKEND]: Adusted for the change
Kenichi Handa <handa@m17n.org>
parents: 90428
diff changeset
3406 }
90412
6dcadac04bea Include "font.h".
Kenichi Handa <handa@m17n.org>
parents: 90399
diff changeset
3407 else
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3408 signal_error ("Invalid font", arg);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3409
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3410 if (! NILP (Fequal (font_object, oldval)))
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3411 return;
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3412 x_new_font (f, font_object, fontset);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3413 store_frame_param (f, Qfont, arg);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3414 /* Recalculate toolbar height. */
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3415 f->n_tool_bar_rows = 0;
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3416 /* Ensure we redraw it. */
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3417 clear_current_matrices (f);
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3418
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3419 recompute_basic_faces (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3420
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3421 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3422
96544
b90ccb2627a7 (Qinhibit_face_set_after_frame_default): Var deleted.
Chong Yidong <cyd@stupidchicken.com>
parents: 96480
diff changeset
3423 /* We used to call face-set-after-frame-default here, but it leads to
b90ccb2627a7 (Qinhibit_face_set_after_frame_default): Var deleted.
Chong Yidong <cyd@stupidchicken.com>
parents: 96480
diff changeset
3424 recursive calls (since that function can set the `default' face's
b90ccb2627a7 (Qinhibit_face_set_after_frame_default): Var deleted.
Chong Yidong <cyd@stupidchicken.com>
parents: 96480
diff changeset
3425 font which in turns changes the frame's `font' parameter).
b90ccb2627a7 (Qinhibit_face_set_after_frame_default): Var deleted.
Chong Yidong <cyd@stupidchicken.com>
parents: 96480
diff changeset
3426 Also I don't know what this call is meant to do, but it seems the
b90ccb2627a7 (Qinhibit_face_set_after_frame_default): Var deleted.
Chong Yidong <cyd@stupidchicken.com>
parents: 96480
diff changeset
3427 wrong way to do it anyway (it does a lot more work than what seems
b90ccb2627a7 (Qinhibit_face_set_after_frame_default): Var deleted.
Chong Yidong <cyd@stupidchicken.com>
parents: 96480
diff changeset
3428 reasonable in response to a change to `font'). */
50357
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3431
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3432 void
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3433 x_set_font_backend (f, new_value, old_value)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3434 struct frame *f;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3435 Lisp_Object new_value, old_value;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3436 {
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3437 if (! NILP (new_value)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3438 && !CONSP (new_value))
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3439 {
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3440 char *p0, *p1;
98579
6a4d13121cb1 (Fraise_frame): On text-only terminals select frame in
Martin Rudalics <rudalics@gmx.at>
parents: 98240
diff changeset
3441
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3442 CHECK_STRING (new_value);
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3443 p0 = p1 = SDATA (new_value);
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3444 new_value = Qnil;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3445 while (*p0)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3446 {
96082
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
3447 while (*p1 && ! isspace (*p1) && *p1 != ',') p1++;
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3448 if (p0 < p1)
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3449 new_value = Fcons (Fintern (make_string (p0, p1 - p0), Qnil),
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3450 new_value);
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3451 if (*p1)
96082
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
3452 {
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
3453 int c;
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
3454
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
3455 while ((c = *++p1) && isspace (c));
c506399f3c92 Include <ctype.h>
Kenichi Handa <handa@m17n.org>
parents: 95481
diff changeset
3456 }
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3457 p0 = p1;
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3458 }
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3459 new_value = Fnreverse (new_value);
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3460 }
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3461
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3462 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
3463 return;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3464
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3465 if (FRAME_FONT (f))
91248
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3466 free_all_realized_faces (Qnil);
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3467
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3468 new_value = font_update_drivers (f, NILP (new_value) ? Qt : new_value);
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3469 if (NILP (new_value))
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3470 {
91248
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3471 if (NILP (old_value))
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3472 error ("No font backend available");
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3473 font_update_drivers (f, old_value);
ed6fa90c5c89 (x_set_font_backend): Don't call Fclear_font_cache. If
Kenichi Handa <handa@m17n.org>
parents: 91119
diff changeset
3474 error ("None of specified font backends are available");
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3475 }
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3476 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
3477
94933
75fb6b489ec6 Throughout the file, delete all USE_FONT_BACKEND
Kenichi Handa <handa@m17n.org>
parents: 93883
diff changeset
3478 if (FRAME_FONT (f))
90562
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3479 {
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3480 Lisp_Object frame;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3481
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3482 XSETFRAME (frame, f);
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3483 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
3484 ++face_change_count;
9d76594a90f0 (x_set_font_backend): Do more works that were done in
Kenichi Handa <handa@m17n.org>
parents: 90547
diff changeset
3485 ++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
3486 }
90547
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3487 }
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3488
51be6e7b3881 (Qfont_backend): New variable.
Kenichi Handa <handa@m17n.org>
parents: 90533
diff changeset
3489
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3490 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3491 x_set_fringe_width (f, new_value, old_value)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3492 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3493 Lisp_Object new_value, old_value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3494 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3495 compute_fringe_widths (f, 1);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3496 }
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 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3499 x_set_border_width (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3500 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3501 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3502 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3503 CHECK_NUMBER (arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3504
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3505 if (XINT (arg) == f->border_width)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3506 return;
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 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
3509 error ("Cannot change the border width of a frame");
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3510
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3511 f->border_width = XINT (arg);
50357
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3514 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3515 x_set_internal_border_width (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3516 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3517 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3518 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3519 int old = FRAME_INTERNAL_BORDER_WIDTH (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3520
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3521 CHECK_NUMBER (arg);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3522 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
3523 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
3524 FRAME_INTERNAL_BORDER_WIDTH (f) = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3525
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3526 #ifdef USE_X_TOOLKIT
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3527 if (FRAME_X_OUTPUT (f)->edit_widget)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3528 widget_store_internal_border (FRAME_X_OUTPUT (f)->edit_widget);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3529 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3530
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3531 if (FRAME_INTERNAL_BORDER_WIDTH (f) == old)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3532 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3533
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3534 if (FRAME_X_WINDOW (f) != 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3535 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3536 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
3537 SET_FRAME_GARBAGED (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3538 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3539 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3540 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3541 SET_FRAME_GARBAGED (f);
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3544 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3545 x_set_visibility (f, value, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3546 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3547 Lisp_Object value, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3548 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3549 Lisp_Object frame;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3550 XSETFRAME (frame, f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3551
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3552 if (NILP (value))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3553 Fmake_frame_invisible (frame, Qt);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3554 else if (EQ (value, Qicon))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3555 Ficonify_frame (frame);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3556 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3557 Fmake_frame_visible (frame);
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 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3561 x_set_autoraise (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3562 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3563 Lisp_Object arg, oldval;
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 f->auto_raise = !EQ (Qnil, arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3566 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3567
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3568 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3569 x_set_autolower (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3570 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3571 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3572 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3573 f->auto_lower = !EQ (Qnil, arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3574 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3575
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3576 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3577 x_set_unsplittable (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3578 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3579 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3580 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3581 f->no_split = !NILP (arg);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3582 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3583
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3584 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3585 x_set_vertical_scroll_bars (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3586 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3587 Lisp_Object arg, oldval;
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 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
3590 || (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
3591 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3592 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3593 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3594 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3595 = (NILP (arg)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3596 ? vertical_scroll_bar_none
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3597 : EQ (Qleft, arg)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3598 ? vertical_scroll_bar_left
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3599 : EQ (Qright, arg)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3600 ? vertical_scroll_bar_right
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3601 : EQ (Qleft, Vdefault_frame_scroll_bars)
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3602 ? vertical_scroll_bar_left
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3603 : EQ (Qright, Vdefault_frame_scroll_bars)
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3604 ? vertical_scroll_bar_right
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
3605 : vertical_scroll_bar_none);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3606
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3607 /* 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
3608 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
3609 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
3610 call x_set_window_size. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3611 if (FRAME_X_WINDOW (f))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3612 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
3613 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3614 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3615 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3616
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3617 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3618 x_set_scroll_bar_width (f, arg, oldval)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3619 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3620 Lisp_Object arg, oldval;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3621 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3622 int wid = FRAME_COLUMN_WIDTH (f);
50357
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 if (NILP (arg))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3625 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3626 x_set_scroll_bar_default_width (f);
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 if (FRAME_X_WINDOW (f))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3629 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
3630 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3631 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3632 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
3633 && XFASTINT (arg) != FRAME_CONFIG_SCROLL_BAR_WIDTH (f))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3634 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3635 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3636 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3637
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3638 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
3639 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
3640 if (FRAME_X_WINDOW (f))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3641 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
3642 do_pending_window_change (0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3643 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3644
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
3645 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
3646 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3647 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3648 }
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3651
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3652 /* Return non-nil if frame F wants a bitmap icon. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3653
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3654 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3655 x_icon_type (f)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3656 FRAME_PTR f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3657 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3658 Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3659
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3660 tem = assq_no_quit (Qicon_type, f->param_alist);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3661 if (CONSP (tem))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3662 return XCDR (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3663 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3664 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3665 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3666
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3667 void
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3668 x_set_alpha (f, arg, oldval)
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3669 struct frame *f;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3670 Lisp_Object arg, oldval;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3671 {
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3672 double alpha = 1.0;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3673 double newval[2];
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3674 int i, ialpha;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3675 Lisp_Object item;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3676
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3677 for (i = 0; i < 2; i++)
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3678 {
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3679 newval[i] = 1.0;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3680 if (CONSP (arg))
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3681 {
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3682 item = CAR (arg);
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3683 arg = CDR (arg);
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3684 }
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3685 else
96480
e67065cca18d Fix whitespace.
Juanma Barranquero <lekktu@gmail.com>
parents: 96403
diff changeset
3686 item = arg;
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3687
99511
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3688 if (NILP (item))
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3689 alpha = - 1.0;
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3690 else if (FLOATP (item))
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3691 {
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3692 alpha = XFLOAT_DATA (item);
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3693 if (alpha < 0.0 || 1.0 < alpha)
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3694 args_out_of_range (make_float (0.0), make_float (1.0));
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3695 }
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3696 else if (INTEGERP (item))
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3697 {
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3698 ialpha = XINT (item);
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3699 if (ialpha < 0 || 100 < ialpha)
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3700 args_out_of_range (make_number (0), make_number (100));
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3701 else
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3702 alpha = ialpha / 100.0;
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3703 }
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3704 else
c4253d0af9b0 (x_set_alpha): Set alpha to -1 if nil given.
Chong Yidong <cyd@stupidchicken.com>
parents: 99320
diff changeset
3705 wrong_type_argument (Qnumberp, item);
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3706 newval[i] = alpha;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3707 }
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3708
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3709 for (i = 0; i < 2; i++)
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3710 f->alpha[i] = newval[i];
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3711
100001
28d216f71b5a * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
Seiji Zenitani <zenitani@mac.com>
parents: 99511
diff changeset
3712 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI) || defined (NS_IMPL_COCOA)
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3713 BLOCK_INPUT;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3714 x_set_frame_alpha (f);
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3715 UNBLOCK_INPUT;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3716 #endif
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3717
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3718 return;
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3719 }
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
3720
50357
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 /* Subroutines of creating an X frame. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3723
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3724 /* 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
3725 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
3726
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3727 void
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3728 validate_x_resource_name ()
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3729 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3730 int len = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3731 /* Number of valid characters in the resource name. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3732 int good_count = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3733 /* Number of invalid characters in the resource name. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3734 int bad_count = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3735 Lisp_Object new;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3736 int i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3737
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3738 if (!STRINGP (Vx_resource_class))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3739 Vx_resource_class = build_string (EMACS_CLASS);
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 if (STRINGP (Vx_resource_name))
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 unsigned char *p = SDATA (Vx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3744 int i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3745
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3746 len = SBYTES (Vx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3747
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3748 /* Only letters, digits, - and _ are valid in resource names.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3749 Count the valid characters and count the invalid ones. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3750 for (i = 0; i < len; i++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3751 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3752 int c = p[i];
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3753 if (! ((c >= 'a' && c <= 'z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3754 || (c >= 'A' && c <= 'Z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3755 || (c >= '0' && c <= '9')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3756 || c == '-' || c == '_'))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3757 bad_count++;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3758 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3759 good_count++;
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 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3763 /* Not a string => completely invalid. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3764 bad_count = 5, good_count = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3765
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3766 /* If name is valid already, return. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3767 if (bad_count == 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3768 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3769
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3770 /* If name is entirely invalid, or nearly so, use `emacs'. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3771 if (good_count == 0
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3772 || (good_count == 1 && bad_count > 0))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3773 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3774 Vx_resource_name = build_string ("emacs");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3775 return;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3776 }
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 /* 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
3779 with underscores. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3780
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3781 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3782
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3783 for (i = 0; i < len; i++)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3784 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3785 int c = SREF (new, i);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3786 if (! ((c >= 'a' && c <= 'z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3787 || (c >= 'A' && c <= 'Z')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3788 || (c >= '0' && c <= '9')
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3789 || c == '-' || c == '_'))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3790 SSET (new, i, '_');
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3791 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3792 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3793
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3794
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3795 extern char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3796 extern Display_Info *check_x_display_info P_ ((Lisp_Object));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3797
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3798
63698
e7e58f0947fe (make_frame_without_minibuffer): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents: 63643
diff changeset
3799 /* Get specified attribute from resource database RDB.
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3800 See Fx_get_resource below for other parameters. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3801
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3802 static Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3803 xrdb_get_resource (rdb, attribute, class, component, subclass)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3804 XrmDatabase rdb;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3805 Lisp_Object attribute, class, component, subclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3806 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3807 register char *value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3808 char *name_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3809 char *class_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3810
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3811 CHECK_STRING (attribute);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3812 CHECK_STRING (class);
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 if (!NILP (component))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3815 CHECK_STRING (component);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3816 if (!NILP (subclass))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3817 CHECK_STRING (subclass);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3818 if (NILP (component) != NILP (subclass))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3819 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
3820
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3821 validate_x_resource_name ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3822
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3823 /* Allocate space for the components, the dots which separate them,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3824 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
3825 name_key = (char *) alloca (SBYTES (Vx_resource_name)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3826 + (STRINGP (component)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3827 ? SBYTES (component) : 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3828 + SBYTES (attribute)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3829 + 3);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3830
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3831 class_key = (char *) alloca (SBYTES (Vx_resource_class)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3832 + SBYTES (class)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3833 + (STRINGP (subclass)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3834 ? SBYTES (subclass) : 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3835 + 3);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3836
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3837 /* Start with emacs.FRAMENAME for the name (the specific one)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3838 and with `Emacs' for the class key (the general one). */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3839 strcpy (name_key, SDATA (Vx_resource_name));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3840 strcpy (class_key, SDATA (Vx_resource_class));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3841
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3842 strcat (class_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3843 strcat (class_key, SDATA (class));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3844
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3845 if (!NILP (component))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3846 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3847 strcat (class_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3848 strcat (class_key, SDATA (subclass));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3849
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3850 strcat (name_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3851 strcat (name_key, SDATA (component));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3852 }
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 strcat (name_key, ".");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3855 strcat (name_key, SDATA (attribute));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3856
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3857 value = x_get_string_resource (rdb, name_key, class_key);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3858
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3859 if (value != (char *) 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3860 return build_string (value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3861 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3862 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3863 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3864
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3865
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3866 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
3867 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
3868 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
3869 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
3870 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
3871
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3872 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
3873 class, respectively. You must specify both of them or neither.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3874 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3875 and the class is `Emacs.CLASS.SUBCLASS'. */)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3876 (attribute, class, component, subclass)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3877 Lisp_Object attribute, class, component, subclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3878 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3879 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3880 check_x ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3881 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3882
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3883 return xrdb_get_resource (check_x_display_info (Qnil)->xrdb,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3884 attribute, class, component, subclass);
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
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3887 /* 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
3888
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3889 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3890 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
3891 Display_Info *dpyinfo;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3892 Lisp_Object attribute, class, component, subclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3893 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3894 return xrdb_get_resource (dpyinfo->xrdb,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3895 attribute, class, component, subclass);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3896 }
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 /* Used when C code wants a resource value. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3899
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3900 char *
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3901 x_get_resource_string (attribute, class)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3902 char *attribute, *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3903 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3904 char *name_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3905 char *class_key;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3906 struct frame *sf = SELECTED_FRAME ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3907
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3908 /* Allocate space for the components, the dots which separate them,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3909 and the final '\0'. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3910 name_key = (char *) alloca (SBYTES (Vinvocation_name)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3911 + strlen (attribute) + 2);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3912 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3913 + strlen (class) + 2);
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 sprintf (name_key, "%s.%s", SDATA (Vinvocation_name), attribute);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3916 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3917
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3918 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
3919 name_key, class_key);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3920 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3921
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 /* Return the value of parameter PARAM.
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 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
3926 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
3927
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3928 Convert the resource to the type specified by desired_type.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3929
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3930 If no default is specified, return Qunbound. If you call
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3931 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
3932 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
3933
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3934 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3935 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
3936 Display_Info *dpyinfo;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3937 Lisp_Object alist, param;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3938 char *attribute;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3939 char *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3940 enum resource_types type;
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 register Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3943
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3944 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
3945
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3946 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
3947 {
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3948 /* 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
3949 so that it won't be "left over" at the end. */
68905
f157b409991c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
3950 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
3951 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
3952 /* 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
3953 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
3954 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
3955 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
3956 && 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
3957 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
3958 }
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3959 else
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3960 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
3961
00f2522b62f3 (x_get_arg): "Clear out" the parm in ALIST if found there.
Richard M. Stallman <rms@gnu.org>
parents: 68242
diff changeset
3962 /* 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
3963 look in the X resources. */
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3964 if (EQ (tem, Qnil))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3965 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3966 if (attribute)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3967 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3968 tem = display_x_get_resource (dpyinfo,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3969 build_string (attribute),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3970 build_string (class),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3971 Qnil, Qnil);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3972
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3973 if (NILP (tem))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3974 return Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3975
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3976 switch (type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3977 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3978 case RES_TYPE_NUMBER:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3979 return make_number (atoi (SDATA (tem)));
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 case RES_TYPE_FLOAT:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3982 return make_float (atof (SDATA (tem)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3983
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3984 case RES_TYPE_BOOLEAN:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3985 tem = Fdowncase (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3986 if (!strcmp (SDATA (tem), "on")
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
3987 #ifdef HAVE_NS
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
3988 || !strcmp(SDATA(tem), "yes")
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
3989 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3990 || !strcmp (SDATA (tem), "true"))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3991 return Qt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3992 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3993 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3994
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3995 case RES_TYPE_STRING:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3996 return tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3997
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3998 case RES_TYPE_SYMBOL:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
3999 /* 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
4000 to Qt, and `false' and `off' to Qnil. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4001 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4002 Lisp_Object lower;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4003 lower = Fdowncase (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4004 if (!strcmp (SDATA (lower), "on")
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4005 #ifdef HAVE_NS
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4006 || !strcmp(SDATA(lower), "yes")
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4007 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4008 || !strcmp (SDATA (lower), "true"))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4009 return Qt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4010 else if (!strcmp (SDATA (lower), "off")
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4011 #ifdef HAVE_NS
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4012 || !strcmp(SDATA(lower), "no")
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4013 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4014 || !strcmp (SDATA (lower), "false"))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4015 return Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4016 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4017 return Fintern (tem, Qnil);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4018 }
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 default:
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4021 abort ();
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4022 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4023 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4024 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4025 return Qunbound;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4026 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4027 return Fcdr (tem);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4028 }
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 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4031 x_frame_get_arg (f, alist, param, attribute, class, type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4032 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4033 Lisp_Object alist, param;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4034 char *attribute;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4035 char *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4036 enum resource_types type;
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 return x_get_arg (FRAME_X_DISPLAY_INFO (f),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4039 alist, param, attribute, class, type);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4040 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4041
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4042 /* 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
4043
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4044 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4045 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
4046 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4047 Lisp_Object alist, param;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4048 char *attribute;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4049 char *class;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4050 enum resource_types type;
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 Lisp_Object value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4053
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4054 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
4055 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
4056 if (! NILP (value) && ! EQ (value, Qunbound))
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4057 store_frame_param (f, param, value);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4058
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4059 return value;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4060 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4061
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4062
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4063 /* 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
4064 of the parameter named PROP (a Lisp symbol).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4065 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
4066 on the frame named NAME.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4067 If that is not found either, use the value DEFLT. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4068
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4069 Lisp_Object
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4070 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4071 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4072 Lisp_Object alist;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4073 Lisp_Object prop;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4074 Lisp_Object deflt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4075 char *xprop;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4076 char *xclass;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4077 enum resource_types type;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4078 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4079 Lisp_Object tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4080
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4081 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
4082 if (EQ (tem, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4083 tem = deflt;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4084 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4085 return tem;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4086 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4087
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4088
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4089
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4090
97449
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4091 #ifdef HAVE_NS
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4092
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4093 /* We used to define x-parse-geometry directly in ns-win.el, but that
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4094 confused make-docfile: the documentation string in ns-win.el was
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4095 used for x-parse-geometry even in non-NS builds.. */
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4096
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4097 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4098 doc: /* Parse a Nextstep-style geometry string STRING.
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4099 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4100 The properties returned may include `top', `left', `height', and `width'.
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4101 This works by calling `ns-parse-geometry'. */)
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4102 (string)
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4103 Lisp_Object string;
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4104 {
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4105 call1 (Qns_parse_geometry, string);
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4106 }
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4107
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4108 #else /* !HAVE_NS */
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4109
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4110 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
4111 doc: /* Parse an X-style geometry string STRING.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4112 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4113 The properties returned may include `top', `left', `height', and `width'.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4114 The value of `left' or `top' may be an integer,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4115 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
4116 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
4117 (string)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4118 Lisp_Object string;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4119 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4120 int geometry, x, y;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4121 unsigned int width, height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4122 Lisp_Object result;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4123
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4124 CHECK_STRING (string);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4125
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4126 geometry = XParseGeometry ((char *) SDATA (string),
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4127 &x, &y, &width, &height);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4128 result = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4129 if (geometry & XValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4130 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4131 Lisp_Object element;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4132
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4133 if (x >= 0 && (geometry & XNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4134 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4135 else if (x < 0 && ! (geometry & XNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4136 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4137 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4138 element = Fcons (Qleft, make_number (x));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4139 result = Fcons (element, result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4140 }
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 if (geometry & YValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4143 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4144 Lisp_Object element;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4145
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4146 if (y >= 0 && (geometry & YNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4147 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4148 else if (y < 0 && ! (geometry & YNegative))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4149 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4150 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4151 element = Fcons (Qtop, make_number (y));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4152 result = Fcons (element, result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4153 }
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 if (geometry & WidthValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4156 result = Fcons (Fcons (Qwidth, make_number (width)), result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4157 if (geometry & HeightValue)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4158 result = Fcons (Fcons (Qheight, make_number (height)), result);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4159
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4160 return result;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4161 }
97449
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4162 #endif /* HAVE_NS */
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4163
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4164
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4165 /* Calculate the desired size and position of frame F.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4166 Return the flags saying which aspects were specified.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4167
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4168 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
4169
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4170 Adjust height for toolbar if TOOLBAR_P is 1.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4171
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4172 This function does not make the coordinates positive. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4173
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4174 #define DEFAULT_ROWS 40
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4175 #define DEFAULT_COLS 80
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 int
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4178 x_figure_window_size (f, parms, toolbar_p)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4179 struct frame *f;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4180 Lisp_Object parms;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4181 int toolbar_p;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4182 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4183 register Lisp_Object tem0, tem1, tem2;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4184 long window_prompting = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4185 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4186
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4187 /* Default values if we fall through.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4188 Actually, if that happens we should get
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4189 window manager prompting. */
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4190 SET_FRAME_COLS (f, DEFAULT_COLS);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4191 FRAME_LINES (f) = DEFAULT_ROWS;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4192 /* Window managers expect that if program-specified
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4193 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
4194 f->top_pos = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4195 f->left_pos = 0;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4196
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4197 /* 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
4198 values set here. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4199 /* ++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
4200 f->new_text_cols = f->new_text_lines = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4201
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4202 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
4203 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
4204 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
4205 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4206 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4207 if (!EQ (tem0, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4208 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4209 CHECK_NUMBER (tem0);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4210 FRAME_LINES (f) = XINT (tem0);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4211 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4212 if (!EQ (tem1, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4213 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4214 CHECK_NUMBER (tem1);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4215 SET_FRAME_COLS (f, XINT (tem1));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4216 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4217 if (!NILP (tem2) && !EQ (tem2, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4218 window_prompting |= USSize;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4219 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4220 window_prompting |= PSize;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4221 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4222
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4223 f->scroll_bar_actual_width
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4224 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4225
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4226 /* 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
4227 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
4228 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
4229 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
4230
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4231 /* 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
4232 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
4233 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
4234 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
4235 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
4236 will get. */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4237 if (toolbar_p && FRAME_TOOL_BAR_LINES (f))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4238 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4239 int margin, relief, bar_height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4240
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4241 relief = (tool_bar_button_relief >= 0
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4242 ? tool_bar_button_relief
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4243 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4244
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4245 if (INTEGERP (Vtool_bar_button_margin)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4246 && XINT (Vtool_bar_button_margin) > 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4247 margin = XFASTINT (Vtool_bar_button_margin);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4248 else if (CONSP (Vtool_bar_button_margin)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4249 && INTEGERP (XCDR (Vtool_bar_button_margin))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4250 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4251 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4252 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4253 margin = 0;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4254
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4255 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
4256 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
4257 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4258
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4259 compute_fringe_widths (f, 0);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4260
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4261 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
4262 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
4263
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4264 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
4265 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
4266 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
4267 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4268 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4269 if (EQ (tem0, Qminus))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4270 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4271 f->top_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4272 window_prompting |= YNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4273 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4274 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4275 && CONSP (XCDR (tem0))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4276 && INTEGERP (XCAR (XCDR (tem0))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4277 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4278 f->top_pos = - XINT (XCAR (XCDR (tem0)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4279 window_prompting |= YNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4280 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4281 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4282 && CONSP (XCDR (tem0))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4283 && INTEGERP (XCAR (XCDR (tem0))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4284 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4285 f->top_pos = XINT (XCAR (XCDR (tem0)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4286 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4287 else if (EQ (tem0, Qunbound))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4288 f->top_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4289 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4290 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4291 CHECK_NUMBER (tem0);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4292 f->top_pos = XINT (tem0);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4293 if (f->top_pos < 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4294 window_prompting |= YNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4295 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4296
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4297 if (EQ (tem1, Qminus))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4298 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4299 f->left_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4300 window_prompting |= XNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4301 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4302 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4303 && CONSP (XCDR (tem1))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4304 && INTEGERP (XCAR (XCDR (tem1))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4305 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4306 f->left_pos = - XINT (XCAR (XCDR (tem1)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4307 window_prompting |= XNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4308 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4309 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4310 && CONSP (XCDR (tem1))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4311 && INTEGERP (XCAR (XCDR (tem1))))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4312 {
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4313 f->left_pos = XINT (XCAR (XCDR (tem1)));
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4314 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4315 else if (EQ (tem1, Qunbound))
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4316 f->left_pos = 0;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4317 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4318 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4319 CHECK_NUMBER (tem1);
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4320 f->left_pos = XINT (tem1);
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4321 if (f->left_pos < 0)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4322 window_prompting |= XNegative;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4323 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4324
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4325 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4326 window_prompting |= USPosition;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4327 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4328 window_prompting |= PPosition;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4329 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4330
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4331 if (f->want_fullscreen != FULLSCREEN_NONE)
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4332 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4333 int left, top;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4334 int width, height;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4335
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4336 /* It takes both for some WM:s to place it where we want */
79206
2f9a621d6bd9 (x_figure_window_size): For fullscreen case,
Richard M. Stallman <rms@gnu.org>
parents: 79048
diff changeset
4337 window_prompting |= USPosition | PPosition;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4338 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
4339 FRAME_COLS (f) = width;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4340 FRAME_LINES (f) = height;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4341 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
4342 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
4343 f->left_pos = left;
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4344 f->top_pos = top;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4345 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4346
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4347 if (window_prompting & XNegative)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4348 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4349 if (window_prompting & YNegative)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4350 f->win_gravity = SouthEastGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4351 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4352 f->win_gravity = NorthEastGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4353 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4354 else
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4355 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4356 if (window_prompting & YNegative)
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4357 f->win_gravity = SouthWestGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4358 else
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4359 f->win_gravity = NorthWestGravity;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4360 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4361
51194
a873867ba3d2 Make (many) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents: 51091
diff changeset
4362 f->size_hint_flags = window_prompting;
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4363
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4364 return window_prompting;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4365 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4366
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4367
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4368
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4369 #endif /* HAVE_WINDOW_SYSTEM */
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4370
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4371
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4372
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4373 /***********************************************************************
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4374 Initialization
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4375 ***********************************************************************/
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4376
21514
fa9ff387d260 Fix -Wimplicit warnings.
Andreas Schwab <schwab@suse.de>
parents: 21359
diff changeset
4377 void
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4378 syms_of_frame ()
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4379 {
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4380 Qframep = intern ("framep");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4381 staticpro (&Qframep);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4382 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
4383 staticpro (&Qframe_live_p);
79048
ab853f85e4dc (Qexplicit_name): New variable.
Martin Rudalics <rudalics@gmx.at>
parents: 78984
diff changeset
4384 Qexplicit_name = intern ("explicit-name");
ab853f85e4dc (Qexplicit_name): New variable.
Martin Rudalics <rudalics@gmx.at>
parents: 78984
diff changeset
4385 staticpro (&Qexplicit_name);
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4386 Qheight = intern ("height");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4387 staticpro (&Qheight);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4388 Qicon = intern ("icon");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4389 staticpro (&Qicon);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4390 Qminibuffer = intern ("minibuffer");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4391 staticpro (&Qminibuffer);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4392 Qmodeline = intern ("modeline");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4393 staticpro (&Qmodeline);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4394 Qonly = intern ("only");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4395 staticpro (&Qonly);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4396 Qwidth = intern ("width");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4397 staticpro (&Qwidth);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4398 Qgeometry = intern ("geometry");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4399 staticpro (&Qgeometry);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4400 Qicon_left = intern ("icon-left");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4401 staticpro (&Qicon_left);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4402 Qicon_top = intern ("icon-top");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4403 staticpro (&Qicon_top);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4404 Qleft = intern ("left");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4405 staticpro (&Qleft);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4406 Qright = intern ("right");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4407 staticpro (&Qright);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4408 Quser_position = intern ("user-position");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4409 staticpro (&Quser_position);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4410 Quser_size = intern ("user-size");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4411 staticpro (&Quser_size);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4412 Qwindow_id = intern ("window-id");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4413 staticpro (&Qwindow_id);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4414 #ifdef HAVE_X_WINDOWS
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4415 Qouter_window_id = intern ("outer-window-id");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4416 staticpro (&Qouter_window_id);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4417 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4418 Qparent_id = intern ("parent-id");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4419 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
4420 Qx = intern ("x");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4421 staticpro (&Qx);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4422 Qw32 = intern ("w32");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4423 staticpro (&Qw32);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4424 Qpc = intern ("pc");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4425 staticpro (&Qpc);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4426 Qmac = intern ("mac");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4427 staticpro (&Qmac);
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4428 Qns = intern ("ns");
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4429 staticpro (&Qns);
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4430 Qvisible = intern ("visible");
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4431 staticpro (&Qvisible);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4432 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
4433 staticpro (&Qbuffer_predicate);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4434 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
4435 staticpro (&Qbuffer_list);
83415
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
4436 Qburied_buffer_list = intern ("buried-buffer-list");
d2c799f58129 Implement full support for frame-local `next-buffer' and `previous-buffer'.
Karoly Lorentey <lorentey@elte.hu>
parents: 83384
diff changeset
4437 staticpro (&Qburied_buffer_list);
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4438 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
4439 staticpro (&Qdisplay_type);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4440 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
4441 staticpro (&Qbackground_mode);
91732
c33ec1f680a9 * frame.c (Qnoelisp): New symbol.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91641
diff changeset
4442 Qnoelisp = intern ("noelisp");
c33ec1f680a9 * frame.c (Qnoelisp): New symbol.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91641
diff changeset
4443 staticpro (&Qnoelisp);
42743
1e6231c9c359 (store_frame_param): Call set_tty_color_mode for termcap
Eli Zaretskii <eliz@gnu.org>
parents: 41718
diff changeset
4444 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
4445 staticpro (&Qtty_color_mode);
53226
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
4446 Qtty = intern ("tty");
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
4447 staticpro (&Qtty);
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
4448 Qtty_type = intern ("tty-type");
dd3018b4785b Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents: 53072
diff changeset
4449 staticpro (&Qtty_type);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4450
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4451 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
4452 staticpro (&Qface_set_after_frame_default);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4453
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4454 Qfullwidth = intern ("fullwidth");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4455 staticpro (&Qfullwidth);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4456 Qfullheight = intern ("fullheight");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4457 staticpro (&Qfullheight);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4458 Qfullboth = intern ("fullboth");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4459 staticpro (&Qfullboth);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4460 Qx_resource_name = intern ("x-resource-name");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4461 staticpro (&Qx_resource_name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4462
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4463 Qx_frame_parameter = intern ("x-frame-parameter");
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4464 staticpro (&Qx_frame_parameter);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4465
83431
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
4466 Qterminal = intern ("terminal");
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
4467 staticpro (&Qterminal);
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
4468 Qterminal_live_p = intern ("terminal-live-p");
76396de7f50a Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents: 83427
diff changeset
4469 staticpro (&Qterminal_live_p);
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
4470
97449
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4471 #ifdef HAVE_NS
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4472 Qns_parse_geometry = intern ("ns-parse-geometry");
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4473 staticpro (&Qns_parse_geometry);
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4474 #endif
d3a738f747c6 (Qns_parse_geometry): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 97141
diff changeset
4475
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4476 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4477 int i;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4478
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4479 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
4480 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4481 Lisp_Object v = intern (frame_parms[i].name);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4482 if (frame_parms[i].variable)
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4483 {
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4484 *frame_parms[i].variable = v;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4485 staticpro (frame_parms[i].variable);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4486 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4487 Fput (v, Qx_frame_parameter, make_number (i));
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4488 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4489 }
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4490
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
4491 #ifdef HAVE_WINDOW_SYSTEM
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4492 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4493 doc: /* The name Emacs uses to look up X resources.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4494 `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
4495 when requesting resource values.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4496 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
4497 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
4498 switches, if present.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4499
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4500 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
4501 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
4502 Vx_resource_name = Qnil;
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4503
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4504 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4505 doc: /* The class Emacs uses to look up X resources.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4506 `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
4507 when requesting resource values.
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4508
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4509 Emacs initially sets `x-resource-class' to "Emacs".
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4510
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4511 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
4512 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
4513 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
4514 Vx_resource_class = build_string (EMACS_CLASS);
95157
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4515
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4516 DEFVAR_LISP ("frame-alpha-lower-limit", &Vframe_alpha_lower_limit,
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4517 doc: /* The lower limit of the frame opacity (alpha transparency).
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4518 The value should range from 0 (invisible) to 100 (completely opaque).
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4519 You can also use a floating number between 0.0 and 1.0.
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4520 The default is 20. */);
b419f60db46c Seiji Zenitani <zenitani at mac.com>
Glenn Morris <rgm@gnu.org>
parents: 95044
diff changeset
4521 Vframe_alpha_lower_limit = make_number (20);
50373
6defa3317421 Fix compilation for --with-x=no.
Kim F. Storm <storm@cua.dk>
parents: 50357
diff changeset
4522 #endif
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4523
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4524 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
4525 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
4526 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
4527 (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
4528 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
4529 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
4530 For values specific to the first Emacs frame, see `initial-frame-alist'.
83496
f271076dab2d Fix toolbars on X frames when Emacs is started on a tty. (Reported by Richard Lewis.)
Karoly Lorentey <lorentey@elte.hu>
parents: 83486
diff changeset
4531 For window-system specific values, see `window-system-default-frame-alist'.
40105
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4532 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
4533 `minibuffer-frame-alist'.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4534 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
4535 have menu bars; `menu-bar-mode' works by altering this element.
43717
a459b58a6d95 Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 43716
diff changeset
4536 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
4537 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
4538
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4539 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
4540 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
4541 #ifdef HAVE_WINDOW_SYSTEM
97043
9592c50233ab Remove support for Mac Carbon.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96831
diff changeset
4542 #if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
96675
d45acf0c8d23 merging Emacs.app (NeXTstep port)
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96544
diff changeset
4543 /* MS-Windows and Mac OS X have scroll bars on the right by default. */
52557
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4544 Vdefault_frame_scroll_bars = Qright;
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4545 #else
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4546 Vdefault_frame_scroll_bars = Qleft;
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4547 #endif
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4548 #else
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4549 Vdefault_frame_scroll_bars = Qnil;
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4550 #endif
4a93216e6678 (Vdefault_frame_scroll_bars): New variable.
Kim F. Storm <storm@cua.dk>
parents: 52401
diff changeset
4551
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4552 DEFVAR_LISP ("terminal-frame", &Vterminal_frame,
82990
2ecd1f669db9 Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents: 82989
diff changeset
4553 doc: /* The initial frame-object, which represents Emacs's stdout. */);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4554
27795
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
4555 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
4556 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
4557 `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
4558 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
4559 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
4560 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
4561 Vmouse_position_function = Qnil;
83292274bbd4 (Vmouse_position_function): New variable.
Dave Love <fx@gnu.org>
parents: 27725
diff changeset
4562
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4563 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 47731
diff changeset
4564 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
4565 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
4566 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
4567 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
4568 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
4569 Vmouse_highlight = Qt;
43366
512ab477b395 (Vmouse_highlight): New variable.
Kim F. Storm <storm@cua.dk>
parents: 42743
diff changeset
4570
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4571 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
4572 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
4573 The functions are run with one arg, the frame to be deleted.
83335
60208d3a0bb1 Handle and document that `delete-frame' may call functions in `delete-frame-functions' twice.
Karoly Lorentey <lorentey@elte.hu>
parents: 83332
diff changeset
4574 See `delete-frame'.
60208d3a0bb1 Handle and document that `delete-frame' may call functions in `delete-frame-functions' twice.
Karoly Lorentey <lorentey@elte.hu>
parents: 83332
diff changeset
4575
93369
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
4576 Note that functions in this list may be called just before the frame is
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
4577 actually deleted, or some time later (or even both when an earlier function
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
4578 in `delete-frame-functions' (indirectly) calls `delete-frame'
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
4579 recursively). */);
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4580 Vdelete_frame_functions = Qnil;
93369
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
4581 Qdelete_frame_functions = intern ("delete-frame-functions");
ed10c3092847 * keyboard.c (pending_funcalls): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 93203
diff changeset
4582 staticpro (&Qdelete_frame_functions);
47731
755c4233cfba * frame.c (Vdelete_frame_functions): New variable.
John Paul Wallington <jpw@pobox.com>
parents: 47036
diff changeset
4583
11779
6234b3610a6f Vdefault_minibuffer_frame is now part of KBOARD instead
Karl Heuer <kwzh@gnu.org>
parents: 11775
diff changeset
4584 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
4585 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
4586
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4587 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
4588 appropriate surrogate.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4589
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4590 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
4591 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
4592 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
4593 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
4594 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
4595 displayed.
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4596
bb56bafcdcc7 Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents: 39973
diff changeset
4597 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
4598
78984
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4599 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse,
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4600 doc: /* Non-nil if window system changes focus when you move the mouse.
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4601 You should set this variable to tell Emacs how your window manager
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4602 handles focus, since there is no way in general for Emacs to find out
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4603 automatically. */);
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4604 #ifdef HAVE_WINDOW_SYSTEM
97043
9592c50233ab Remove support for Mac Carbon.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 96831
diff changeset
4605 #if defined(HAVE_NTGUI) || defined(HAVE_NS)
78984
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4606 focus_follows_mouse = 0;
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4607 #else
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4608 focus_follows_mouse = 1;
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4609 #endif
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4610 #else
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4611 focus_follows_mouse = 0;
a26a566a5577 (focus_follows_mouse): Moved here from frame.el to allow
Martin Rudalics <rudalics@gmx.at>
parents: 78260
diff changeset
4612 #endif
85651
a8927de00181 (syms_of_frame) <delete-frame-functions>: Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 85614
diff changeset
4613
33509
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4614 staticpro (&Vframe_list);
a7d245e080d1 (syms_of_frame_1): Removed; code moved to syms_of_frame.
Gerd Moellmann <gerd@gnu.org>
parents: 33005
diff changeset
4615
11169
d0550c056e5b [MULTI_FRAME] (Factive_minibuffer_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 11126
diff changeset
4616 defsubr (&Sactive_minibuffer_window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4617 defsubr (&Sframep);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1809
diff changeset
4618 defsubr (&Sframe_live_p);
83004
7900111db01c Converted display hooks to be display-local. Plus many bugfixes.
Karoly Lorentey <lorentey@elte.hu>
parents: 83003
diff changeset
4619 defsubr (&Swindow_system);
10768
938451cf1b10 (Fmake_terminal_frame): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10676
diff changeset
4620 defsubr (&Smake_terminal_frame);
2298
872a3a2c3fed * frame.c (Fhandle_switch_frame): Renamed from Fselect_frame.
Jim Blandy <jimb@redhat.com>
parents: 2282
diff changeset
4621 defsubr (&Shandle_switch_frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4622 defsubr (&Sselect_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4623 defsubr (&Sselected_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4624 defsubr (&Swindow_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4625 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
4626 defsubr (&Sframe_first_window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4627 defsubr (&Sframe_selected_window);
7055
5e4906d964b8 (Fset_frame_selected_window): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7025
diff changeset
4628 defsubr (&Sset_frame_selected_window);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4629 defsubr (&Sframe_list);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4630 defsubr (&Snext_frame);
4424
027d3affb2f8 (Fprevious_frame): New function, for parity with Fnext_frame.
Roland McGrath <roland@gnu.org>
parents: 4412
diff changeset
4631 defsubr (&Sprevious_frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4632 defsubr (&Sdelete_frame);
454
ca410e0b4797 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 386
diff changeset
4633 defsubr (&Smouse_position);
7025
24e759919770 (Fmouse_pixel_position, Fset_mouse_pixel_position): New functions.
Richard M. Stallman <rms@gnu.org>
parents: 6986
diff changeset
4634 defsubr (&Smouse_pixel_position);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4635 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
4636 defsubr (&Sset_mouse_pixel_position);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4637 #if 0
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4638 defsubr (&Sframe_configuration);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4639 defsubr (&Srestore_frame_configuration);
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4640 #endif
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4641 defsubr (&Smake_frame_visible);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4642 defsubr (&Smake_frame_invisible);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4643 defsubr (&Siconify_frame);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4644 defsubr (&Sframe_visible_p);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4645 defsubr (&Svisible_frame_list);
2282
f727944c11aa * frame.c (Fraise_frame, Flower_frame): Renamed from
Jim Blandy <jimb@redhat.com>
parents: 2207
diff changeset
4646 defsubr (&Sraise_frame);
f727944c11aa * frame.c (Fraise_frame, Flower_frame): Renamed from
Jim Blandy <jimb@redhat.com>
parents: 2207
diff changeset
4647 defsubr (&Slower_frame);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4648 defsubr (&Sredirect_frame_focus);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4649 defsubr (&Sframe_focus);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4650 defsubr (&Sframe_parameters);
31399
db831ffcd565 (Qdisplay_type): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 31102
diff changeset
4651 defsubr (&Sframe_parameter);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4652 defsubr (&Smodify_frame_parameters);
2068
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4653 defsubr (&Sframe_char_height);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4654 defsubr (&Sframe_char_width);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4655 defsubr (&Sframe_pixel_height);
6357ea40643c (Fframe_char_height, Fframe_char_width):
Richard M. Stallman <rms@gnu.org>
parents: 1989
diff changeset
4656 defsubr (&Sframe_pixel_width);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4657 defsubr (&Sset_frame_height);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4658 defsubr (&Sset_frame_width);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4659 defsubr (&Sset_frame_size);
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 756
diff changeset
4660 defsubr (&Sset_frame_position);
50357
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4661
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4662 #ifdef HAVE_WINDOW_SYSTEM
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4663 defsubr (&Sx_get_resource);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4664 defsubr (&Sx_parse_geometry);
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4665 #endif
e5a09c97e444 Include blockinput.h.
Kim F. Storm <storm@cua.dk>
parents: 49600
diff changeset
4666
286
8a40ab4a424f Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4667 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51665
diff changeset
4668
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51665
diff changeset
4669 /* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51665
diff changeset
4670 (do not change this comment) */