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