Mercurial > emacs
annotate src/xfns.c @ 2871:6b9c0ce0bcb8
* config.h.in (STDC_HEADERS, TIME_WITH_SYS_TIME,
CRAY_STACKSEG_END, STACK_DIRECTION): Add #undef clauses for these,
since otherwise the autoconf tests in configure.in won't do us
much good.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 18 May 1993 22:44:08 +0000 |
parents | b002f2c288d3 |
children | 9a78169e44df |
rev | line source |
---|---|
389 | 1 /* Functions for the X window system. |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2 Copyright (C) 1989, 1992, 1993 Free Software Foundation. |
389 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
708 | 8 the Free Software Foundation; either version 2, or (at your option) |
389 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 /* Completely rewritten by Richard Stallman. */ | |
21 | |
22 /* Rewritten for X11 by Joseph Arceneaux */ | |
23 | |
24 #if 0 | |
25 #include <stdio.h> | |
26 #endif | |
27 #include <signal.h> | |
28 #include "config.h" | |
29 #include "lisp.h" | |
30 #include "xterm.h" | |
771 | 31 #include "frame.h" |
389 | 32 #include "window.h" |
33 #include "buffer.h" | |
34 #include "dispextern.h" | |
515 | 35 #include "keyboard.h" |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2355
diff
changeset
|
36 #include "blockinput.h" |
389 | 37 |
38 #ifdef HAVE_X_WINDOWS | |
39 extern void abort (); | |
40 | |
2355
cec8c9490d8a
* xfns.c [VMS]: Get the gray_bits from [.bitmaps]gray.xbm.
Jim Blandy <jimb@redhat.com>
parents:
2341
diff
changeset
|
41 #ifndef VMS |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
42 #include <X11/bitmaps/gray> |
2355
cec8c9490d8a
* xfns.c [VMS]: Get the gray_bits from [.bitmaps]gray.xbm.
Jim Blandy <jimb@redhat.com>
parents:
2341
diff
changeset
|
43 #else |
cec8c9490d8a
* xfns.c [VMS]: Get the gray_bits from [.bitmaps]gray.xbm.
Jim Blandy <jimb@redhat.com>
parents:
2341
diff
changeset
|
44 #include "[.bitmaps]gray.xbm" |
cec8c9490d8a
* xfns.c [VMS]: Get the gray_bits from [.bitmaps]gray.xbm.
Jim Blandy <jimb@redhat.com>
parents:
2341
diff
changeset
|
45 #endif |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
46 |
389 | 47 #define min(a,b) ((a) < (b) ? (a) : (b)) |
48 #define max(a,b) ((a) > (b) ? (a) : (b)) | |
49 | |
50 #ifdef HAVE_X11 | |
51 /* X Resource data base */ | |
52 static XrmDatabase xrdb; | |
53 | |
54 /* The class of this X application. */ | |
55 #define EMACS_CLASS "Emacs" | |
56 | |
57 /* Title name and application name for X stuff. */ | |
398 | 58 extern char *x_id_name; |
389 | 59 |
60 /* The background and shape of the mouse pointer, and shape when not | |
61 over text or in the modeline. */ | |
62 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape; | |
63 | |
64 /* Color of chars displayed in cursor box. */ | |
65 Lisp_Object Vx_cursor_fore_pixel; | |
66 | |
2276
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
67 /* The screen being used. */ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
68 static Screen *x_screen; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
69 |
389 | 70 /* The X Visual we are using for X windows (the default) */ |
71 Visual *screen_visual; | |
72 | |
73 /* Height of this X screen in pixels. */ | |
74 int x_screen_height; | |
75 | |
76 /* Width of this X screen in pixels. */ | |
77 int x_screen_width; | |
78 | |
79 /* Number of planes for this screen. */ | |
80 int x_screen_planes; | |
81 | |
82 /* Non nil if no window manager is in use. */ | |
83 Lisp_Object Vx_no_window_manager; | |
84 | |
85 /* `t' if a mouse button is depressed. */ | |
86 | |
87 Lisp_Object Vmouse_depressed; | |
88 | |
700
6a15fb0422ef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
697
diff
changeset
|
89 extern unsigned int x_mouse_x, x_mouse_y, x_mouse_grabbed; |
6a15fb0422ef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
697
diff
changeset
|
90 |
389 | 91 /* Atom for indicating window state to the window manager. */ |
2197
fb5a1caebef6
(Xatom_wm_change_state): Just declare.
Richard M. Stallman <rms@gnu.org>
parents:
2136
diff
changeset
|
92 extern Atom Xatom_wm_change_state; |
389 | 93 |
641 | 94 /* Communication with window managers. */ |
95 extern Atom Xatom_wm_protocols; | |
96 | |
97 /* Kinds of protocol things we may receive. */ | |
98 extern Atom Xatom_wm_take_focus; | |
99 extern Atom Xatom_wm_save_yourself; | |
100 extern Atom Xatom_wm_delete_window; | |
101 | |
102 /* Other WM communication */ | |
642 | 103 extern Atom Xatom_wm_configure_denied; /* When our config request is denied */ |
104 extern Atom Xatom_wm_window_moved; /* When the WM moves us. */ | |
641 | 105 |
389 | 106 #else /* X10 */ |
107 | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
108 /* Default size of an Emacs window. */ |
389 | 109 static char *default_window = "=80x24+0+0"; |
110 | |
111 #define MAXICID 80 | |
112 char iconidentity[MAXICID]; | |
113 #define ICONTAG "emacs@" | |
114 char minibuffer_iconidentity[MAXICID]; | |
115 #define MINIBUFFER_ICONTAG "minibuffer@" | |
116 | |
117 #endif /* X10 */ | |
118 | |
119 /* The last 23 bits of the timestamp of the last mouse button event. */ | |
120 Time mouse_timestamp; | |
121 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
122 /* Evaluate this expression to rebuild the section of syms_of_xfns |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
123 that initializes and staticpros the symbols declared below. Note |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
124 that Emacs 18 has a bug that keeps C-x C-e from being able to |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
125 evaluate this expression. |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
126 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
127 (progn |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
128 ;; Accumulate a list of the symbols we want to initialize from the |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
129 ;; declarations at the top of the file. |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
130 (goto-char (point-min)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
131 (search-forward "/\*&&& symbols declared here &&&*\/\n") |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
132 (let (symbol-list) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
133 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)") |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
134 (setq symbol-list |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
135 (cons (buffer-substring (match-beginning 1) (match-end 1)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
136 symbol-list)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
137 (forward-line 1)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
138 (setq symbol-list (nreverse symbol-list)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
139 ;; Delete the section of syms_of_... where we initialize the symbols. |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
140 (search-forward "\n /\*&&& init symbols here &&&*\/\n") |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
141 (let ((start (point))) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
142 (while (looking-at "^ Q") |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
143 (forward-line 2)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
144 (kill-region start (point))) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
145 ;; Write a new symbol initialization section. |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
146 (while symbol-list |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
147 (insert (format " %s = intern (\"" (car symbol-list))) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
148 (let ((start (point))) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
149 (insert (substring (car symbol-list) 1)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
150 (subst-char-in-region start (point) ?_ ?-)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
151 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list))) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
152 (setq symbol-list (cdr symbol-list))))) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
153 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
154 */ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
155 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
156 /*&&& symbols declared here &&&*/ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
157 Lisp_Object Qauto_raise; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
158 Lisp_Object Qauto_lower; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
159 Lisp_Object Qbackground_color; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
160 Lisp_Object Qbar; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
161 Lisp_Object Qborder_color; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
162 Lisp_Object Qborder_width; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
163 Lisp_Object Qbox; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
164 Lisp_Object Qcursor_color; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
165 Lisp_Object Qcursor_type; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
166 Lisp_Object Qfont; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
167 Lisp_Object Qforeground_color; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
168 Lisp_Object Qgeometry; |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
169 Lisp_Object Qicon; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
170 Lisp_Object Qicon_left; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
171 Lisp_Object Qicon_top; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
172 Lisp_Object Qicon_type; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
173 Lisp_Object Qinternal_border_width; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
174 Lisp_Object Qleft; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
175 Lisp_Object Qmouse_color; |
1874
19cf50641d6c
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
176 Lisp_Object Qnone; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
177 Lisp_Object Qparent_id; |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
178 Lisp_Object Qsuppress_icon; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
179 Lisp_Object Qtop; |
389 | 180 Lisp_Object Qundefined_color; |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
181 Lisp_Object Qvertical_scroll_bars; |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
182 Lisp_Object Qvisibility; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
183 Lisp_Object Qwindow_id; |
771 | 184 Lisp_Object Qx_frame_parameter; |
389 | 185 |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
186 /* The below are defined in frame.c. */ |
1874
19cf50641d6c
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
187 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth; |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
188 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qicon; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
189 |
389 | 190 extern Lisp_Object Vwindow_system_version; |
191 | |
192 /* Mouse map for clicks in windows. */ | |
193 extern Lisp_Object Vglobal_mouse_map; | |
194 | |
195 /* Points to table of defined typefaces. */ | |
196 struct face *x_face_table[MAX_FACES_AND_GLYPHS]; | |
197 | |
771 | 198 /* Return the Emacs frame-object corresponding to an X window. |
199 It could be the frame's main window or an icon window. */ | |
200 | |
201 struct frame * | |
202 x_window_to_frame (wdesc) | |
389 | 203 int wdesc; |
204 { | |
771 | 205 Lisp_Object tail, frame; |
206 struct frame *f; | |
207 | |
208 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) | |
389 | 209 { |
771 | 210 frame = XCONS (tail)->car; |
211 if (XTYPE (frame) != Lisp_Frame) | |
389 | 212 continue; |
771 | 213 f = XFRAME (frame); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
214 if (FRAME_X_WINDOW (f) == wdesc |
771 | 215 || f->display.x->icon_desc == wdesc) |
216 return f; | |
389 | 217 } |
218 return 0; | |
219 } | |
220 | |
221 | |
771 | 222 /* Connect the frame-parameter names for X frames |
389 | 223 to the ways of passing the parameter values to the window system. |
224 | |
225 The name of a parameter, as a Lisp symbol, | |
771 | 226 has an `x-frame-parameter' property which is an integer in Lisp |
227 but can be interpreted as an `enum x_frame_parm' in C. */ | |
228 | |
229 enum x_frame_parm | |
389 | 230 { |
231 X_PARM_FOREGROUND_COLOR, | |
232 X_PARM_BACKGROUND_COLOR, | |
233 X_PARM_MOUSE_COLOR, | |
234 X_PARM_CURSOR_COLOR, | |
235 X_PARM_BORDER_COLOR, | |
236 X_PARM_ICON_TYPE, | |
237 X_PARM_FONT, | |
238 X_PARM_BORDER_WIDTH, | |
239 X_PARM_INTERNAL_BORDER_WIDTH, | |
240 X_PARM_NAME, | |
241 X_PARM_AUTORAISE, | |
242 X_PARM_AUTOLOWER, | |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
243 X_PARM_VERT_SCROLL_BAR, |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
244 X_PARM_VISIBILITY, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
245 X_PARM_MENU_BAR_LINES |
389 | 246 }; |
247 | |
248 | |
771 | 249 struct x_frame_parm_table |
389 | 250 { |
251 char *name; | |
771 | 252 void (*setter)( /* struct frame *frame, Lisp_Object val, oldval */ ); |
389 | 253 }; |
254 | |
255 void x_set_foreground_color (); | |
256 void x_set_background_color (); | |
257 void x_set_mouse_color (); | |
258 void x_set_cursor_color (); | |
259 void x_set_border_color (); | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
260 void x_set_cursor_type (); |
389 | 261 void x_set_icon_type (); |
262 void x_set_font (); | |
263 void x_set_border_width (); | |
264 void x_set_internal_border_width (); | |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
265 void x_explicitly_set_name (); |
389 | 266 void x_set_autoraise (); |
267 void x_set_autolower (); | |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
268 void x_set_vertical_scroll_bars (); |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
269 void x_set_visibility (); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
270 void x_set_menu_bar_lines (); |
389 | 271 |
771 | 272 static struct x_frame_parm_table x_frame_parms[] = |
389 | 273 { |
274 "foreground-color", x_set_foreground_color, | |
275 "background-color", x_set_background_color, | |
276 "mouse-color", x_set_mouse_color, | |
277 "cursor-color", x_set_cursor_color, | |
278 "border-color", x_set_border_color, | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
279 "cursor-type", x_set_cursor_type, |
389 | 280 "icon-type", x_set_icon_type, |
281 "font", x_set_font, | |
282 "border-width", x_set_border_width, | |
283 "internal-border-width", x_set_internal_border_width, | |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
284 "name", x_explicitly_set_name, |
1874
19cf50641d6c
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
285 "auto-raise", x_set_autoraise, |
19cf50641d6c
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
286 "auto-lower", x_set_autolower, |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
287 "vertical-scroll-bars", x_set_vertical_scroll_bars, |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
288 "visibility", x_set_visibility, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
289 "menu-bar-lines", x_set_menu_bar_lines, |
389 | 290 }; |
291 | |
771 | 292 /* Attach the `x-frame-parameter' properties to |
389 | 293 the Lisp symbol names of parameters relevant to X. */ |
294 | |
295 init_x_parm_symbols () | |
296 { | |
297 int i; | |
298 | |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
299 for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++) |
771 | 300 Fput (intern (x_frame_parms[i].name), Qx_frame_parameter, |
389 | 301 make_number (i)); |
302 } | |
303 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
304 /* Change the parameters of FRAME as specified by ALIST. |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
305 If a parameter is not specially recognized, do nothing; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
306 otherwise call the `x_set_...' function for that parameter. */ |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
307 |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
308 void |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
309 x_set_frame_parameters (f, alist) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
310 FRAME_PTR f; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
311 Lisp_Object alist; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
312 { |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
313 Lisp_Object tail; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
314 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
315 /* If both of these parameters are present, it's more efficient to |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
316 set them both at once. So we wait until we've looked at the |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
317 entire list before we set them. */ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
318 Lisp_Object width, height; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
319 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
320 /* Same here. */ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
321 Lisp_Object left, top; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
322 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
323 XSET (width, Lisp_Int, FRAME_WIDTH (f)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
324 XSET (height, Lisp_Int, FRAME_HEIGHT (f)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
325 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
326 XSET (top, Lisp_Int, f->display.x->top_pos); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
327 XSET (left, Lisp_Int, f->display.x->left_pos); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
328 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
329 for (tail = alist; CONSP (tail); tail = Fcdr (tail)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
330 { |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
331 Lisp_Object elt, prop, val; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
332 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
333 elt = Fcar (tail); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
334 prop = Fcar (elt); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
335 val = Fcdr (elt); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
336 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
337 if (EQ (prop, Qwidth)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
338 width = val; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
339 else if (EQ (prop, Qheight)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
340 height = val; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
341 else if (EQ (prop, Qtop)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
342 top = val; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
343 else if (EQ (prop, Qleft)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
344 left = val; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
345 else |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
346 { |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
347 register Lisp_Object tem; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
348 tem = Fget (prop, Qx_frame_parameter); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
349 if (XTYPE (tem) == Lisp_Int |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
350 && XINT (tem) >= 0 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
351 && XINT (tem) < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
352 (*x_frame_parms[XINT (tem)].setter)(f, val, |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
353 get_frame_param (f, prop)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
354 store_frame_param (f, prop, val); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
355 } |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
356 } |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
357 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
358 /* Don't call these unless they've changed; the window may not actually |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
359 exist yet. */ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
360 { |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
361 Lisp_Object frame; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
362 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
363 XSET (frame, Lisp_Frame, f); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
364 if (XINT (width) != FRAME_WIDTH (f) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
365 || XINT (height) != FRAME_HEIGHT (f)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
366 Fset_frame_size (frame, width, height); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
367 if (XINT (left) != f->display.x->left_pos |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
368 || XINT (top) != f->display.x->top_pos) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
369 Fset_frame_position (frame, left, top); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
370 } |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
371 } |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
372 |
771 | 373 /* Insert a description of internally-recorded parameters of frame X |
389 | 374 into the parameter alist *ALISTPTR that is to be given to the user. |
375 Only parameters that are specific to the X window system | |
771 | 376 and whose values are not correctly recorded in the frame's |
389 | 377 param_alist need to be considered here. */ |
378 | |
771 | 379 x_report_frame_params (f, alistptr) |
380 struct frame *f; | |
389 | 381 Lisp_Object *alistptr; |
382 { | |
383 char buf[16]; | |
384 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
385 store_in_alist (alistptr, Qleft, make_number (f->display.x->left_pos)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
386 store_in_alist (alistptr, Qtop, make_number (f->display.x->top_pos)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
387 store_in_alist (alistptr, Qborder_width, |
771 | 388 make_number (f->display.x->border_width)); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
389 store_in_alist (alistptr, Qinternal_border_width, |
771 | 390 make_number (f->display.x->internal_border_width)); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
391 sprintf (buf, "%d", FRAME_X_WINDOW (f)); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
392 store_in_alist (alistptr, Qwindow_id, |
389 | 393 build_string (buf)); |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
394 store_in_alist (alistptr, Qvisibility, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
395 (FRAME_VISIBLE_P (f) ? Qt |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
396 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil)); |
389 | 397 } |
398 | |
399 /* Decide if color named COLOR is valid for the display | |
771 | 400 associated with the selected frame. */ |
389 | 401 int |
402 defined_color (color, color_def) | |
403 char *color; | |
404 Color *color_def; | |
405 { | |
406 register int foo; | |
407 Colormap screen_colormap; | |
408 | |
409 BLOCK_INPUT; | |
410 #ifdef HAVE_X11 | |
411 screen_colormap | |
412 = DefaultColormap (x_current_display, XDefaultScreen (x_current_display)); | |
413 | |
414 foo = XParseColor (x_current_display, screen_colormap, | |
415 color, color_def) | |
416 && XAllocColor (x_current_display, screen_colormap, color_def); | |
417 #else | |
418 foo = XParseColor (color, color_def) && XGetHardwareColor (color_def); | |
419 #endif /* not HAVE_X11 */ | |
420 UNBLOCK_INPUT; | |
421 | |
422 if (foo) | |
423 return 1; | |
424 else | |
425 return 0; | |
426 } | |
427 | |
428 /* Given a string ARG naming a color, compute a pixel value from it | |
771 | 429 suitable for screen F. |
430 If F is not a color screen, return DEF (default) regardless of what | |
389 | 431 ARG says. */ |
432 | |
433 int | |
434 x_decode_color (arg, def) | |
435 Lisp_Object arg; | |
436 int def; | |
437 { | |
438 Color cdef; | |
439 | |
440 CHECK_STRING (arg, 0); | |
441 | |
442 if (strcmp (XSTRING (arg)->data, "black") == 0) | |
443 return BLACK_PIX_DEFAULT; | |
444 else if (strcmp (XSTRING (arg)->data, "white") == 0) | |
445 return WHITE_PIX_DEFAULT; | |
446 | |
447 #ifdef HAVE_X11 | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
448 if (x_screen_planes == 1) |
389 | 449 return def; |
450 #else | |
485 | 451 if (DISPLAY_CELLS == 1) |
389 | 452 return def; |
453 #endif | |
454 | |
455 if (defined_color (XSTRING (arg)->data, &cdef)) | |
456 return cdef.pixel; | |
457 else | |
458 Fsignal (Qundefined_color, Fcons (arg, Qnil)); | |
459 } | |
460 | |
771 | 461 /* Functions called only from `x_set_frame_param' |
389 | 462 to set individual parameters. |
463 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
464 If FRAME_X_WINDOW (f) is 0, |
771 | 465 the frame is being created and its X-window does not exist yet. |
389 | 466 In that case, just record the parameter's new value |
467 in the standard place; do not attempt to change the window. */ | |
468 | |
469 void | |
771 | 470 x_set_foreground_color (f, arg, oldval) |
471 struct frame *f; | |
389 | 472 Lisp_Object arg, oldval; |
473 { | |
771 | 474 f->display.x->foreground_pixel = x_decode_color (arg, BLACK_PIX_DEFAULT); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
475 if (FRAME_X_WINDOW (f) != 0) |
389 | 476 { |
477 #ifdef HAVE_X11 | |
478 BLOCK_INPUT; | |
771 | 479 XSetForeground (x_current_display, f->display.x->normal_gc, |
480 f->display.x->foreground_pixel); | |
481 XSetBackground (x_current_display, f->display.x->reverse_gc, | |
482 f->display.x->foreground_pixel); | |
389 | 483 UNBLOCK_INPUT; |
484 #endif /* HAVE_X11 */ | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
485 if (FRAME_VISIBLE_P (f)) |
771 | 486 redraw_frame (f); |
389 | 487 } |
488 } | |
489 | |
490 void | |
771 | 491 x_set_background_color (f, arg, oldval) |
492 struct frame *f; | |
389 | 493 Lisp_Object arg, oldval; |
494 { | |
495 Pixmap temp; | |
496 int mask; | |
497 | |
771 | 498 f->display.x->background_pixel = x_decode_color (arg, WHITE_PIX_DEFAULT); |
499 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
500 if (FRAME_X_WINDOW (f) != 0) |
389 | 501 { |
502 BLOCK_INPUT; | |
503 #ifdef HAVE_X11 | |
771 | 504 /* The main frame area. */ |
505 XSetBackground (x_current_display, f->display.x->normal_gc, | |
506 f->display.x->background_pixel); | |
507 XSetForeground (x_current_display, f->display.x->reverse_gc, | |
508 f->display.x->background_pixel); | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
509 XSetWindowBackground (x_current_display, FRAME_X_WINDOW (f), |
771 | 510 f->display.x->background_pixel); |
389 | 511 |
512 #else | |
771 | 513 temp = XMakeTile (f->display.x->background_pixel); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
514 XChangeBackground (FRAME_X_WINDOW (f), temp); |
389 | 515 XFreePixmap (temp); |
516 #endif /* not HAVE_X11 */ | |
517 UNBLOCK_INPUT; | |
518 | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
519 if (FRAME_VISIBLE_P (f)) |
771 | 520 redraw_frame (f); |
389 | 521 } |
522 } | |
523 | |
524 void | |
771 | 525 x_set_mouse_color (f, arg, oldval) |
526 struct frame *f; | |
389 | 527 Lisp_Object arg, oldval; |
528 { | |
529 Cursor cursor, nontext_cursor, mode_cursor; | |
530 int mask_color; | |
531 | |
532 if (!EQ (Qnil, arg)) | |
771 | 533 f->display.x->mouse_pixel = x_decode_color (arg, BLACK_PIX_DEFAULT); |
534 mask_color = f->display.x->background_pixel; | |
389 | 535 /* No invisible pointers. */ |
771 | 536 if (mask_color == f->display.x->mouse_pixel |
537 && mask_color == f->display.x->background_pixel) | |
538 f->display.x->mouse_pixel = f->display.x->foreground_pixel; | |
389 | 539 |
540 BLOCK_INPUT; | |
541 #ifdef HAVE_X11 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
542 |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
543 /* It's not okay to crash if the user selects a screwey cursor. */ |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
544 x_catch_errors (); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
545 |
389 | 546 if (!EQ (Qnil, Vx_pointer_shape)) |
547 { | |
548 CHECK_NUMBER (Vx_pointer_shape, 0); | |
549 cursor = XCreateFontCursor (x_current_display, XINT (Vx_pointer_shape)); | |
550 } | |
551 else | |
552 cursor = XCreateFontCursor (x_current_display, XC_xterm); | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
553 x_check_errors ("bad text pointer cursor: %s"); |
389 | 554 |
555 if (!EQ (Qnil, Vx_nontext_pointer_shape)) | |
556 { | |
557 CHECK_NUMBER (Vx_nontext_pointer_shape, 0); | |
558 nontext_cursor = XCreateFontCursor (x_current_display, | |
559 XINT (Vx_nontext_pointer_shape)); | |
560 } | |
561 else | |
562 nontext_cursor = XCreateFontCursor (x_current_display, XC_left_ptr); | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
563 x_check_errors ("bad nontext pointer cursor: %s"); |
389 | 564 |
565 if (!EQ (Qnil, Vx_mode_pointer_shape)) | |
566 { | |
567 CHECK_NUMBER (Vx_mode_pointer_shape, 0); | |
568 mode_cursor = XCreateFontCursor (x_current_display, | |
569 XINT (Vx_mode_pointer_shape)); | |
570 } | |
571 else | |
572 mode_cursor = XCreateFontCursor (x_current_display, XC_xterm); | |
573 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
574 /* Check and report errors with the above calls. */ |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
575 x_check_errors ("can't set cursor shape: %s"); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
576 x_uncatch_errors (); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
577 |
389 | 578 { |
579 XColor fore_color, back_color; | |
580 | |
771 | 581 fore_color.pixel = f->display.x->mouse_pixel; |
389 | 582 back_color.pixel = mask_color; |
583 XQueryColor (x_current_display, | |
584 DefaultColormap (x_current_display, | |
585 DefaultScreen (x_current_display)), | |
586 &fore_color); | |
587 XQueryColor (x_current_display, | |
588 DefaultColormap (x_current_display, | |
589 DefaultScreen (x_current_display)), | |
590 &back_color); | |
591 XRecolorCursor (x_current_display, cursor, | |
592 &fore_color, &back_color); | |
593 XRecolorCursor (x_current_display, nontext_cursor, | |
594 &fore_color, &back_color); | |
595 XRecolorCursor (x_current_display, mode_cursor, | |
596 &fore_color, &back_color); | |
597 } | |
598 #else /* X10 */ | |
599 cursor = XCreateCursor (16, 16, MouseCursor, MouseMask, | |
600 0, 0, | |
771 | 601 f->display.x->mouse_pixel, |
602 f->display.x->background_pixel, | |
389 | 603 GXcopy); |
604 #endif /* X10 */ | |
605 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
606 if (FRAME_X_WINDOW (f) != 0) |
389 | 607 { |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
608 XDefineCursor (XDISPLAY FRAME_X_WINDOW (f), cursor); |
389 | 609 } |
610 | |
771 | 611 if (cursor != f->display.x->text_cursor && f->display.x->text_cursor != 0) |
612 XFreeCursor (XDISPLAY f->display.x->text_cursor); | |
613 f->display.x->text_cursor = cursor; | |
389 | 614 #ifdef HAVE_X11 |
771 | 615 if (nontext_cursor != f->display.x->nontext_cursor |
616 && f->display.x->nontext_cursor != 0) | |
617 XFreeCursor (XDISPLAY f->display.x->nontext_cursor); | |
618 f->display.x->nontext_cursor = nontext_cursor; | |
619 | |
620 if (mode_cursor != f->display.x->modeline_cursor | |
621 && f->display.x->modeline_cursor != 0) | |
622 XFreeCursor (XDISPLAY f->display.x->modeline_cursor); | |
623 f->display.x->modeline_cursor = mode_cursor; | |
389 | 624 #endif /* HAVE_X11 */ |
625 | |
626 XFlushQueue (); | |
627 UNBLOCK_INPUT; | |
628 } | |
629 | |
630 void | |
771 | 631 x_set_cursor_color (f, arg, oldval) |
632 struct frame *f; | |
389 | 633 Lisp_Object arg, oldval; |
634 { | |
635 unsigned long fore_pixel; | |
636 | |
637 if (!EQ (Vx_cursor_fore_pixel, Qnil)) | |
638 fore_pixel = x_decode_color (Vx_cursor_fore_pixel, WHITE_PIX_DEFAULT); | |
639 else | |
771 | 640 fore_pixel = f->display.x->background_pixel; |
641 f->display.x->cursor_pixel = x_decode_color (arg, BLACK_PIX_DEFAULT); | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
642 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
643 /* Make sure that the cursor color differs from the background color. */ |
771 | 644 if (f->display.x->cursor_pixel == f->display.x->background_pixel) |
389 | 645 { |
771 | 646 f->display.x->cursor_pixel == f->display.x->mouse_pixel; |
647 if (f->display.x->cursor_pixel == fore_pixel) | |
648 fore_pixel = f->display.x->background_pixel; | |
389 | 649 } |
2842
b002f2c288d3
(x_set_cursor_color): Set cursor_foreground_pixel.
Richard M. Stallman <rms@gnu.org>
parents:
2738
diff
changeset
|
650 f->display.x->cursor_foreground_pixel = fore_pixel; |
389 | 651 |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
652 if (FRAME_X_WINDOW (f) != 0) |
389 | 653 { |
654 #ifdef HAVE_X11 | |
655 BLOCK_INPUT; | |
771 | 656 XSetBackground (x_current_display, f->display.x->cursor_gc, |
657 f->display.x->cursor_pixel); | |
658 XSetForeground (x_current_display, f->display.x->cursor_gc, | |
389 | 659 fore_pixel); |
660 UNBLOCK_INPUT; | |
661 #endif /* HAVE_X11 */ | |
662 | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
663 if (FRAME_VISIBLE_P (f)) |
389 | 664 { |
771 | 665 x_display_cursor (f, 0); |
666 x_display_cursor (f, 1); | |
389 | 667 } |
668 } | |
669 } | |
670 | |
771 | 671 /* Set the border-color of frame F to value described by ARG. |
389 | 672 ARG can be a string naming a color. |
673 The border-color is used for the border that is drawn by the X server. | |
674 Note that this does not fully take effect if done before | |
771 | 675 F has an x-window; it must be redone when the window is created. |
389 | 676 |
677 Note: this is done in two routines because of the way X10 works. | |
678 | |
679 Note: under X11, this is normally the province of the window manager, | |
680 and so emacs' border colors may be overridden. */ | |
681 | |
682 void | |
771 | 683 x_set_border_color (f, arg, oldval) |
684 struct frame *f; | |
389 | 685 Lisp_Object arg, oldval; |
686 { | |
687 unsigned char *str; | |
688 int pix; | |
689 | |
690 CHECK_STRING (arg, 0); | |
691 str = XSTRING (arg)->data; | |
692 | |
693 #ifndef HAVE_X11 | |
694 if (!strcmp (str, "grey") || !strcmp (str, "Grey") | |
695 || !strcmp (str, "gray") || !strcmp (str, "Gray")) | |
696 pix = -1; | |
697 else | |
698 #endif /* X10 */ | |
699 | |
700 pix = x_decode_color (arg, BLACK_PIX_DEFAULT); | |
701 | |
771 | 702 x_set_border_pixel (f, pix); |
389 | 703 } |
704 | |
771 | 705 /* Set the border-color of frame F to pixel value PIX. |
389 | 706 Note that this does not fully take effect if done before |
771 | 707 F has an x-window. */ |
708 | |
709 x_set_border_pixel (f, pix) | |
710 struct frame *f; | |
389 | 711 int pix; |
712 { | |
771 | 713 f->display.x->border_pixel = pix; |
714 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
715 if (FRAME_X_WINDOW (f) != 0 && f->display.x->border_width > 0) |
389 | 716 { |
717 Pixmap temp; | |
718 int mask; | |
719 | |
720 BLOCK_INPUT; | |
721 #ifdef HAVE_X11 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
722 XSetWindowBorder (x_current_display, FRAME_X_WINDOW (f), |
389 | 723 pix); |
724 #else | |
725 if (pix < 0) | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
726 temp = XMakePixmap ((Bitmap) XStoreBitmap (gray_width, gray_height, |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
727 gray_bits), |
389 | 728 BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT); |
729 else | |
730 temp = XMakeTile (pix); | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
731 XChangeBorder (FRAME_X_WINDOW (f), temp); |
389 | 732 XFreePixmap (XDISPLAY temp); |
733 #endif /* not HAVE_X11 */ | |
734 UNBLOCK_INPUT; | |
735 | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
736 if (FRAME_VISIBLE_P (f)) |
771 | 737 redraw_frame (f); |
389 | 738 } |
739 } | |
740 | |
741 void | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
742 x_set_cursor_type (f, arg, oldval) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
743 FRAME_PTR f; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
744 Lisp_Object arg, oldval; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
745 { |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
746 if (EQ (arg, Qbar)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
747 FRAME_DESIRED_CURSOR (f) = bar_cursor; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
748 else if (EQ (arg, Qbox)) |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
749 FRAME_DESIRED_CURSOR (f) = filled_box_cursor; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
750 else |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
751 error |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
752 ("the `cursor-type' frame parameter should be either `bar' or `box'"); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
753 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
754 /* Make sure the cursor gets redrawn. This is overkill, but how |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
755 often do people change cursor types? */ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
756 update_mode_lines++; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
757 } |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
758 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
759 void |
771 | 760 x_set_icon_type (f, arg, oldval) |
761 struct frame *f; | |
389 | 762 Lisp_Object arg, oldval; |
763 { | |
764 Lisp_Object tem; | |
765 int result; | |
766 | |
767 if (EQ (oldval, Qnil) == EQ (arg, Qnil)) | |
768 return; | |
769 | |
770 BLOCK_INPUT; | |
485 | 771 if (NILP (arg)) |
771 | 772 result = x_text_icon (f, 0); |
389 | 773 else |
1932
56dd1fbd33c2
* xfns.c (x_set_icon_type): Pass the proper number of arguments to
Jim Blandy <jimb@redhat.com>
parents:
1874
diff
changeset
|
774 result = x_bitmap_icon (f); |
389 | 775 |
776 if (result) | |
777 { | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
778 UNBLOCK_INPUT; |
389 | 779 error ("No icon window available."); |
780 } | |
781 | |
782 /* If the window was unmapped (and its icon was mapped), | |
783 the new icon is not mapped, so map the window in its stead. */ | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
784 if (FRAME_VISIBLE_P (f)) |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
785 XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); |
389 | 786 |
787 XFlushQueue (); | |
788 UNBLOCK_INPUT; | |
789 } | |
790 | |
791 void | |
771 | 792 x_set_font (f, arg, oldval) |
793 struct frame *f; | |
389 | 794 Lisp_Object arg, oldval; |
795 { | |
796 unsigned char *name; | |
797 int result; | |
798 | |
799 CHECK_STRING (arg, 1); | |
800 name = XSTRING (arg)->data; | |
801 | |
802 BLOCK_INPUT; | |
771 | 803 result = x_new_font (f, name); |
389 | 804 UNBLOCK_INPUT; |
805 | |
806 if (result) | |
807 error ("Font \"%s\" is not defined", name); | |
808 } | |
809 | |
810 void | |
771 | 811 x_set_border_width (f, arg, oldval) |
812 struct frame *f; | |
389 | 813 Lisp_Object arg, oldval; |
814 { | |
815 CHECK_NUMBER (arg, 0); | |
816 | |
771 | 817 if (XINT (arg) == f->display.x->border_width) |
389 | 818 return; |
819 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
820 if (FRAME_X_WINDOW (f) != 0) |
389 | 821 error ("Cannot change the border width of a window"); |
822 | |
771 | 823 f->display.x->border_width = XINT (arg); |
389 | 824 } |
825 | |
826 void | |
771 | 827 x_set_internal_border_width (f, arg, oldval) |
828 struct frame *f; | |
389 | 829 Lisp_Object arg, oldval; |
830 { | |
831 int mask; | |
771 | 832 int old = f->display.x->internal_border_width; |
389 | 833 |
834 CHECK_NUMBER (arg, 0); | |
771 | 835 f->display.x->internal_border_width = XINT (arg); |
836 if (f->display.x->internal_border_width < 0) | |
837 f->display.x->internal_border_width = 0; | |
838 | |
839 if (f->display.x->internal_border_width == old) | |
389 | 840 return; |
841 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
842 if (FRAME_X_WINDOW (f) != 0) |
389 | 843 { |
844 BLOCK_INPUT; | |
771 | 845 x_set_window_size (f, f->width, f->height); |
389 | 846 #if 0 |
771 | 847 x_set_resize_hint (f); |
389 | 848 #endif |
849 XFlushQueue (); | |
850 UNBLOCK_INPUT; | |
771 | 851 SET_FRAME_GARBAGED (f); |
389 | 852 } |
853 } | |
854 | |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
855 void |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
856 x_set_visibility (f, value, oldval) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
857 struct frame *f; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
858 Lisp_Object value, oldval; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
859 { |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
860 Lisp_Object frame; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
861 XSET (frame, Lisp_Frame, f); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
862 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
863 if (NILP (value)) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
864 Fmake_frame_invisible (frame); |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
865 else if (EQ (value, Qicon)) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
866 Ficonify_frame (frame); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
867 else |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
868 Fmake_frame_visible (frame); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
869 } |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
870 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
871 static void |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
872 x_set_menu_bar_lines_1 (window, n) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
873 Lisp_Object window; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
874 int n; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
875 { |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
876 for (; !NILP (window); window = XWINDOW (window)->next) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
877 { |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
878 struct window *w = XWINDOW (window); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
879 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
880 w->top += n; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
881 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
882 if (!NILP (w->vchild)) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
883 x_set_menu_bar_lines_1 (w->vchild); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
884 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
885 if (!NILP (w->hchild)) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
886 x_set_menu_bar_lines_1 (w->hchild); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
887 } |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
888 } |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
889 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
890 void |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
891 x_set_menu_bar_lines (f, value, oldval) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
892 struct frame *f; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
893 Lisp_Object value, oldval; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
894 { |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
895 int nlines; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
896 int olines = FRAME_MENU_BAR_LINES (f); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
897 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
898 if (XTYPE (value) == Lisp_Int) |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
899 nlines = XINT (value); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
900 else |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
901 nlines = 0; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
902 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
903 FRAME_MENU_BAR_LINES (f) = nlines; |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
904 x_set_menu_bar_lines_1 (f->root_window, nlines - olines); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
905 x_set_window_size (f, FRAME_WIDTH (f), |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
906 FRAME_HEIGHT (f) + nlines - olines); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
907 } |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
908 |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
909 /* Change the name of frame F to ARG. If ARG is nil, set F's name to |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
910 x_id_name. |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
911 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
912 If EXPLICIT is non-zero, that indicates that lisp code is setting the |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
913 name; if ARG is a string, set F's name to ARG and set |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
914 F->explicit_name; if ARG is Qnil, then clear F->explicit_name. |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
915 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
916 If EXPLICIT is zero, that indicates that Emacs redisplay code is |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
917 suggesting a new name, which lisp code should override; if |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
918 F->explicit_name is set, ignore the new name; otherwise, set it. */ |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
919 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
920 void |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
921 x_set_name (f, name, explicit) |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
922 struct frame *f; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
923 Lisp_Object name; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
924 int explicit; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
925 { |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
926 /* Make sure that requests from lisp code override requests from |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
927 Emacs redisplay code. */ |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
928 if (explicit) |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
929 { |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
930 /* If we're switching from explicit to implicit, we had better |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
931 update the mode lines and thereby update the title. */ |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
932 if (f->explicit_name && NILP (name)) |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
933 update_mode_lines = 1; |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
934 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
935 f->explicit_name = ! NILP (name); |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
936 } |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
937 else if (f->explicit_name) |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
938 return; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
939 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
940 /* If NAME is nil, set the name to the x_id_name. */ |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
941 if (NILP (name)) |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
942 name = build_string (x_id_name); |
833 | 943 else |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
944 CHECK_STRING (name, 0); |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
945 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
946 /* Don't change the name if it's already NAME. */ |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
947 if (! NILP (Fstring_equal (name, f->name))) |
727 | 948 return; |
949 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
950 if (FRAME_X_WINDOW (f)) |
389 | 951 { |
708 | 952 BLOCK_INPUT; |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
953 |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
954 #ifdef HAVE_X11R4 |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
955 { |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
956 XTextProperty text; |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
957 text.value = XSTRING (name)->data; |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
958 text.encoding = XA_STRING; |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
959 text.format = 8; |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
960 text.nitems = XSTRING (name)->size; |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
961 XSetWMName (x_current_display, FRAME_X_WINDOW (f), &text); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
962 XSetWMIconName (x_current_display, FRAME_X_WINDOW (f), &text); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
963 } |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
964 #else |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
965 XSetIconName (XDISPLAY FRAME_X_WINDOW (f), |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
966 XSTRING (name)->data); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
967 XStoreName (XDISPLAY FRAME_X_WINDOW (f), |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
968 XSTRING (name)->data); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
969 #endif |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
970 |
708 | 971 UNBLOCK_INPUT; |
389 | 972 } |
727 | 973 |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
974 f->name = name; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
975 } |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
976 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
977 /* This function should be called when the user's lisp code has |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
978 specified a name for the frame; the name will override any set by the |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
979 redisplay code. */ |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
980 void |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
981 x_explicitly_set_name (f, arg, oldval) |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
982 FRAME_PTR f; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
983 Lisp_Object arg, oldval; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
984 { |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
985 x_set_name (f, arg, 1); |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
986 } |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
987 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
988 /* This function should be called by Emacs redisplay code to set the |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
989 name; names set this way will never override names set by the user's |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
990 lisp code. */ |
1125
059624bf9bf0
Declare x_implicitly_set_name to be void.
Jim Blandy <jimb@redhat.com>
parents:
1096
diff
changeset
|
991 void |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
992 x_implicitly_set_name (f, arg, oldval) |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
993 FRAME_PTR f; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
994 Lisp_Object arg, oldval; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
995 { |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
996 x_set_name (f, arg, 0); |
389 | 997 } |
998 | |
999 void | |
771 | 1000 x_set_autoraise (f, arg, oldval) |
1001 struct frame *f; | |
389 | 1002 Lisp_Object arg, oldval; |
1003 { | |
771 | 1004 f->auto_raise = !EQ (Qnil, arg); |
389 | 1005 } |
1006 | |
1007 void | |
771 | 1008 x_set_autolower (f, arg, oldval) |
1009 struct frame *f; | |
389 | 1010 Lisp_Object arg, oldval; |
1011 { | |
771 | 1012 f->auto_lower = !EQ (Qnil, arg); |
389 | 1013 } |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1014 |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1015 void |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1016 x_set_vertical_scroll_bars (f, arg, oldval) |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1017 struct frame *f; |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1018 Lisp_Object arg, oldval; |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1019 { |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1020 if (NILP (arg) != ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1021 { |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1022 FRAME_HAS_VERTICAL_SCROLL_BARS (f) = ! NILP (arg); |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1023 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1024 /* We set this parameter before creating the X window for the |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1025 frame, so we can get the geometry right from the start. |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1026 However, if the window hasn't been created yet, we shouldn't |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1027 call x_set_window_size. */ |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1028 if (FRAME_X_WINDOW (f)) |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1029 x_set_window_size (f, FRAME_WIDTH (f), FRAME_HEIGHT (f)); |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1030 } |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1031 } |
389 | 1032 |
1033 #ifdef HAVE_X11 | |
1034 int n_faces; | |
1035 | |
1438
57f20a185901
Same. * xfns.c (x_set_face): Dyked out this function; it has no callers,
Jim Blandy <jimb@redhat.com>
parents:
1125
diff
changeset
|
1036 #if 0 |
57f20a185901
Same. * xfns.c (x_set_face): Dyked out this function; it has no callers,
Jim Blandy <jimb@redhat.com>
parents:
1125
diff
changeset
|
1037 /* I believe this function is obsolete with respect to the new face display |
57f20a185901
Same. * xfns.c (x_set_face): Dyked out this function; it has no callers,
Jim Blandy <jimb@redhat.com>
parents:
1125
diff
changeset
|
1038 changes. */ |
389 | 1039 x_set_face (scr, font, background, foreground, stipple) |
771 | 1040 struct frame *scr; |
389 | 1041 XFontStruct *font; |
1042 unsigned long background, foreground; | |
1043 Pixmap stipple; | |
1044 { | |
1045 XGCValues gc_values; | |
1046 GC temp_gc; | |
1047 unsigned long gc_mask; | |
1048 struct face *new_face; | |
1049 unsigned int width = 16; | |
1050 unsigned int height = 16; | |
1051 | |
1052 if (n_faces == MAX_FACES_AND_GLYPHS) | |
1053 return 1; | |
1054 | |
1055 /* Create the Graphics Context. */ | |
1056 gc_values.font = font->fid; | |
1057 gc_values.foreground = foreground; | |
1058 gc_values.background = background; | |
1059 gc_values.line_width = 0; | |
1060 gc_mask = GCLineWidth | GCFont | GCForeground | GCBackground; | |
1061 if (stipple) | |
1062 { | |
1063 gc_values.stipple | |
1064 = XCreateBitmapFromData (x_current_display, ROOT_WINDOW, | |
1065 (char *) stipple, width, height); | |
1066 gc_mask |= GCStipple; | |
1067 } | |
1068 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1069 temp_gc = XCreateGC (x_current_display, FRAME_X_WINDOW (scr), |
389 | 1070 gc_mask, &gc_values); |
1071 if (!temp_gc) | |
1072 return 1; | |
1073 new_face = (struct face *) xmalloc (sizeof (struct face)); | |
1074 if (!new_face) | |
1075 { | |
1076 XFreeGC (x_current_display, temp_gc); | |
1077 return 1; | |
1078 } | |
1079 | |
1080 new_face->font = font; | |
1081 new_face->foreground = foreground; | |
1082 new_face->background = background; | |
1083 new_face->face_gc = temp_gc; | |
1084 if (stipple) | |
1085 new_face->stipple = gc_values.stipple; | |
1086 | |
1087 x_face_table[++n_faces] = new_face; | |
1088 return 1; | |
1089 } | |
1438
57f20a185901
Same. * xfns.c (x_set_face): Dyked out this function; it has no callers,
Jim Blandy <jimb@redhat.com>
parents:
1125
diff
changeset
|
1090 #endif |
389 | 1091 |
1092 x_set_glyph (scr, glyph) | |
1093 { | |
1094 } | |
1095 | |
1096 #if 0 | |
1097 DEFUN ("x-set-face-font", Fx_set_face_font, Sx_set_face_font, 4, 2, 0, | |
1098 "Specify face table entry FACE-CODE to be the font named by FONT,\n\ | |
1099 in colors FOREGROUND and BACKGROUND.") | |
1100 (face_code, font_name, foreground, background) | |
1101 Lisp_Object face_code; | |
1102 Lisp_Object font_name; | |
1103 Lisp_Object foreground; | |
1104 Lisp_Object background; | |
1105 { | |
1106 register struct face *fp; /* Current face info. */ | |
1107 register int fn; /* Face number. */ | |
1108 register FONT_TYPE *f; /* Font data structure. */ | |
1109 unsigned char *newname; | |
1110 int fg, bg; | |
1111 GC temp_gc; | |
1112 XGCValues gc_values; | |
1113 | |
1114 /* Need to do something about this. */ | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1115 Drawable drawable = FRAME_X_WINDOW (selected_frame); |
389 | 1116 |
1117 CHECK_NUMBER (face_code, 1); | |
1118 CHECK_STRING (font_name, 2); | |
1119 | |
1120 if (EQ (foreground, Qnil) || EQ (background, Qnil)) | |
1121 { | |
771 | 1122 fg = selected_frame->display.x->foreground_pixel; |
1123 bg = selected_frame->display.x->background_pixel; | |
389 | 1124 } |
1125 else | |
1126 { | |
1127 CHECK_NUMBER (foreground, 0); | |
1128 CHECK_NUMBER (background, 1); | |
1129 | |
1130 fg = x_decode_color (XINT (foreground), BLACK_PIX_DEFAULT); | |
1131 bg = x_decode_color (XINT (background), WHITE_PIX_DEFAULT); | |
1132 } | |
1133 | |
1134 fn = XINT (face_code); | |
1135 if ((fn < 1) || (fn > 255)) | |
1136 error ("Invalid face code, %d", fn); | |
1137 | |
1138 newname = XSTRING (font_name)->data; | |
1139 BLOCK_INPUT; | |
1140 f = (*newname == 0 ? 0 : XGetFont (newname)); | |
1141 UNBLOCK_INPUT; | |
1142 if (f == 0) | |
1143 error ("Font \"%s\" is not defined", newname); | |
1144 | |
1145 fp = x_face_table[fn]; | |
1146 if (fp == 0) | |
1147 { | |
1148 x_face_table[fn] = fp = (struct face *) xmalloc (sizeof (struct face)); | |
1149 bzero (fp, sizeof (struct face)); | |
1150 fp->face_type = x_pixmap; | |
1151 } | |
1152 else if (FACE_IS_FONT (fn)) | |
1153 { | |
1154 BLOCK_INPUT; | |
1155 XFreeGC (FACE_FONT (fn)); | |
1156 UNBLOCK_INPUT; | |
1157 } | |
1158 else if (FACE_IS_IMAGE (fn)) /* This should not happen... */ | |
1159 { | |
1160 BLOCK_INPUT; | |
1161 XFreePixmap (x_current_display, FACE_IMAGE (fn)); | |
1162 fp->face_type = x_font; | |
1163 UNBLOCK_INPUT; | |
1164 } | |
1165 else | |
1166 abort (); | |
1167 | |
1168 fp->face_GLYPH.font_desc.font = f; | |
1169 gc_values.font = f->fid; | |
1170 gc_values.foreground = fg; | |
1171 gc_values.background = bg; | |
1172 fp->face_GLYPH.font_desc.face_gc = XCreateGC (x_current_display, | |
1173 drawable, GCFont | GCForeground | |
1174 | GCBackground, &gc_values); | |
1175 fp->face_GLYPH.font_desc.font_width = FONT_WIDTH (f); | |
1176 fp->face_GLYPH.font_desc.font_height = FONT_HEIGHT (f); | |
1177 | |
1178 return face_code; | |
1179 } | |
1180 #endif | |
1181 #else /* X10 */ | |
1182 DEFUN ("x-set-face", Fx_set_face, Sx_set_face, 4, 4, 0, | |
1183 "Specify face table entry FACE-CODE to be the font named by FONT,\n\ | |
1184 in colors FOREGROUND and BACKGROUND.") | |
1185 (face_code, font_name, foreground, background) | |
1186 Lisp_Object face_code; | |
1187 Lisp_Object font_name; | |
1188 Lisp_Object foreground; | |
1189 Lisp_Object background; | |
1190 { | |
1191 register struct face *fp; /* Current face info. */ | |
1192 register int fn; /* Face number. */ | |
1193 register FONT_TYPE *f; /* Font data structure. */ | |
1194 unsigned char *newname; | |
1195 | |
1196 CHECK_NUMBER (face_code, 1); | |
1197 CHECK_STRING (font_name, 2); | |
1198 | |
1199 fn = XINT (face_code); | |
1200 if ((fn < 1) || (fn > 255)) | |
1201 error ("Invalid face code, %d", fn); | |
1202 | |
1203 /* Ask the server to find the specified font. */ | |
1204 newname = XSTRING (font_name)->data; | |
1205 BLOCK_INPUT; | |
1206 f = (*newname == 0 ? 0 : XGetFont (newname)); | |
1207 UNBLOCK_INPUT; | |
1208 if (f == 0) | |
1209 error ("Font \"%s\" is not defined", newname); | |
1210 | |
1211 /* Get the face structure for face_code in the face table. | |
1212 Make sure it exists. */ | |
1213 fp = x_face_table[fn]; | |
1214 if (fp == 0) | |
1215 { | |
1216 x_face_table[fn] = fp = (struct face *) xmalloc (sizeof (struct face)); | |
1217 bzero (fp, sizeof (struct face)); | |
1218 } | |
1219 | |
1220 /* If this face code already exists, get rid of the old font. */ | |
1221 if (fp->font != 0 && fp->font != f) | |
1222 { | |
1223 BLOCK_INPUT; | |
1224 XLoseFont (fp->font); | |
1225 UNBLOCK_INPUT; | |
1226 } | |
1227 | |
1228 /* Store the specified information in FP. */ | |
1229 fp->fg = x_decode_color (foreground, BLACK_PIX_DEFAULT); | |
1230 fp->bg = x_decode_color (background, WHITE_PIX_DEFAULT); | |
1231 fp->font = f; | |
1232 | |
1233 return face_code; | |
1234 } | |
1235 #endif /* X10 */ | |
1236 | |
1237 #if 0 | |
1238 /* This is excluded because there is no painless way | |
1239 to get or to remember the name of the font. */ | |
1240 | |
1241 DEFUN ("x-get-face", Fx_get_face, Sx_get_face, 1, 1, 0, | |
1242 "Get data defining face code FACE. FACE is an integer.\n\ | |
1243 The value is a list (FONT FG-COLOR BG-COLOR).") | |
1244 (face) | |
1245 Lisp_Object face; | |
1246 { | |
1247 register struct face *fp; /* Current face info. */ | |
1248 register int fn; /* Face number. */ | |
1249 | |
1250 CHECK_NUMBER (face, 1); | |
1251 fn = XINT (face); | |
1252 if ((fn < 1) || (fn > 255)) | |
1253 error ("Invalid face code, %d", fn); | |
1254 | |
1255 /* Make sure the face table exists and this face code is defined. */ | |
1256 if (x_face_table == 0 || x_face_table[fn] == 0) | |
1257 return Qnil; | |
1258 | |
1259 fp = x_face_table[fn]; | |
1260 | |
1261 return Fcons (build_string (fp->name), | |
1262 Fcons (make_number (fp->fg), | |
1263 Fcons (make_number (fp->bg), Qnil))); | |
1264 } | |
1265 #endif /* 0 */ | |
1266 | |
771 | 1267 /* Subroutines of creating an X frame. */ |
389 | 1268 |
1269 #ifdef HAVE_X11 | |
1270 extern char *x_get_string_resource (); | |
1271 extern XrmDatabase x_load_resources (); | |
1272 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1273 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1274 "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\ |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1275 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\ |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1276 class, where INSTANCE is the name under which Emacs was invoked.\n\ |
389 | 1277 \n\ |
1733
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1278 The optional arguments COMPONENT and SUBCLASS add to the key and the\n\ |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1279 class, respectively. You must specify both of them or neither.\n\ |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1280 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\ |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1281 and the class is `Emacs.CLASS.SUBCLASS'.") |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1282 (attribute, class, component, subclass) |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1283 Lisp_Object attribute, class, component, subclass; |
389 | 1284 { |
1285 register char *value; | |
1286 char *name_key; | |
1287 char *class_key; | |
1288 | |
1289 CHECK_STRING (attribute, 0); | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1290 CHECK_STRING (class, 0); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1291 |
1733
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1292 if (!NILP (component)) |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1293 CHECK_STRING (component, 1); |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1294 if (!NILP (subclass)) |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1295 CHECK_STRING (subclass, 2); |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1296 if (NILP (component) != NILP (subclass)) |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1297 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither"); |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1298 |
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1299 if (NILP (component)) |
389 | 1300 { |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1301 /* Allocate space for the components, the dots which separate them, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1302 and the final '\0'. */ |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2277
diff
changeset
|
1303 name_key = (char *) alloca (XSTRING (Vinvocation_name)->size |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1304 + XSTRING (attribute)->size |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1305 + 2); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1306 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1) |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1307 + XSTRING (class)->size |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1308 + 2); |
398 | 1309 |
389 | 1310 sprintf (name_key, "%s.%s", |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2277
diff
changeset
|
1311 XSTRING (Vinvocation_name)->data, |
389 | 1312 XSTRING (attribute)->data); |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1313 sprintf (class_key, "%s.%s", |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1314 EMACS_CLASS, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1315 XSTRING (class)->data); |
389 | 1316 } |
1317 else | |
1318 { | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2277
diff
changeset
|
1319 name_key = (char *) alloca (XSTRING (Vinvocation_name)->size |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1320 + XSTRING (component)->size |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1321 + XSTRING (attribute)->size |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1322 + 3); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1323 |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1324 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1) |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1325 + XSTRING (class)->size |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1326 + XSTRING (subclass)->size |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1327 + 3); |
389 | 1328 |
1329 sprintf (name_key, "%s.%s.%s", | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2277
diff
changeset
|
1330 XSTRING (Vinvocation_name)->data, |
1733
2d41a3d7b9a6
(Fx_get_resource): Use EMACS_CLASS to make class_key
Richard M. Stallman <rms@gnu.org>
parents:
1719
diff
changeset
|
1331 XSTRING (component)->data, |
389 | 1332 XSTRING (attribute)->data); |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1333 sprintf (class_key, "%s.%s", |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1334 EMACS_CLASS, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1335 XSTRING (class)->data, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1336 XSTRING (subclass)->data); |
389 | 1337 } |
1338 | |
1339 value = x_get_string_resource (xrdb, name_key, class_key); | |
1340 | |
1341 if (value != (char *) 0) | |
1342 return build_string (value); | |
1343 else | |
1344 return Qnil; | |
1345 } | |
1346 | |
1347 #else /* X10 */ | |
1348 | |
398 | 1349 DEFUN ("x-get-default", Fx_get_default, Sx_get_default, 1, 1, 0, |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1350 "Get X default ATTRIBUTE from the system, or nil if no default.\n\ |
389 | 1351 Value is a string (when not nil) and ATTRIBUTE is also a string.\n\ |
1352 The defaults are specified in the file `~/.Xdefaults'.") | |
398 | 1353 (arg) |
1354 Lisp_Object arg; | |
389 | 1355 { |
1356 register unsigned char *value; | |
1357 | |
1358 CHECK_STRING (arg, 1); | |
1359 | |
1360 value = (unsigned char *) XGetDefault (XDISPLAY | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2277
diff
changeset
|
1361 XSTRING (Vinvocation_name)->data, |
389 | 1362 XSTRING (arg)->data); |
1363 if (value == 0) | |
1364 /* Try reversing last two args, in case this is the buggy version of X. */ | |
1365 value = (unsigned char *) XGetDefault (XDISPLAY | |
1366 XSTRING (arg)->data, | |
2279
012b04efa234
* emacs.c (Finvocation_name): New function.
Jim Blandy <jimb@redhat.com>
parents:
2277
diff
changeset
|
1367 XSTRING (Vinvocation_name)->data); |
389 | 1368 if (value != 0) |
1369 return build_string (value); | |
1370 else | |
1371 return (Qnil); | |
1372 } | |
1373 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1374 #define Fx_get_resource(attribute, class, component, subclass) \ |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1375 Fx_get_default(attribute) |
389 | 1376 |
1377 #endif /* X10 */ | |
1378 | |
398 | 1379 /* Types we might convert a resource string into. */ |
1380 enum resource_types | |
1381 { | |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1382 number, boolean, string, symbol, |
398 | 1383 }; |
1384 | |
389 | 1385 /* Return the value of parameter PARAM. |
398 | 1386 |
771 | 1387 First search ALIST, then Vdefault_frame_alist, then the X defaults |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1388 database, using ATTRIBUTE as the attribute name and CLASS as its class. |
398 | 1389 |
1390 Convert the resource to the type specified by desired_type. | |
1391 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1392 If no default is specified, return Qunbound. If you call |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1393 x_get_arg, make sure you deal with Qunbound in a reasonable way, |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1394 and don't let it get stored in any lisp-visible variables! */ |
389 | 1395 |
1396 static Lisp_Object | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1397 x_get_arg (alist, param, attribute, class, type) |
641 | 1398 Lisp_Object alist, param; |
398 | 1399 char *attribute; |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1400 char *class; |
398 | 1401 enum resource_types type; |
389 | 1402 { |
1403 register Lisp_Object tem; | |
1404 | |
1405 tem = Fassq (param, alist); | |
1406 if (EQ (tem, Qnil)) | |
771 | 1407 tem = Fassq (param, Vdefault_frame_alist); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1408 if (EQ (tem, Qnil)) |
389 | 1409 { |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1410 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1411 if (attribute) |
398 | 1412 { |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1413 tem = Fx_get_resource (build_string (attribute), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1414 build_string (class), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1415 Qnil, Qnil); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1416 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1417 if (NILP (tem)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1418 return Qunbound; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1419 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1420 switch (type) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1421 { |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1422 case number: |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1423 return make_number (atoi (XSTRING (tem)->data)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1424 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1425 case boolean: |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1426 tem = Fdowncase (tem); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1427 if (!strcmp (XSTRING (tem)->data, "on") |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1428 || !strcmp (XSTRING (tem)->data, "true")) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1429 return Qt; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1430 else |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1431 return Qnil; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1432 |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1433 case string: |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1434 return tem; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1435 |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1436 case symbol: |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1437 /* As a special case, we map the values `true' and `on' |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1438 to Qt, and `false' and `off' to Qnil. */ |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1439 { |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1440 Lisp_Object lower = Fdowncase (tem); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1441 if (!strcmp (XSTRING (tem)->data, "on") |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1442 || !strcmp (XSTRING (tem)->data, "true")) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1443 return Qt; |
2295 | 1444 else if (!strcmp (XSTRING (tem)->data, "off") |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1445 || !strcmp (XSTRING (tem)->data, "false")) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1446 return Qnil; |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1447 else |
2686
a84b9a78ab08
(x_get_arg): Call Fintern, not intern.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
1448 return Fintern (tem, Qnil); |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1449 } |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1450 |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1451 default: |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1452 abort (); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1453 } |
398 | 1454 } |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1455 else |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1456 return Qunbound; |
389 | 1457 } |
1458 return Fcdr (tem); | |
1459 } | |
1460 | |
771 | 1461 /* Record in frame F the specified or default value according to ALIST |
389 | 1462 of the parameter named PARAM (a Lisp symbol). |
1463 If no value is specified for PARAM, look for an X default for XPROP | |
771 | 1464 on the frame named NAME. |
389 | 1465 If that is not found either, use the value DEFLT. */ |
1466 | |
1467 static Lisp_Object | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1468 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type) |
771 | 1469 struct frame *f; |
389 | 1470 Lisp_Object alist; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1471 Lisp_Object prop; |
389 | 1472 Lisp_Object deflt; |
1473 char *xprop; | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1474 char *xclass; |
398 | 1475 enum resource_types type; |
389 | 1476 { |
1477 Lisp_Object tem; | |
1478 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1479 tem = x_get_arg (alist, prop, xprop, xclass, type); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1480 if (EQ (tem, Qunbound)) |
389 | 1481 tem = deflt; |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1482 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil)); |
389 | 1483 return tem; |
1484 } | |
1485 | |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
1486 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0, |
389 | 1487 "Parse an X-style geometry string STRING.\n\ |
1488 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).") | |
1489 (string) | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
1490 Lisp_Object string; |
389 | 1491 { |
1492 int geometry, x, y; | |
1493 unsigned int width, height; | |
1494 Lisp_Object values[4]; | |
1495 | |
1496 CHECK_STRING (string, 0); | |
1497 | |
1498 geometry = XParseGeometry ((char *) XSTRING (string)->data, | |
1499 &x, &y, &width, &height); | |
1500 | |
1501 switch (geometry & 0xf) /* Mask out {X,Y}Negative */ | |
1502 { | |
1503 case (XValue | YValue): | |
1504 /* What's one pixel among friends? | |
1505 Perhaps fix this some day by returning symbol `extreme-top'... */ | |
1506 if (x == 0 && (geometry & XNegative)) | |
1507 x = -1; | |
1508 if (y == 0 && (geometry & YNegative)) | |
1509 y = -1; | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1510 values[0] = Fcons (Qleft, make_number (x)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1511 values[1] = Fcons (Qtop, make_number (y)); |
389 | 1512 return Flist (2, values); |
1513 break; | |
1514 | |
1515 case (WidthValue | HeightValue): | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1516 values[0] = Fcons (Qwidth, make_number (width)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1517 values[1] = Fcons (Qheight, make_number (height)); |
389 | 1518 return Flist (2, values); |
1519 break; | |
1520 | |
1521 case (XValue | YValue | WidthValue | HeightValue): | |
1522 if (x == 0 && (geometry & XNegative)) | |
1523 x = -1; | |
1524 if (y == 0 && (geometry & YNegative)) | |
1525 y = -1; | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1526 values[0] = Fcons (Qwidth, make_number (width)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1527 values[1] = Fcons (Qheight, make_number (height)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1528 values[2] = Fcons (Qleft, make_number (x)); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1529 values[3] = Fcons (Qtop, make_number (y)); |
389 | 1530 return Flist (4, values); |
1531 break; | |
1532 | |
1533 case 0: | |
1534 return Qnil; | |
1535 | |
1536 default: | |
1537 error ("Must specify x and y value, and/or width and height"); | |
1538 } | |
1539 } | |
1540 | |
1541 #ifdef HAVE_X11 | |
1542 /* Calculate the desired size and position of this window, | |
1543 or set rubber-band prompting if none. */ | |
1544 | |
1545 #define DEFAULT_ROWS 40 | |
1546 #define DEFAULT_COLS 80 | |
1547 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1548 static int |
771 | 1549 x_figure_window_size (f, parms) |
1550 struct frame *f; | |
389 | 1551 Lisp_Object parms; |
1552 { | |
1553 register Lisp_Object tem0, tem1; | |
1554 int height, width, left, top; | |
1555 register int geometry; | |
1556 long window_prompting = 0; | |
1557 | |
1558 /* Default values if we fall through. | |
1559 Actually, if that happens we should get | |
1560 window manager prompting. */ | |
771 | 1561 f->width = DEFAULT_COLS; |
1562 f->height = DEFAULT_ROWS; | |
1563 f->display.x->top_pos = 1; | |
1564 f->display.x->left_pos = 1; | |
389 | 1565 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1566 tem0 = x_get_arg (parms, Qheight, 0, 0, number); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1567 tem1 = x_get_arg (parms, Qwidth, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1568 if (! EQ (tem0, Qunbound) && ! EQ (tem1, Qunbound)) |
389 | 1569 { |
1570 CHECK_NUMBER (tem0, 0); | |
1571 CHECK_NUMBER (tem1, 0); | |
771 | 1572 f->height = XINT (tem0); |
1573 f->width = XINT (tem1); | |
389 | 1574 window_prompting |= USSize; |
1575 } | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1576 else if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound)) |
389 | 1577 error ("Must specify *both* height and width"); |
1578 | |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1579 f->display.x->vertical_scroll_bar_extra = |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1580 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1581 ? VERTICAL_SCROLL_BAR_PIXEL_WIDTH (f) |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1582 : 0); |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1583 f->display.x->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width); |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1584 f->display.x->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height); |
389 | 1585 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1586 tem0 = x_get_arg (parms, Qtop, 0, 0, number); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1587 tem1 = x_get_arg (parms, Qleft, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1588 if (! EQ (tem0, Qunbound) && ! EQ (tem1, Qunbound)) |
389 | 1589 { |
1590 CHECK_NUMBER (tem0, 0); | |
1591 CHECK_NUMBER (tem1, 0); | |
771 | 1592 f->display.x->top_pos = XINT (tem0); |
1593 f->display.x->left_pos = XINT (tem1); | |
1594 x_calc_absolute_position (f); | |
389 | 1595 window_prompting |= USPosition; |
1596 } | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1597 else if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound)) |
389 | 1598 error ("Must specify *both* top and left corners"); |
1599 | |
1600 switch (window_prompting) | |
1601 { | |
1602 case USSize | USPosition: | |
1603 return window_prompting; | |
1604 break; | |
1605 | |
1606 case USSize: /* Got the size, need the position. */ | |
1607 window_prompting |= PPosition; | |
1608 return window_prompting; | |
1609 break; | |
1610 | |
1611 case USPosition: /* Got the position, need the size. */ | |
1612 window_prompting |= PSize; | |
1613 return window_prompting; | |
1614 break; | |
1615 | |
1616 case 0: /* Got nothing, take both from geometry. */ | |
1617 window_prompting |= PPosition | PSize; | |
1618 return window_prompting; | |
1619 break; | |
1620 | |
1621 default: | |
1622 /* Somehow a bit got set in window_prompting that we didn't | |
1623 put there. */ | |
1624 abort (); | |
1625 } | |
1626 } | |
1627 | |
1628 static void | |
771 | 1629 x_window (f) |
1630 struct frame *f; | |
389 | 1631 { |
1632 XSetWindowAttributes attributes; | |
1633 unsigned long attribute_mask; | |
1634 XClassHint class_hints; | |
1635 | |
771 | 1636 attributes.background_pixel = f->display.x->background_pixel; |
1637 attributes.border_pixel = f->display.x->border_pixel; | |
389 | 1638 attributes.bit_gravity = StaticGravity; |
1639 attributes.backing_store = NotUseful; | |
1640 attributes.save_under = True; | |
1641 attributes.event_mask = STANDARD_EVENT_SET; | |
1642 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | |
1643 #if 0 | |
1644 | CWBackingStore | CWSaveUnder | |
1645 #endif | |
1646 | CWEventMask); | |
1647 | |
1648 BLOCK_INPUT; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1649 FRAME_X_WINDOW (f) |
389 | 1650 = XCreateWindow (x_current_display, ROOT_WINDOW, |
771 | 1651 f->display.x->left_pos, |
1652 f->display.x->top_pos, | |
1653 PIXEL_WIDTH (f), PIXEL_HEIGHT (f), | |
1654 f->display.x->border_width, | |
389 | 1655 CopyFromParent, /* depth */ |
1656 InputOutput, /* class */ | |
1657 screen_visual, /* set in Fx_open_connection */ | |
1658 attribute_mask, &attributes); | |
1659 | |
771 | 1660 class_hints.res_name = (char *) XSTRING (f->name)->data; |
389 | 1661 class_hints.res_class = EMACS_CLASS; |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1662 XSetClassHint (x_current_display, FRAME_X_WINDOW (f), &class_hints); |
771 | 1663 |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1664 /* This indicates that we use the "Passive Input" input model. |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1665 Unless we do this, we don't get the Focus{In,Out} events that we |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1666 need to draw the cursor correctly. Accursed bureaucrats. |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1667 XWhipsAndChains (x_current_display, IronMaiden, &TheRack); */ |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1668 |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1669 f->display.x->wm_hints.input = True; |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1670 f->display.x->wm_hints.flags |= InputHint; |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1671 XSetWMHints (x_current_display, FRAME_X_WINDOW (f), &f->display.x->wm_hints); |
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1672 |
817 | 1673 /* x_set_name normally ignores requests to set the name if the |
1674 requested name is the same as the current name. This is the one | |
1675 place where that assumption isn't correct; f->name is set, but | |
1676 the X server hasn't been told. */ | |
1677 { | |
1678 Lisp_Object name = f->name; | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1679 int explicit = f->explicit_name; |
817 | 1680 |
1681 f->name = Qnil; | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1682 f->explicit_name = 0; |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1683 x_set_name (f, name, explicit); |
817 | 1684 } |
1685 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1686 XDefineCursor (XDISPLAY FRAME_X_WINDOW (f), |
771 | 1687 f->display.x->text_cursor); |
389 | 1688 UNBLOCK_INPUT; |
1689 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1690 if (FRAME_X_WINDOW (f) == 0) |
389 | 1691 error ("Unable to create window."); |
1692 } | |
1693 | |
1694 /* Handle the icon stuff for this window. Perhaps later we might | |
1695 want an x_set_icon_position which can be called interactively as | |
1696 well. */ | |
1697 | |
1698 static void | |
771 | 1699 x_icon (f, parms) |
1700 struct frame *f; | |
389 | 1701 Lisp_Object parms; |
1702 { | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1703 Lisp_Object icon_x, icon_y; |
389 | 1704 |
1705 /* Set the position of the icon. Note that twm groups all | |
1706 icons in an icon window. */ | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1707 icon_x = x_get_arg (parms, Qicon_left, 0, 0, number); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1708 icon_y = x_get_arg (parms, Qicon_top, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1709 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound)) |
389 | 1710 { |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1711 CHECK_NUMBER (icon_x, 0); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1712 CHECK_NUMBER (icon_y, 0); |
389 | 1713 } |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1714 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound)) |
389 | 1715 error ("Both left and top icon corners of icon must be specified"); |
1716 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1717 BLOCK_INPUT; |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1718 |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1719 if (! EQ (icon_x, Qunbound)) |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1720 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y)); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1721 |
389 | 1722 /* Start up iconic or window? */ |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1723 x_wm_set_window_state |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1724 (f, (EQ (x_get_arg (parms, Qvisibility, 0, 0, symbol), Qicon) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1725 ? IconicState |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1726 : NormalState)); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1727 |
389 | 1728 UNBLOCK_INPUT; |
1729 } | |
1730 | |
1731 /* Make the GC's needed for this window, setting the | |
1732 background, border and mouse colors; also create the | |
1733 mouse cursor and the gray border tile. */ | |
1734 | |
1018
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1735 static char cursor_bits[] = |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1736 { |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1737 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1738 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1739 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1740 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1741 }; |
5fd29acd3db7
* xfns.c (x_set_name): Take new argument EXPLICIT, instead of
Jim Blandy <jimb@redhat.com>
parents:
974
diff
changeset
|
1742 |
389 | 1743 static void |
771 | 1744 x_make_gc (f) |
1745 struct frame *f; | |
389 | 1746 { |
1747 XGCValues gc_values; | |
1748 GC temp_gc; | |
1749 XImage tileimage; | |
1750 | |
2341
1982e2983822
* xfns.c (x_make_gc): Don't forget to block X input around the
Jim Blandy <jimb@redhat.com>
parents:
2328
diff
changeset
|
1751 BLOCK_INPUT; |
1982e2983822
* xfns.c (x_make_gc): Don't forget to block X input around the
Jim Blandy <jimb@redhat.com>
parents:
2328
diff
changeset
|
1752 |
771 | 1753 /* Create the GC's of this frame. |
389 | 1754 Note that many default values are used. */ |
1755 | |
1756 /* Normal video */ | |
771 | 1757 gc_values.font = f->display.x->font->fid; |
1758 gc_values.foreground = f->display.x->foreground_pixel; | |
1759 gc_values.background = f->display.x->background_pixel; | |
389 | 1760 gc_values.line_width = 0; /* Means 1 using fast algorithm. */ |
771 | 1761 f->display.x->normal_gc = XCreateGC (x_current_display, |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1762 FRAME_X_WINDOW (f), |
389 | 1763 GCLineWidth | GCFont |
1764 | GCForeground | GCBackground, | |
1765 &gc_values); | |
1766 | |
1767 /* Reverse video style. */ | |
771 | 1768 gc_values.foreground = f->display.x->background_pixel; |
1769 gc_values.background = f->display.x->foreground_pixel; | |
1770 f->display.x->reverse_gc = XCreateGC (x_current_display, | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1771 FRAME_X_WINDOW (f), |
389 | 1772 GCFont | GCForeground | GCBackground |
1773 | GCLineWidth, | |
1774 &gc_values); | |
1775 | |
1776 /* Cursor has cursor-color background, background-color foreground. */ | |
771 | 1777 gc_values.foreground = f->display.x->background_pixel; |
1778 gc_values.background = f->display.x->cursor_pixel; | |
389 | 1779 gc_values.fill_style = FillOpaqueStippled; |
1780 gc_values.stipple | |
1781 = XCreateBitmapFromData (x_current_display, ROOT_WINDOW, | |
1782 cursor_bits, 16, 16); | |
771 | 1783 f->display.x->cursor_gc |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
1784 = XCreateGC (x_current_display, FRAME_X_WINDOW (f), |
389 | 1785 (GCFont | GCForeground | GCBackground |
1786 | GCFillStyle | GCStipple | GCLineWidth), | |
1787 &gc_values); | |
1788 | |
1789 /* Create the gray border tile used when the pointer is not in | |
771 | 1790 the frame. Since this depends on the frame's pixel values, |
1791 this must be done on a per-frame basis. */ | |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1792 f->display.x->border_tile |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1793 = (XCreatePixmapFromBitmapData |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1794 (x_current_display, ROOT_WINDOW, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1795 gray_bits, gray_width, gray_height, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1796 f->display.x->foreground_pixel, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1797 f->display.x->background_pixel, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1798 DefaultDepth (x_current_display, XDefaultScreen (x_current_display)))); |
2341
1982e2983822
* xfns.c (x_make_gc): Don't forget to block X input around the
Jim Blandy <jimb@redhat.com>
parents:
2328
diff
changeset
|
1799 |
2731
267d29b9490b
* xfns.c (x_make_gc): After building the GC's for the frame, call
Jim Blandy <jimb@redhat.com>
parents:
2694
diff
changeset
|
1800 init_frame_faces (f); |
267d29b9490b
* xfns.c (x_make_gc): After building the GC's for the frame, call
Jim Blandy <jimb@redhat.com>
parents:
2694
diff
changeset
|
1801 |
2341
1982e2983822
* xfns.c (x_make_gc): Don't forget to block X input around the
Jim Blandy <jimb@redhat.com>
parents:
2328
diff
changeset
|
1802 UNBLOCK_INPUT; |
389 | 1803 } |
1804 #endif /* HAVE_X11 */ | |
1805 | |
771 | 1806 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame, |
389 | 1807 1, 1, 0, |
771 | 1808 "Make a new X window, which is called a \"frame\" in Emacs terms.\n\ |
1809 Return an Emacs frame object representing the X window.\n\ | |
1810 ALIST is an alist of frame parameters.\n\ | |
1811 If the parameters specify that the frame should not have a minibuffer,\n\ | |
697
6dd85fc4fb2c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
689
diff
changeset
|
1812 and do not specify a specific minibuffer window to use,\n\ |
771 | 1813 then `default-minibuffer-frame' must be a frame whose minibuffer can\n\ |
1814 be shared by the new frame.") | |
389 | 1815 (parms) |
1816 Lisp_Object parms; | |
1817 { | |
1818 #ifdef HAVE_X11 | |
771 | 1819 struct frame *f; |
1820 Lisp_Object frame, tem; | |
389 | 1821 Lisp_Object name; |
1822 int minibuffer_only = 0; | |
1823 long window_prompting = 0; | |
1824 int width, height; | |
1825 | |
1826 if (x_current_display == 0) | |
1827 error ("X windows are not in use or not initialized"); | |
1828 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1829 name = x_get_arg (parms, Qname, "title", "Title", string); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1830 if (XTYPE (name) != Lisp_String |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1831 && ! EQ (name, Qunbound) |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1832 && ! NILP (name)) |
771 | 1833 error ("x-create-frame: name parameter must be a string"); |
398 | 1834 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1835 tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1836 if (EQ (tem, Qnone) || NILP (tem)) |
771 | 1837 f = make_frame_without_minibuffer (Qnil); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1838 else if (EQ (tem, Qonly)) |
389 | 1839 { |
771 | 1840 f = make_minibuffer_frame (); |
389 | 1841 minibuffer_only = 1; |
1842 } | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1843 else if (XTYPE (tem) == Lisp_Window) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1844 f = make_frame_without_minibuffer (tem); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1845 else |
771 | 1846 f = make_frame (1); |
1847 | |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1848 /* Note that X Windows does support scroll bars. */ |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1849 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1; |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
1850 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1851 /* Set the name; the functions to which we pass f expect the name to |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1852 be set. */ |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1853 if (EQ (name, Qunbound) || NILP (name)) |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1854 { |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1855 f->name = build_string (x_id_name); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1856 f->explicit_name = 0; |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1857 } |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1858 else |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1859 { |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1860 f->name = name; |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1861 f->explicit_name = 1; |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1862 } |
771 | 1863 |
1864 XSET (frame, Lisp_Frame, f); | |
1865 f->output_method = output_x_window; | |
1866 f->display.x = (struct x_display *) xmalloc (sizeof (struct x_display)); | |
1867 bzero (f->display.x, sizeof (struct x_display)); | |
1868 | |
1869 /* Note that the frame has no physical cursor right now. */ | |
1870 f->phys_cursor_x = -1; | |
485 | 1871 |
389 | 1872 /* Extract the window parameters from the supplied values |
1873 that are needed to determine window geometry. */ | |
2738
263aa966f295
* xfns.c (Fx_create_frame): Use an XLFD name for the default font,
Jim Blandy <jimb@redhat.com>
parents:
2731
diff
changeset
|
1874 x_default_parameter (f, parms, Qfont, |
263aa966f295
* xfns.c (Fx_create_frame): Use an XLFD name for the default font,
Jim Blandy <jimb@redhat.com>
parents:
2731
diff
changeset
|
1875 build_string |
263aa966f295
* xfns.c (Fx_create_frame): Use an XLFD name for the default font,
Jim Blandy <jimb@redhat.com>
parents:
2731
diff
changeset
|
1876 /* If we use an XLFD name for this font, the lisp code |
263aa966f295
* xfns.c (Fx_create_frame): Use an XLFD name for the default font,
Jim Blandy <jimb@redhat.com>
parents:
2731
diff
changeset
|
1877 knows how to find variants which are bold, italic, |
263aa966f295
* xfns.c (Fx_create_frame): Use an XLFD name for the default font,
Jim Blandy <jimb@redhat.com>
parents:
2731
diff
changeset
|
1878 etcetera. */ |
263aa966f295
* xfns.c (Fx_create_frame): Use an XLFD name for the default font,
Jim Blandy <jimb@redhat.com>
parents:
2731
diff
changeset
|
1879 ("-*-fixed-*-*-*-*-*-120-*-*-c-*-iso8859-1"), |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1880 "font", "Font", string); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1881 x_default_parameter (f, parms, Qborder_width, make_number (2), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1882 "borderwidth", "BorderWidth", number); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1883 /* This defaults to 2 in order to match xterm. */ |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1884 x_default_parameter (f, parms, Qinternal_border_width, make_number (2), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1885 "internalBorderWidth", "BorderWidth", number); |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1886 x_default_parameter (f, parms, Qvertical_scroll_bars, Qt, |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
1887 "verticalScrollBars", "ScrollBars", boolean); |
389 | 1888 |
1889 /* Also do the stuff which must be set before the window exists. */ | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1890 x_default_parameter (f, parms, Qforeground_color, build_string ("black"), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1891 "foreground", "Foreground", string); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1892 x_default_parameter (f, parms, Qbackground_color, build_string ("white"), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1893 "background", "Background", string); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1894 x_default_parameter (f, parms, Qmouse_color, build_string ("black"), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1895 "pointerColor", "Foreground", string); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1896 x_default_parameter (f, parms, Qcursor_color, build_string ("black"), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1897 "cursorColor", "Foreground", string); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1898 x_default_parameter (f, parms, Qborder_color, build_string ("black"), |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1899 "borderColor", "BorderColor", string); |
389 | 1900 |
771 | 1901 f->display.x->parent_desc = ROOT_WINDOW; |
1902 window_prompting = x_figure_window_size (f, parms); | |
1903 | |
1904 x_window (f); | |
1905 x_icon (f, parms); | |
1906 x_make_gc (f); | |
1907 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1908 /* We need to do this after creating the X window, so that the |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1909 icon-creation functions can say whose icon they're describing. */ |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1910 x_default_parameter (f, parms, Qicon_type, Qnil, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1911 "iconType", "IconType", symbol); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1912 |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1913 x_default_parameter (f, parms, Qauto_raise, Qnil, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1914 "autoRaise", "AutoRaiseLower", boolean); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1915 x_default_parameter (f, parms, Qauto_lower, Qnil, |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1916 "autoLower", "AutoRaiseLower", boolean); |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
1917 x_default_parameter (f, parms, Qcursor_type, Qbox, |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
1918 "cursorType", "CursorType", symbol); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1919 |
771 | 1920 /* Dimensions, especially f->height, must be done via change_frame_size. |
389 | 1921 Change will not be effected unless different from the current |
771 | 1922 f->height. */ |
1923 width = f->width; | |
1924 height = f->height; | |
1925 f->height = f->width = 0; | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1926 change_frame_size (f, height, width, 1, 0); |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1927 |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1928 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (0), |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1929 "menuBarLines", "MenuBarLines", number); |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1930 |
389 | 1931 BLOCK_INPUT; |
771 | 1932 x_wm_set_size_hint (f, window_prompting); |
389 | 1933 UNBLOCK_INPUT; |
1934 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1935 tem = x_get_arg (parms, Qunsplittable, 0, 0, boolean); |
771 | 1936 f->no_split = minibuffer_only || EQ (tem, Qt); |
389 | 1937 |
2136
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1938 /* Make the window appear on the frame and enable display, |
17ab6ed0f98b
(x_frame_parms): Add elts for visibility and menu-bar-lines.
Richard M. Stallman <rms@gnu.org>
parents:
2067
diff
changeset
|
1939 unless the caller says not to. */ |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1940 { |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1941 Lisp_Object visibility = x_get_arg (parms, Qvisibility, 0, 0, symbol); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1942 |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1943 if (EQ (visibility, Qunbound)) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1944 visibility = Qt; |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1945 |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1946 if (EQ (visibility, Qicon)) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1947 x_iconify_frame (f); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1948 else if (! NILP (visibility)) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1949 x_make_frame_visible (f); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1950 else |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1951 /* Must have been Qnil. */ |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1952 ; |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
1953 } |
771 | 1954 |
1955 return frame; | |
389 | 1956 #else /* X10 */ |
771 | 1957 struct frame *f; |
1958 Lisp_Object frame, tem; | |
389 | 1959 Lisp_Object name; |
1960 int pixelwidth, pixelheight; | |
1961 Cursor cursor; | |
1962 int height, width; | |
1963 Window parent; | |
1964 Pixmap temp; | |
1965 int minibuffer_only = 0; | |
1966 Lisp_Object vscroll, hscroll; | |
1967 | |
1968 if (x_current_display == 0) | |
1969 error ("X windows are not in use or not initialized"); | |
1970 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1971 name = Fassq (Qname, parms); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1972 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
1973 tem = x_get_arg (parms, Qminibuffer, 0, 0, symbol); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1974 if (EQ (tem, Qnone)) |
771 | 1975 f = make_frame_without_minibuffer (Qnil); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1976 else if (EQ (tem, Qonly)) |
389 | 1977 { |
771 | 1978 f = make_minibuffer_frame (); |
389 | 1979 minibuffer_only = 1; |
1980 } | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1981 else if (EQ (tem, Qnil) || EQ (tem, Qunbound)) |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1982 f = make_frame (1); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
1983 else |
771 | 1984 f = make_frame_without_minibuffer (tem); |
389 | 1985 |
1986 parent = ROOT_WINDOW; | |
1987 | |
771 | 1988 XSET (frame, Lisp_Frame, f); |
1989 f->output_method = output_x_window; | |
1990 f->display.x = (struct x_display *) xmalloc (sizeof (struct x_display)); | |
1991 bzero (f->display.x, sizeof (struct x_display)); | |
389 | 1992 |
1993 /* Some temprorary default values for height and width. */ | |
1994 width = 80; | |
1995 height = 40; | |
771 | 1996 f->display.x->left_pos = -1; |
1997 f->display.x->top_pos = -1; | |
1998 | |
1999 /* Give the frame a default name (which may be overridden with PARMS). */ | |
389 | 2000 |
2001 strncpy (iconidentity, ICONTAG, MAXICID); | |
2002 if (gethostname (&iconidentity[sizeof (ICONTAG) - 1], | |
2003 (MAXICID - 1) - sizeof (ICONTAG))) | |
2004 iconidentity[sizeof (ICONTAG) - 2] = '\0'; | |
771 | 2005 f->name = build_string (iconidentity); |
389 | 2006 |
2007 /* Extract some window parameters from the supplied values. | |
2008 These are the parameters that affect window geometry. */ | |
2009 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2010 tem = x_get_arg (parms, Qfont, "BodyFont", 0, string); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2011 if (EQ (tem, Qunbound)) |
389 | 2012 tem = build_string ("9x15"); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2013 x_set_font (f, tem, Qnil); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2014 x_default_parameter (f, parms, Qborder_color, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2015 build_string ("black"), "Border", 0, string); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2016 x_default_parameter (f, parms, Qbackground_color, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2017 build_string ("white"), "Background", 0, string); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2018 x_default_parameter (f, parms, Qforeground_color, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2019 build_string ("black"), "Foreground", 0, string); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2020 x_default_parameter (f, parms, Qmouse_color, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2021 build_string ("black"), "Mouse", 0, string); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2022 x_default_parameter (f, parms, Qcursor_color, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2023 build_string ("black"), "Cursor", 0, string); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2024 x_default_parameter (f, parms, Qborder_width, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2025 make_number (2), "BorderWidth", 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2026 x_default_parameter (f, parms, Qinternal_border_width, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2027 make_number (4), "InternalBorderWidth", 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2028 x_default_parameter (f, parms, Qauto_raise, |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2029 Qnil, "AutoRaise", 0, boolean); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2030 |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2031 hscroll = EQ (x_get_arg (parms, Qhorizontal_scroll_bar, 0, 0, boolean), Qt); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2032 vscroll = EQ (x_get_arg (parms, Qvertical_scroll_bar, 0, 0, boolean), Qt); |
389 | 2033 |
771 | 2034 if (f->display.x->internal_border_width < 0) |
2035 f->display.x->internal_border_width = 0; | |
389 | 2036 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2037 tem = x_get_arg (parms, Qwindow_id, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2038 if (!EQ (tem, Qunbound)) |
389 | 2039 { |
2040 WINDOWINFO_TYPE wininfo; | |
2041 int nchildren; | |
2042 Window *children, root; | |
2043 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2044 CHECK_NUMBER (tem, 0); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2045 FRAME_X_WINDOW (f) = (Window) XINT (tem); |
389 | 2046 |
2047 BLOCK_INPUT; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2048 XGetWindowInfo (FRAME_X_WINDOW (f), &wininfo); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2049 XQueryTree (FRAME_X_WINDOW (f), &parent, &nchildren, &children); |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2355
diff
changeset
|
2050 xfree (children); |
389 | 2051 UNBLOCK_INPUT; |
2052 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2053 height = PIXEL_TO_CHAR_HEIGHT (f, wininfo.height); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2054 width = PIXEL_TO_CHAR_WIDTH (f, wininfo.width); |
771 | 2055 f->display.x->left_pos = wininfo.x; |
2056 f->display.x->top_pos = wininfo.y; | |
1719
48f539ac6921
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1657
diff
changeset
|
2057 FRAME_SET_VISIBILITY (f, wininfo.mapped != 0); |
771 | 2058 f->display.x->border_width = wininfo.bdrwidth; |
2059 f->display.x->parent_desc = parent; | |
389 | 2060 } |
2061 else | |
2062 { | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2063 tem = x_get_arg (parms, Qparent_id, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2064 if (!EQ (tem, Qunbound)) |
389 | 2065 { |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2066 CHECK_NUMBER (tem, 0); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2067 parent = (Window) XINT (tem); |
389 | 2068 } |
771 | 2069 f->display.x->parent_desc = parent; |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2070 tem = x_get_arg (parms, Qheight, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2071 if (EQ (tem, Qunbound)) |
389 | 2072 { |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2073 tem = x_get_arg (parms, Qwidth, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2074 if (EQ (tem, Qunbound)) |
389 | 2075 { |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2076 tem = x_get_arg (parms, Qtop, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2077 if (EQ (tem, Qunbound)) |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2078 tem = x_get_arg (parms, Qleft, 0, 0, number); |
389 | 2079 } |
2080 } | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2081 /* Now TEM is Qunbound if no edge or size was specified. |
389 | 2082 In that case, we must do rubber-banding. */ |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2083 if (EQ (tem, Qunbound)) |
389 | 2084 { |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2085 tem = x_get_arg (parms, Qgeometry, 0, 0, number); |
771 | 2086 x_rubber_band (f, |
2087 &f->display.x->left_pos, &f->display.x->top_pos, | |
389 | 2088 &width, &height, |
2089 (XTYPE (tem) == Lisp_String | |
2090 ? (char *) XSTRING (tem)->data : ""), | |
771 | 2091 XSTRING (f->name)->data, |
485 | 2092 !NILP (hscroll), !NILP (vscroll)); |
389 | 2093 } |
2094 else | |
2095 { | |
2096 /* Here if at least one edge or size was specified. | |
2097 Demand that they all were specified, and use them. */ | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2098 tem = x_get_arg (parms, Qheight, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2099 if (EQ (tem, Qunbound)) |
389 | 2100 error ("Height not specified"); |
2101 CHECK_NUMBER (tem, 0); | |
2102 height = XINT (tem); | |
2103 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2104 tem = x_get_arg (parms, Qwidth, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2105 if (EQ (tem, Qunbound)) |
389 | 2106 error ("Width not specified"); |
2107 CHECK_NUMBER (tem, 0); | |
2108 width = XINT (tem); | |
2109 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2110 tem = x_get_arg (parms, Qtop, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2111 if (EQ (tem, Qunbound)) |
389 | 2112 error ("Top position not specified"); |
2113 CHECK_NUMBER (tem, 0); | |
771 | 2114 f->display.x->left_pos = XINT (tem); |
389 | 2115 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2116 tem = x_get_arg (parms, Qleft, 0, 0, number); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2117 if (EQ (tem, Qunbound)) |
389 | 2118 error ("Left position not specified"); |
2119 CHECK_NUMBER (tem, 0); | |
771 | 2120 f->display.x->top_pos = XINT (tem); |
389 | 2121 } |
2122 | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2123 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, width); |
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2124 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, height); |
389 | 2125 |
2126 BLOCK_INPUT; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2127 FRAME_X_WINDOW (f) |
389 | 2128 = XCreateWindow (parent, |
771 | 2129 f->display.x->left_pos, /* Absolute horizontal offset */ |
2130 f->display.x->top_pos, /* Absolute Vertical offset */ | |
389 | 2131 pixelwidth, pixelheight, |
771 | 2132 f->display.x->border_width, |
389 | 2133 BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT); |
2134 UNBLOCK_INPUT; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2135 if (FRAME_X_WINDOW (f) == 0) |
389 | 2136 error ("Unable to create window."); |
2137 } | |
2138 | |
2139 /* Install the now determined height and width | |
2140 in the windows and in phys_lines and desired_lines. */ | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2141 change_frame_size (f, height, width, 1, 0); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2142 XSelectInput (FRAME_X_WINDOW (f), KeyPressed | ExposeWindow |
389 | 2143 | ButtonPressed | ButtonReleased | ExposeRegion | ExposeCopy |
2144 | EnterWindow | LeaveWindow | UnmapWindow ); | |
771 | 2145 x_set_resize_hint (f); |
389 | 2146 |
2147 /* Tell the server the window's default name. */ | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2148 XStoreName (XDISPLAY FRAME_X_WINDOW (f), XSTRING (f->name)->data); |
708 | 2149 |
389 | 2150 /* Now override the defaults with all the rest of the specified |
2151 parms. */ | |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2152 tem = x_get_arg (parms, Qunsplittable, 0, 0, boolean); |
771 | 2153 f->no_split = minibuffer_only || EQ (tem, Qt); |
389 | 2154 |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2155 /* Do not create an icon window if the caller says not to */ |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2156 if (!EQ (x_get_arg (parms, Qsuppress_icon, 0, 0, boolean), Qt) |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2157 || f->display.x->parent_desc != ROOT_WINDOW) |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2158 { |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2159 x_text_icon (f, iconidentity); |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2160 x_default_parameter (f, parms, Qicon_type, Qnil, |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2161 "BitmapIcon", 0, symbol); |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2162 } |
389 | 2163 |
2164 /* Tell the X server the previously set values of the | |
2165 background, border and mouse colors; also create the mouse cursor. */ | |
2166 BLOCK_INPUT; | |
771 | 2167 temp = XMakeTile (f->display.x->background_pixel); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2168 XChangeBackground (FRAME_X_WINDOW (f), temp); |
389 | 2169 XFreePixmap (temp); |
2170 UNBLOCK_INPUT; | |
771 | 2171 x_set_border_pixel (f, f->display.x->border_pixel); |
2172 | |
2173 x_set_mouse_color (f, Qnil, Qnil); | |
389 | 2174 |
2175 /* Now override the defaults with all the rest of the specified parms. */ | |
2176 | |
771 | 2177 Fmodify_frame_parameters (frame, parms); |
389 | 2178 |
771 | 2179 /* Make the window appear on the frame and enable display. */ |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2180 { |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2181 Lisp_Object visibility = x_get_arg (parms, Qvisibility, 0, 0, symbol); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2182 |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2183 if (EQ (visibility, Qunbound)) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2184 visibility = Qt; |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2185 |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2186 if (! EQ (visibility, Qicon) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2187 && ! NILP (visibility)) |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2188 x_make_window_visible (f); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2189 } |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
2190 |
1786
5179baee010b
* xfns.c (Fx_create_frame): After mapping the frame, call
Jim Blandy <jimb@redhat.com>
parents:
1733
diff
changeset
|
2191 SET_FRAME_GARBAGED (f); |
771 | 2192 |
2193 return frame; | |
389 | 2194 #endif /* X10 */ |
2195 } | |
2196 | |
771 | 2197 DEFUN ("focus-frame", Ffocus_frame, Sfocus_frame, 1, 1, 0, |
2198 "Set the focus on FRAME.") | |
2199 (frame) | |
2200 Lisp_Object frame; | |
389 | 2201 { |
771 | 2202 CHECK_LIVE_FRAME (frame, 0); |
2203 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
2204 if (FRAME_X_P (XFRAME (frame))) |
389 | 2205 { |
2206 BLOCK_INPUT; | |
771 | 2207 x_focus_on_frame (XFRAME (frame)); |
389 | 2208 UNBLOCK_INPUT; |
771 | 2209 return frame; |
389 | 2210 } |
2211 | |
2212 return Qnil; | |
2213 } | |
2214 | |
771 | 2215 DEFUN ("unfocus-frame", Funfocus_frame, Sunfocus_frame, 0, 0, 0, |
2216 "If a frame has been focused, release it.") | |
389 | 2217 () |
2218 { | |
771 | 2219 if (x_focus_frame) |
389 | 2220 { |
2221 BLOCK_INPUT; | |
771 | 2222 x_unfocus_frame (x_focus_frame); |
389 | 2223 UNBLOCK_INPUT; |
2224 } | |
2225 | |
2226 return Qnil; | |
2227 } | |
2228 | |
2229 #ifndef HAVE_X11 | |
2230 /* Computes an X-window size and position either from geometry GEO | |
2231 or with the mouse. | |
2232 | |
771 | 2233 F is a frame. It specifies an X window which is used to |
389 | 2234 determine which display to compute for. Its font, borders |
2235 and colors control how the rectangle will be displayed. | |
2236 | |
2237 X and Y are where to store the positions chosen. | |
2238 WIDTH and HEIGHT are where to store the sizes chosen. | |
2239 | |
2240 GEO is the geometry that may specify some of the info. | |
2241 STR is a prompt to display. | |
2242 HSCROLL and VSCROLL say whether we have horiz and vert scroll bars. */ | |
2243 | |
2244 int | |
771 | 2245 x_rubber_band (f, x, y, width, height, geo, str, hscroll, vscroll) |
2246 struct frame *f; | |
389 | 2247 int *x, *y, *width, *height; |
2248 char *geo; | |
2249 char *str; | |
2250 int hscroll, vscroll; | |
2251 { | |
2252 OpaqueFrame frame; | |
2253 Window tempwindow; | |
2254 WindowInfo wininfo; | |
2255 int border_color; | |
2256 int background_color; | |
2257 Lisp_Object tem; | |
2258 int mask; | |
2259 | |
2260 BLOCK_INPUT; | |
2261 | |
771 | 2262 background_color = f->display.x->background_pixel; |
2263 border_color = f->display.x->border_pixel; | |
2264 | |
2265 frame.bdrwidth = f->display.x->border_width; | |
389 | 2266 frame.border = XMakeTile (border_color); |
2267 frame.background = XMakeTile (background_color); | |
2268 tempwindow = XCreateTerm (str, "emacs", geo, default_window, &frame, 10, 5, | |
771 | 2269 (2 * f->display.x->internal_border_width |
389 | 2270 + (vscroll ? VSCROLL_WIDTH : 0)), |
771 | 2271 (2 * f->display.x->internal_border_width |
389 | 2272 + (hscroll ? HSCROLL_HEIGHT : 0)), |
771 | 2273 width, height, f->display.x->font, |
2274 FONT_WIDTH (f->display.x->font), | |
2275 FONT_HEIGHT (f->display.x->font)); | |
389 | 2276 XFreePixmap (frame.border); |
2277 XFreePixmap (frame.background); | |
2278 | |
2279 if (tempwindow != 0) | |
2280 { | |
2281 XQueryWindow (tempwindow, &wininfo); | |
2282 XDestroyWindow (tempwindow); | |
2283 *x = wininfo.x; | |
2284 *y = wininfo.y; | |
2285 } | |
2286 | |
2287 /* Coordinates we got are relative to the root window. | |
2288 Convert them to coordinates relative to desired parent window | |
2289 by scanning from there up to the root. */ | |
771 | 2290 tempwindow = f->display.x->parent_desc; |
389 | 2291 while (tempwindow != ROOT_WINDOW) |
2292 { | |
2293 int nchildren; | |
2294 Window *children; | |
2295 XQueryWindow (tempwindow, &wininfo); | |
2296 *x -= wininfo.x; | |
2297 *y -= wininfo.y; | |
2298 XQueryTree (tempwindow, &tempwindow, &nchildren, &children); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2355
diff
changeset
|
2299 xfree (children); |
389 | 2300 } |
2301 | |
2302 UNBLOCK_INPUT; | |
2303 return tempwindow != 0; | |
2304 } | |
2305 #endif /* not HAVE_X11 */ | |
2306 | |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
2307 DEFUN ("x-color-defined-p", Fx_color_defined_p, Sx_color_defined_p, 1, 1, 0, |
389 | 2308 "Return t if the current X display supports the color named COLOR.") |
2309 (color) | |
2310 Lisp_Object color; | |
2311 { | |
2312 Color foo; | |
2313 | |
2314 CHECK_STRING (color, 0); | |
2315 | |
2316 if (defined_color (XSTRING (color)->data, &foo)) | |
2317 return Qt; | |
2318 else | |
2319 return Qnil; | |
2320 } | |
2321 | |
2277
773e47f29c5a
(Fx_display_color_p): Renamed from Fx_color_display_p.
Richard M. Stallman <rms@gnu.org>
parents:
2276
diff
changeset
|
2322 DEFUN ("x-display-color-p", Fx_display_color_p, Sx_display_color_p, 0, 0, 0, |
773e47f29c5a
(Fx_display_color_p): Renamed from Fx_color_display_p.
Richard M. Stallman <rms@gnu.org>
parents:
2276
diff
changeset
|
2323 "Return t if the X screen currently in use supports color.") |
389 | 2324 () |
2325 { | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
2326 if (x_screen_planes <= 2) |
389 | 2327 return Qnil; |
2328 | |
2329 switch (screen_visual->class) | |
2330 { | |
2331 case StaticColor: | |
2332 case PseudoColor: | |
2333 case TrueColor: | |
2334 case DirectColor: | |
2335 return Qt; | |
2336 | |
2337 default: | |
2338 return Qnil; | |
2339 } | |
2340 } | |
2341 | |
2276
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2342 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2343 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2344 "Returns the width in pixels of the display FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2345 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2346 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2347 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2348 Display *dpy = x_current_display; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2349 return make_number (DisplayWidth (dpy, DefaultScreen (dpy))); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2350 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2351 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2352 DEFUN ("x-display-pixel-height", Fx_display_pixel_height, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2353 Sx_display_pixel_height, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2354 "Returns the height in pixels of the display FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2355 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2356 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2357 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2358 Display *dpy = x_current_display; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2359 return make_number (DisplayHeight (dpy, DefaultScreen (dpy))); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2360 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2361 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2362 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2363 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2364 "Returns the number of bitplanes of the display FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2365 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2366 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2367 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2368 Display *dpy = x_current_display; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2369 return make_number (DisplayPlanes (dpy, DefaultScreen (dpy))); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2370 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2371 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2372 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2373 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2374 "Returns the number of color cells of the display FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2375 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2376 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2377 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2378 Display *dpy = x_current_display; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2379 return make_number (DisplayCells (dpy, DefaultScreen (dpy))); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2380 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2381 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2382 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2383 "Returns the vendor ID string of the X server FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2384 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2385 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2386 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2387 Display *dpy = x_current_display; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2388 char *vendor; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2389 vendor = ServerVendor (dpy); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2390 if (! vendor) vendor = ""; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2391 return build_string (vendor); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2392 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2393 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2394 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2395 "Returns the version numbers of the X server in use.\n\ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2396 The value is a list of three integers: the major and minor\n\ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2397 version numbers of the X Protocol in use, and the vendor-specific release\n\ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2398 number. See also the variable `x-server-vendor'.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2399 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2400 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2401 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2402 Display *dpy = x_current_display; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2403 return Fcons (make_number (ProtocolVersion (dpy)), |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2404 Fcons (make_number (ProtocolRevision (dpy)), |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2405 Fcons (make_number (VendorRelease (dpy)), Qnil))); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2406 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2407 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2408 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2409 "Returns the number of screens on the X server FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2410 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2411 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2412 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2413 return make_number (ScreenCount (x_current_display)); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2414 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2415 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2416 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2417 "Returns the height in millimeters of the X screen FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2418 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2419 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2420 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2421 return make_number (HeightMMOfScreen (x_screen)); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2422 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2423 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2424 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2425 "Returns the width in millimeters of the X screen FRAME is on.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2426 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2427 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2428 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2429 return make_number (WidthMMOfScreen (x_screen)); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2430 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2431 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2432 DEFUN ("x-display-backing-store", Fx_display_backing_store, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2433 Sx_display_backing_store, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2434 "Returns an indication of whether the X screen FRAME is on does backing store.\n\ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2435 The value may be `always', `when-mapped', or `not-useful'.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2436 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2437 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2438 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2439 switch (DoesBackingStore (x_screen)) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2440 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2441 case Always: |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2442 return intern ("always"); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2443 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2444 case WhenMapped: |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2445 return intern ("when-mapped"); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2446 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2447 case NotUseful: |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2448 return intern ("not-useful"); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2449 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2450 default: |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2451 error ("Strange value for BackingStore parameter of screen"); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2452 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2453 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2454 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2455 DEFUN ("x-display-visual-class", Fx_display_visual_class, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2456 Sx_display_visual_class, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2457 "Returns the visual class of the display `screen' is on.\n\ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2458 The value is one of the symbols `static-gray', `gray-scale',\n\ |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2459 `static-color', `pseudo-color', `true-color', or `direct-color'.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2460 (screen) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2461 Lisp_Object screen; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2462 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2463 switch (screen_visual->class) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2464 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2465 case StaticGray: return (intern ("static-gray")); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2466 case GrayScale: return (intern ("gray-scale")); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2467 case StaticColor: return (intern ("static-color")); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2468 case PseudoColor: return (intern ("pseudo-color")); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2469 case TrueColor: return (intern ("true-color")); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2470 case DirectColor: return (intern ("direct-color")); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2471 default: |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2472 error ("Display has an unknown visual class"); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2473 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2474 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2475 |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2476 DEFUN ("x-display-save-under", Fx_display_save_under, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2477 Sx_display_save_under, 0, 1, 0, |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2478 "Returns t if the X screen FRAME is on supports the save-under feature.") |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2479 (frame) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2480 Lisp_Object frame; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2481 { |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2482 if (DoesSaveUnders (x_screen) == True) |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2483 return Qt; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2484 else |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2485 return Qnil; |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2486 } |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
2487 |
2067
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2488 x_pixel_width (f) |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2489 register struct frame *f; |
389 | 2490 { |
2067
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2491 return PIXEL_WIDTH (f); |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2492 } |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2493 |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2494 x_pixel_height (f) |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2495 register struct frame *f; |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2496 { |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2497 return PIXEL_HEIGHT (f); |
389 | 2498 } |
2499 | |
2067
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2500 x_char_width (f) |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2501 register struct frame *f; |
389 | 2502 { |
2067
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2503 return FONT_WIDTH (f->display.x->font); |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2504 } |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2505 |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2506 x_char_height (f) |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2507 register struct frame *f; |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2508 { |
0a353ddd4bf4
(Fx_pixel_width, Fx_pixel_height): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
2509 return FONT_HEIGHT (f->display.x->font); |
389 | 2510 } |
2511 | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2512 #if 0 /* These no longer seem like the right way to do things. */ |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2513 |
771 | 2514 /* Draw a rectangle on the frame with left top corner including |
389 | 2515 the character specified by LEFT_CHAR and TOP_CHAR. The rectangle is |
2516 CHARS by LINES wide and long and is the color of the cursor. */ | |
2517 | |
2518 void | |
771 | 2519 x_rectangle (f, gc, left_char, top_char, chars, lines) |
2520 register struct frame *f; | |
389 | 2521 GC gc; |
2522 register int top_char, left_char, chars, lines; | |
2523 { | |
2524 int width; | |
2525 int height; | |
771 | 2526 int left = (left_char * FONT_WIDTH (f->display.x->font) |
2527 + f->display.x->internal_border_width); | |
2528 int top = (top_char * FONT_HEIGHT (f->display.x->font) | |
2529 + f->display.x->internal_border_width); | |
389 | 2530 |
2531 if (chars < 0) | |
771 | 2532 width = FONT_WIDTH (f->display.x->font) / 2; |
389 | 2533 else |
771 | 2534 width = FONT_WIDTH (f->display.x->font) * chars; |
389 | 2535 if (lines < 0) |
771 | 2536 height = FONT_HEIGHT (f->display.x->font) / 2; |
389 | 2537 else |
771 | 2538 height = FONT_HEIGHT (f->display.x->font) * lines; |
2539 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2540 XDrawRectangle (x_current_display, FRAME_X_WINDOW (f), |
389 | 2541 gc, left, top, width, height); |
2542 } | |
2543 | |
2544 DEFUN ("x-draw-rectangle", Fx_draw_rectangle, Sx_draw_rectangle, 5, 5, 0, | |
771 | 2545 "Draw a rectangle on FRAME between coordinates specified by\n\ |
389 | 2546 numbers X0, Y0, X1, Y1 in the cursor pixel.") |
771 | 2547 (frame, X0, Y0, X1, Y1) |
2548 register Lisp_Object frame, X0, X1, Y0, Y1; | |
389 | 2549 { |
2550 register int x0, y0, x1, y1, top, left, n_chars, n_lines; | |
2551 | |
771 | 2552 CHECK_LIVE_FRAME (frame, 0); |
389 | 2553 CHECK_NUMBER (X0, 0); |
2554 CHECK_NUMBER (Y0, 1); | |
2555 CHECK_NUMBER (X1, 2); | |
2556 CHECK_NUMBER (Y1, 3); | |
2557 | |
2558 x0 = XINT (X0); | |
2559 x1 = XINT (X1); | |
2560 y0 = XINT (Y0); | |
2561 y1 = XINT (Y1); | |
2562 | |
2563 if (y1 > y0) | |
2564 { | |
2565 top = y0; | |
2566 n_lines = y1 - y0 + 1; | |
2567 } | |
2568 else | |
2569 { | |
2570 top = y1; | |
2571 n_lines = y0 - y1 + 1; | |
2572 } | |
2573 | |
2574 if (x1 > x0) | |
2575 { | |
2576 left = x0; | |
2577 n_chars = x1 - x0 + 1; | |
2578 } | |
2579 else | |
2580 { | |
2581 left = x1; | |
2582 n_chars = x0 - x1 + 1; | |
2583 } | |
2584 | |
2585 BLOCK_INPUT; | |
771 | 2586 x_rectangle (XFRAME (frame), XFRAME (frame)->display.x->cursor_gc, |
389 | 2587 left, top, n_chars, n_lines); |
2588 UNBLOCK_INPUT; | |
2589 | |
2590 return Qt; | |
2591 } | |
2592 | |
2593 DEFUN ("x-erase-rectangle", Fx_erase_rectangle, Sx_erase_rectangle, 5, 5, 0, | |
771 | 2594 "Draw a rectangle drawn on FRAME between coordinates\n\ |
389 | 2595 X0, Y0, X1, Y1 in the regular background-pixel.") |
771 | 2596 (frame, X0, Y0, X1, Y1) |
2597 register Lisp_Object frame, X0, Y0, X1, Y1; | |
389 | 2598 { |
2599 register int x0, y0, x1, y1, top, left, n_chars, n_lines; | |
2600 | |
771 | 2601 CHECK_FRAME (frame, 0); |
389 | 2602 CHECK_NUMBER (X0, 0); |
2603 CHECK_NUMBER (Y0, 1); | |
2604 CHECK_NUMBER (X1, 2); | |
2605 CHECK_NUMBER (Y1, 3); | |
2606 | |
2607 x0 = XINT (X0); | |
2608 x1 = XINT (X1); | |
2609 y0 = XINT (Y0); | |
2610 y1 = XINT (Y1); | |
2611 | |
2612 if (y1 > y0) | |
2613 { | |
2614 top = y0; | |
2615 n_lines = y1 - y0 + 1; | |
2616 } | |
2617 else | |
2618 { | |
2619 top = y1; | |
2620 n_lines = y0 - y1 + 1; | |
2621 } | |
2622 | |
2623 if (x1 > x0) | |
2624 { | |
2625 left = x0; | |
2626 n_chars = x1 - x0 + 1; | |
2627 } | |
2628 else | |
2629 { | |
2630 left = x1; | |
2631 n_chars = x0 - x1 + 1; | |
2632 } | |
2633 | |
2634 BLOCK_INPUT; | |
771 | 2635 x_rectangle (XFRAME (frame), XFRAME (frame)->display.x->reverse_gc, |
389 | 2636 left, top, n_chars, n_lines); |
2637 UNBLOCK_INPUT; | |
2638 | |
2639 return Qt; | |
2640 } | |
2641 | |
2642 /* Draw lines around the text region beginning at the character position | |
2643 TOP_X, TOP_Y and ending at BOTTOM_X and BOTTOM_Y. GC specifies the | |
2644 pixel and line characteristics. */ | |
2645 | |
771 | 2646 #define line_len(line) (FRAME_CURRENT_GLYPHS (f)->used[(line)]) |
389 | 2647 |
2648 static void | |
771 | 2649 outline_region (f, gc, top_x, top_y, bottom_x, bottom_y) |
2650 register struct frame *f; | |
389 | 2651 GC gc; |
2652 int top_x, top_y, bottom_x, bottom_y; | |
2653 { | |
771 | 2654 register int ibw = f->display.x->internal_border_width; |
2655 register int font_w = FONT_WIDTH (f->display.x->font); | |
2656 register int font_h = FONT_HEIGHT (f->display.x->font); | |
389 | 2657 int y = top_y; |
2658 int x = line_len (y); | |
2659 XPoint *pixel_points = (XPoint *) | |
2660 alloca (((bottom_y - top_y + 2) * 4) * sizeof (XPoint)); | |
2661 register XPoint *this_point = pixel_points; | |
2662 | |
2663 /* Do the horizontal top line/lines */ | |
2664 if (top_x == 0) | |
2665 { | |
2666 this_point->x = ibw; | |
2667 this_point->y = ibw + (font_h * top_y); | |
2668 this_point++; | |
2669 if (x == 0) | |
2670 this_point->x = ibw + (font_w / 2); /* Half-size for newline chars. */ | |
2671 else | |
2672 this_point->x = ibw + (font_w * x); | |
2673 this_point->y = (this_point - 1)->y; | |
2674 } | |
2675 else | |
2676 { | |
2677 this_point->x = ibw; | |
2678 this_point->y = ibw + (font_h * (top_y + 1)); | |
2679 this_point++; | |
2680 this_point->x = ibw + (font_w * top_x); | |
2681 this_point->y = (this_point - 1)->y; | |
2682 this_point++; | |
2683 this_point->x = (this_point - 1)->x; | |
2684 this_point->y = ibw + (font_h * top_y); | |
2685 this_point++; | |
2686 this_point->x = ibw + (font_w * x); | |
2687 this_point->y = (this_point - 1)->y; | |
2688 } | |
2689 | |
2690 /* Now do the right side. */ | |
2691 while (y < bottom_y) | |
2692 { /* Right vertical edge */ | |
2693 this_point++; | |
2694 this_point->x = (this_point - 1)->x; | |
2695 this_point->y = ibw + (font_h * (y + 1)); | |
2696 this_point++; | |
2697 | |
2698 y++; /* Horizontal connection to next line */ | |
2699 x = line_len (y); | |
2700 if (x == 0) | |
2701 this_point->x = ibw + (font_w / 2); | |
2702 else | |
2703 this_point->x = ibw + (font_w * x); | |
2704 | |
2705 this_point->y = (this_point - 1)->y; | |
2706 } | |
2707 | |
2708 /* Now do the bottom and connect to the top left point. */ | |
2709 this_point->x = ibw + (font_w * (bottom_x + 1)); | |
2710 | |
2711 this_point++; | |
2712 this_point->x = (this_point - 1)->x; | |
2713 this_point->y = ibw + (font_h * (bottom_y + 1)); | |
2714 this_point++; | |
2715 this_point->x = ibw; | |
2716 this_point->y = (this_point - 1)->y; | |
2717 this_point++; | |
2718 this_point->x = pixel_points->x; | |
2719 this_point->y = pixel_points->y; | |
2720 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
2721 XDrawLines (x_current_display, FRAME_X_WINDOW (f), |
389 | 2722 gc, pixel_points, |
2723 (this_point - pixel_points + 1), CoordModeOrigin); | |
2724 } | |
2725 | |
2726 DEFUN ("x-contour-region", Fx_contour_region, Sx_contour_region, 1, 1, 0, | |
2727 "Highlight the region between point and the character under the mouse\n\ | |
771 | 2728 selected frame.") |
389 | 2729 (event) |
2730 register Lisp_Object event; | |
2731 { | |
2732 register int x0, y0, x1, y1; | |
771 | 2733 register struct frame *f = selected_frame; |
389 | 2734 register int p1, p2; |
2735 | |
2736 CHECK_CONS (event, 0); | |
2737 | |
2738 BLOCK_INPUT; | |
2739 x0 = XINT (Fcar (Fcar (event))); | |
2740 y0 = XINT (Fcar (Fcdr (Fcar (event)))); | |
2741 | |
2742 /* If the mouse is past the end of the line, don't that area. */ | |
2743 /* ReWrite this... */ | |
2744 | |
771 | 2745 x1 = f->cursor_x; |
2746 y1 = f->cursor_y; | |
389 | 2747 |
2748 if (y1 > y0) /* point below mouse */ | |
771 | 2749 outline_region (f, f->display.x->cursor_gc, |
389 | 2750 x0, y0, x1, y1); |
2751 else if (y1 < y0) /* point above mouse */ | |
771 | 2752 outline_region (f, f->display.x->cursor_gc, |
389 | 2753 x1, y1, x0, y0); |
2754 else /* same line: draw horizontal rectangle */ | |
2755 { | |
2756 if (x1 > x0) | |
771 | 2757 x_rectangle (f, f->display.x->cursor_gc, |
389 | 2758 x0, y0, (x1 - x0 + 1), 1); |
2759 else if (x1 < x0) | |
771 | 2760 x_rectangle (f, f->display.x->cursor_gc, |
389 | 2761 x1, y1, (x0 - x1 + 1), 1); |
2762 } | |
2763 | |
2764 XFlush (x_current_display); | |
2765 UNBLOCK_INPUT; | |
2766 | |
2767 return Qnil; | |
2768 } | |
2769 | |
2770 DEFUN ("x-uncontour-region", Fx_uncontour_region, Sx_uncontour_region, 1, 1, 0, | |
2771 "Erase any highlighting of the region between point and the character\n\ | |
771 | 2772 at X, Y on the selected frame.") |
389 | 2773 (event) |
2774 register Lisp_Object event; | |
2775 { | |
2776 register int x0, y0, x1, y1; | |
771 | 2777 register struct frame *f = selected_frame; |
389 | 2778 |
2779 BLOCK_INPUT; | |
2780 x0 = XINT (Fcar (Fcar (event))); | |
2781 y0 = XINT (Fcar (Fcdr (Fcar (event)))); | |
771 | 2782 x1 = f->cursor_x; |
2783 y1 = f->cursor_y; | |
389 | 2784 |
2785 if (y1 > y0) /* point below mouse */ | |
771 | 2786 outline_region (f, f->display.x->reverse_gc, |
389 | 2787 x0, y0, x1, y1); |
2788 else if (y1 < y0) /* point above mouse */ | |
771 | 2789 outline_region (f, f->display.x->reverse_gc, |
389 | 2790 x1, y1, x0, y0); |
2791 else /* same line: draw horizontal rectangle */ | |
2792 { | |
2793 if (x1 > x0) | |
771 | 2794 x_rectangle (f, f->display.x->reverse_gc, |
389 | 2795 x0, y0, (x1 - x0 + 1), 1); |
2796 else if (x1 < x0) | |
771 | 2797 x_rectangle (f, f->display.x->reverse_gc, |
389 | 2798 x1, y1, (x0 - x1 + 1), 1); |
2799 } | |
2800 UNBLOCK_INPUT; | |
2801 | |
2802 return Qnil; | |
2803 } | |
2804 | |
2805 #if 0 | |
2806 int contour_begin_x, contour_begin_y; | |
2807 int contour_end_x, contour_end_y; | |
2808 int contour_npoints; | |
2809 | |
2810 /* Clip the top part of the contour lines down (and including) line Y_POS. | |
2811 If X_POS is in the middle (rather than at the end) of the line, drop | |
2812 down a line at that character. */ | |
2813 | |
2814 static void | |
2815 clip_contour_top (y_pos, x_pos) | |
2816 { | |
2817 register XPoint *begin = contour_lines[y_pos].top_left; | |
2818 register XPoint *end; | |
2819 register int npoints; | |
771 | 2820 register struct display_line *line = selected_frame->phys_lines[y_pos + 1]; |
389 | 2821 |
2822 if (x_pos >= line->len - 1) /* Draw one, straight horizontal line. */ | |
2823 { | |
2824 end = contour_lines[y_pos].top_right; | |
2825 npoints = (end - begin + 1); | |
2826 XDrawLines (x_current_display, contour_window, | |
2827 contour_erase_gc, begin_erase, npoints, CoordModeOrigin); | |
2828 | |
2829 bcopy (end, begin + 1, contour_last_point - end + 1); | |
2830 contour_last_point -= (npoints - 2); | |
2831 XDrawLines (x_current_display, contour_window, | |
2832 contour_erase_gc, begin, 2, CoordModeOrigin); | |
2833 XFlush (x_current_display); | |
2834 | |
2835 /* Now, update contour_lines structure. */ | |
2836 } | |
2837 /* ______. */ | |
2838 else /* |________*/ | |
2839 { | |
2840 register XPoint *p = begin + 1; | |
2841 end = contour_lines[y_pos].bottom_right; | |
2842 npoints = (end - begin + 1); | |
2843 XDrawLines (x_current_display, contour_window, | |
2844 contour_erase_gc, begin_erase, npoints, CoordModeOrigin); | |
2845 | |
2846 p->y = begin->y; | |
2847 p->x = ibw + (font_w * (x_pos + 1)); | |
2848 p++; | |
2849 p->y = begin->y + font_h; | |
2850 p->x = (p - 1)->x; | |
2851 bcopy (end, begin + 3, contour_last_point - end + 1); | |
2852 contour_last_point -= (npoints - 5); | |
2853 XDrawLines (x_current_display, contour_window, | |
2854 contour_erase_gc, begin, 4, CoordModeOrigin); | |
2855 XFlush (x_current_display); | |
2856 | |
2857 /* Now, update contour_lines structure. */ | |
2858 } | |
2859 } | |
2860 | |
2861 /* Erase the top horzontal lines of the contour, and then extend | |
2862 the contour upwards. */ | |
2863 | |
2864 static void | |
2865 extend_contour_top (line) | |
2866 { | |
2867 } | |
2868 | |
2869 static void | |
2870 clip_contour_bottom (x_pos, y_pos) | |
2871 int x_pos, y_pos; | |
2872 { | |
2873 } | |
2874 | |
2875 static void | |
2876 extend_contour_bottom (x_pos, y_pos) | |
2877 { | |
2878 } | |
2879 | |
2880 DEFUN ("x-select-region", Fx_select_region, Sx_select_region, 1, 1, "e", | |
2881 "") | |
2882 (event) | |
2883 Lisp_Object event; | |
2884 { | |
771 | 2885 register struct frame *f = selected_frame; |
2886 register int point_x = f->cursor_x; | |
2887 register int point_y = f->cursor_y; | |
389 | 2888 register int mouse_below_point; |
2889 register Lisp_Object obj; | |
2890 register int x_contour_x, x_contour_y; | |
2891 | |
2892 x_contour_x = x_mouse_x; | |
2893 x_contour_y = x_mouse_y; | |
2894 if (x_contour_y > point_y || (x_contour_y == point_y | |
2895 && x_contour_x > point_x)) | |
2896 { | |
2897 mouse_below_point = 1; | |
771 | 2898 outline_region (f, f->display.x->cursor_gc, point_x, point_y, |
389 | 2899 x_contour_x, x_contour_y); |
2900 } | |
2901 else | |
2902 { | |
2903 mouse_below_point = 0; | |
771 | 2904 outline_region (f, f->display.x->cursor_gc, x_contour_x, x_contour_y, |
389 | 2905 point_x, point_y); |
2906 } | |
2907 | |
2908 while (1) | |
2909 { | |
1096
d79192bacdce
(Fx_track_pointer): Pass new args to read_char.
Richard M. Stallman <rms@gnu.org>
parents:
1050
diff
changeset
|
2910 obj = read_char (-1, 0, 0, Qnil, 0); |
389 | 2911 if (XTYPE (obj) != Lisp_Cons) |
2912 break; | |
2913 | |
2914 if (mouse_below_point) | |
2915 { | |
2916 if (x_mouse_y <= point_y) /* Flipped. */ | |
2917 { | |
2918 mouse_below_point = 0; | |
2919 | |
771 | 2920 outline_region (f, f->display.x->reverse_gc, point_x, point_y, |
389 | 2921 x_contour_x, x_contour_y); |
771 | 2922 outline_region (f, f->display.x->cursor_gc, x_mouse_x, x_mouse_y, |
389 | 2923 point_x, point_y); |
2924 } | |
2925 else if (x_mouse_y < x_contour_y) /* Bottom clipped. */ | |
2926 { | |
2927 clip_contour_bottom (x_mouse_y); | |
2928 } | |
2929 else if (x_mouse_y > x_contour_y) /* Bottom extended. */ | |
2930 { | |
2931 extend_bottom_contour (x_mouse_y); | |
2932 } | |
2933 | |
2934 x_contour_x = x_mouse_x; | |
2935 x_contour_y = x_mouse_y; | |
2936 } | |
2937 else /* mouse above or same line as point */ | |
2938 { | |
2939 if (x_mouse_y >= point_y) /* Flipped. */ | |
2940 { | |
2941 mouse_below_point = 1; | |
2942 | |
771 | 2943 outline_region (f, f->display.x->reverse_gc, |
389 | 2944 x_contour_x, x_contour_y, point_x, point_y); |
771 | 2945 outline_region (f, f->display.x->cursor_gc, point_x, point_y, |
389 | 2946 x_mouse_x, x_mouse_y); |
2947 } | |
2948 else if (x_mouse_y > x_contour_y) /* Top clipped. */ | |
2949 { | |
2950 clip_contour_top (x_mouse_y); | |
2951 } | |
2952 else if (x_mouse_y < x_contour_y) /* Top extended. */ | |
2953 { | |
2954 extend_contour_top (x_mouse_y); | |
2955 } | |
2956 } | |
2957 } | |
2958 | |
1601
a371ec79bc31
* xfns.c (unread_command_char): Change name in extern declaration
Jim Blandy <jimb@redhat.com>
parents:
1528
diff
changeset
|
2959 unread_command_event = obj; |
389 | 2960 if (mouse_below_point) |
2961 { | |
2962 contour_begin_x = point_x; | |
2963 contour_begin_y = point_y; | |
2964 contour_end_x = x_contour_x; | |
2965 contour_end_y = x_contour_y; | |
2966 } | |
2967 else | |
2968 { | |
2969 contour_begin_x = x_contour_x; | |
2970 contour_begin_y = x_contour_y; | |
2971 contour_end_x = point_x; | |
2972 contour_end_y = point_y; | |
2973 } | |
2974 } | |
2975 #endif | |
2976 | |
2977 DEFUN ("x-horizontal-line", Fx_horizontal_line, Sx_horizontal_line, 1, 1, "e", | |
2978 "") | |
2979 (event) | |
2980 Lisp_Object event; | |
2981 { | |
2982 register Lisp_Object obj; | |
771 | 2983 struct frame *f = selected_frame; |
389 | 2984 register struct window *w = XWINDOW (selected_window); |
771 | 2985 register GC line_gc = f->display.x->cursor_gc; |
2986 register GC erase_gc = f->display.x->reverse_gc; | |
389 | 2987 #if 0 |
2988 char dash_list[] = {6, 4, 6, 4}; | |
2989 int dashes = 4; | |
2990 XGCValues gc_values; | |
2991 #endif | |
2992 register int previous_y; | |
771 | 2993 register int line = (x_mouse_y + 1) * FONT_HEIGHT (f->display.x->font) |
2994 + f->display.x->internal_border_width; | |
2995 register int left = f->display.x->internal_border_width | |
389 | 2996 + (w->left |
771 | 2997 * FONT_WIDTH (f->display.x->font)); |
389 | 2998 register int right = left + (w->width |
771 | 2999 * FONT_WIDTH (f->display.x->font)) |
3000 - f->display.x->internal_border_width; | |
389 | 3001 |
3002 #if 0 | |
3003 BLOCK_INPUT; | |
771 | 3004 gc_values.foreground = f->display.x->cursor_pixel; |
3005 gc_values.background = f->display.x->background_pixel; | |
389 | 3006 gc_values.line_width = 1; |
3007 gc_values.line_style = LineOnOffDash; | |
3008 gc_values.cap_style = CapRound; | |
3009 gc_values.join_style = JoinRound; | |
3010 | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3011 line_gc = XCreateGC (x_current_display, FRAME_X_WINDOW (f), |
389 | 3012 GCLineStyle | GCJoinStyle | GCCapStyle |
3013 | GCLineWidth | GCForeground | GCBackground, | |
3014 &gc_values); | |
3015 XSetDashes (x_current_display, line_gc, 0, dash_list, dashes); | |
771 | 3016 gc_values.foreground = f->display.x->background_pixel; |
3017 gc_values.background = f->display.x->foreground_pixel; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3018 erase_gc = XCreateGC (x_current_display, FRAME_X_WINDOW (f), |
389 | 3019 GCLineStyle | GCJoinStyle | GCCapStyle |
3020 | GCLineWidth | GCForeground | GCBackground, | |
3021 &gc_values); | |
3022 XSetDashes (x_current_display, erase_gc, 0, dash_list, dashes); | |
3023 #endif | |
3024 | |
3025 while (1) | |
3026 { | |
3027 BLOCK_INPUT; | |
3028 if (x_mouse_y >= XINT (w->top) | |
3029 && x_mouse_y < XINT (w->top) + XINT (w->height) - 1) | |
3030 { | |
3031 previous_y = x_mouse_y; | |
771 | 3032 line = (x_mouse_y + 1) * FONT_HEIGHT (f->display.x->font) |
3033 + f->display.x->internal_border_width; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3034 XDrawLine (x_current_display, FRAME_X_WINDOW (f), |
389 | 3035 line_gc, left, line, right, line); |
3036 } | |
3037 XFlushQueue (); | |
3038 UNBLOCK_INPUT; | |
3039 | |
3040 do | |
3041 { | |
1096
d79192bacdce
(Fx_track_pointer): Pass new args to read_char.
Richard M. Stallman <rms@gnu.org>
parents:
1050
diff
changeset
|
3042 obj = read_char (-1, 0, 0, Qnil, 0); |
389 | 3043 if ((XTYPE (obj) != Lisp_Cons) |
3044 || (! EQ (Fcar (Fcdr (Fcdr (obj))), | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3045 Qvertical_scroll_bar)) |
389 | 3046 || x_mouse_grabbed) |
3047 { | |
3048 BLOCK_INPUT; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3049 XDrawLine (x_current_display, FRAME_X_WINDOW (f), |
389 | 3050 erase_gc, left, line, right, line); |
3051 UNBLOCK_INPUT; | |
1601
a371ec79bc31
* xfns.c (unread_command_char): Change name in extern declaration
Jim Blandy <jimb@redhat.com>
parents:
1528
diff
changeset
|
3052 unread_command_event = obj; |
389 | 3053 #if 0 |
3054 XFreeGC (x_current_display, line_gc); | |
3055 XFreeGC (x_current_display, erase_gc); | |
3056 #endif | |
3057 return Qnil; | |
3058 } | |
3059 } | |
3060 while (x_mouse_y == previous_y); | |
3061 | |
3062 BLOCK_INPUT; | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3063 XDrawLine (x_current_display, FRAME_X_WINDOW (f), |
389 | 3064 erase_gc, left, line, right, line); |
3065 UNBLOCK_INPUT; | |
3066 } | |
3067 } | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
642
diff
changeset
|
3068 #endif |
389 | 3069 |
3070 /* Offset in buffer of character under the pointer, or 0. */ | |
3071 int mouse_buffer_offset; | |
3072 | |
3073 #if 0 | |
3074 /* These keep track of the rectangle following the pointer. */ | |
3075 int mouse_track_top, mouse_track_left, mouse_track_width; | |
3076 | |
3077 DEFUN ("x-track-pointer", Fx_track_pointer, Sx_track_pointer, 0, 0, 0, | |
3078 "Track the pointer.") | |
3079 () | |
3080 { | |
3081 static Cursor current_pointer_shape; | |
771 | 3082 FRAME_PTR f = x_mouse_frame; |
389 | 3083 |
3084 BLOCK_INPUT; | |
771 | 3085 if (EQ (Vmouse_frame_part, Qtext_part) |
3086 && (current_pointer_shape != f->display.x->nontext_cursor)) | |
389 | 3087 { |
3088 unsigned char c; | |
3089 struct buffer *buf; | |
3090 | |
771 | 3091 current_pointer_shape = f->display.x->nontext_cursor; |
389 | 3092 XDefineCursor (x_current_display, |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3093 FRAME_X_WINDOW (f), |
389 | 3094 current_pointer_shape); |
3095 | |
3096 buf = XBUFFER (XWINDOW (Vmouse_window)->buffer); | |
3097 c = *(BUF_CHAR_ADDRESS (buf, mouse_buffer_offset)); | |
3098 } | |
771 | 3099 else if (EQ (Vmouse_frame_part, Qmodeline_part) |
3100 && (current_pointer_shape != f->display.x->modeline_cursor)) | |
389 | 3101 { |
771 | 3102 current_pointer_shape = f->display.x->modeline_cursor; |
389 | 3103 XDefineCursor (x_current_display, |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3104 FRAME_X_WINDOW (f), |
389 | 3105 current_pointer_shape); |
3106 } | |
3107 | |
3108 XFlushQueue (); | |
3109 UNBLOCK_INPUT; | |
3110 } | |
3111 #endif | |
3112 | |
3113 #if 0 | |
3114 DEFUN ("x-track-pointer", Fx_track_pointer, Sx_track_pointer, 1, 1, "e", | |
3115 "Draw rectangle around character under mouse pointer, if there is one.") | |
3116 (event) | |
3117 Lisp_Object event; | |
3118 { | |
3119 struct window *w = XWINDOW (Vmouse_window); | |
771 | 3120 struct frame *f = XFRAME (WINDOW_FRAME (w)); |
389 | 3121 struct buffer *b = XBUFFER (w->buffer); |
3122 Lisp_Object obj; | |
3123 | |
3124 if (! EQ (Vmouse_window, selected_window)) | |
3125 return Qnil; | |
3126 | |
3127 if (EQ (event, Qnil)) | |
3128 { | |
3129 int x, y; | |
3130 | |
771 | 3131 x_read_mouse_position (selected_frame, &x, &y); |
389 | 3132 } |
3133 | |
3134 BLOCK_INPUT; | |
3135 mouse_track_width = 0; | |
3136 mouse_track_left = mouse_track_top = -1; | |
3137 | |
3138 do | |
3139 { | |
3140 if ((x_mouse_x != mouse_track_left | |
3141 && (x_mouse_x < mouse_track_left | |
3142 || x_mouse_x > (mouse_track_left + mouse_track_width))) | |
3143 || x_mouse_y != mouse_track_top) | |
3144 { | |
3145 int hp = 0; /* Horizontal position */ | |
771 | 3146 int len = FRAME_CURRENT_GLYPHS (f)->used[x_mouse_y]; |
3147 int p = FRAME_CURRENT_GLYPHS (f)->bufp[x_mouse_y]; | |
389 | 3148 int tab_width = XINT (b->tab_width); |
485 | 3149 int ctl_arrow_p = !NILP (b->ctl_arrow); |
389 | 3150 unsigned char c; |
3151 int mode_line_vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1; | |
3152 int in_mode_line = 0; | |
3153 | |
771 | 3154 if (! FRAME_CURRENT_GLYPHS (f)->enable[x_mouse_y]) |
389 | 3155 break; |
3156 | |
3157 /* Erase previous rectangle. */ | |
3158 if (mouse_track_width) | |
3159 { | |
771 | 3160 x_rectangle (f, f->display.x->reverse_gc, |
389 | 3161 mouse_track_left, mouse_track_top, |
3162 mouse_track_width, 1); | |
3163 | |
771 | 3164 if ((mouse_track_left == f->phys_cursor_x |
3165 || mouse_track_left == f->phys_cursor_x - 1) | |
3166 && mouse_track_top == f->phys_cursor_y) | |
389 | 3167 { |
771 | 3168 x_display_cursor (f, 1); |
389 | 3169 } |
3170 } | |
3171 | |
3172 mouse_track_left = x_mouse_x; | |
3173 mouse_track_top = x_mouse_y; | |
3174 mouse_track_width = 0; | |
3175 | |
3176 if (mouse_track_left > len) /* Past the end of line. */ | |
3177 goto draw_or_not; | |
3178 | |
3179 if (mouse_track_top == mode_line_vpos) | |
3180 { | |
3181 in_mode_line = 1; | |
3182 goto draw_or_not; | |
3183 } | |
3184 | |
3185 if (tab_width <= 0 || tab_width > 20) tab_width = 8; | |
3186 do | |
3187 { | |
3188 c = FETCH_CHAR (p); | |
771 | 3189 if (len == f->width && hp == len - 1 && c != '\n') |
389 | 3190 goto draw_or_not; |
3191 | |
3192 switch (c) | |
3193 { | |
3194 case '\t': | |
3195 mouse_track_width = tab_width - (hp % tab_width); | |
3196 p++; | |
3197 hp += mouse_track_width; | |
3198 if (hp > x_mouse_x) | |
3199 { | |
3200 mouse_track_left = hp - mouse_track_width; | |
3201 goto draw_or_not; | |
3202 } | |
3203 continue; | |
3204 | |
3205 case '\n': | |
3206 mouse_track_width = -1; | |
3207 goto draw_or_not; | |
3208 | |
3209 default: | |
3210 if (ctl_arrow_p && (c < 040 || c == 0177)) | |
3211 { | |
3212 if (p > ZV) | |
3213 goto draw_or_not; | |
3214 | |
3215 mouse_track_width = 2; | |
3216 p++; | |
3217 hp +=2; | |
3218 if (hp > x_mouse_x) | |
3219 { | |
3220 mouse_track_left = hp - mouse_track_width; | |
3221 goto draw_or_not; | |
3222 } | |
3223 } | |
3224 else | |
3225 { | |
3226 mouse_track_width = 1; | |
3227 p++; | |
3228 hp++; | |
3229 } | |
3230 continue; | |
3231 } | |
3232 } | |
3233 while (hp <= x_mouse_x); | |
3234 | |
3235 draw_or_not: | |
3236 if (mouse_track_width) /* Over text; use text pointer shape. */ | |
3237 { | |
3238 XDefineCursor (x_current_display, | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3239 FRAME_X_WINDOW (f), |
771 | 3240 f->display.x->text_cursor); |
3241 x_rectangle (f, f->display.x->cursor_gc, | |
389 | 3242 mouse_track_left, mouse_track_top, |
3243 mouse_track_width, 1); | |
3244 } | |
3245 else if (in_mode_line) | |
3246 XDefineCursor (x_current_display, | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3247 FRAME_X_WINDOW (f), |
771 | 3248 f->display.x->modeline_cursor); |
389 | 3249 else |
3250 XDefineCursor (x_current_display, | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3251 FRAME_X_WINDOW (f), |
771 | 3252 f->display.x->nontext_cursor); |
389 | 3253 } |
3254 | |
3255 XFlush (x_current_display); | |
3256 UNBLOCK_INPUT; | |
3257 | |
1096
d79192bacdce
(Fx_track_pointer): Pass new args to read_char.
Richard M. Stallman <rms@gnu.org>
parents:
1050
diff
changeset
|
3258 obj = read_char (-1, 0, 0, Qnil, 0); |
389 | 3259 BLOCK_INPUT; |
3260 } | |
3261 while (XTYPE (obj) == Lisp_Cons /* Mouse event */ | |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
3262 && EQ (Fcar (Fcdr (Fcdr (obj))), Qnil) /* Not scroll bar */ |
389 | 3263 && EQ (Vmouse_depressed, Qnil) /* Only motion events */ |
3264 && EQ (Vmouse_window, selected_window) /* In this window */ | |
771 | 3265 && x_mouse_frame); |
389 | 3266 |
1601
a371ec79bc31
* xfns.c (unread_command_char): Change name in extern declaration
Jim Blandy <jimb@redhat.com>
parents:
1528
diff
changeset
|
3267 unread_command_event = obj; |
389 | 3268 |
3269 if (mouse_track_width) | |
3270 { | |
771 | 3271 x_rectangle (f, f->display.x->reverse_gc, |
389 | 3272 mouse_track_left, mouse_track_top, |
3273 mouse_track_width, 1); | |
3274 mouse_track_width = 0; | |
771 | 3275 if ((mouse_track_left == f->phys_cursor_x |
3276 || mouse_track_left - 1 == f->phys_cursor_x) | |
3277 && mouse_track_top == f->phys_cursor_y) | |
389 | 3278 { |
771 | 3279 x_display_cursor (f, 1); |
389 | 3280 } |
3281 } | |
3282 XDefineCursor (x_current_display, | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3283 FRAME_X_WINDOW (f), |
771 | 3284 f->display.x->nontext_cursor); |
389 | 3285 XFlush (x_current_display); |
3286 UNBLOCK_INPUT; | |
3287 | |
3288 return Qnil; | |
3289 } | |
3290 #endif | |
3291 | |
3292 #if 0 | |
3293 #include "glyphs.h" | |
3294 | |
3295 /* Draw a pixmap specified by IMAGE_DATA of dimensions WIDTH and HEIGHT | |
771 | 3296 on the frame F at position X, Y. */ |
3297 | |
3298 x_draw_pixmap (f, x, y, image_data, width, height) | |
3299 struct frame *f; | |
389 | 3300 int x, y, width, height; |
3301 char *image_data; | |
3302 { | |
3303 Pixmap image; | |
3304 | |
3305 image = XCreateBitmapFromData (x_current_display, | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3306 FRAME_X_WINDOW (f), image_data, |
389 | 3307 width, height); |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3308 XCopyPlane (x_current_display, image, FRAME_X_WINDOW (f), |
771 | 3309 f->display.x->normal_gc, 0, 0, width, height, x, y); |
389 | 3310 } |
3311 #endif | |
3312 | |
3313 #ifndef HAVE_X11 | |
3314 DEFUN ("x-store-cut-buffer", Fx_store_cut_buffer, Sx_store_cut_buffer, | |
3315 1, 1, "sStore text in cut buffer: ", | |
3316 "Store contents of STRING into the cut buffer of the X window system.") | |
3317 (string) | |
3318 register Lisp_Object string; | |
3319 { | |
3320 int mask; | |
3321 | |
3322 CHECK_STRING (string, 1); | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3323 if (! FRAME_X_P (selected_frame)) |
771 | 3324 error ("Selected frame does not understand X protocol."); |
389 | 3325 |
3326 BLOCK_INPUT; | |
3327 XStoreBytes ((char *) XSTRING (string)->data, XSTRING (string)->size); | |
3328 UNBLOCK_INPUT; | |
3329 | |
3330 return Qnil; | |
3331 } | |
3332 | |
3333 DEFUN ("x-get-cut-buffer", Fx_get_cut_buffer, Sx_get_cut_buffer, 0, 0, 0, | |
3334 "Return contents of cut buffer of the X window system, as a string.") | |
3335 () | |
3336 { | |
3337 int len; | |
3338 register Lisp_Object string; | |
3339 int mask; | |
3340 register char *d; | |
3341 | |
3342 BLOCK_INPUT; | |
3343 d = XFetchBytes (&len); | |
3344 string = make_string (d, len); | |
3345 XFree (d); | |
3346 UNBLOCK_INPUT; | |
3347 return string; | |
3348 } | |
3349 #endif /* X10 */ | |
3350 | |
3351 #ifdef HAVE_X11 | |
3352 DEFUN ("x-rebind-key", Fx_rebind_key, Sx_rebind_key, 3, 3, 0, | |
3353 "Rebind X keysym KEYSYM, with MODIFIERS, to generate NEWSTRING.\n\ | |
3354 KEYSYM is a string which conforms to the X keysym definitions found\n\ | |
3355 in X11/keysymdef.h, sans the initial XK_. MODIFIERS is nil or a\n\ | |
3356 list of strings specifying modifier keys such as Control_L, which must\n\ | |
3357 also be depressed for NEWSTRING to appear.") | |
3358 (x_keysym, modifiers, newstring) | |
3359 register Lisp_Object x_keysym; | |
3360 register Lisp_Object modifiers; | |
3361 register Lisp_Object newstring; | |
3362 { | |
3363 char *rawstring; | |
642 | 3364 register KeySym keysym; |
3365 KeySym modifier_list[16]; | |
389 | 3366 |
3367 CHECK_STRING (x_keysym, 1); | |
3368 CHECK_STRING (newstring, 3); | |
3369 | |
3370 keysym = XStringToKeysym ((char *) XSTRING (x_keysym)->data); | |
3371 if (keysym == NoSymbol) | |
3372 error ("Keysym does not exist"); | |
3373 | |
485 | 3374 if (NILP (modifiers)) |
389 | 3375 XRebindKeysym (x_current_display, keysym, modifier_list, 0, |
3376 XSTRING (newstring)->data, XSTRING (newstring)->size); | |
3377 else | |
3378 { | |
3379 register Lisp_Object rest, mod; | |
3380 register int i = 0; | |
3381 | |
485 | 3382 for (rest = modifiers; !NILP (rest); rest = Fcdr (rest)) |
389 | 3383 { |
3384 if (i == 16) | |
3385 error ("Can't have more than 16 modifiers"); | |
3386 | |
3387 mod = Fcar (rest); | |
3388 CHECK_STRING (mod, 3); | |
3389 modifier_list[i] = XStringToKeysym ((char *) XSTRING (mod)->data); | |
3390 if (modifier_list[i] == NoSymbol | |
3391 || !IsModifierKey (modifier_list[i])) | |
3392 error ("Element is not a modifier keysym"); | |
3393 i++; | |
3394 } | |
3395 | |
3396 XRebindKeysym (x_current_display, keysym, modifier_list, i, | |
3397 XSTRING (newstring)->data, XSTRING (newstring)->size); | |
3398 } | |
3399 | |
3400 return Qnil; | |
3401 } | |
3402 | |
3403 DEFUN ("x-rebind-keys", Fx_rebind_keys, Sx_rebind_keys, 2, 2, 0, | |
3404 "Rebind KEYCODE to list of strings STRINGS.\n\ | |
3405 STRINGS should be a list of 16 elements, one for each shift combination.\n\ | |
3406 nil as element means don't change.\n\ | |
3407 See the documentation of `x-rebind-key' for more information.") | |
3408 (keycode, strings) | |
3409 register Lisp_Object keycode; | |
3410 register Lisp_Object strings; | |
3411 { | |
3412 register Lisp_Object item; | |
3413 register unsigned char *rawstring; | |
3414 KeySym rawkey, modifier[1]; | |
3415 int strsize; | |
3416 register unsigned i; | |
3417 | |
3418 CHECK_NUMBER (keycode, 1); | |
3419 CHECK_CONS (strings, 2); | |
3420 rawkey = (KeySym) ((unsigned) (XINT (keycode))) & 255; | |
3421 for (i = 0; i <= 15; strings = Fcdr (strings), i++) | |
3422 { | |
3423 item = Fcar (strings); | |
485 | 3424 if (!NILP (item)) |
389 | 3425 { |
3426 CHECK_STRING (item, 2); | |
3427 strsize = XSTRING (item)->size; | |
3428 rawstring = (unsigned char *) xmalloc (strsize); | |
3429 bcopy (XSTRING (item)->data, rawstring, strsize); | |
3430 modifier[1] = 1 << i; | |
3431 XRebindKeysym (x_current_display, rawkey, modifier, 1, | |
3432 rawstring, strsize); | |
3433 } | |
3434 } | |
3435 return Qnil; | |
3436 } | |
3437 #else | |
3438 DEFUN ("x-rebind-key", Fx_rebind_key, Sx_rebind_key, 3, 3, 0, | |
3439 "Rebind KEYCODE, with shift bits SHIFT-MASK, to new string NEWSTRING.\n\ | |
3440 KEYCODE and SHIFT-MASK should be numbers representing the X keyboard code\n\ | |
3441 and shift mask respectively. NEWSTRING is an arbitrary string of keystrokes.\n\ | |
3442 If SHIFT-MASK is nil, then KEYCODE's key will be bound to NEWSTRING for\n\ | |
3443 all shift combinations.\n\ | |
3444 Shift Lock 1 Shift 2\n\ | |
3445 Meta 4 Control 8\n\ | |
3446 \n\ | |
3447 For values of KEYCODE, see /usr/lib/Xkeymap.txt (remember that the codes\n\ | |
3448 in that file are in octal!)\n\ | |
3449 \n\ | |
3450 NOTE: due to an X bug, this function will not take effect unless one has\n\ | |
3451 a `~/.Xkeymap' file. (See the documentation for the `keycomp' program.)\n\ | |
3452 This problem will be fixed in X version 11.") | |
3453 | |
3454 (keycode, shift_mask, newstring) | |
3455 register Lisp_Object keycode; | |
3456 register Lisp_Object shift_mask; | |
3457 register Lisp_Object newstring; | |
3458 { | |
3459 char *rawstring; | |
3460 int keysym, rawshift; | |
3461 int i, strsize; | |
3462 | |
3463 CHECK_NUMBER (keycode, 1); | |
485 | 3464 if (!NILP (shift_mask)) |
389 | 3465 CHECK_NUMBER (shift_mask, 2); |
3466 CHECK_STRING (newstring, 3); | |
3467 strsize = XSTRING (newstring)->size; | |
3468 rawstring = (char *) xmalloc (strsize); | |
3469 bcopy (XSTRING (newstring)->data, rawstring, strsize); | |
3470 | |
3471 keysym = ((unsigned) (XINT (keycode))) & 255; | |
3472 | |
485 | 3473 if (NILP (shift_mask)) |
389 | 3474 { |
3475 for (i = 0; i <= 15; i++) | |
3476 XRebindCode (keysym, i<<11, rawstring, strsize); | |
3477 } | |
3478 else | |
3479 { | |
3480 rawshift = (((unsigned) (XINT (shift_mask))) & 15) << 11; | |
3481 XRebindCode (keysym, rawshift, rawstring, strsize); | |
3482 } | |
3483 return Qnil; | |
3484 } | |
3485 | |
3486 DEFUN ("x-rebind-keys", Fx_rebind_keys, Sx_rebind_keys, 2, 2, 0, | |
3487 "Rebind KEYCODE to list of strings STRINGS.\n\ | |
3488 STRINGS should be a list of 16 elements, one for each shift combination.\n\ | |
3489 nil as element means don't change.\n\ | |
3490 See the documentation of `x-rebind-key' for more information.") | |
3491 (keycode, strings) | |
3492 register Lisp_Object keycode; | |
3493 register Lisp_Object strings; | |
3494 { | |
3495 register Lisp_Object item; | |
3496 register char *rawstring; | |
3497 KeySym rawkey, modifier[1]; | |
3498 int strsize; | |
3499 register unsigned i; | |
3500 | |
3501 CHECK_NUMBER (keycode, 1); | |
3502 CHECK_CONS (strings, 2); | |
3503 rawkey = (KeySym) ((unsigned) (XINT (keycode))) & 255; | |
3504 for (i = 0; i <= 15; strings = Fcdr (strings), i++) | |
3505 { | |
3506 item = Fcar (strings); | |
485 | 3507 if (!NILP (item)) |
389 | 3508 { |
3509 CHECK_STRING (item, 2); | |
3510 strsize = XSTRING (item)->size; | |
3511 rawstring = (char *) xmalloc (strsize); | |
3512 bcopy (XSTRING (item)->data, rawstring, strsize); | |
3513 XRebindCode (rawkey, i << 11, rawstring, strsize); | |
3514 } | |
3515 } | |
3516 return Qnil; | |
3517 } | |
3518 #endif /* not HAVE_X11 */ | |
3519 | |
3520 #ifdef HAVE_X11 | |
3521 Visual * | |
3522 select_visual (screen, depth) | |
3523 Screen *screen; | |
3524 unsigned int *depth; | |
3525 { | |
3526 Visual *v; | |
3527 XVisualInfo *vinfo, vinfo_template; | |
3528 int n_visuals; | |
3529 | |
3530 v = DefaultVisualOfScreen (screen); | |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3531 |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3532 #ifdef HAVE_X11R4 |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3533 vinfo_template.visualid = XVisualIDFromVisual (v); |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3534 #else |
2341
1982e2983822
* xfns.c (x_make_gc): Don't forget to block X input around the
Jim Blandy <jimb@redhat.com>
parents:
2328
diff
changeset
|
3535 vinfo_template.visualid = v->visualid; |
1050
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3536 #endif |
133bad38bde1
* xfns.c (x_icon): Don't call x_wm_set_icon_positions if the user
Jim Blandy <jimb@redhat.com>
parents:
1018
diff
changeset
|
3537 |
389 | 3538 vinfo = XGetVisualInfo (x_current_display, VisualIDMask, &vinfo_template, |
3539 &n_visuals); | |
3540 if (n_visuals != 1) | |
3541 fatal ("Can't get proper X visual info"); | |
3542 | |
3543 if ((1 << vinfo->depth) == vinfo->colormap_size) | |
3544 *depth = vinfo->depth; | |
3545 else | |
3546 { | |
3547 int i = 0; | |
3548 int n = vinfo->colormap_size - 1; | |
3549 while (n) | |
3550 { | |
3551 n = n >> 1; | |
3552 i++; | |
3553 } | |
3554 *depth = i; | |
3555 } | |
3556 | |
3557 XFree ((char *) vinfo); | |
3558 return v; | |
3559 } | |
3560 #endif /* HAVE_X11 */ | |
3561 | |
3562 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection, | |
3563 1, 2, 0, "Open a connection to an X server.\n\ | |
3564 DISPLAY is the name of the display to connect to. Optional second\n\ | |
3565 arg XRM_STRING is a string of resources in xrdb format.") | |
3566 (display, xrm_string) | |
3567 Lisp_Object display, xrm_string; | |
3568 { | |
3569 unsigned int n_planes; | |
3570 unsigned char *xrm_option; | |
3571 | |
3572 CHECK_STRING (display, 0); | |
3573 if (x_current_display != 0) | |
3574 error ("X server connection is already initialized"); | |
3575 | |
3576 /* This is what opens the connection and sets x_current_display. | |
3577 This also initializes many symbols, such as those used for input. */ | |
3578 x_term_init (XSTRING (display)->data); | |
3579 | |
3580 #ifdef HAVE_X11 | |
3581 XFASTINT (Vwindow_system_version) = 11; | |
3582 | |
3583 if (!EQ (xrm_string, Qnil)) | |
3584 { | |
3585 CHECK_STRING (xrm_string, 1); | |
3586 xrm_option = (unsigned char *) XSTRING (xrm_string); | |
3587 } | |
3588 else | |
3589 xrm_option = (unsigned char *) 0; | |
3590 xrdb = x_load_resources (x_current_display, xrm_option, EMACS_CLASS); | |
2283
997f8e481bf8
* xfns.c (Fx_open_connection): If we have X11R5, use
Jim Blandy <jimb@redhat.com>
parents:
2279
diff
changeset
|
3591 #ifdef HAVE_X11R5 |
997f8e481bf8
* xfns.c (Fx_open_connection): If we have X11R5, use
Jim Blandy <jimb@redhat.com>
parents:
2279
diff
changeset
|
3592 XrmSetDatabase (x_current_display, xrdb); |
997f8e481bf8
* xfns.c (Fx_open_connection): If we have X11R5, use
Jim Blandy <jimb@redhat.com>
parents:
2279
diff
changeset
|
3593 #else |
389 | 3594 x_current_display->db = xrdb; |
2283
997f8e481bf8
* xfns.c (Fx_open_connection): If we have X11R5, use
Jim Blandy <jimb@redhat.com>
parents:
2279
diff
changeset
|
3595 #endif |
389 | 3596 |
3597 x_screen = DefaultScreenOfDisplay (x_current_display); | |
3598 | |
3599 screen_visual = select_visual (x_screen, &n_planes); | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
3600 x_screen_planes = n_planes; |
2276
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3601 x_screen_height = HeightOfScreen (x_screen); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3602 x_screen_width = WidthOfScreen (x_screen); |
389 | 3603 |
3604 /* X Atoms used by emacs. */ | |
2197
fb5a1caebef6
(Xatom_wm_change_state): Just declare.
Richard M. Stallman <rms@gnu.org>
parents:
2136
diff
changeset
|
3605 Xatoms_of_xselect (); |
389 | 3606 BLOCK_INPUT; |
641 | 3607 Xatom_wm_protocols = XInternAtom (x_current_display, "WM_PROTOCOLS", |
3608 False); | |
3609 Xatom_wm_take_focus = XInternAtom (x_current_display, "WM_TAKE_FOCUS", | |
3610 False); | |
3611 Xatom_wm_save_yourself = XInternAtom (x_current_display, "WM_SAVE_YOURSELF", | |
3612 False); | |
3613 Xatom_wm_delete_window = XInternAtom (x_current_display, "WM_DELETE_WINDOW", | |
3614 False); | |
3615 Xatom_wm_change_state = XInternAtom (x_current_display, "WM_CHANGE_STATE", | |
3616 False); | |
3617 Xatom_wm_configure_denied = XInternAtom (x_current_display, | |
3618 "WM_CONFIGURE_DENIED", False); | |
3619 Xatom_wm_window_moved = XInternAtom (x_current_display, "WM_MOVED", | |
3620 False); | |
389 | 3621 UNBLOCK_INPUT; |
3622 #else /* not HAVE_X11 */ | |
3623 XFASTINT (Vwindow_system_version) = 10; | |
3624 #endif /* not HAVE_X11 */ | |
3625 return Qnil; | |
3626 } | |
3627 | |
3628 DEFUN ("x-close-current-connection", Fx_close_current_connection, | |
3629 Sx_close_current_connection, | |
3630 0, 0, 0, "Close the connection to the current X server.") | |
3631 () | |
3632 { | |
3633 #ifdef HAVE_X11 | |
3634 /* This is ONLY used when killing emacs; For switching displays | |
3635 we'll have to take care of setting CloseDownMode elsewhere. */ | |
3636 | |
3637 if (x_current_display) | |
3638 { | |
3639 BLOCK_INPUT; | |
3640 XSetCloseDownMode (x_current_display, DestroyAll); | |
3641 XCloseDisplay (x_current_display); | |
3642 } | |
3643 else | |
3644 fatal ("No current X display connection to close\n"); | |
3645 #endif | |
3646 return Qnil; | |
3647 } | |
3648 | |
3649 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, | |
3650 1, 1, 0, "If ON is non-nil, report X errors as soon as the erring request is made.\n\ | |
3651 If ON is nil, allow buffering of requests.\n\ | |
3652 Turning on synchronization prohibits the Xlib routines from buffering\n\ | |
3653 requests and seriously degrades performance, but makes debugging much\n\ | |
3654 easier.") | |
3655 (on) | |
3656 Lisp_Object on; | |
3657 { | |
3658 XSynchronize (x_current_display, !EQ (on, Qnil)); | |
3659 | |
3660 return Qnil; | |
3661 } | |
3662 | |
3663 | |
3664 syms_of_xfns () | |
3665 { | |
3666 /* This is zero if not using X windows. */ | |
3667 x_current_display = 0; | |
3668 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3669 /* The section below is built by the lisp expression at the top of the file, |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3670 just above where these variables are declared. */ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3671 /*&&& init symbols here &&&*/ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3672 Qauto_raise = intern ("auto-raise"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3673 staticpro (&Qauto_raise); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3674 Qauto_lower = intern ("auto-lower"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3675 staticpro (&Qauto_lower); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3676 Qbackground_color = intern ("background-color"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3677 staticpro (&Qbackground_color); |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
3678 Qbar = intern ("bar"); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
3679 staticpro (&Qbar); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3680 Qborder_color = intern ("border-color"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3681 staticpro (&Qborder_color); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3682 Qborder_width = intern ("border-width"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3683 staticpro (&Qborder_width); |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
3684 Qbox = intern ("box"); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
3685 staticpro (&Qbox); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3686 Qcursor_color = intern ("cursor-color"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3687 staticpro (&Qcursor_color); |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
3688 Qcursor_type = intern ("cursor-type"); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1786
diff
changeset
|
3689 staticpro (&Qcursor_type); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3690 Qfont = intern ("font"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3691 staticpro (&Qfont); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3692 Qforeground_color = intern ("foreground-color"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3693 staticpro (&Qforeground_color); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3694 Qgeometry = intern ("geometry"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3695 staticpro (&Qgeometry); |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
3696 Qicon = intern ("icon"); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
3697 staticpro (&Qicon); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3698 Qicon_left = intern ("icon-left"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3699 staticpro (&Qicon_left); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3700 Qicon_top = intern ("icon-top"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3701 staticpro (&Qicon_top); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3702 Qicon_type = intern ("icon-type"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3703 staticpro (&Qicon_type); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3704 Qinternal_border_width = intern ("internal-border-width"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3705 staticpro (&Qinternal_border_width); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3706 Qleft = intern ("left"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3707 staticpro (&Qleft); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3708 Qmouse_color = intern ("mouse-color"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3709 staticpro (&Qmouse_color); |
1874
19cf50641d6c
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
3710 Qnone = intern ("none"); |
19cf50641d6c
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
3711 staticpro (&Qnone); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3712 Qparent_id = intern ("parent-id"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3713 staticpro (&Qparent_id); |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
3714 Qsuppress_icon = intern ("suppress-icon"); |
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
3715 staticpro (&Qsuppress_icon); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3716 Qtop = intern ("top"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3717 staticpro (&Qtop); |
389 | 3718 Qundefined_color = intern ("undefined-color"); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3719 staticpro (&Qundefined_color); |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
3720 Qvertical_scroll_bars = intern ("vertical-scroll-bars"); |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1932
diff
changeset
|
3721 staticpro (&Qvertical_scroll_bars); |
2294
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
3722 Qvisibility = intern ("visibility"); |
9bce20507666
Use the `visiblity' parameter to determine the initial state of
Jim Blandy <jimb@redhat.com>
parents:
2283
diff
changeset
|
3723 staticpro (&Qvisibility); |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3724 Qwindow_id = intern ("window-id"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3725 staticpro (&Qwindow_id); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3726 Qx_frame_parameter = intern ("x-frame-parameter"); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3727 staticpro (&Qx_frame_parameter); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3728 /* This is the end of symbol initialization. */ |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3729 |
389 | 3730 Fput (Qundefined_color, Qerror_conditions, |
3731 Fcons (Qundefined_color, Fcons (Qerror, Qnil))); | |
3732 Fput (Qundefined_color, Qerror_message, | |
3733 build_string ("Undefined color")); | |
3734 | |
974
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3735 init_x_parm_symbols (); |
4f88a1b78a46
* xfns.c (x_get_arg): Return Qunbound for an unspecified
Jim Blandy <jimb@redhat.com>
parents:
833
diff
changeset
|
3736 |
389 | 3737 DEFVAR_INT ("mouse-buffer-offset", &mouse_buffer_offset, |
3738 "The buffer offset of the character under the pointer."); | |
1528
924c8a609582
* xfns.c (x_decode_color, Fx_color_display_p): x_screen_planes is
Jim Blandy <jimb@redhat.com>
parents:
1438
diff
changeset
|
3739 mouse_buffer_offset = 0; |
389 | 3740 |
3741 DEFVAR_INT ("x-pointer-shape", &Vx_pointer_shape, | |
3742 "The shape of the pointer when over text."); | |
3743 Vx_pointer_shape = Qnil; | |
3744 | |
3745 DEFVAR_INT ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape, | |
3746 "The shape of the pointer when not over text."); | |
3747 Vx_nontext_pointer_shape = Qnil; | |
3748 | |
3749 DEFVAR_INT ("x-mode-pointer-shape", &Vx_mode_pointer_shape, | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
642
diff
changeset
|
3750 "The shape of the pointer when over the mode line."); |
389 | 3751 Vx_mode_pointer_shape = Qnil; |
3752 | |
3753 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel, | |
3754 "A string indicating the foreground color of the cursor box."); | |
3755 Vx_cursor_fore_pixel = Qnil; | |
3756 | |
3757 DEFVAR_LISP ("mouse-grabbed", &Vmouse_depressed, | |
3758 "Non-nil if a mouse button is currently depressed."); | |
3759 Vmouse_depressed = Qnil; | |
3760 | |
3761 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager, | |
3762 "t if no X window manager is in use."); | |
3763 | |
3764 #ifdef HAVE_X11 | |
3765 defsubr (&Sx_get_resource); | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3766 #if 0 |
389 | 3767 defsubr (&Sx_draw_rectangle); |
3768 defsubr (&Sx_erase_rectangle); | |
3769 defsubr (&Sx_contour_region); | |
3770 defsubr (&Sx_uncontour_region); | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
3771 #endif |
2277
773e47f29c5a
(Fx_display_color_p): Renamed from Fx_color_display_p.
Richard M. Stallman <rms@gnu.org>
parents:
2276
diff
changeset
|
3772 defsubr (&Sx_display_color_p); |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
3773 defsubr (&Sx_color_defined_p); |
2276
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3774 defsubr (&Sx_server_vendor); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3775 defsubr (&Sx_server_version); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3776 defsubr (&Sx_display_pixel_width); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3777 defsubr (&Sx_display_pixel_height); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3778 defsubr (&Sx_display_mm_width); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3779 defsubr (&Sx_display_mm_height); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3780 defsubr (&Sx_display_screens); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3781 defsubr (&Sx_display_planes); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3782 defsubr (&Sx_display_color_cells); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3783 defsubr (&Sx_display_visual_class); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3784 defsubr (&Sx_display_backing_store); |
68328c3af38f
(x_screen): Make this var file scope.
Richard M. Stallman <rms@gnu.org>
parents:
2197
diff
changeset
|
3785 defsubr (&Sx_display_save_under); |
389 | 3786 #if 0 |
3787 defsubr (&Sx_track_pointer); | |
3788 defsubr (&Sx_grab_pointer); | |
3789 defsubr (&Sx_ungrab_pointer); | |
436
6e0a136fca4f
*** empty log message ***
Michael I. Bushnell <mib@gnu.org>
parents:
398
diff
changeset
|
3790 #endif |
389 | 3791 #else |
3792 defsubr (&Sx_get_default); | |
3793 defsubr (&Sx_store_cut_buffer); | |
3794 defsubr (&Sx_get_cut_buffer); | |
3795 defsubr (&Sx_set_face); | |
3796 #endif | |
2328
82e4fed9cdd6
* xfns.c (Fx_parse_geometry): Renamed from Fx_geometry.
Jim Blandy <jimb@redhat.com>
parents:
2295
diff
changeset
|
3797 defsubr (&Sx_parse_geometry); |
771 | 3798 defsubr (&Sx_create_frame); |
3799 defsubr (&Sfocus_frame); | |
3800 defsubr (&Sunfocus_frame); | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
642
diff
changeset
|
3801 #if 0 |
389 | 3802 defsubr (&Sx_horizontal_line); |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
642
diff
changeset
|
3803 #endif |
389 | 3804 defsubr (&Sx_rebind_key); |
3805 defsubr (&Sx_rebind_keys); | |
3806 defsubr (&Sx_open_connection); | |
3807 defsubr (&Sx_close_current_connection); | |
3808 defsubr (&Sx_synchronize); | |
3809 } | |
3810 | |
3811 #endif /* HAVE_X_WINDOWS */ |