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