Merge r21-4-11-chise-0_20-=ucs.
[chise/xemacs-chise.git.1] / src / console-x.h
1 /* Define X specific console, device, and frame object for XEmacs.
2    Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3    Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
4
5 This file is part of XEmacs.
6
7 XEmacs is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
11
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with XEmacs; see the file COPYING.  If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* Synched up with: Not in FSF. */
23
24
25 /* Authorship:
26
27    Ultimately based on FSF, then later on JWZ work for Lemacs.
28    Rewritten over time by Ben Wing and Chuck Thompson (original
29       multi-device work by Chuck Thompson).
30  */
31
32 #ifndef INCLUDED_console_x_h_
33 #define INCLUDED_console_x_h_
34
35 #ifdef HAVE_X_WINDOWS
36
37 #include "console.h"
38 #include "xintrinsic.h"
39
40 #include <X11/cursorfont.h>
41 #include <X11/keysym.h>
42 #include <X11/Xatom.h>
43 #include <X11/StringDefs.h>
44
45 #ifdef HAVE_XPM
46 #include <X11/xpm.h>
47 #endif
48
49 /* R5 defines the XPointer type, but R4 doesn't.
50    R4 also doesn't define a version number, but R5 does. */
51 #if (XlibSpecificationRelease < 5)
52 # define XPointer char *
53 #endif
54
55 DECLARE_CONSOLE_TYPE (x);
56
57 struct x_device
58 {
59   /* The X connection of this device. */
60   Display *display;
61
62   /* Set by x_IO_error_handler(). */
63   int being_deleted;
64
65   /* Xt application info. */
66   Widget Xt_app_shell;
67
68   /* Cache of GC's for frames on this device. */
69   struct gc_cache *gc_cache;
70
71   /* Selected visual, depth and colormap for this device */
72   Visual *visual;
73   int depth;
74   Colormap device_cmap;
75
76   /* Used by x_bevel_modeline in redisplay-x.c */
77   Pixmap gray_pixmap;
78
79   /* Atoms associated with this device. */
80   /* allocated in Xatoms_of_device_x */
81   Atom Xatom_WM_PROTOCOLS;
82   Atom Xatom_WM_DELETE_WINDOW;
83   Atom Xatom_WM_SAVE_YOURSELF;
84   Atom Xatom_WM_TAKE_FOCUS;
85   Atom Xatom_WM_STATE;
86
87   /* allocated in Xatoms_of_select_x */
88   Atom Xatom_CLIPBOARD;
89   Atom Xatom_TIMESTAMP;
90   Atom Xatom_TEXT;
91   Atom Xatom_DELETE;
92   Atom Xatom_MULTIPLE;
93   Atom Xatom_INCR;
94   Atom Xatom_EMACS_TMP;
95   Atom Xatom_TARGETS;
96   Atom Xatom_NULL;
97   Atom Xatom_ATOM_PAIR;
98   Atom Xatom_COMPOUND_TEXT;
99
100   /* allocated in Xatoms_of_objects_x */
101   Atom Xatom_FOUNDRY;
102   Atom Xatom_FAMILY_NAME;
103   Atom Xatom_WEIGHT_NAME;
104   Atom Xatom_SLANT;
105   Atom Xatom_SETWIDTH_NAME;
106   Atom Xatom_ADD_STYLE_NAME;
107   Atom Xatom_PIXEL_SIZE;
108   Atom Xatom_POINT_SIZE;
109   Atom Xatom_RESOLUTION_X;
110   Atom Xatom_RESOLUTION_Y;
111   Atom Xatom_SPACING;
112   Atom Xatom_AVERAGE_WIDTH;
113   Atom Xatom_CHARSET_REGISTRY;
114   Atom Xatom_CHARSET_ENCODING;
115
116   /* The following items are all used exclusively in event-Xt.c. */
117   int MetaMask, HyperMask, SuperMask, AltMask, ModeMask;
118   KeySym lock_interpretation;
119
120   XModifierKeymap *x_modifier_keymap;
121
122   KeySym *x_keysym_map;
123   int x_keysym_map_min_code;
124   int x_keysym_map_max_code;
125   int x_keysym_map_keysyms_per_code;
126   Lisp_Object x_keysym_map_hash_table;
127
128   /* frame that holds the WM_COMMAND property; there should be exactly
129      one of these per device. */
130   Lisp_Object WM_COMMAND_frame;
131
132   /* #### It's not clear that there is much distinction anymore
133      between mouse_timestamp and global_mouse_timestamp, now that
134      Emacs doesn't see most (all?) events not destined for it. */
135
136   /* The timestamp of the last button or key event used by emacs itself.
137      This is used for asserting selections and input focus. */
138   Time mouse_timestamp;
139
140   /* This is the timestamp the last button or key event whether it was
141      dispatched to emacs or widgets. */
142   Time global_mouse_timestamp;
143
144   /* This is the last known timestamp received from the server.  It is
145      maintained by x_event_to_emacs_event and used to patch bogus
146      WM_TAKE_FOCUS messages sent by Mwm. */
147   Time last_server_timestamp;
148
149   /* Used by Xlib to preserve information across calls to
150      XLookupString(), to implement compose processing.
151
152      According to The X Window System, p. 467, "The creation of
153      XComposeStatus structures is implementation dependent;
154      a portable program must pass NULL for this argument."
155      But this means that a portable program cannot implement
156      compose processing! WTF?
157
158      So we just set it to all zeros. */
159
160   /* No X Server ever used this, AFAIK -- mrb */
161   /* XComposeStatus x_compose_status; */
162
163 #ifdef HAVE_XIM
164   XIM        xim;
165   XIMStyles *xim_styles;
166 #endif /* HAVE_XIM */
167
168   /* stuff for sticky modifiers: */
169
170   unsigned int need_to_add_mask, down_mask;
171   KeyCode last_downkey;
172   Time release_time;
173   Time modifier_release_time;
174 };
175
176 #define DEVICE_X_DATA(d) DEVICE_TYPE_DATA (d, x)
177
178 #define FRAME_X_DISPLAY(f) (DEVICE_X_DISPLAY (XDEVICE (f->device)))
179 #define DEVICE_X_DISPLAY(d)     (DEVICE_X_DATA (d)->display)
180 #define DEVICE_X_BEING_DELETED(d) (DEVICE_X_DATA (d)->being_deleted)
181 #define DEVICE_X_VISUAL(d)      (DEVICE_X_DATA (d)->visual)
182 #define DEVICE_X_DEPTH(d)       (DEVICE_X_DATA (d)->depth)
183 #define DEVICE_X_COLORMAP(d)    (DEVICE_X_DATA (d)->device_cmap)
184 #define DEVICE_XT_APP_SHELL(d)  (DEVICE_X_DATA (d)->Xt_app_shell)
185 #define DEVICE_X_GC_CACHE(d)    (DEVICE_X_DATA (d)->gc_cache)
186 #define DEVICE_X_GRAY_PIXMAP(d) (DEVICE_X_DATA (d)->gray_pixmap)
187 #define DEVICE_X_WM_COMMAND_FRAME(d) (DEVICE_X_DATA (d)->WM_COMMAND_frame)
188 #define DEVICE_X_MOUSE_TIMESTAMP(d)  (DEVICE_X_DATA (d)->mouse_timestamp)
189 #define DEVICE_X_GLOBAL_MOUSE_TIMESTAMP(d) (DEVICE_X_DATA (d)->global_mouse_timestamp)
190 #define DEVICE_X_LAST_SERVER_TIMESTAMP(d)  (DEVICE_X_DATA (d)->last_server_timestamp)
191 #define DEVICE_X_KEYSYM_MAP_HASH_TABLE(d)  (DEVICE_X_DATA (d)->x_keysym_map_hash_table)
192 /* #define DEVICE_X_X_COMPOSE_STATUS(d) (DEVICE_X_DATA (d)->x_compose_status) */
193 #ifdef HAVE_XIM
194 #define DEVICE_X_XIM(d)        (DEVICE_X_DATA (d)->xim)
195 #define DEVICE_X_XIM_STYLES(d) (DEVICE_X_DATA (d)->xim_styles)
196 #define DEVICE_X_FONTSET(d)    (DEVICE_X_DATA (d)->fontset)
197 #endif /* HAVE_XIM */
198
199 /* allocated in Xatoms_of_device_x */
200 #define DEVICE_XATOM_WM_PROTOCOLS(d)     (DEVICE_X_DATA (d)->Xatom_WM_PROTOCOLS)
201 #define DEVICE_XATOM_WM_DELETE_WINDOW(d) (DEVICE_X_DATA (d)->Xatom_WM_DELETE_WINDOW)
202 #define DEVICE_XATOM_WM_SAVE_YOURSELF(d) (DEVICE_X_DATA (d)->Xatom_WM_SAVE_YOURSELF)
203 #define DEVICE_XATOM_WM_TAKE_FOCUS(d)    (DEVICE_X_DATA (d)->Xatom_WM_TAKE_FOCUS)
204 #define DEVICE_XATOM_WM_STATE(d)         (DEVICE_X_DATA (d)->Xatom_WM_STATE)
205
206 /* allocated in Xatoms_of_select_x */
207 #define DEVICE_XATOM_CLIPBOARD(d)       (DEVICE_X_DATA (d)->Xatom_CLIPBOARD)
208 #define DEVICE_XATOM_TIMESTAMP(d)       (DEVICE_X_DATA (d)->Xatom_TIMESTAMP)
209 #define DEVICE_XATOM_TEXT(d)            (DEVICE_X_DATA (d)->Xatom_TEXT)
210 #define DEVICE_XATOM_DELETE(d)          (DEVICE_X_DATA (d)->Xatom_DELETE)
211 #define DEVICE_XATOM_MULTIPLE(d)        (DEVICE_X_DATA (d)->Xatom_MULTIPLE)
212 #define DEVICE_XATOM_INCR(d)            (DEVICE_X_DATA (d)->Xatom_INCR)
213 #define DEVICE_XATOM_EMACS_TMP(d)       (DEVICE_X_DATA (d)->Xatom_EMACS_TMP)
214 #define DEVICE_XATOM_TARGETS(d)         (DEVICE_X_DATA (d)->Xatom_TARGETS)
215 #define DEVICE_XATOM_NULL(d)            (DEVICE_X_DATA (d)->Xatom_NULL)
216 #define DEVICE_XATOM_ATOM_PAIR(d)       (DEVICE_X_DATA (d)->Xatom_ATOM_PAIR)
217 #define DEVICE_XATOM_COMPOUND_TEXT(d)   (DEVICE_X_DATA (d)->Xatom_COMPOUND_TEXT)
218
219 /* allocated in Xatoms_of_objects_x */
220 #define DEVICE_XATOM_FOUNDRY(d)         (DEVICE_X_DATA (d)->Xatom_FOUNDRY)
221 #define DEVICE_XATOM_FAMILY_NAME(d)     (DEVICE_X_DATA (d)->Xatom_FAMILY_NAME)
222 #define DEVICE_XATOM_WEIGHT_NAME(d)     (DEVICE_X_DATA (d)->Xatom_WEIGHT_NAME)
223 #define DEVICE_XATOM_SLANT(d)           (DEVICE_X_DATA (d)->Xatom_SLANT)
224 #define DEVICE_XATOM_SETWIDTH_NAME(d)   (DEVICE_X_DATA (d)->Xatom_SETWIDTH_NAME)
225 #define DEVICE_XATOM_ADD_STYLE_NAME(d)  (DEVICE_X_DATA (d)->Xatom_ADD_STYLE_NAME)
226 #define DEVICE_XATOM_PIXEL_SIZE(d)      (DEVICE_X_DATA (d)->Xatom_PIXEL_SIZE)
227 #define DEVICE_XATOM_POINT_SIZE(d)      (DEVICE_X_DATA (d)->Xatom_POINT_SIZE)
228 #define DEVICE_XATOM_RESOLUTION_X(d)    (DEVICE_X_DATA (d)->Xatom_RESOLUTION_X)
229 #define DEVICE_XATOM_RESOLUTION_Y(d)    (DEVICE_X_DATA (d)->Xatom_RESOLUTION_Y)
230 #define DEVICE_XATOM_SPACING(d)         (DEVICE_X_DATA (d)->Xatom_SPACING)
231 #define DEVICE_XATOM_AVERAGE_WIDTH(d)   (DEVICE_X_DATA (d)->Xatom_AVERAGE_WIDTH)
232 #define DEVICE_XATOM_CHARSET_REGISTRY(d) (DEVICE_X_DATA (d)->Xatom_CHARSET_REGISTRY)
233 #define DEVICE_XATOM_CHARSET_ENCODING(d) (DEVICE_X_DATA (d)->Xatom_CHARSET_ENCODING)
234
235 #define Xt_SET_VALUE(widget, resource, value) do {      \
236   Arg al;                                               \
237   XtSetArg (al, resource, value);                       \
238   XtSetValues (widget, &al, 1);                         \
239 } while (0)
240
241 #define Xt_GET_VALUE(widget, resource, location) do {   \
242   Arg al;                                               \
243   XtSetArg (al, resource, location);                    \
244   XtGetValues (widget, &al, 1);                         \
245 } while (0)
246
247 /* The maximum number of widgets that can be displayed above the text
248    area at one time.  Currently no more than 3 will ever actually be
249    displayed (menubar, psheet, debugger panel). */
250 #define MAX_CONCURRENT_TOP_WIDGETS 8
251
252 struct x_frame
253 {
254   /* The widget of this frame.  This is an EmacsShell or an
255      ExternalShell. */
256   Widget widget;
257
258   /* The parent of the EmacsFrame, the menubar, and the scrollbars.
259      This is an EmacsManager. */
260   Widget container;
261
262   /* The widget of the menubar, of whatever widget class it happens to be. */
263   Widget menubar_widget;
264
265   /* The widget of the edit portion of this frame; this is an EmacsFrame,
266      and the window of this widget is what the redisplay code draws on. */
267   Widget edit_widget;
268
269   /* Lists the widgets above the text area, in the proper order.
270      Used by the EmacsManager. */
271   Widget top_widgets[MAX_CONCURRENT_TOP_WIDGETS];
272   int num_top_widgets;
273
274   /*************************** Miscellaneous **************************/
275
276   /* The icon pixmaps; these are Lisp_Image_Instance objects, or Qnil. */
277   Lisp_Object icon_pixmap;
278   Lisp_Object icon_pixmap_mask;
279
280 #ifdef HAVE_TOOLBARS
281   int old_toolbar_size[4];
282
283   /* We don't provide a mechanism for changing these after they are
284      initialized so we might as well keep pointers to them and avoid
285      lots of expensive calls to gc_cache_lookup. */
286   GC toolbar_top_shadow_gc;
287   GC toolbar_bottom_shadow_gc;
288   GC toolbar_blank_background_gc;
289   GC toolbar_pixmap_background_gc;
290 #endif /* HAVE_TOOLBARS */
291
292   /* geometry string that ought to be freed. */
293   char *geom_free_me_please;
294
295 #ifdef HAVE_XIM
296   XPoint   xic_spot;            /* Spot Location cache */
297 #ifdef XIM_XLIB
298   XIC xic;
299   /* Could get these at any time by asking xic, but... */
300   XIMStyle xic_style;           /* XIM Style cache */
301 #endif /* XIM_XLIB */
302 #endif /* HAVE_XIM */
303
304   /* 1 if the frame is completely visible on the display, 0 otherwise.
305      if 0 the frame may have been iconified or may be totally
306      or partially hidden by another X window */
307   unsigned int totally_visible_p :1;
308
309   /* NB: Both of the following flags are derivable from the 'shell'
310      field above, but it's easier if we also have them separately here. */
311
312   /* Are we a top-level frame?  This means that our shell is a
313      TopLevelShell, and we should do certain things to interact with
314      the window manager. */
315   unsigned int top_level_frame_p :1;
316
317 #ifdef EXTERNAL_WIDGET
318   /* Are we using somebody else's window for our shell window?  This
319      means that our shell is an ExternalShell.  If this flag is set, then
320      `top_level_frame_p' will never be set. */
321   unsigned int external_window_p :1;
322 #endif /* EXTERNAL_WIDGET */
323 };
324
325 #define FRAME_X_DATA(f) FRAME_TYPE_DATA (f, x)
326
327 #define FRAME_X_SHELL_WIDGET(f)     (FRAME_X_DATA (f)->widget)
328 #define FRAME_X_CONTAINER_WIDGET(f) (FRAME_X_DATA (f)->container)
329 #define FRAME_X_MENUBAR_WIDGET(f)   (FRAME_X_DATA (f)->menubar_widget)
330 #define FRAME_X_TEXT_WIDGET(f)      (FRAME_X_DATA (f)->edit_widget)
331 #define FRAME_X_TOP_WIDGETS(f)      (FRAME_X_DATA (f)->top_widgets)
332 #define FRAME_X_NUM_TOP_WIDGETS(f)  (FRAME_X_DATA (f)->num_top_widgets)
333
334 #define FRAME_X_ICON_PIXMAP(f)      (FRAME_X_DATA (f)->icon_pixmap)
335 #define FRAME_X_ICON_PIXMAP_MASK(f) (FRAME_X_DATA (f)->icon_pixmap_mask)
336
337 #ifdef HAVE_TOOLBARS
338 #define FRAME_X_OLD_TOOLBAR_SIZE(f, pos) (FRAME_X_DATA (f)->old_toolbar_size[pos])
339
340 #define FRAME_X_TOOLBAR_TOP_SHADOW_GC(f)        (FRAME_X_DATA (f)->toolbar_top_shadow_gc)
341 #define FRAME_X_TOOLBAR_BOTTOM_SHADOW_GC(f)     (FRAME_X_DATA (f)->toolbar_bottom_shadow_gc)
342 #define FRAME_X_TOOLBAR_BLANK_BACKGROUND_GC(f)  (FRAME_X_DATA (f)->toolbar_blank_background_gc)
343 #define FRAME_X_TOOLBAR_PIXMAP_BACKGROUND_GC(f) (FRAME_X_DATA (f)->toolbar_pixmap_background_gc)
344 #endif /* HAVE_TOOLBARS */
345
346 #define FRAME_X_GEOM_FREE_ME_PLEASE(f) (FRAME_X_DATA (f)->geom_free_me_please)
347
348 #define FRAME_X_TOTALLY_VISIBLE_P(f) (FRAME_X_DATA (f)->totally_visible_p)
349 #define FRAME_X_TOP_LEVEL_FRAME_P(f) (FRAME_X_DATA (f)->top_level_frame_p)
350
351 #ifdef EXTERNAL_WIDGET
352 #define FRAME_X_EXTERNAL_WINDOW_P(f) (FRAME_X_DATA (f)->external_window_p)
353 #endif
354
355 #ifdef HAVE_XIM
356 #define FRAME_X_XIC_SPOT(f)  (FRAME_X_DATA (f)->xic_spot)
357 #ifdef XIM_XLIB
358 #define FRAME_X_XIC(f)       (FRAME_X_DATA (f)->xic)
359 #define FRAME_X_XIC_STYLE(f) (FRAME_X_DATA (f)->xic_style)
360 #endif /* XIM_XLIB */
361 #endif /* HAVE_XIM */
362
363 /* Variables associated with the X display frame this emacs is using. */
364 extern XtAppContext Xt_app_con;
365
366 extern Lisp_Object Vx_gc_pointer_shape;
367 extern Lisp_Object Vx_scrollbar_pointer_shape;
368 extern Lisp_Object Qx_error;
369
370 extern struct console_type *x_console_type;
371 extern Lisp_Object Vdefault_x_device;
372
373 /* Number of pixels below each line. */
374 extern int x_interline_space; /* #### implement me */
375
376 extern Fixnum x_selection_timeout;
377
378 struct frame *x_any_window_to_frame (struct device *d, Window);
379 struct frame *x_any_widget_or_parent_to_frame (struct device *d,
380                                                Widget widget);
381 struct frame *decode_x_frame (Lisp_Object);
382 struct frame *x_window_to_frame (struct device *d, Window);
383 struct device *get_device_from_display (Display *dpy);
384 struct device *decode_x_device (Lisp_Object);
385
386 void x_handle_selection_notify (XSelectionEvent *event);
387 void x_handle_selection_request (XSelectionRequestEvent *event);
388 void x_handle_selection_clear (XSelectionClearEvent *event);
389 void x_handle_property_notify (XPropertyEvent *event);
390
391 void Xatoms_of_select_x (struct device *d);
392 void Xatoms_of_objects_x (struct device *d);
393
394 void x_wm_set_shell_iconic_p (Widget shell, int iconic_p);
395 void x_wm_set_cell_size (Widget wmshell, int cw, int ch);
396 void x_wm_set_variable_size (Widget wmshell, int width, int height);
397
398 const char *x_event_name (int event_type);
399 int x_error_handler (Display *disp, XErrorEvent *event);
400 void expect_x_error (Display *dpy);
401 int x_error_occurred_p (Display *dpy);
402 int signal_if_x_error (Display *dpy, int resumable_p);
403 int x_IO_error_handler (Display *disp);
404
405 void x_redraw_exposed_area (struct frame *f, int x, int y,
406                             int width, int height);
407 void x_output_string (struct window *w, struct display_line *dl,
408                       Charc_dynarr *buf, int xpos, int xoffset,
409                       int start_pixpos, int width, face_index findex,
410                       int cursor, int cursor_start, int cursor_width,
411                       int cursor_height);
412 void x_output_x_pixmap (struct frame *f, Lisp_Image_Instance *p,
413                         int x, int y, int xoffset, int yoffset,
414                         int width, int height,
415                         unsigned long fg, unsigned long bg,
416                         GC override_gc);
417 void x_output_shadows (struct frame *f, int x, int y, int width,
418                        int height, GC top_shadow_gc,
419                        GC bottom_shadow_gc, GC background_gc,
420                        int shadow_thickness, int edges);
421 void x_generate_shadow_pixels (struct frame *f,
422                                unsigned long *top_shadow,
423                                unsigned long *bottom_shadow,
424                                unsigned long background,
425                                unsigned long core_background);
426
427 int x_initialize_frame_menubar (struct frame *f);
428 void x_init_modifier_mapping (struct device *d);
429
430 #define X_ERROR_OCCURRED(dpy, body)     \
431      (expect_x_error (dpy), body, x_error_occurred_p (dpy))
432
433 #define HANDLING_X_ERROR(dpy, body)     \
434      (expect_x_error (dpy), body, signal_if_x_error (dpy, 0))
435
436 void Initialize_Locale (void);
437
438 #ifdef HAVE_XIM
439
440 /* X Input Method `methods' */
441 void XIM_init_device     (struct device *d);
442 void XIM_init_frame      (struct frame *f);
443 void XIM_SetSpotLocation (struct frame *f, int x, int y);
444 void XIM_SetGeometry     (struct frame *f);
445 void XIM_focus_event     (struct frame *f, int in_p);
446
447 #ifdef XIM_XLIB
448 /* XtTypeConverter */
449 Boolean EmacsXtCvtStringToXIMStyles (
450   Display     *dpy,
451   XrmValuePtr  args,
452   Cardinal    *num_args,
453   XrmValuePtr  from,
454   XrmValuePtr  to_in_out,
455   XtPointer   *converter_data);
456
457 /* XtDestructor */
458 void EmacsFreeXIMStyles (
459   XtAppContext app,
460   XrmValuePtr  to,
461   XtPointer    converter_data,
462   XrmValuePtr  args,
463   Cardinal    *num_args);
464
465 #ifdef DEBUG_XEMACS
466 void describe_Window     (Window win);
467 void describe_XFontSet   (XFontSet font_set);
468 void describe_XIM        (XIM im);
469 void describe_XIMStyle   (XIMStyle   style);
470 void describe_XIMStyles  (XIMStyles *styles);
471 void describe_XIC        (XIC ic);
472 void describe_event_mask (unsigned long mask);
473 void describe_XRectangle (char *name, XRectangle *rect);
474 void describe_Status     (Status status);
475 #endif /* DEBUG_XEMACS */
476 #endif /* XIM_XLIB */
477 #endif /* HAVE_XIM */
478
479 extern int in_resource_setting;
480 extern int in_specifier_change_function;
481
482 extern Lisp_Object Vx_initial_argv_list; /* #### ugh! */
483
484 /* Standins for various X encodings, until we know them better */
485
486 /* !!#### Need to verify the encoding used in lwlib -- Qnative or Qctext?
487    Almost certainly the former.  Use a standin for now. */
488 #define Qlwlib_encoding Qnative
489
490 #define Qx_atom_name_encoding Qctext
491 /* font names are often stored in atoms, so it gets sticky if we set this
492    to something different from atom-name encoding */
493 #define Qx_font_name_encoding Qctext
494
495 #define Qx_color_name_encoding Qctext
496
497 /* the following probably must agree with Qcommand_argument_encoding and
498    Qenvironment_variable_encoding */
499 #define Qx_display_name_encoding Qnative
500
501 #endif /* HAVE_X_WINDOWS */
502
503 #endif /* INCLUDED_console_x_h_ */