annotate src/device-x.c @ 276:6330739388db r21-0b36

Import from CVS: tag r21-0b36
author cvs
date Mon, 13 Aug 2007 10:30:37 +0200
parents c5d627a313b1
children 90d73dddcdc4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Device functions for X windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Original authors: Jamie Zawinski and the FSF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Rewritten by Ben Wing and Chuck Thompson. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "xintrinsicp.h" /* CoreP.h needs this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include <X11/CoreP.h> /* Numerous places access the fields of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 a core widget directly. We could
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
34 use XtGetValues(), but ... */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "xgccache.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include <X11/Shell.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "xmu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include "sysdep.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #include "sysfile.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
52 #ifdef HAVE_OFFIX_DND
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
53 #include "offix.h"
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
54 #endif
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
55
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Lisp_Object Vdefault_x_device;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
57 #if defined(MULE) && (defined(LWLIB_MENUBARS_MOTIF) || defined(HAVE_XIM) || defined (USE_XFONTSET))
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
58 Lisp_Object Vx_app_defaults_directory;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
59 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 /* Qdisplay in general.c */
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
62 Lisp_Object Qx_error;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Lisp_Object Qinit_pre_x_win, Qinit_post_x_win;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
65 /* $B@ZJ"(B, n. Japanese ritual suicide. */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
66 int x_seppuku_on_epipe;
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
67
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 /* The application class of Emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 Lisp_Object Vx_emacs_application_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Lisp_Object Vx_initial_argv_list; /* #### ugh! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 static XrmOptionDescRec emacs_options[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
75 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
76 {"-iconic", ".iconic", XrmoptionNoArg, "yes"},
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
77
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
78 {"-internal-border-width", "*EmacsFrame.internalBorderWidth", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
79 {"-ib", "*EmacsFrame.internalBorderWidth", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
80 {"-scrollbar-width", "*EmacsFrame.scrollBarWidth", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
81 {"-scrollbar-height", "*EmacsFrame.scrollBarHeight", XrmoptionSepArg, NULL},
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
83 {"-privatecolormap", ".privateColormap", XrmoptionNoArg, "yes"},
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
84 {"-visual", ".EmacsVisual", XrmoptionSepArg, NULL},
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
85
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* #### Beware! If the type of the shell changes, update this. */
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
87 {"-T", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
88 {"-wn", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
89 {"-title", "*TopLevelEmacsShell.title", XrmoptionSepArg, NULL},
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
90
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
91 {"-iconname", "*TopLevelEmacsShell.iconName", XrmoptionSepArg, NULL},
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
92 {"-in", "*TopLevelEmacsShell.iconName", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
93 {"-mc", "*pointerColor", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
94 {"-cr", "*cursorColor", XrmoptionSepArg, NULL},
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
95 {"-fontset", "*FontSet", XrmoptionSepArg, NULL},
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* Functions to synchronize mirroring resources and specifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 int in_resource_setting;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 int in_specifier_change_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 /* helper functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
107 /* JH 97/11/25 removed the static declaration because I need it during setup in event-Xt... */
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
108 struct device * get_device_from_display_1 (Display *dpy);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
109 struct device *
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
110 get_device_from_display_1 (Display *dpy)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 struct device *d = XDEVICE (XCAR (devcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 if (DEVICE_X_P (d) && DEVICE_X_DISPLAY (d) == dpy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 return d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
121 return 0;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
122 }
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
123
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
124 struct device *
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
125 get_device_from_display (Display *dpy)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
126 {
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
127 struct device *d = get_device_from_display_1 (dpy);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
129 #if !defined(INFODOCK)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
130 # define FALLBACK_RESOURCE_NAME "xemacs"
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
131 # else
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
132 # define FALLBACK_RESOURCE_NAME "infodock"
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
133 #endif
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
134
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
135 if (!d) {
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
136 /* This isn't one of our displays. Let's crash? */
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
137 stderr_out
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
138 ("\n%s: Fatal X Condition. Asked about display we don't own: \"%s\"\n",
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
139 (STRINGP (Vinvocation_name) ?
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
140 (char *) XSTRING_DATA (Vinvocation_name) : FALLBACK_RESOURCE_NAME),
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
141 DisplayString (dpy) ? DisplayString (dpy) : "???");
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
142 abort();
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
143 }
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
144
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
145 #undef FALLBACK_RESOURCE_NAME
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
146
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
147 return d;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 struct device *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 decode_x_device (Lisp_Object device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 XSETDEVICE (device, decode_device (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 CHECK_X_DEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 return XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
158 static Display *
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 get_x_display (Lisp_Object device)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 return DEVICE_X_DISPLAY (decode_x_device (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 /* initializing an X connection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 allocate_x_device_struct (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
172 d->device_data = xnew_and_zero (struct x_device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 Xatoms_of_device_x (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 {
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
178 Display *D = DEVICE_X_DISPLAY (d);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
180 DEVICE_XATOM_WM_PROTOCOLS (d) = XInternAtom (D, "WM_PROTOCOLS", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
181 DEVICE_XATOM_WM_DELETE_WINDOW(d) = XInternAtom (D, "WM_DELETE_WINDOW",False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
182 DEVICE_XATOM_WM_SAVE_YOURSELF(d) = XInternAtom (D, "WM_SAVE_YOURSELF",False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
183 DEVICE_XATOM_WM_TAKE_FOCUS (d) = XInternAtom (D, "WM_TAKE_FOCUS", False);
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
184 DEVICE_XATOM_WM_STATE (d) = XInternAtom (D, "WM_STATE", False);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 sanity_check_geometry_resource (Display *dpy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 char *app_name, *app_class, *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 char buf1 [255], buf2 [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 char *type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 XrmValue value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 XtGetApplicationNameAndClass (dpy, &app_name, &app_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 strcpy (buf1, app_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 strcpy (buf2, app_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 for (s = buf1; *s; s++) if (*s == '.') *s = '_';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 strcat (buf1, "._no_._such_._resource_.geometry");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 strcat (buf2, "._no_._such_._resource_.Geometry");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 if (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) == True)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 warn_when_safe (Qgeometry, Qerror,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 "Apparently \"%s*geometry: %s\" or \"%s*geometry: %s\" was\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 "specified in the resource database. Specifying \"*geometry\" will make\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 "XEmacs (and most other X programs) malfunction in obscure ways. (i.e.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 "the Xt or Xm libraries will probably crash, which is a very bad thing.)\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 "You should always use \".geometry\" or \"*EmacsFrame.geometry\" instead.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 app_name, (char *) value.addr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 app_class, (char *) value.addr);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
211 suppress_early_error_handler_backtrace = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 error ("Invalid geometry resource");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 x_init_device_class (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
219 if (DEVICE_X_DEPTH(d) > 2)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
221 switch (DEVICE_X_VISUAL(d)->class)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 case StaticGray:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 case GrayScale:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 DEVICE_CLASS (d) = Qgrayscale;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 DEVICE_CLASS (d) = Qcolor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 DEVICE_CLASS (d) = Qmono;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
235 /*
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
236 * Figure out what application name to use for xemacs
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
237 *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
238 * Since we have decomposed XtOpenDisplay into XOpenDisplay and
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
239 * XtDisplayInitialize, we no longer get this for free.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
240 *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
241 * If there is a `-name' argument in argv, use that.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
242 * Otherwise use the last component of argv[0].
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
243 *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
244 * I have removed the gratuitous use of getenv("RESOURCE_NAME")
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
245 * which was in X11R5, but left the matching of any prefix of `-name'.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
246 * Finally, if all else fails, return `xemacs', as it is more
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
247 * appropriate (X11R5 returns `main').
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
248 */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
249 static char *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
250 compute_x_app_name (int argc, char **argv)
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
251 {
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
252 int i;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
253 char *ptr;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
254
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
255 for (i = 1; i < argc - 1; i++)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
256 if (!strncmp(argv[i], "-name", max (2, strlen (argv[1]))))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
257 return argv[i+1];
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
258
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
259 if (argc > 0 && argv[0] && *argv[0])
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
260 return (ptr = strrchr (argv[0], '/')) ? ++ptr : argv[0];
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
261
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
262 return "xemacs";
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
263 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
264
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
265 /*
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
266 * This function figures out whether the user has any resources of the
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
267 * form "XEmacs.foo" or "XEmacs*foo".
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
268 *
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
269 * Currently we only consult the display's global resources; to look
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
270 * for screen specific resources, we would need to also consult:
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
271 * xdefs = XScreenResourceString(ScreenOfDisplay(dpy, scrno));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
272 */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
273 static int
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
274 have_xemacs_resources_in_xrdb (Display *dpy)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
275 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
276 char *xdefs, *key;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
277 int len;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
278
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
279 key = "XEmacs";
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
280 len = strlen (key);
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
281
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
282 if (!dpy)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
283 return 0;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
284
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
285 xdefs = XResourceManagerString (dpy); /* don't free - owned by X */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
286 while (xdefs && *xdefs)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
287 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
288 if (strncmp (xdefs, key, len) == 0 &&
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
289 (xdefs[len] == '*' || xdefs[len] == '.'))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
290 return 1;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
291
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
292 while (*xdefs && *xdefs++ != '\n') /* find start of next entry.. */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
293 ;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
294 }
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
295
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
296 return 0;
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
297 }
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
298
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
299 /* Only the characters [-_A-Za-z0-9] are allowed in the individual
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
300 components of a resource. Convert invalid characters to `-' */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
301
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
302 static char valid_resource_char_p[256];
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
303
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
304 static void
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
305 validify_resource_component (char *str, size_t len)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
306 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
307 for (; len; len--, str++)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
308 if (!valid_resource_char_p[(unsigned char) (*str)])
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
309 *str = '-';
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
310 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
311
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
312 static void
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
313 Dynarr_add_validified_lisp_string (char_dynarr *cda, Lisp_Object str)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
314 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
315 Bytecount len = XSTRING_LENGTH (str);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
316 Dynarr_add_many (cda, (char *) XSTRING_DATA (str), len);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
317 validify_resource_component (Dynarr_atp (cda, Dynarr_length (cda) - len), len);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
318 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
319
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 x_init_device (struct device *d, Lisp_Object props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 Lisp_Object display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 Display *dpy;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
326 Widget app_shell;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 int argc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 char **argv;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
329 CONST char *app_class;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
330 CONST char *app_name;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 CONST char *disp_name;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
332 Arg xargs[6];
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
333 Cardinal numargs;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
334 Visual *visual = NULL;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
335 int depth = 8; /* shut up the compiler */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
336 Colormap cmap;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
337 int screen;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 XSETDEVICE (device, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 display = DEVICE_CONNECTION (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 allocate_x_device_struct (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 make_argc_argv (Vx_initial_argv_list, &argc, &argv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
346 GET_C_STRING_CTEXT_DATA_ALLOCA (display, disp_name);
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
347
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
348 /*
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
349 * Break apart the old XtOpenDisplay call into XOpenDisplay and
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
350 * XtDisplayInitialize so we can figure out whether there
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
351 * are any XEmacs resources in the resource database before
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
352 * we intitialize Xt. This is so we can automagically support
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
353 * both `Emacs' and `XEmacs' application classes.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
354 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 slow_down_interrupts ();
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
356 /* May not be needed but XtOpenDisplay could not deal with signals here. */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
357 dpy = DEVICE_X_DISPLAY (d) = XOpenDisplay (disp_name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 speed_up_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 if (dpy == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
362 suppress_early_error_handler_backtrace = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 signal_simple_error ("X server not responding\n", display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
366 if (STRINGP (Vx_emacs_application_class) &&
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
367 XSTRING_LENGTH (Vx_emacs_application_class) > 0)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
368 GET_C_STRING_CTEXT_DATA_ALLOCA (Vx_emacs_application_class, app_class);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
369 else
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
370 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
371 app_class = (NILP (Vx_emacs_application_class) &&
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
372 have_xemacs_resources_in_xrdb (dpy))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
373 ? "XEmacs"
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
374 : "Emacs";
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
375 /* need to update Vx_emacs_application_class: */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
376 Vx_emacs_application_class = build_string (app_class);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
377 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
378
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
379 slow_down_interrupts ();
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
380 /* May not be needed but XtOpenDisplay could not deal with signals here.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
381 Yuck. */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
382 XtDisplayInitialize (Xt_app_con, dpy, compute_x_app_name (argc, argv),
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
383 app_class, emacs_options,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
384 XtNumber (emacs_options), &argc, argv);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
385 speed_up_interrupts ();
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
386
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
387 screen = DefaultScreen(dpy);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
388 if (NILP (Vdefault_x_device))
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
389 Vdefault_x_device = device;
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
390
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
391 #ifdef MULE
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
392 #if defined(LWLIB_MENUBARS_MOTIF) || defined(HAVE_XIM) || defined (USE_XFONTSET)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
393 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
394 /* Read in locale-specific resources from
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
395 data-directory/app-defaults/$LANG/Emacs.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
396 This is in addition to the standard app-defaults files, and
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
397 does not override resources defined elsewhere */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
398 CONST char *data_dir;
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 263
diff changeset
399 char *path;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
400 XrmDatabase db = XtDatabase (dpy); /* ### XtScreenDatabase(dpy) ? */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
401 CONST char *locale = XrmLocaleOfDatabase (db);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
402
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
403 if (STRINGP (Vx_app_defaults_directory) &&
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
404 XSTRING_LENGTH (Vx_app_defaults_directory) > 0)
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
405 {
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
406 GET_C_STRING_FILENAME_DATA_ALLOCA(Vx_app_defaults_directory, data_dir);
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 263
diff changeset
407 path = (char *)alloca (strlen (data_dir) + strlen (locale) + 7);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
408 sprintf (path, "%s%s/Emacs", data_dir, locale);
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
409 if (!access (path, R_OK))
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
410 XrmCombineFileDatabase (path, &db, False);
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
411 }
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
412 else if (STRINGP (Vdata_directory) && XSTRING_LENGTH (Vdata_directory) > 0)
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
413 {
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
414 GET_C_STRING_FILENAME_DATA_ALLOCA (Vdata_directory, data_dir);
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 263
diff changeset
415 path = (char *)alloca (strlen (data_dir) + 13 + strlen (locale) + 7);
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 259
diff changeset
416 sprintf (path, "%sapp-defaults/%s/Emacs", data_dir, locale);
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
417 if (!access (path, R_OK))
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
418 XrmCombineFileDatabase (path, &db, False);
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
419 }
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
420 }
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
421 #endif /* LWLIB_MENUBARS_MOTIF or HAVE_XIM USE_XFONTSET */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 114
diff changeset
422 #endif /* MULE */
6
27bc7f280385 Import from CVS: tag r19-15b4
cvs
parents: 2
diff changeset
423
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 if (NILP (DEVICE_NAME (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 DEVICE_NAME (d) = display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 /* We're going to modify the string in-place, so be a nice XEmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 DEVICE_NAME (d) = Fcopy_sequence (DEVICE_NAME (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 /* colons and periods can't appear in individual elements of resource
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 strings */
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
431
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
432 XtGetApplicationNameAndClass (dpy, (char **) &app_name, (char **) &app_class);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
433 /* search for a matching visual if requested by the user, or setup the display default */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
434 numargs = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
435 {
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 263
diff changeset
436 char *buf1 = (char *)alloca (strlen (app_name) + 17);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 263
diff changeset
437 char *buf2 = (char *)alloca (strlen (app_class) + 17);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
438 char *type;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
439 XrmValue value;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
440
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
441 sprintf (buf1, "%s.emacsVisual", app_name);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
442 sprintf (buf2, "%s.EmacsVisual", app_class);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
443 if (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) == True)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
444 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
445 int cnt = 0, vis_class= PseudoColor;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
446 XVisualInfo vinfo;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
447 char *res, *str = (char*)value.addr;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
448
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
449 if (strncmp(str, "StaticGray", 10) == 0) cnt = 10, vis_class = StaticGray;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
450 else if (strncmp(str, "StaticColor", 11) == 0) cnt = 11, vis_class = StaticColor;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
451 else if (strncmp(str, "TrueColor", 9) == 0) cnt = 9, vis_class = TrueColor;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
452 else if (strncmp(str, "GrayScale", 9) == 0) cnt = 9, vis_class = GrayScale;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
453 else if (strncmp(str, "PseudoColor", 11) == 0) cnt = 11, vis_class = PseudoColor;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
454 else if (strncmp(str, "DirectColor", 11) == 0) cnt = 11, vis_class = DirectColor;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
455 if (cnt)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
456 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
457 res = str + cnt;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
458 depth = atoi(res);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
459 if (depth == 0)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
460 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
461 stderr_out("Invalid Depth specification in %s... ignoring...\n",(char*)str);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
462 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
463 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
464 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
465 if (XMatchVisualInfo(dpy, screen, depth, vis_class, &vinfo))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
466 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
467 visual = vinfo.visual;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
468 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
469 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
470 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
471 stderr_out("Can't match the requested visual %s... using defaults\n",str);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
472 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
473 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
474 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
475 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
476 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
477 stderr_out("Invalid Visual specification in %s... ignoring.\n",(char*)str);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
478 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
479 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
480 if (visual == NULL)
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
481 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
482 visual = DefaultVisual(dpy, screen);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
483 depth = DefaultDepth(dpy, screen);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
484 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
485
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
486 /* If we've got the same visual as the default and its PseudoColor, check to see if the user
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
487 specified that we need a private colormap */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
488 if (visual == DefaultVisual(dpy, screen))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
489 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
490 sprintf (buf1, "%s.privateColormap", app_name);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
491 sprintf (buf2, "%s.PrivateColormap", app_class);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
492 if ((visual->class == PseudoColor) &&
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
493 (XrmGetResource (XtDatabase (dpy), buf1, buf2, &type, &value) == True))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
494 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
495 cmap = XCopyColormapAndFree(dpy, DefaultColormap(dpy, screen));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
496 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
497 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
498 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
499 cmap = DefaultColormap(dpy, screen);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
500 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
501 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
502 else
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
503 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
504 /* We have to create a matching colormap anyway...
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
505 ### think about using standard colormaps (need the Xmu libs?) */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
506 cmap = XCreateColormap(dpy, RootWindow(dpy, screen), visual, AllocNone);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
507 XInstallColormap(dpy, cmap);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
508 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
509 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
510 XtSetArg(xargs[numargs],XtNvisual, visual); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
511 XtSetArg(xargs[numargs],XtNdepth, depth); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
512 XtSetArg(xargs[numargs],XtNcolormap, cmap); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
513 DEVICE_X_VISUAL (d) = visual;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
514 DEVICE_X_COLORMAP (d) = cmap;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
515 DEVICE_X_DEPTH (d) = depth;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
516
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
517 validify_resource_component ((char *) XSTRING_DATA (DEVICE_NAME (d)),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
518 XSTRING_LENGTH (DEVICE_NAME (d)));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
519 app_shell = XtAppCreateShell (NULL, app_class,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
520 applicationShellWidgetClass,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
521 dpy, xargs, numargs);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
523 DEVICE_XT_APP_SHELL (d) = app_shell;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
524 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
525 XIM_init_device(d);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
526 #endif /* HAVE_XIM */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
528 /* Realize the app_shell so that its window exists for GC creation purposes,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
529 and set it to the size of the root window for child placement purposes */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
530 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
531 Screen *scrn = ScreenOfDisplay(dpy, screen);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
532 int screen_width, screen_height;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
533 screen_width = WidthOfScreen(scrn);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
534 screen_height = HeightOfScreen(scrn);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
535 numargs = 0;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
536 XtSetArg (xargs[numargs], XtNmappedWhenManaged, False); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
537 XtSetArg (xargs[numargs], XtNx, 0); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
538 XtSetArg (xargs[numargs], XtNy, 0); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
539 XtSetArg (xargs[numargs], XtNwidth, screen_width); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
540 XtSetArg (xargs[numargs], XtNheight, screen_height); numargs++;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
541 XtSetValues (app_shell, xargs, numargs);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
542 XtRealizeWidget (app_shell);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
543 }
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
544 #ifdef HAVE_SESSION
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 169
diff changeset
545 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
546 int new_argc;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
547 char **new_argv;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
548 make_argc_argv (Vcommand_line_args, &new_argc, &new_argv);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
549 XSetCommand (XtDisplay (app_shell), XtWindow (app_shell), new_argv, new_argc);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
550 free_argc_argv (new_argv);
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 169
diff changeset
551 }
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
552 #endif /* HAVE_SESSION */
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 169
diff changeset
553
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
554
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
555 #ifdef HAVE_OFFIX_DND
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
556 DndInitialize ( app_shell );
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
557 #endif
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 193
diff changeset
558
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 Vx_initial_argv_list = make_arg_list (argc, argv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 free_argc_argv (argv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 DEVICE_X_WM_COMMAND_FRAME (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 sanity_check_geometry_resource (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 /* In event-Xt.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 x_init_modifier_mapping (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 DEVICE_INFD (d) = DEVICE_OUTFD (d) = ConnectionNumber (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 init_baud_rate (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 init_one_device (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
573 DEVICE_X_GC_CACHE (d) = make_gc_cache (dpy, XtWindow(app_shell));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 DEVICE_X_GRAY_PIXMAP (d) = None;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 Xatoms_of_device_x (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 Xatoms_of_xselect (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 Xatoms_of_objects_x (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 x_init_device_class (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
580 /* Run the elisp side of the X device initialization. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 call0 (Qinit_pre_x_win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 x_finish_init_device (struct device *d, Lisp_Object props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 call0 (Qinit_post_x_win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 x_mark_device (struct device *d, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 {
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
593 ((markobj) (DEVICE_X_WM_COMMAND_FRAME (d)));
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
594 ((markobj) (DEVICE_X_DATA (d)->x_keysym_map_hashtable));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 /* closing an X connection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 free_x_device_struct (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 xfree (d->device_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 x_delete_device (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 #ifdef FREE_CHECKING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 extern void (*__free_hook)();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 int checking_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 XSETDEVICE (device, d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 display = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 if (display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 #ifdef FREE_CHECKING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 checking_free = (__free_hook != 0);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
625
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 /* Disable strict free checking, to avoid bug in X library */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 if (checking_free)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 disable_strict_free_check ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 free_gc_cache (DEVICE_X_GC_CACHE (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 if (DEVICE_X_DATA (d)->x_modifier_keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 XFreeModifiermap (DEVICE_X_DATA (d)->x_modifier_keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 if (DEVICE_X_DATA (d)->x_keysym_map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 XFree ((char *) DEVICE_X_DATA (d)->x_keysym_map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 XtCloseDisplay (display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 DEVICE_X_DISPLAY (d) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 #ifdef FREE_CHECKING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 if (checking_free)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 enable_strict_free_check ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 }
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
644
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 if (EQ (device, Vdefault_x_device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 /* #### handle deleting last X device */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 Vdefault_x_device = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 {
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
652 if (DEVICE_X_P (XDEVICE (XCAR (devcons))) &&
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
653 !EQ (device, XCAR (devcons)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 Vdefault_x_device = XCAR (devcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 goto double_break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 double_break:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 free_x_device_struct (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 /* handle X errors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 CONST char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 x_event_name (int event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
672 static CONST char *events[] =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
673 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
674 "0: ERROR!",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
675 "1: REPLY",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
676 "KeyPress",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
677 "KeyRelease",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
678 "ButtonPress",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
679 "ButtonRelease",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
680 "MotionNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
681 "EnterNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
682 "LeaveNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
683 "FocusIn",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
684 "FocusOut",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
685 "KeymapNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
686 "Expose",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
687 "GraphicsExpose",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
688 "NoExpose",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
689 "VisibilityNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
690 "CreateNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
691 "DestroyNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
692 "UnmapNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
693 "MapNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
694 "MapRequest",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
695 "ReparentNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
696 "ConfigureNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
697 "ConfigureRequest",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
698 "GravityNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
699 "ResizeRequest",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
700 "CirculateNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
701 "CirculateRequest",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
702 "PropertyNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
703 "SelectionClear",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
704 "SelectionRequest",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
705 "SelectionNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
706 "ColormapNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
707 "ClientMessage",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
708 "MappingNotify",
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
709 "LASTEvent"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
710 };
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
711
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
712 if (event_type < 0 || event_type >= countof (events))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
713 return NULL;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 return events [event_type];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 /* Handling errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 If an X error occurs which we are not expecting, we have no alternative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 but to print it to stderr. It would be nice to stuff it into a pop-up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 buffer, or to print it in the minibuffer, but that's not possible, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 one is not allowed to do any I/O on the display connection from an error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 handler. The guts of Xlib expect these functions to either return or exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 However, there are occasions when we might expect an error to reasonably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 occur. The interface to this is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 Before calling some X routine which may error, call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 expect_x_error (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 Just after calling the X routine, call either:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 x_error_occurred_p (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 to ask whether an error happened (and was ignored), or:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 signal_if_x_error (dpy, resumable_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 which will call Fsignal() with args appropriate to the X error, if there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 was one. (Resumable_p is whether the debugger should be allowed to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 continue from the call to signal.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 You must call one of these two routines immediately after calling the X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 routine; think of them as bookends like BLOCK_INPUT and UNBLOCK_INPUT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 static int error_expected;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 static int error_occurred;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 static XErrorEvent last_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 /* OVERKILL! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 x_error_handler_do_enqueue (Lisp_Object frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 enqueue_magic_eval_event (io_error_delete_frame, frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 x_error_handler_error (Lisp_Object data, Lisp_Object dummy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 x_error_handler (Display *disp, XErrorEvent *event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 if (error_expected)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 error_expected = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 error_occurred = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 last_error = *event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 struct device *d = get_device_from_display (disp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 if ((event->error_code == BadWindow ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 event->error_code == BadDrawable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 && ((f = x_any_window_to_frame (d, event->resourceid)) != 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 /* one of the windows comprising one of our frames has died.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 This occurs particularly with ExternalShell frames when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 client that owns the ExternalShell's window dies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 We cannot do any I/O on the display connection so we need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 to enqueue an eval event so that the deletion happens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 Furthermore, we need to trap any errors (out-of-memory) that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 may occur when Fenqueue_eval_event is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 if (f->being_deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 if (!NILP (condition_case_1 (Qerror, x_error_handler_do_enqueue,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 frame, x_error_handler_error, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 f->being_deleted = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 f->visible = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 stderr_out ("\n%s: ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (STRINGP (Vinvocation_name)
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 6
diff changeset
816 ? (char *) XSTRING_DATA (Vinvocation_name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 : "xemacs"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 XmuPrintDefaultErrorMessage (disp, event, stderr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 expect_x_error (Display *dpy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 assert (!error_expected);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 XSync (dpy, 0); /* handle pending errors before setting flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 error_expected = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 error_occurred = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 x_error_occurred_p (Display *dpy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 int val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 XSync (dpy, 0); /* handle pending errors before setting flag */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 val = error_occurred;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 error_expected = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 error_occurred = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 signal_if_x_error (Display *dpy, int resumable_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 char buf[1024];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 Lisp_Object data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 if (! x_error_occurred_p (dpy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 data = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 sprintf (buf, "0x%X", (unsigned int) last_error.resourceid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 data = Fcons (build_string (buf), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 char num [32];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 sprintf (num, "%d", last_error.request_code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 XGetErrorDatabaseText (last_error.display, "XRequest", num, "",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 buf, sizeof (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 if (! *buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 sprintf (buf, "Request-%d", last_error.request_code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 data = Fcons (build_string (buf), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 XGetErrorText (last_error.display, last_error.error_code, buf, sizeof (buf));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 data = Fcons (build_string (buf), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 again:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 Fsignal (Qx_error, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 if (! resumable_p) goto again;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 x_IO_error_handler (Display *disp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 Lisp_Object dev;
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
875 struct device *d = get_device_from_display_1 (disp);
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
876
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
877 if (d)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
878 XSETDEVICE (dev, d);
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
879 else
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
880 dev = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 if (NILP (find_nonminibuffer_frame_not_on_device (dev)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 /* We're going down. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 stderr_out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 ("\n%s: Fatal I/O Error %d (%s) on display connection \"%s\"\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (STRINGP (Vinvocation_name) ?
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 6
diff changeset
888 (char *) XSTRING_DATA (Vinvocation_name) : "xemacs"),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 errno, strerror (errno), DisplayString (disp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 stderr_out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (" after %lu requests (%lu known processed) with %d events remaining.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 NextRequest (disp) - 1, LastKnownRequestProcessed (disp),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 QLength (disp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 /* assert (!_Xdebug); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 warn_when_safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (Qx, Qcritical,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 "I/O Error %d (%s) on display connection \"%s\"\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 " after %lu requests (%lu known processed) with "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 "%d events remaining.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 errno, strerror (errno), DisplayString (disp),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 NextRequest (disp) - 1, LastKnownRequestProcessed (disp),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 QLength (disp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
908 if (d)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 74
diff changeset
909 enqueue_magic_eval_event (io_error_delete_device, dev);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
911 /* CvE, July 16, 1996, XEmacs 19.14 */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
912 /* Test for broken pipe error, which indicates X-server has gone down */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
913 if (errno == EPIPE && x_seppuku_on_epipe)
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
914 {
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
915 /* Most probably X-server has gone down: Avoid infinite loop by just */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
916 /* exiting */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
917 /* slb: This sounds really, really dangerous to do by default, so */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
918 /* I'm adding a guard to avoid doing this as default behavior */
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
919 stderr_out( "\n\nXEmacs exiting on broken pipe (errno %d, %s)\n",
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
920 errno, strerror(errno));
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
921 exit(errno);
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
922 }
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
923
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
927 DEFUN ("x-debug-mode", Fx_debug_mode, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 With a true arg, make the connection to the X server synchronous.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 With false, make it asynchronous. Synchronous connections are much slower,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 but are useful for debugging. (If you get X errors, make the connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 synchronous, and use a debugger to set a breakpoint on `x_error_handler'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 Your backtrace of the C stack will now be useful. In asynchronous mode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 the stack above `x_error_handler' isn't helpful because of buffering.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 If DEVICE is not specified, the selected device is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 Calling this function is the same as calling the C function `XSynchronize',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 or starting the program with the `-sync' command line argument.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
938 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
939 (arg, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 struct device *d = decode_x_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 XSynchronize (DEVICE_X_DISPLAY (d), !NILP (arg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 if (!NILP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 message ("X connection is synchronous");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 message ("X connection is asynchronous");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 return arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 /* X resources */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 #if 0 /* bah humbug. The whole "widget == resource" stuff is such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 a crock of shit that I'm just going to ignore it all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 /* If widget is NULL, we are retrieving device or global face data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 construct_name_list (Display *display, Widget widget, char *fake_name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 char *fake_class, char *name, char *class)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 char *stack [100][2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 Widget this;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 char *name_tail, *class_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 if (widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 for (this = widget; this; this = XtParent (this))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 stack [count][0] = this->core.name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 stack [count][1] = XtClass (this)->core_class.class_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 count--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 else if (fake_name && fake_class)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 stack [count][0] = fake_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 stack [count][1] = fake_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 /* The root widget is an application shell; resource lookups use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 specified application name and application class in preference to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 the name/class of that widget (which is argv[0] / "ApplicationShell").
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 Generally the app name and class will be argv[0] / "Emacs" but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 the former can be set via the -name command-line option, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 latter can be set by changing `x-emacs-application-class' in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 lisp/term/x-win.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 XtGetApplicationNameAndClass (display,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 &stack [count][0],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 &stack [count][1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 name [0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 class [0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 name_tail = name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 class_tail = class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 for (; count >= 0; count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 strcat (name_tail, stack [count][0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 for (; *name_tail; name_tail++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 if (*name_tail == '.') *name_tail = '_';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 strcat (name_tail, ".");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 name_tail++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 strcat (class_tail, stack [count][1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 for (; *class_tail; class_tail++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 if (*class_tail == '.') *class_tail = '_';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 strcat (class_tail, ".");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 class_tail++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1022 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1024 static char_dynarr *name_char_dynarr;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1025 static char_dynarr *class_char_dynarr;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 /* Given a locale and device specification from x-get-resource or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 x-get-resource-prefix, return the resource prefix and display to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 fetch the resource on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 x_get_resource_prefix (Lisp_Object locale, Lisp_Object device,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1033 Display **display_out, char_dynarr *name,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1034 char_dynarr *class)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 if (NILP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 locale = Qglobal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 if (NILP (Fvalid_specifier_locale_p (locale)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 signal_simple_error ("Invalid locale", locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 if (WINDOWP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 /* #### I can't come up with any coherent way of naming windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 By relative position? That seems tricky because windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 can change position, be split, etc. By order of creation?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 That seems less than useful. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 signal_simple_error ("Windows currently can't be resourced", locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 if (!NILP (device) && !DEVICEP (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 CHECK_DEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 if (DEVICEP (device) && !DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 device = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 if (NILP (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 device = DFW_DEVICE (locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 if (DEVICEP (device) && !DEVICE_X_P (XDEVICE (device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 device = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 if (NILP (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 device = Vdefault_x_device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 if (NILP (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 *display_out = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 *display_out = DEVICE_X_DISPLAY (XDEVICE (device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1067 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1068 char *appname, *appclass;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1069 int name_len, class_len;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1070 XtGetApplicationNameAndClass (*display_out, &appname, &appclass);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1071 name_len = strlen (appname);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1072 class_len = strlen (appclass);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1073 Dynarr_add_many (name , appname, name_len);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1074 Dynarr_add_many (class, appclass, class_len);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1075 validify_resource_component (Dynarr_atp (name, 0), name_len);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1076 validify_resource_component (Dynarr_atp (class, 0), class_len);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1077 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 if (EQ (locale, Qglobal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 if (BUFFERP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1083 Dynarr_add_literal_string (name, ".buffer.");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 /* we know buffer is live; otherwise we got an error above. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1085 Dynarr_add_validified_lisp_string (name, Fbuffer_name (locale));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1086 Dynarr_add_literal_string (class, ".EmacsLocaleType.EmacsBuffer");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 else if (FRAMEP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1090 Dynarr_add_literal_string (name, ".frame.");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 /* we know frame is live; otherwise we got an error above. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1092 Dynarr_add_validified_lisp_string (name, Fframe_name (locale));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1093 Dynarr_add_literal_string (class, ".EmacsLocaleType.EmacsFrame");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 assert (DEVICEP (locale));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1098 Dynarr_add_literal_string (name, ".device.");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 /* we know device is live; otherwise we got an error above. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1100 Dynarr_add_validified_lisp_string (name, Fdevice_name (locale));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1101 Dynarr_add_literal_string (class, ".EmacsLocaleType.EmacsDevice");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1106 DEFUN ("x-get-resource", Fx_get_resource, 3, 6, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 Retrieve an X resource from the resource manager.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1109 The first arg is the name of the resource to retrieve, such as "font".
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1110 The second arg is the class of the resource to retrieve, such as "Font".
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1111 The third arg must be one of the symbols 'string, 'integer, 'natnum, or
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 'boolean, specifying the type of object that the database is searched for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 The fourth arg is the locale to search for the resources on, and can
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1114 currently be a buffer, a frame, a device, or 'global. If omitted, it
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 defaults to 'global.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 The fifth arg is the device to search for the resources on. (The resource
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 database for a particular device is constructed by combining non-device-
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1118 specific resources such as any command-line resources specified and any
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 app-defaults files found [or the fallback resources supplied by XEmacs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 if no app-defaults file is found] with device-specific resources such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 those supplied using xrdb.) If omitted, it defaults to the device of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 LOCALE, if a device can be derived (i.e. if LOCALE is a frame or device),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 and otherwise defaults to the value of `default-x-device'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 The sixth arg NOERROR, if non-nil, means do not signal an error if a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 bogus resource specification was retrieved (e.g. if a non-integer was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 given when an integer was requested). In this case, a warning is issued
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 The resource names passed to this function are looked up relative to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 locale.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 If you want to search for a subresource, you just need to specify the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 resource levels in NAME and CLASS. For example, NAME could be
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1134 "modeline.attributeFont", and CLASS "Face.AttributeFont".
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 Specifically,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 1) If LOCALE is a buffer, a call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1140 (x-get-resource "foreground" "Foreground" 'string SOME-BUFFER)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 is an interface to a C call something like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1144 XrmGetResource (db, "xemacs.buffer.BUFFER-NAME.foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1145 "Emacs.EmacsLocaleType.EmacsBuffer.Foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1146 "String");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 2) If LOCALE is a frame, a call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1150 (x-get-resource "foreground" "Foreground" 'string SOME-FRAME)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 is an interface to a C call something like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1154 XrmGetResource (db, "xemacs.frame.FRAME-NAME.foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1155 "Emacs.EmacsLocaleType.EmacsFrame.Foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1156 "String");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 3) If LOCALE is a device, a call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1160 (x-get-resource "foreground" "Foreground" 'string SOME-DEVICE)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 is an interface to a C call something like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1164 XrmGetResource (db, "xemacs.device.DEVICE-NAME.foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1165 "Emacs.EmacsLocaleType.EmacsDevice.Foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1166 "String");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 4) If LOCALE is 'global, a call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1170 (x-get-resource "foreground" "Foreground" 'string 'global)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 is an interface to a C call something like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1174 XrmGetResource (db, "xemacs.foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1175 "Emacs.Foreground",
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1176 "String");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 Note that for 'global, no prefix is added other than that of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 application itself; thus, you can use this locale to retrieve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 arbitrary application resources, if you really want to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 The returned value of this function is nil if the queried resource is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 found. If the third arg is `string', a string is returned, and if it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 `integer', an integer is returned. If the third arg is `boolean', then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 returned value is the list (t) for true, (nil) for false, and is nil to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 mean ``unspecified.''
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1187 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1188 (name, class, type, locale, device, no_error))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1190 char* name_string, *class_string;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 char *raw_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 XrmDatabase db;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 Error_behavior errb = decode_error_behavior_flag (no_error);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 CHECK_STRING (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 CHECK_STRING (class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 CHECK_SYMBOL (type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1200 Dynarr_reset (name_char_dynarr);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1201 Dynarr_reset (class_char_dynarr);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1203 x_get_resource_prefix (locale, device, &display,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1204 name_char_dynarr, class_char_dynarr);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 if (!display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 db = XtDatabase (display);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1210 Dynarr_add (name_char_dynarr, '.');
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1211 Dynarr_add_lisp_string (name_char_dynarr, name);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1212 Dynarr_add (class_char_dynarr, '.');
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1213 Dynarr_add_lisp_string (class_char_dynarr, class);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1214 Dynarr_add (name_char_dynarr, '\0');
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1215 Dynarr_add (class_char_dynarr, '\0');
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1216
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1217 name_string = Dynarr_atp (name_char_dynarr, 0);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1218 class_string = Dynarr_atp (class_char_dynarr, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 XrmValue xrm_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 XrmName namelist[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 XrmClass classlist[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 XrmName *namerest = namelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 XrmClass *classrest = classlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 XrmRepresentation xrm_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 XrmRepresentation string_quark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 XrmStringToNameList (name_string, namelist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 XrmStringToClassList (class_string, classlist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 string_quark = XrmStringToQuark ("String");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 /* ensure that they have the same length */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 while (namerest[0] && classrest[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 namerest++, classrest++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 if (namerest[0] || classrest[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 signal_simple_error_2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 ("class list and name list must be the same length", name, class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 result = XrmQGetResource (db, namelist, classlist, &xrm_type, &xrm_value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 if (result != True || xrm_type != string_quark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 raw_result = (char *) xrm_value.addr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 if (EQ (type, Qstring))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 return build_string (raw_result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 else if (EQ (type, Qboolean))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 {
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1250 if (!strcasecmp (raw_result, "off") ||
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 !strcasecmp (raw_result, "false") ||
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1252 !strcasecmp (raw_result, "no"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 return Fcons (Qnil, Qnil);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1254 if (!strcasecmp (raw_result, "on") ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1255 !strcasecmp (raw_result, "true") ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1256 !strcasecmp (raw_result, "yes"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 return Fcons (Qt, Qnil);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1258 return maybe_continuable_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1259 (Qresource, errb,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1260 "can't convert %s: %s to a Boolean", name_string, raw_result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 else if (EQ (type, Qinteger) || EQ (type, Qnatnum))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 char c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 if (1 != sscanf (raw_result, "%d%c", &i, &c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 return maybe_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 (Qresource, errb,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1269 "can't convert %s: %s to an integer", name_string, raw_result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 else if (EQ (type, Qnatnum) && i < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 return maybe_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 (Qresource, errb,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1273 "invalid numerical value %d for resource %s", i, name_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 return make_int (i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 else
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1278 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1279 return maybe_signal_continuable_error
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1280 (Qwrong_type_argument,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1281 list2 (build_translated_string
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1282 ("should be string, integer, natnum or boolean"),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1283 type),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1284 Qresource, errb);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1285 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1288 DEFUN ("x-get-resource-prefix", Fx_get_resource_prefix, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 Return the resource prefix for LOCALE on DEVICE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 The resource prefix is the strings used to prefix resources if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 the LOCALE and DEVICE arguments were passed to `x-get-resource'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 The returned value is a cons of a name prefix and a class prefix.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 For example, if LOCALE is a frame, the returned value might be
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1294 \("xemacs.frame.FRAME-NAME" . "Emacs.EmacsLocaleType.EmacsFrame").
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 If no valid X device for resourcing can be obtained, this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 returns nil. (In such a case, `x-get-resource' would always return nil.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1297 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1298 (locale, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1302 Dynarr_reset (name_char_dynarr );
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1303 Dynarr_reset (class_char_dynarr);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1304
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1305 x_get_resource_prefix (locale, device, &display,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1306 name_char_dynarr, class_char_dynarr);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 if (!display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 return Qnil;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1309
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1310 return Fcons (make_string ((Bufbyte *) Dynarr_atp (name_char_dynarr, 0),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1311 Dynarr_length (name_char_dynarr)),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1312 make_string ((Bufbyte *) Dynarr_atp (class_char_dynarr, 0),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1313 Dynarr_length (class_char_dynarr)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1316 DEFUN ("x-put-resource", Fx_put_resource, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 Add a resource to the resource database for DEVICE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 RESOURCE-LINE specifies the resource to add and should be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 standard resource specification.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1320 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1321 (resource_line, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 struct device *d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 char *str, *colon_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 CHECK_STRING (resource_line);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 6
diff changeset
1327 str = (char *) XSTRING_DATA (resource_line);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 if (!(colon_pos = strchr (str, ':')) || strchr (str, '\n'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 invalid:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 signal_simple_error ("Invalid resource line", resource_line);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 if (strspn (str,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 /* Only the following chars are allowed before the colon */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 " \t.*?abcdefghijklmnopqrstuvwxyz"
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1334 "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-")
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1335 != (size_t) (colon_pos - str))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 goto invalid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 if (DEVICE_X_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 XrmDatabase db = XtDatabase (DEVICE_X_DISPLAY (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 XrmPutLineResource (&db, str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 /* display information functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1352 DEFUN ("default-x-device", Fdefault_x_device, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 Return the default X device for resourcing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 This is the first-created X device that still exists.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1355 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1356 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 return Vdefault_x_device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1361 DEFUN ("x-display-visual-class", Fx_display_visual_class, 0, 1, 0, /*
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1362 Return the visual class of the X display `device' is using.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1363 This can be altered from the default at startup using the XResource "EmacsVisual".
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 The returned value will be one of the symbols `static-gray', `gray-scale',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 `static-color', `pseudo-color', `true-color', or `direct-color'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1366 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1367 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 {
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1369 Visual *vis = DEVICE_X_VISUAL (decode_x_device (device));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1370 switch (vis->class)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 {
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1372 case StaticGray: return intern ("static-gray");
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1373 case GrayScale: return intern ("gray-scale");
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1374 case StaticColor: return intern ("static-color");
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1375 case PseudoColor: return intern ("pseudo-color");
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1376 case TrueColor: return intern ("true-color");
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1377 case DirectColor: return intern ("direct-color");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 error ("display has an unknown visual class");
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1380 return Qnil; /* suppress compiler warning */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1384 DEFUN ("x-display-visual-depth", Fx_display_visual_depth, 0, 1, 0, /*
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1385 Return the bitplane depth of the visual the X display `device' is using.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1386 */
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1387 (device))
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1388 {
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1389 return make_int (DEVICE_X_DEPTH (decode_x_device (device)));
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1390 }
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1391
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 x_device_pixel_width (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 return DisplayWidth (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 x_device_pixel_height (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 return DisplayHeight (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 x_device_mm_width (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 return DisplayWidthMM (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 x_device_mm_height (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 return DisplayHeightMM (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 x_device_bitplanes (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 return DisplayPlanes (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 x_device_color_cells (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 return DisplayCells (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1440 DEFUN ("x-server-vendor", Fx_server_vendor, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 Return the vendor ID string of the X server `device' on.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1442 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1443 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 Display *dpy = get_x_display (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 char *vendor = ServerVendor (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1448 return build_string (vendor ? vendor : "");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1451 DEFUN ("x-server-version", Fx_server_version, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 Return the version numbers of the X server `device' is on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 The returned value is a list of three integers: the major and minor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 version numbers of the X Protocol in use, and the vendor-specific release
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 number. See also `x-server-vendor'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1456 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1457 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 Display *dpy = get_x_display (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1461 return list3 (make_int (ProtocolVersion (dpy)),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 make_int (ProtocolRevision (dpy)),
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1463 make_int (VendorRelease (dpy)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1466 DEFUN ("x-valid-keysym-name-p", Fx_valid_keysym_name_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 Return true if KEYSYM names a keysym that the X library knows about.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1470 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1471 (keysym))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 CONST char *keysym_ext;
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1474
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 CHECK_STRING (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 GET_C_STRING_CTEXT_DATA_ALLOCA (keysym, keysym_ext);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1477
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1478 return XStringToKeysym (keysym_ext) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1481 DEFUN ("x-keysym-hashtable", Fx_keysym_hashtable, 0, 1, 0, /*
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1482 Return a hashtable which contains a hash key for all keysyms which
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1483 name keys on the keyboard. See `x-keysym-on-keyboard-p'.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1484 */
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1485 (device))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1486 {
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1487 struct device *d = decode_device (device);
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1488 if (!DEVICE_X_P (d))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1489 signal_simple_error ("Not an X device", device);
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1490
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1491 return DEVICE_X_DATA (d)->x_keysym_map_hashtable;
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1492 }
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1493
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1494 DEFUN ("x-keysym-on-keyboard-sans-modifiers-p",
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1495 Fx_keysym_on_keyboard_sans_modifiers_p, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 Return true if KEYSYM names a key on the keyboard of DEVICE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 More precisely, return true if pressing a physical key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 on the keyboard of DEVICE without any modifier keys generates KEYSYM.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system.
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1501 The keysym name can be provided in two forms:
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1502 - if keysym is a string, it must be the name as known to X windows.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1503 - if keysym is a symbol, it must be the name as known to XEmacs.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1504 The two names differ in capitalization and underscoring.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1505 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1506 (keysym, device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 {
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1508 struct device *d = decode_device (device);
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1509 if (!DEVICE_X_P (d))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1510 signal_simple_error ("Not an X device", device);
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1511
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1512 return (EQ (Qsans_modifiers,
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1513 Fgethash (keysym, DEVICE_X_KEYSYM_MAP_HASHTABLE (d), Qnil)) ?
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1514 Qt : Qnil);
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1515 }
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1516
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1517
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1518 DEFUN ("x-keysym-on-keyboard-p", Fx_keysym_on_keyboard_p, 1, 2, 0, /*
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1519 Return true if KEYSYM names a key on the keyboard of DEVICE.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1520 More precisely, return true if some keystroke (possibly including modifiers)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1521 on the keyboard of DEVICE keys generates KEYSYM.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1522 Valid keysyms are listed in the files /usr/include/X11/keysymdef.h and in
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1523 /usr/lib/X11/XKeysymDB, or whatever the equivalents are on your system.
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1524 The keysym name can be provided in two forms:
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1525 - if keysym is a string, it must be the name as known to X windows.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1526 - if keysym is a symbol, it must be the name as known to XEmacs.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 227
diff changeset
1527 The two names differ in capitalization and underscoring.
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1528 */
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1529 (keysym, device))
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1530 {
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1531 struct device *d = decode_device (device);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 if (!DEVICE_X_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 signal_simple_error ("Not an X device", device);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1534
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1535 return (NILP (Fgethash (keysym, DEVICE_X_KEYSYM_MAP_HASHTABLE (d), Qnil)) ?
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1536 Qnil : Qt);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 /* grabs and ungrabs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1544 DEFUN ("x-grab-pointer", Fx_grab_pointer, 0, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 Grab the pointer and restrict it to its current window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 If optional DEVICE argument is nil, the default device will be used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 If optional CURSOR argument is non-nil, change the pointer shape to that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 until `x-ungrab-pointer' is called (it should be an object returned by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 `make-cursor-glyph' function).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 If the second optional argument IGNORE-KEYBOARD is non-nil, ignore all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 keyboard events during the grab.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 Returns t if the grab is successful, nil otherwise.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1553 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1554 (device, cursor, ignore_keyboard))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 Window w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 int pointer_mode, result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 struct device *d = decode_x_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 if (!NILP (cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 CHECK_POINTER_GLYPH (cursor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 cursor = glyph_image_instance (cursor, device, ERROR_ME, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 if (!NILP (ignore_keyboard))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 pointer_mode = GrabModeSync;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 pointer_mode = GrabModeAsync;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 w = XtWindow (FRAME_X_TEXT_WIDGET (device_selected_frame (d)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 /* #### Possibly this needs to gcpro the cursor somehow, but it doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 seem to cause a problem if XFreeCursor is called on a cursor in use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 in a grab; I suppose the X server counts the grab as a reference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 and doesn't free it until it exits? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 result = XGrabPointer (DEVICE_X_DISPLAY (d), w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 False,
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1579 ButtonMotionMask |
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1580 ButtonPressMask |
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1581 ButtonReleaseMask |
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 187
diff changeset
1582 PointerMotionHintMask,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 GrabModeAsync, /* Keep pointer events flowing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 pointer_mode, /* Stall keyboard events */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 w, /* Stay in this window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (NILP (cursor) ? 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 : XIMAGE_INSTANCE_X_CURSOR (cursor)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 CurrentTime);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 179
diff changeset
1589 return (result == GrabSuccess) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1592 DEFUN ("x-ungrab-pointer", Fx_ungrab_pointer, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 Release a pointer grab made with `x-grab-pointer'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 If optional first arg DEVICE is nil the default device is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 If it is t the pointer will be released on all X devices.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1596 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1597 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 if (!EQ (device, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 Display *dpy = get_x_display (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 XUngrabPointer (dpy, CurrentTime);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 Lisp_Object devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 struct device *d = XDEVICE (XCAR (devcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 if (DEVICE_X_P (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 XUngrabPointer (DEVICE_X_DISPLAY (d), CurrentTime);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1620 DEFUN ("x-grab-keyboard", Fx_grab_keyboard, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 Grab the keyboard on the given device (defaulting to the selected one).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 So long as the keyboard is grabbed, all keyboard events will be delivered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 to emacs -- it is not possible for other X clients to eavesdrop on them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 Ungrab the keyboard with `x-ungrab-keyboard' (use an unwind-protect).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 Returns t if the grab was successful; nil otherwise.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1626 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1627 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 struct device *d = decode_x_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 Window w = XtWindow (FRAME_X_TEXT_WIDGET (device_selected_frame (d)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 Status status;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 XSync (dpy, False);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 status = XGrabKeyboard (dpy, w, True,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 /* I don't really understand sync-vs-async
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 grabs, but this is what xterm does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 GrabModeAsync, GrabModeAsync,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 /* Use the timestamp of the last user action
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 read by emacs proper; xterm uses CurrentTime
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 but there's a comment that says "wrong"...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 (Despite the name this is the time of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 last key or mouse event.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 DEVICE_X_MOUSE_TIMESTAMP (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 if (status == GrabSuccess)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 /* The XUngrabKeyboard should generate a FocusIn back to this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 window but it doesn't unless we explicitly set focus to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 window first (which should already have it. The net result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 is that without this call when x-ungrab-keyboard is called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 the selected frame ends up not having focus. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 XSetInputFocus (dpy, w, RevertToParent, DEVICE_X_MOUSE_TIMESTAMP (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1658 DEFUN ("x-ungrab-keyboard", Fx_ungrab_keyboard, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 Release a keyboard grab made with `x-grab-keyboard'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1660 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1661 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 Display *dpy = get_x_display (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 XUngrabKeyboard (dpy, CurrentTime);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 syms_of_device_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1676 DEFSUBR (Fx_debug_mode);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1677 DEFSUBR (Fx_get_resource);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1678 DEFSUBR (Fx_get_resource_prefix);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1679 DEFSUBR (Fx_put_resource);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1681 DEFSUBR (Fdefault_x_device);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1682 DEFSUBR (Fx_display_visual_class);
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 209
diff changeset
1683 DEFSUBR (Fx_display_visual_depth);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1684 DEFSUBR (Fx_server_vendor);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1685 DEFSUBR (Fx_server_version);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1686 DEFSUBR (Fx_valid_keysym_name_p);
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1687 DEFSUBR (Fx_keysym_hashtable);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1688 DEFSUBR (Fx_keysym_on_keyboard_p);
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
1689 DEFSUBR (Fx_keysym_on_keyboard_sans_modifiers_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1691 DEFSUBR (Fx_grab_pointer);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1692 DEFSUBR (Fx_ungrab_pointer);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1693 DEFSUBR (Fx_grab_keyboard);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1694 DEFSUBR (Fx_ungrab_keyboard);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 defsymbol (&Qx_error, "x-error");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 defsymbol (&Qinit_pre_x_win, "init-pre-x-win");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 defsymbol (&Qinit_post_x_win, "init-post-x-win");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 console_type_create_device_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 CONSOLE_HAS_METHOD (x, init_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 CONSOLE_HAS_METHOD (x, finish_init_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 CONSOLE_HAS_METHOD (x, mark_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 CONSOLE_HAS_METHOD (x, delete_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 CONSOLE_HAS_METHOD (x, device_pixel_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 CONSOLE_HAS_METHOD (x, device_pixel_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 CONSOLE_HAS_METHOD (x, device_mm_width);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 CONSOLE_HAS_METHOD (x, device_mm_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 CONSOLE_HAS_METHOD (x, device_bitplanes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 CONSOLE_HAS_METHOD (x, device_color_cells);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1714
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1715 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1716 /* Initialize variables to speed up X resource interactions */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1717 CONST char *valid_resource_chars =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1718 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1719 while (*valid_resource_chars)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1720 valid_resource_char_p[(unsigned int) (*valid_resource_chars++)] = 1;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1721
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1722 name_char_dynarr = Dynarr_new (char);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1723 class_char_dynarr = Dynarr_new (char);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1724 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 vars_of_device_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 DEFVAR_LISP ("x-emacs-application-class", &Vx_emacs_application_class /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 The X application class of the XEmacs process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 This controls, among other things, the name of the `app-defaults' file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 that XEmacs will use. For changes to this variable to take effect, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 must be made before the connection to the X server is initialized, that is,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 this variable may only be changed before emacs is dumped, or by setting it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 in the file lisp/term/x-win.el.
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1737
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1738 If this variable is nil before the connection to the X server is first
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1739 initialized (which it is by default), the X resource database will be
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1740 consulted and the value will be set according to whether any resources
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1741 are found for the application class `XEmacs'. If the user has set any
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1742 resources for the XEmacs application class, the XEmacs process will use
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1743 the application class `XEmacs'. Otherwise, the XEmacs process will use
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1744 the application class `Emacs' which is backwards compatible to previous
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1745 XEmacs versions but may conflict with resources intended for GNU Emacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 */ );
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 253
diff changeset
1747 Vx_emacs_application_class = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 DEFVAR_LISP ("x-initial-argv-list", &Vx_initial_argv_list /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 You don't want to know.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 This is used during startup to communicate the remaining arguments in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 `command-line-args-left' to the C code, which passes the args to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 the X initialization code, which removes some args, and then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 args are placed back into `x-initial-arg-list' and thence into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 `command-line-args-left'. Perhaps `command-line-args-left' should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 just reside in C.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 Vx_initial_argv_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1760 DEFVAR_BOOL ("x-seppuku-on-epipe", &x_seppuku_on_epipe /*
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1761 When non-nil terminate XEmacs immediately on SIGPIPE from the X server.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1762 XEmacs doesn't terminate properly on some systems.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1763 When this variable is non-nil, XEmacs will commit immediate suicide
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1764 when it gets a sigpipe from the X Server.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1765 */ );
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1766 x_seppuku_on_epipe = 0;
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
1767
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1768 #if defined(MULE) && (defined(LWLIB_MENUBARS_MOTIF) || defined(HAVE_XIM) || defined (USE_XFONTSET))
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1769 DEFVAR_LISP ("x-app-defaults-directory", &Vx_app_defaults_directory /*
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1770 Used by the Lisp code to communicate to the low level X initialization
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1771 where the localized init files are.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1772 */ );
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1773 Vx_app_defaults_directory = Qnil;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1774 #endif
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 219
diff changeset
1775
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 Fprovide (Qx);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 staticpro (&Vdefault_x_device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 Vdefault_x_device = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 error_expected = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 error_occurred = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 in_resource_setting = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 in_specifier_change_function = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 }