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