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