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