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