* test/indent/octave.m: Add a test to ensure indentation is local.
[emacs.git] / src / xfns.c
blob9958e6607e5869a522fb1cc0fd425c84bf527728
1 /* Functions for the X window system.
3 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 #include <config.h>
23 #include <stdio.h>
24 #include <math.h>
25 #include <setjmp.h>
26 #include <ctype.h>
28 #ifdef HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
32 /* This makes the fields of a Display accessible, in Xlib header files. */
34 #define XLIB_ILLEGAL_ACCESS
36 #include "lisp.h"
37 #include "xterm.h"
38 #include "frame.h"
39 #include "window.h"
40 #include "buffer.h"
41 #include "intervals.h"
42 #include "dispextern.h"
43 #include "keyboard.h"
44 #include "blockinput.h"
45 #include <epaths.h>
46 #include "character.h"
47 #include "charset.h"
48 #include "coding.h"
49 #include "fontset.h"
50 #include "systime.h"
51 #include "termhooks.h"
52 #include "atimer.h"
53 #include "termchar.h"
54 #include "font.h"
56 #ifdef HAVE_X_WINDOWS
58 #include <ctype.h>
59 #include <sys/types.h>
60 #include <sys/stat.h>
62 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
63 #include "bitmaps/gray.xbm"
64 #else
65 #include <X11/bitmaps/gray>
66 #endif
68 #include "xsettings.h"
70 #ifdef USE_GTK
71 #include "gtkutil.h"
72 #endif
74 #ifdef USE_X_TOOLKIT
75 #include <X11/Shell.h>
77 #ifndef USE_MOTIF
78 #ifdef HAVE_XAW3D
79 #include <X11/Xaw3d/Paned.h>
80 #include <X11/Xaw3d/Label.h>
81 #else /* !HAVE_XAW3D */
82 #include <X11/Xaw/Paned.h>
83 #include <X11/Xaw/Label.h>
84 #endif /* HAVE_XAW3D */
85 #endif /* USE_MOTIF */
87 #ifdef USG
88 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
89 #include <X11/Xos.h>
90 #define USG
91 #else
92 #include <X11/Xos.h>
93 #endif
95 #include "widget.h"
97 #include "../lwlib/lwlib.h"
99 #ifdef USE_MOTIF
100 #include <Xm/Xm.h>
101 #include <Xm/DialogS.h>
102 #include <Xm/FileSB.h>
103 #include <Xm/List.h>
104 #include <Xm/TextF.h>
105 #endif
107 #ifdef USE_LUCID
108 #include "../lwlib/xlwmenu.h"
109 #endif
111 #if !defined(NO_EDITRES)
112 #define HACK_EDITRES
113 extern void _XEditResCheckMessages ();
114 #endif /* not defined NO_EDITRES */
116 /* Unique id counter for widgets created by the Lucid Widget Library. */
118 extern LWLIB_ID widget_id_tick;
120 extern void free_frame_menubar ();
121 extern double atof ();
123 #ifdef USE_MOTIF
125 /* LessTif/Motif version info. */
127 static Lisp_Object Vmotif_version_string;
129 #endif /* USE_MOTIF */
131 #endif /* USE_X_TOOLKIT */
133 #ifdef USE_GTK
135 /* GTK+ version info */
137 static Lisp_Object Vgtk_version_string;
139 #endif /* USE_GTK */
141 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
143 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
144 it, and including `bitmaps/gray' more than once is a problem when
145 config.h defines `static' as an empty replacement string. */
147 int gray_bitmap_width = gray_width;
148 int gray_bitmap_height = gray_height;
149 char *gray_bitmap_bits = gray_bits;
151 /* Non-zero means prompt with the old GTK file selection dialog. */
153 int x_gtk_use_old_file_dialog;
155 /* If non-zero, by default show hidden files in the GTK file chooser. */
157 int x_gtk_show_hidden_files;
159 /* If non-zero, don't show additional help text in the GTK file chooser. */
161 int x_gtk_file_dialog_help_text;
163 /* If non-zero, don't collapse to tool bar when it is detached. */
165 int x_gtk_whole_detached_tool_bar;
167 /* If non-zero, use Gtk+ tooltips. */
169 static int x_gtk_use_system_tooltips;
171 /* The background and shape of the mouse pointer, and shape when not
172 over text or in the modeline. */
174 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
175 Lisp_Object Vx_hourglass_pointer_shape;
177 /* The shape when over mouse-sensitive text. */
179 Lisp_Object Vx_sensitive_text_pointer_shape;
181 /* If non-nil, the pointer shape to indicate that windows can be
182 dragged horizontally. */
184 Lisp_Object Vx_window_horizontal_drag_shape;
186 /* Color of chars displayed in cursor box. */
188 Lisp_Object Vx_cursor_fore_pixel;
190 /* Nonzero if using X. */
192 static int x_in_use;
194 /* Non nil if no window manager is in use. */
196 Lisp_Object Vx_no_window_manager;
198 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
200 Lisp_Object Vx_pixel_size_width_font_regexp;
202 Lisp_Object Qnone;
203 Lisp_Object Qsuppress_icon;
204 Lisp_Object Qundefined_color;
205 Lisp_Object Qcompound_text, Qcancel_timer;
206 Lisp_Object Qfont_param;
208 #if GLYPH_DEBUG
209 int image_cache_refcount, dpyinfo_refcount;
210 #endif
212 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
213 char *x_last_font_name;
214 #endif
217 /* Error if we are not connected to X. */
219 void
220 check_x (void)
222 if (! x_in_use)
223 error ("X windows are not in use or not initialized");
226 /* Nonzero if we can use mouse menus.
227 You should not call this unless HAVE_MENUS is defined. */
230 have_menus_p (void)
232 return x_in_use;
235 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
236 and checking validity for X. */
238 FRAME_PTR
239 check_x_frame (Lisp_Object frame)
241 FRAME_PTR f;
243 if (NILP (frame))
244 frame = selected_frame;
245 CHECK_LIVE_FRAME (frame);
246 f = XFRAME (frame);
247 if (! FRAME_X_P (f))
248 error ("Non-X frame used");
249 return f;
252 /* Let the user specify an X display with a Lisp object.
253 OBJECT may be nil, a frame or a terminal object.
254 nil stands for the selected frame--or, if that is not an X frame,
255 the first X display on the list. */
257 struct x_display_info *
258 check_x_display_info (Lisp_Object object)
260 struct x_display_info *dpyinfo = NULL;
262 if (NILP (object))
264 struct frame *sf = XFRAME (selected_frame);
266 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
267 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
268 else if (x_display_list != 0)
269 dpyinfo = x_display_list;
270 else
271 error ("X windows are not in use or not initialized");
273 else if (TERMINALP (object))
275 struct terminal *t = get_terminal (object, 1);
277 if (t->type != output_x_window)
278 error ("Terminal %d is not an X display", XINT (object));
280 dpyinfo = t->display_info.x;
282 else if (STRINGP (object))
283 dpyinfo = x_display_info_for_name (object);
284 else
286 FRAME_PTR f = check_x_frame (object);
287 dpyinfo = FRAME_X_DISPLAY_INFO (f);
290 return dpyinfo;
294 /* Return the Emacs frame-object corresponding to an X window.
295 It could be the frame's main window or an icon window. */
297 /* This function can be called during GC, so use GC_xxx type test macros. */
299 struct frame *
300 x_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
302 Lisp_Object tail, frame;
303 struct frame *f;
305 if (wdesc == None) return 0;
307 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
309 frame = XCAR (tail);
310 if (!FRAMEP (frame))
311 continue;
312 f = XFRAME (frame);
313 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
314 continue;
315 if (f->output_data.x->hourglass_window == wdesc)
316 return f;
317 #ifdef USE_X_TOOLKIT
318 if ((f->output_data.x->edit_widget
319 && XtWindow (f->output_data.x->edit_widget) == wdesc)
320 /* A tooltip frame? */
321 || (!f->output_data.x->edit_widget
322 && FRAME_X_WINDOW (f) == wdesc)
323 || f->output_data.x->icon_desc == wdesc)
324 return f;
325 #else /* not USE_X_TOOLKIT */
326 #ifdef USE_GTK
327 if (f->output_data.x->edit_widget)
329 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
330 struct x_output *x = f->output_data.x;
331 if (gwdesc != 0 && gwdesc == x->edit_widget)
332 return f;
334 #endif /* USE_GTK */
335 if (FRAME_X_WINDOW (f) == wdesc
336 || f->output_data.x->icon_desc == wdesc)
337 return f;
338 #endif /* not USE_X_TOOLKIT */
340 return 0;
343 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
344 /* Like x_window_to_frame but also compares the window with the widget's
345 windows. */
347 struct frame *
348 x_any_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
350 Lisp_Object tail, frame;
351 struct frame *f, *found;
352 struct x_output *x;
354 if (wdesc == None) return NULL;
356 found = NULL;
357 for (tail = Vframe_list; CONSP (tail) && !found; tail = XCDR (tail))
359 frame = XCAR (tail);
360 if (!FRAMEP (frame))
361 continue;
363 f = XFRAME (frame);
364 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
366 /* This frame matches if the window is any of its widgets. */
367 x = f->output_data.x;
368 if (x->hourglass_window == wdesc)
369 found = f;
370 else if (x->widget)
372 #ifdef USE_GTK
373 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
374 if (gwdesc != 0
375 && gtk_widget_get_toplevel (gwdesc) == x->widget)
376 found = f;
377 #else
378 if (wdesc == XtWindow (x->widget)
379 || wdesc == XtWindow (x->column_widget)
380 || wdesc == XtWindow (x->edit_widget))
381 found = f;
382 /* Match if the window is this frame's menubar. */
383 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
384 found = f;
385 #endif
387 else if (FRAME_X_WINDOW (f) == wdesc)
388 /* A tooltip frame. */
389 found = f;
393 return found;
396 /* Likewise, but consider only the menu bar widget. */
398 struct frame *
399 x_menubar_window_to_frame (struct x_display_info *dpyinfo, XEvent *event)
401 Window wdesc = event->xany.window;
402 Lisp_Object tail, frame;
403 struct frame *f;
404 struct x_output *x;
406 if (wdesc == None) return 0;
408 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
410 frame = XCAR (tail);
411 if (!FRAMEP (frame))
412 continue;
413 f = XFRAME (frame);
414 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
415 continue;
416 x = f->output_data.x;
417 #ifdef USE_GTK
418 if (x->menubar_widget && xg_event_is_for_menubar (f, event))
419 return f;
420 #else
421 /* Match if the window is this frame's menubar. */
422 if (x->menubar_widget
423 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
424 return f;
425 #endif
427 return 0;
430 /* Return the frame whose principal (outermost) window is WDESC.
431 If WDESC is some other (smaller) window, we return 0. */
433 struct frame *
434 x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
436 Lisp_Object tail, frame;
437 struct frame *f;
438 struct x_output *x;
440 if (wdesc == None) return 0;
442 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
444 frame = XCAR (tail);
445 if (!FRAMEP (frame))
446 continue;
447 f = XFRAME (frame);
448 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
449 continue;
450 x = f->output_data.x;
452 if (x->widget)
454 /* This frame matches if the window is its topmost widget. */
455 #ifdef USE_GTK
456 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
457 if (gwdesc == x->widget)
458 return f;
459 #else
460 if (wdesc == XtWindow (x->widget))
461 return f;
462 #if 0 /* I don't know why it did this,
463 but it seems logically wrong,
464 and it causes trouble for MapNotify events. */
465 /* Match if the window is this frame's menubar. */
466 if (x->menubar_widget
467 && wdesc == XtWindow (x->menubar_widget))
468 return f;
469 #endif
470 #endif
472 else if (FRAME_X_WINDOW (f) == wdesc)
473 /* Tooltip frame. */
474 return f;
476 return 0;
478 #endif /* USE_X_TOOLKIT || USE_GTK */
482 static void x_default_font_parameter (struct frame *, Lisp_Object);
484 static Lisp_Object unwind_create_frame (Lisp_Object);
485 static Lisp_Object unwind_create_tip_frame (Lisp_Object);
487 void x_set_foreground_color (struct frame *, Lisp_Object, Lisp_Object);
488 static void x_set_wait_for_wm (struct frame *, Lisp_Object, Lisp_Object);
489 void x_set_background_color (struct frame *, Lisp_Object, Lisp_Object);
490 void x_set_mouse_color (struct frame *, Lisp_Object, Lisp_Object);
491 void x_set_cursor_color (struct frame *, Lisp_Object, Lisp_Object);
492 void x_set_border_color (struct frame *, Lisp_Object, Lisp_Object);
493 void x_set_cursor_type (struct frame *, Lisp_Object, Lisp_Object);
494 void x_set_icon_type (struct frame *, Lisp_Object, Lisp_Object);
495 void x_set_icon_name (struct frame *, Lisp_Object, Lisp_Object);
496 void x_explicitly_set_name (struct frame *, Lisp_Object, Lisp_Object);
497 void x_set_menu_bar_lines (struct frame *, Lisp_Object, Lisp_Object);
498 void x_set_title (struct frame *, Lisp_Object, Lisp_Object);
499 void x_set_tool_bar_lines (struct frame *, Lisp_Object, Lisp_Object);
500 void x_set_scroll_bar_foreground (struct frame *, Lisp_Object,
501 Lisp_Object);
502 void x_set_scroll_bar_background (struct frame *, Lisp_Object,
503 Lisp_Object);
504 static Lisp_Object x_default_scroll_bar_color_parameter (struct frame *,
505 Lisp_Object,
506 Lisp_Object,
507 const char *, const char *,
508 int);
511 /* Store the screen positions of frame F into XPTR and YPTR.
512 These are the positions of the containing window manager window,
513 not Emacs's own window. */
515 void
516 x_real_positions (FRAME_PTR f, int *xptr, int *yptr)
518 int win_x, win_y, outer_x, outer_y;
519 int real_x = 0, real_y = 0;
520 int had_errors = 0;
521 Window win = f->output_data.x->parent_desc;
523 BLOCK_INPUT;
525 x_catch_errors (FRAME_X_DISPLAY (f));
527 if (win == FRAME_X_DISPLAY_INFO (f)->root_window)
528 win = FRAME_OUTER_WINDOW (f);
530 /* This loop traverses up the containment tree until we hit the root
531 window. Window managers may intersect many windows between our window
532 and the root window. The window we find just before the root window
533 should be the outer WM window. */
534 for (;;)
536 Window wm_window, rootw;
537 Window *tmp_children;
538 unsigned int tmp_nchildren;
539 int success;
541 success = XQueryTree (FRAME_X_DISPLAY (f), win, &rootw,
542 &wm_window, &tmp_children, &tmp_nchildren);
544 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
546 /* Don't free tmp_children if XQueryTree failed. */
547 if (! success)
548 break;
550 XFree ((char *) tmp_children);
552 if (wm_window == rootw || had_errors)
553 break;
555 win = wm_window;
558 if (! had_errors)
560 unsigned int ign;
561 Window child, rootw;
563 /* Get the real coordinates for the WM window upper left corner */
564 XGetGeometry (FRAME_X_DISPLAY (f), win,
565 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
567 /* Translate real coordinates to coordinates relative to our
568 window. For our window, the upper left corner is 0, 0.
569 Since the upper left corner of the WM window is outside
570 our window, win_x and win_y will be negative:
572 ------------------ ---> x
573 | title |
574 | ----------------- v y
575 | | our window
577 XTranslateCoordinates (FRAME_X_DISPLAY (f),
579 /* From-window, to-window. */
580 FRAME_X_DISPLAY_INFO (f)->root_window,
581 FRAME_X_WINDOW (f),
583 /* From-position, to-position. */
584 real_x, real_y, &win_x, &win_y,
586 /* Child of win. */
587 &child);
589 if (FRAME_X_WINDOW (f) == FRAME_OUTER_WINDOW (f))
591 outer_x = win_x;
592 outer_y = win_y;
594 else
596 XTranslateCoordinates (FRAME_X_DISPLAY (f),
598 /* From-window, to-window. */
599 FRAME_X_DISPLAY_INFO (f)->root_window,
600 FRAME_OUTER_WINDOW (f),
602 /* From-position, to-position. */
603 real_x, real_y, &outer_x, &outer_y,
605 /* Child of win. */
606 &child);
609 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
612 x_uncatch_errors ();
614 UNBLOCK_INPUT;
616 if (had_errors) return;
618 f->x_pixels_diff = -win_x;
619 f->y_pixels_diff = -win_y;
621 FRAME_X_OUTPUT (f)->x_pixels_outer_diff = -outer_x;
622 FRAME_X_OUTPUT (f)->y_pixels_outer_diff = -outer_y;
624 *xptr = real_x;
625 *yptr = real_y;
631 /* Gamma-correct COLOR on frame F. */
633 void
634 gamma_correct (struct frame *f, XColor *color)
636 if (f->gamma)
638 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
639 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
640 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
645 /* Decide if color named COLOR_NAME is valid for use on frame F. If
646 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
647 allocate the color. Value is zero if COLOR_NAME is invalid, or
648 no color could be allocated. */
651 x_defined_color (struct frame *f, const char *color_name,
652 XColor *color, int alloc_p)
654 int success_p = 0;
655 Display *dpy = FRAME_X_DISPLAY (f);
656 Colormap cmap = FRAME_X_COLORMAP (f);
658 BLOCK_INPUT;
659 #ifdef USE_GTK
660 success_p = xg_check_special_colors (f, color_name, color);
661 #endif
662 if (!success_p)
663 success_p = XParseColor (dpy, cmap, color_name, color);
664 if (success_p && alloc_p)
665 success_p = x_alloc_nearest_color (f, cmap, color);
666 UNBLOCK_INPUT;
668 return success_p;
672 /* Return the pixel color value for color COLOR_NAME on frame F. If F
673 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
674 Signal an error if color can't be allocated. */
677 x_decode_color (FRAME_PTR f, Lisp_Object color_name, int mono_color)
679 XColor cdef;
681 CHECK_STRING (color_name);
683 #if 0 /* Don't do this. It's wrong when we're not using the default
684 colormap, it makes freeing difficult, and it's probably not
685 an important optimization. */
686 if (strcmp (SDATA (color_name), "black") == 0)
687 return BLACK_PIX_DEFAULT (f);
688 else if (strcmp (SDATA (color_name), "white") == 0)
689 return WHITE_PIX_DEFAULT (f);
690 #endif
692 /* Return MONO_COLOR for monochrome frames. */
693 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
694 return mono_color;
696 /* x_defined_color is responsible for coping with failures
697 by looking for a near-miss. */
698 if (x_defined_color (f, SDATA (color_name), &cdef, 1))
699 return cdef.pixel;
701 signal_error ("Undefined color", color_name);
706 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
707 the previous value of that parameter, NEW_VALUE is the new value.
708 See also the comment of wait_for_wm in struct x_output. */
710 static void
711 x_set_wait_for_wm (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
713 f->output_data.x->wait_for_wm = !NILP (new_value);
716 static void
717 x_set_tool_bar_position (struct frame *f,
718 Lisp_Object new_value,
719 Lisp_Object old_value)
721 if (! EQ (new_value, Qleft) && ! EQ (new_value, Qright)
722 && ! EQ (new_value, Qbottom) && ! EQ (new_value, Qtop))
723 return;
724 if (EQ (new_value, old_value)) return;
726 #ifdef USE_GTK
727 if (xg_change_toolbar_position (f, new_value))
728 f->tool_bar_position = new_value;
729 #endif
732 #ifdef USE_GTK
734 /* Set icon from FILE for frame F. By using GTK functions the icon
735 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
738 xg_set_icon (FRAME_PTR f, Lisp_Object file)
740 int result = 0;
741 Lisp_Object found;
743 found = x_find_image_file (file);
745 if (! NILP (found))
747 GdkPixbuf *pixbuf;
748 GError *err = NULL;
749 char *filename = (char *) SDATA (found);
750 BLOCK_INPUT;
752 pixbuf = gdk_pixbuf_new_from_file (filename, &err);
754 if (pixbuf)
756 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
757 pixbuf);
758 g_object_unref (pixbuf);
760 result = 1;
762 else
763 g_error_free (err);
765 UNBLOCK_INPUT;
768 return result;
772 xg_set_icon_from_xpm_data (FRAME_PTR f, const char **data)
774 int result = 0;
775 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_xpm_data (data);
777 if (!pixbuf)
778 return 0;
780 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), pixbuf);
781 g_object_unref (pixbuf);
782 return 1;
784 #endif /* USE_GTK */
787 /* Functions called only from `x_set_frame_param'
788 to set individual parameters.
790 If FRAME_X_WINDOW (f) is 0,
791 the frame is being created and its X-window does not exist yet.
792 In that case, just record the parameter's new value
793 in the standard place; do not attempt to change the window. */
795 void
796 x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
798 struct x_output *x = f->output_data.x;
799 unsigned long fg, old_fg;
801 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
802 old_fg = FRAME_FOREGROUND_PIXEL (f);
803 FRAME_FOREGROUND_PIXEL (f) = fg;
805 if (FRAME_X_WINDOW (f) != 0)
807 Display *dpy = FRAME_X_DISPLAY (f);
809 BLOCK_INPUT;
810 XSetForeground (dpy, x->normal_gc, fg);
811 XSetBackground (dpy, x->reverse_gc, fg);
813 if (x->cursor_pixel == old_fg)
815 unload_color (f, x->cursor_pixel);
816 x->cursor_pixel = x_copy_color (f, fg);
817 XSetBackground (dpy, x->cursor_gc, x->cursor_pixel);
820 UNBLOCK_INPUT;
822 update_face_from_frame_parameter (f, Qforeground_color, arg);
824 if (FRAME_VISIBLE_P (f))
825 redraw_frame (f);
828 unload_color (f, old_fg);
831 void
832 x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
834 struct x_output *x = f->output_data.x;
835 unsigned long bg;
837 bg = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
838 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
839 FRAME_BACKGROUND_PIXEL (f) = bg;
841 if (FRAME_X_WINDOW (f) != 0)
843 Display *dpy = FRAME_X_DISPLAY (f);
845 BLOCK_INPUT;
846 XSetBackground (dpy, x->normal_gc, bg);
847 XSetForeground (dpy, x->reverse_gc, bg);
848 XSetWindowBackground (dpy, FRAME_X_WINDOW (f), bg);
849 XSetForeground (dpy, x->cursor_gc, bg);
851 #ifdef USE_GTK
852 xg_set_background_color (f, bg);
853 #endif
855 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
856 toolkit scroll bars. */
858 Lisp_Object bar;
859 for (bar = FRAME_SCROLL_BARS (f);
860 !NILP (bar);
861 bar = XSCROLL_BAR (bar)->next)
863 Window window = XSCROLL_BAR (bar)->x_window;
864 XSetWindowBackground (dpy, window, bg);
867 #endif /* USE_TOOLKIT_SCROLL_BARS */
869 UNBLOCK_INPUT;
870 update_face_from_frame_parameter (f, Qbackground_color, arg);
872 if (FRAME_VISIBLE_P (f))
873 redraw_frame (f);
877 static Cursor
878 make_invisible_cursor (struct frame *f)
880 Display *dpy = FRAME_X_DISPLAY (f);
881 static char const no_data[] = { 0 };
882 Pixmap pix;
883 XColor col;
884 Cursor c;
886 x_catch_errors (dpy);
887 pix = XCreateBitmapFromData (dpy, FRAME_X_DISPLAY_INFO (f)->root_window,
888 no_data, 1, 1);
889 if (! x_had_errors_p (dpy) && pix != None)
891 col.pixel = 0;
892 col.red = col.green = col.blue = 0;
893 col.flags = DoRed | DoGreen | DoBlue;
894 c = XCreatePixmapCursor (dpy, pix, pix, &col, &col, 0, 0);
895 if (x_had_errors_p (dpy) || c == None)
896 c = 0;
897 XFreePixmap (dpy, pix);
900 x_uncatch_errors ();
902 return c;
905 void
906 x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
908 struct x_output *x = f->output_data.x;
909 Display *dpy = FRAME_X_DISPLAY (f);
910 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
911 Cursor hourglass_cursor, horizontal_drag_cursor;
912 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
913 unsigned long mask_color = FRAME_BACKGROUND_PIXEL (f);
915 /* Don't let pointers be invisible. */
916 if (mask_color == pixel)
918 x_free_colors (f, &pixel, 1);
919 pixel = x_copy_color (f, FRAME_FOREGROUND_PIXEL (f));
922 unload_color (f, x->mouse_pixel);
923 x->mouse_pixel = pixel;
925 BLOCK_INPUT;
927 /* It's not okay to crash if the user selects a screwy cursor. */
928 x_catch_errors (dpy);
930 if (!NILP (Vx_pointer_shape))
932 CHECK_NUMBER (Vx_pointer_shape);
933 cursor = XCreateFontCursor (dpy, XINT (Vx_pointer_shape));
935 else
936 cursor = XCreateFontCursor (dpy, XC_xterm);
937 x_check_errors (dpy, "bad text pointer cursor: %s");
939 if (!NILP (Vx_nontext_pointer_shape))
941 CHECK_NUMBER (Vx_nontext_pointer_shape);
942 nontext_cursor
943 = XCreateFontCursor (dpy, XINT (Vx_nontext_pointer_shape));
945 else
946 nontext_cursor = XCreateFontCursor (dpy, XC_left_ptr);
947 x_check_errors (dpy, "bad nontext pointer cursor: %s");
949 if (!NILP (Vx_hourglass_pointer_shape))
951 CHECK_NUMBER (Vx_hourglass_pointer_shape);
952 hourglass_cursor
953 = XCreateFontCursor (dpy, XINT (Vx_hourglass_pointer_shape));
955 else
956 hourglass_cursor = XCreateFontCursor (dpy, XC_watch);
957 x_check_errors (dpy, "bad hourglass pointer cursor: %s");
959 if (!NILP (Vx_mode_pointer_shape))
961 CHECK_NUMBER (Vx_mode_pointer_shape);
962 mode_cursor = XCreateFontCursor (dpy, XINT (Vx_mode_pointer_shape));
964 else
965 mode_cursor = XCreateFontCursor (dpy, XC_xterm);
966 x_check_errors (dpy, "bad modeline pointer cursor: %s");
968 if (!NILP (Vx_sensitive_text_pointer_shape))
970 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
971 hand_cursor
972 = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape));
974 else
975 hand_cursor = XCreateFontCursor (dpy, XC_hand2);
977 if (!NILP (Vx_window_horizontal_drag_shape))
979 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
980 horizontal_drag_cursor
981 = XCreateFontCursor (dpy, XINT (Vx_window_horizontal_drag_shape));
983 else
984 horizontal_drag_cursor
985 = XCreateFontCursor (dpy, XC_sb_h_double_arrow);
987 /* Check and report errors with the above calls. */
988 x_check_errors (dpy, "can't set cursor shape: %s");
989 x_uncatch_errors ();
992 XColor fore_color, back_color;
994 fore_color.pixel = x->mouse_pixel;
995 x_query_color (f, &fore_color);
996 back_color.pixel = mask_color;
997 x_query_color (f, &back_color);
999 XRecolorCursor (dpy, cursor, &fore_color, &back_color);
1000 XRecolorCursor (dpy, nontext_cursor, &fore_color, &back_color);
1001 XRecolorCursor (dpy, mode_cursor, &fore_color, &back_color);
1002 XRecolorCursor (dpy, hand_cursor, &fore_color, &back_color);
1003 XRecolorCursor (dpy, hourglass_cursor, &fore_color, &back_color);
1004 XRecolorCursor (dpy, horizontal_drag_cursor, &fore_color, &back_color);
1007 if (FRAME_X_WINDOW (f) != 0)
1008 XDefineCursor (dpy, FRAME_X_WINDOW (f),
1009 f->output_data.x->current_cursor = cursor);
1011 if (FRAME_X_DISPLAY_INFO (f)->invisible_cursor == 0)
1012 FRAME_X_DISPLAY_INFO (f)->invisible_cursor = make_invisible_cursor (f);
1014 if (cursor != x->text_cursor
1015 && x->text_cursor != 0)
1016 XFreeCursor (dpy, x->text_cursor);
1017 x->text_cursor = cursor;
1019 if (nontext_cursor != x->nontext_cursor
1020 && x->nontext_cursor != 0)
1021 XFreeCursor (dpy, x->nontext_cursor);
1022 x->nontext_cursor = nontext_cursor;
1024 if (hourglass_cursor != x->hourglass_cursor
1025 && x->hourglass_cursor != 0)
1026 XFreeCursor (dpy, x->hourglass_cursor);
1027 x->hourglass_cursor = hourglass_cursor;
1029 if (mode_cursor != x->modeline_cursor
1030 && x->modeline_cursor != 0)
1031 XFreeCursor (dpy, f->output_data.x->modeline_cursor);
1032 x->modeline_cursor = mode_cursor;
1034 if (hand_cursor != x->hand_cursor
1035 && x->hand_cursor != 0)
1036 XFreeCursor (dpy, x->hand_cursor);
1037 x->hand_cursor = hand_cursor;
1039 if (horizontal_drag_cursor != x->horizontal_drag_cursor
1040 && x->horizontal_drag_cursor != 0)
1041 XFreeCursor (dpy, x->horizontal_drag_cursor);
1042 x->horizontal_drag_cursor = horizontal_drag_cursor;
1044 XFlush (dpy);
1045 UNBLOCK_INPUT;
1047 update_face_from_frame_parameter (f, Qmouse_color, arg);
1050 void
1051 x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1053 unsigned long fore_pixel, pixel;
1054 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
1055 struct x_output *x = f->output_data.x;
1057 if (!NILP (Vx_cursor_fore_pixel))
1059 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1060 WHITE_PIX_DEFAULT (f));
1061 fore_pixel_allocated_p = 1;
1063 else
1064 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
1066 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1067 pixel_allocated_p = 1;
1069 /* Make sure that the cursor color differs from the background color. */
1070 if (pixel == FRAME_BACKGROUND_PIXEL (f))
1072 if (pixel_allocated_p)
1074 x_free_colors (f, &pixel, 1);
1075 pixel_allocated_p = 0;
1078 pixel = x->mouse_pixel;
1079 if (pixel == fore_pixel)
1081 if (fore_pixel_allocated_p)
1083 x_free_colors (f, &fore_pixel, 1);
1084 fore_pixel_allocated_p = 0;
1086 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
1090 unload_color (f, x->cursor_foreground_pixel);
1091 if (!fore_pixel_allocated_p)
1092 fore_pixel = x_copy_color (f, fore_pixel);
1093 x->cursor_foreground_pixel = fore_pixel;
1095 unload_color (f, x->cursor_pixel);
1096 if (!pixel_allocated_p)
1097 pixel = x_copy_color (f, pixel);
1098 x->cursor_pixel = pixel;
1100 if (FRAME_X_WINDOW (f) != 0)
1102 BLOCK_INPUT;
1103 XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel);
1104 XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel);
1105 UNBLOCK_INPUT;
1107 if (FRAME_VISIBLE_P (f))
1109 x_update_cursor (f, 0);
1110 x_update_cursor (f, 1);
1114 update_face_from_frame_parameter (f, Qcursor_color, arg);
1117 /* Set the border-color of frame F to pixel value PIX.
1118 Note that this does not fully take effect if done before
1119 F has an x-window. */
1121 void
1122 x_set_border_pixel (struct frame *f, int pix)
1124 unload_color (f, f->output_data.x->border_pixel);
1125 f->output_data.x->border_pixel = pix;
1127 if (FRAME_X_WINDOW (f) != 0 && f->border_width > 0)
1129 BLOCK_INPUT;
1130 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1131 (unsigned long)pix);
1132 UNBLOCK_INPUT;
1134 if (FRAME_VISIBLE_P (f))
1135 redraw_frame (f);
1139 /* Set the border-color of frame F to value described by ARG.
1140 ARG can be a string naming a color.
1141 The border-color is used for the border that is drawn by the X server.
1142 Note that this does not fully take effect if done before
1143 F has an x-window; it must be redone when the window is created.
1145 Note: this is done in two routines because of the way X10 works.
1147 Note: under X11, this is normally the province of the window manager,
1148 and so emacs' border colors may be overridden. */
1150 void
1151 x_set_border_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1153 int pix;
1155 CHECK_STRING (arg);
1156 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1157 x_set_border_pixel (f, pix);
1158 update_face_from_frame_parameter (f, Qborder_color, arg);
1162 void
1163 x_set_cursor_type (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
1165 set_frame_cursor_types (f, arg);
1167 /* Make sure the cursor gets redrawn. */
1168 cursor_type_changed = 1;
1171 void
1172 x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1174 int result;
1176 if (STRINGP (arg))
1178 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1179 return;
1181 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1182 return;
1184 BLOCK_INPUT;
1185 if (NILP (arg))
1186 result = x_text_icon (f,
1187 (char *) SDATA ((!NILP (f->icon_name)
1188 ? f->icon_name
1189 : f->name)));
1190 else
1191 result = x_bitmap_icon (f, arg);
1193 if (result)
1195 UNBLOCK_INPUT;
1196 error ("No icon window available");
1199 XFlush (FRAME_X_DISPLAY (f));
1200 UNBLOCK_INPUT;
1203 void
1204 x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1206 int result;
1208 if (STRINGP (arg))
1210 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1211 return;
1213 else if (!NILP (arg) || NILP (oldval))
1214 return;
1216 f->icon_name = arg;
1218 if (f->output_data.x->icon_bitmap != 0)
1219 return;
1221 BLOCK_INPUT;
1223 result = x_text_icon (f,
1224 (char *) SDATA ((!NILP (f->icon_name)
1225 ? f->icon_name
1226 : !NILP (f->title)
1227 ? f->title
1228 : f->name)));
1230 if (result)
1232 UNBLOCK_INPUT;
1233 error ("No icon window available");
1236 XFlush (FRAME_X_DISPLAY (f));
1237 UNBLOCK_INPUT;
1241 void
1242 x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1244 int nlines;
1245 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1246 int olines = FRAME_MENU_BAR_LINES (f);
1247 #endif
1249 /* Right now, menu bars don't work properly in minibuf-only frames;
1250 most of the commands try to apply themselves to the minibuffer
1251 frame itself, and get an error because you can't switch buffers
1252 in or split the minibuffer window. */
1253 if (FRAME_MINIBUF_ONLY_P (f))
1254 return;
1256 if (INTEGERP (value))
1257 nlines = XINT (value);
1258 else
1259 nlines = 0;
1261 /* Make sure we redisplay all windows in this frame. */
1262 windows_or_buffers_changed++;
1264 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1265 FRAME_MENU_BAR_LINES (f) = 0;
1266 if (nlines)
1268 FRAME_EXTERNAL_MENU_BAR (f) = 1;
1269 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
1270 /* Make sure next redisplay shows the menu bar. */
1271 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1273 else
1275 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1276 free_frame_menubar (f);
1277 FRAME_EXTERNAL_MENU_BAR (f) = 0;
1278 if (FRAME_X_P (f))
1279 f->output_data.x->menubar_widget = 0;
1281 #else /* not USE_X_TOOLKIT && not USE_GTK */
1282 FRAME_MENU_BAR_LINES (f) = nlines;
1283 change_window_heights (f->root_window, nlines - olines);
1285 /* If the menu bar height gets changed, the internal border below
1286 the top margin has to be cleared. Also, if the menu bar gets
1287 larger, the area for the added lines has to be cleared except for
1288 the first menu bar line that is to be drawn later. */
1289 if (nlines != olines)
1291 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1292 int width = FRAME_PIXEL_WIDTH (f);
1293 int y;
1295 /* height can be zero here. */
1296 if (height > 0 && width > 0)
1298 y = FRAME_TOP_MARGIN_HEIGHT (f);
1300 BLOCK_INPUT;
1301 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1302 0, y, width, height, False);
1303 UNBLOCK_INPUT;
1306 if (nlines > 1 && nlines > olines)
1308 y = (olines == 0 ? 1 : olines) * FRAME_LINE_HEIGHT (f);
1309 height = nlines * FRAME_LINE_HEIGHT (f) - y;
1311 BLOCK_INPUT;
1312 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1313 0, y, width, height, False);
1314 UNBLOCK_INPUT;
1317 if (nlines == 0 && WINDOWP (f->menu_bar_window))
1318 clear_glyph_matrix (XWINDOW (f->menu_bar_window)->current_matrix);
1320 #endif /* not USE_X_TOOLKIT && not USE_GTK */
1321 adjust_glyphs (f);
1325 /* Set the number of lines used for the tool bar of frame F to VALUE.
1326 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1327 is the old number of tool bar lines. This function changes the
1328 height of all windows on frame F to match the new tool bar height.
1329 The frame's height doesn't change. */
1331 void
1332 x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1334 int delta, nlines, root_height;
1335 Lisp_Object root_window;
1337 /* Treat tool bars like menu bars. */
1338 if (FRAME_MINIBUF_ONLY_P (f))
1339 return;
1341 /* Use VALUE only if an integer >= 0. */
1342 if (INTEGERP (value) && XINT (value) >= 0)
1343 nlines = XFASTINT (value);
1344 else
1345 nlines = 0;
1347 #ifdef USE_GTK
1348 FRAME_TOOL_BAR_LINES (f) = 0;
1349 if (nlines)
1351 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
1352 if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
1353 /* Make sure next redisplay shows the tool bar. */
1354 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1355 update_frame_tool_bar (f);
1357 else
1359 if (FRAME_EXTERNAL_TOOL_BAR (f))
1360 free_frame_tool_bar (f);
1361 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
1364 return;
1365 #endif
1367 /* Make sure we redisplay all windows in this frame. */
1368 ++windows_or_buffers_changed;
1370 delta = nlines - FRAME_TOOL_BAR_LINES (f);
1372 /* Don't resize the tool-bar to more than we have room for. */
1373 root_window = FRAME_ROOT_WINDOW (f);
1374 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
1375 if (root_height - delta < 1)
1377 delta = root_height - 1;
1378 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1381 FRAME_TOOL_BAR_LINES (f) = nlines;
1382 change_window_heights (root_window, delta);
1383 adjust_glyphs (f);
1385 /* We also have to make sure that the internal border at the top of
1386 the frame, below the menu bar or tool bar, is redrawn when the
1387 tool bar disappears. This is so because the internal border is
1388 below the tool bar if one is displayed, but is below the menu bar
1389 if there isn't a tool bar. The tool bar draws into the area
1390 below the menu bar. */
1391 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1393 clear_frame (f);
1394 clear_current_matrices (f);
1397 /* If the tool bar gets smaller, the internal border below it
1398 has to be cleared. It was formerly part of the display
1399 of the larger tool bar, and updating windows won't clear it. */
1400 if (delta < 0)
1402 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1403 int width = FRAME_PIXEL_WIDTH (f);
1404 int y = (FRAME_MENU_BAR_LINES (f) + nlines) * FRAME_LINE_HEIGHT (f);
1406 /* height can be zero here. */
1407 if (height > 0 && width > 0)
1409 BLOCK_INPUT;
1410 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1411 0, y, width, height, False);
1412 UNBLOCK_INPUT;
1415 if (WINDOWP (f->tool_bar_window))
1416 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
1421 /* Set the foreground color for scroll bars on frame F to VALUE.
1422 VALUE should be a string, a color name. If it isn't a string or
1423 isn't a valid color name, do nothing. OLDVAL is the old value of
1424 the frame parameter. */
1426 void
1427 x_set_scroll_bar_foreground (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1429 unsigned long pixel;
1431 if (STRINGP (value))
1432 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
1433 else
1434 pixel = -1;
1436 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
1437 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
1439 f->output_data.x->scroll_bar_foreground_pixel = pixel;
1440 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1442 /* Remove all scroll bars because they have wrong colors. */
1443 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
1444 (*FRAME_TERMINAL (f)->condemn_scroll_bars_hook) (f);
1445 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
1446 (*FRAME_TERMINAL (f)->judge_scroll_bars_hook) (f);
1448 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
1449 redraw_frame (f);
1454 /* Set the background color for scroll bars on frame F to VALUE VALUE
1455 should be a string, a color name. If it isn't a string or isn't a
1456 valid color name, do nothing. OLDVAL is the old value of the frame
1457 parameter. */
1459 void
1460 x_set_scroll_bar_background (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1462 unsigned long pixel;
1464 if (STRINGP (value))
1465 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
1466 else
1467 pixel = -1;
1469 if (f->output_data.x->scroll_bar_background_pixel != -1)
1470 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
1472 #ifdef USE_TOOLKIT_SCROLL_BARS
1473 /* Scrollbar shadow colors. */
1474 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
1476 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
1477 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
1479 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
1481 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
1482 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
1484 #endif /* USE_TOOLKIT_SCROLL_BARS */
1486 f->output_data.x->scroll_bar_background_pixel = pixel;
1487 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1489 /* Remove all scroll bars because they have wrong colors. */
1490 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
1491 (*FRAME_TERMINAL (f)->condemn_scroll_bars_hook) (f);
1492 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
1493 (*FRAME_TERMINAL (f)->judge_scroll_bars_hook) (f);
1495 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
1496 redraw_frame (f);
1501 /* Encode Lisp string STRING as a text in a format appropriate for
1502 XICCC (X Inter Client Communication Conventions).
1504 This can call Lisp code, so callers must GCPRO.
1506 If STRING contains only ASCII characters, do no conversion and
1507 return the string data of STRING. Otherwise, encode the text by
1508 CODING_SYSTEM, and return a newly allocated memory area which
1509 should be freed by `xfree' by a caller.
1511 SELECTIONP non-zero means the string is being encoded for an X
1512 selection, so it is safe to run pre-write conversions (which
1513 may run Lisp code).
1515 Store the byte length of resulting text in *TEXT_BYTES.
1517 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1518 which means that the `encoding' of the result can be `STRING'.
1519 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1520 the result should be `COMPOUND_TEXT'. */
1522 static unsigned char *
1523 x_encode_text (Lisp_Object string, Lisp_Object coding_system, int selectionp, int *text_bytes, int *stringp, int *freep)
1525 int result = string_xstring_p (string);
1526 struct coding_system coding;
1528 if (result == 0)
1530 /* No multibyte character in OBJ. We need not encode it. */
1531 *text_bytes = SBYTES (string);
1532 *stringp = 1;
1533 *freep = 0;
1534 return SDATA (string);
1537 setup_coding_system (coding_system, &coding);
1538 coding.mode |= (CODING_MODE_SAFE_ENCODING | CODING_MODE_LAST_BLOCK);
1539 /* We suppress producing escape sequences for composition. */
1540 coding.common_flags &= ~CODING_ANNOTATION_MASK;
1541 coding.dst_bytes = SCHARS (string) * 2;
1542 coding.destination = (unsigned char *) xmalloc (coding.dst_bytes);
1543 encode_coding_object (&coding, string, 0, 0,
1544 SCHARS (string), SBYTES (string), Qnil);
1545 *text_bytes = coding.produced;
1546 *stringp = (result == 1 || !EQ (coding_system, Qcompound_text));
1547 *freep = 1;
1548 return coding.destination;
1552 /* Set the WM name to NAME for frame F. Also set the icon name.
1553 If the frame already has an icon name, use that, otherwise set the
1554 icon name to NAME. */
1556 static void
1557 x_set_name_internal (FRAME_PTR f, Lisp_Object name)
1559 if (FRAME_X_WINDOW (f))
1561 BLOCK_INPUT;
1563 XTextProperty text, icon;
1564 int bytes, stringp;
1565 int do_free_icon_value = 0, do_free_text_value = 0;
1566 Lisp_Object coding_system;
1567 Lisp_Object encoded_name;
1568 Lisp_Object encoded_icon_name;
1569 struct gcpro gcpro1;
1571 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1572 we use it before x_encode_text that may return string data. */
1573 GCPRO1 (name);
1574 encoded_name = ENCODE_UTF_8 (name);
1575 UNGCPRO;
1577 coding_system = Qcompound_text;
1578 /* Note: Encoding strategy
1580 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1581 text.encoding. But, there are non-internationalized window
1582 managers which don't support that encoding. So, if NAME
1583 contains only ASCII and 8859-1 characters, encode it by
1584 iso-latin-1, and use "STRING" in text.encoding hoping that
1585 such window managers at least analyze this format correctly,
1586 i.e. treat 8-bit bytes as 8859-1 characters.
1588 We may also be able to use "UTF8_STRING" in text.encoding
1589 in the future which can encode all Unicode characters.
1590 But, for the moment, there's no way to know that the
1591 current window manager supports it or not.
1593 Either way, we also set the _NET_WM_NAME and _NET_WM_ICON_NAME
1594 properties. Per the EWMH specification, those two properties
1595 are always UTF8_STRING. This matches what gtk_window_set_title()
1596 does in the USE_GTK case. */
1597 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp,
1598 &do_free_text_value);
1599 text.encoding = (stringp ? XA_STRING
1600 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1601 text.format = 8;
1602 text.nitems = bytes;
1604 if (!STRINGP (f->icon_name))
1606 icon = text;
1607 encoded_icon_name = encoded_name;
1609 else
1611 /* See the above comment "Note: Encoding strategy". */
1612 icon.value = x_encode_text (f->icon_name, coding_system, 0,
1613 &bytes, &stringp, &do_free_icon_value);
1614 icon.encoding = (stringp ? XA_STRING
1615 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1616 icon.format = 8;
1617 icon.nitems = bytes;
1619 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
1622 #ifdef USE_GTK
1623 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1624 (char *) SDATA (encoded_name));
1625 #else /* not USE_GTK */
1626 XSetWMName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
1627 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
1628 FRAME_X_DISPLAY_INFO (f)->Xatom_net_wm_name,
1629 FRAME_X_DISPLAY_INFO (f)->Xatom_UTF8_STRING,
1630 8, PropModeReplace,
1631 (char *) SDATA (encoded_name),
1632 SBYTES (encoded_name));
1633 #endif /* not USE_GTK */
1635 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &icon);
1636 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
1637 FRAME_X_DISPLAY_INFO (f)->Xatom_net_wm_icon_name,
1638 FRAME_X_DISPLAY_INFO (f)->Xatom_UTF8_STRING,
1639 8, PropModeReplace,
1640 (char *) SDATA (encoded_icon_name),
1641 SBYTES (encoded_icon_name));
1643 if (do_free_icon_value)
1644 xfree (icon.value);
1645 if (do_free_text_value)
1646 xfree (text.value);
1648 UNBLOCK_INPUT;
1652 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1653 x_id_name.
1655 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1656 name; if NAME is a string, set F's name to NAME and set
1657 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1659 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1660 suggesting a new name, which lisp code should override; if
1661 F->explicit_name is set, ignore the new name; otherwise, set it. */
1663 void
1664 x_set_name (struct frame *f, Lisp_Object name, int explicit)
1666 /* Make sure that requests from lisp code override requests from
1667 Emacs redisplay code. */
1668 if (explicit)
1670 /* If we're switching from explicit to implicit, we had better
1671 update the mode lines and thereby update the title. */
1672 if (f->explicit_name && NILP (name))
1673 update_mode_lines = 1;
1675 f->explicit_name = ! NILP (name);
1677 else if (f->explicit_name)
1678 return;
1680 /* If NAME is nil, set the name to the x_id_name. */
1681 if (NILP (name))
1683 /* Check for no change needed in this very common case
1684 before we do any consing. */
1685 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
1686 SDATA (f->name)))
1687 return;
1688 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
1690 else
1691 CHECK_STRING (name);
1693 /* Don't change the name if it's already NAME. */
1694 if (! NILP (Fstring_equal (name, f->name)))
1695 return;
1697 f->name = name;
1699 /* For setting the frame title, the title parameter should override
1700 the name parameter. */
1701 if (! NILP (f->title))
1702 name = f->title;
1704 x_set_name_internal (f, name);
1707 /* This function should be called when the user's lisp code has
1708 specified a name for the frame; the name will override any set by the
1709 redisplay code. */
1710 void
1711 x_explicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
1713 x_set_name (f, arg, 1);
1716 /* This function should be called by Emacs redisplay code to set the
1717 name; names set this way will never override names set by the user's
1718 lisp code. */
1719 void
1720 x_implicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
1722 x_set_name (f, arg, 0);
1725 /* Change the title of frame F to NAME.
1726 If NAME is nil, use the frame name as the title. */
1728 void
1729 x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
1731 /* Don't change the title if it's already NAME. */
1732 if (EQ (name, f->title))
1733 return;
1735 update_mode_lines = 1;
1737 f->title = name;
1739 if (NILP (name))
1740 name = f->name;
1741 else
1742 CHECK_STRING (name);
1744 x_set_name_internal (f, name);
1747 void
1748 x_set_scroll_bar_default_width (struct frame *f)
1750 int wid = FRAME_COLUMN_WIDTH (f);
1752 #ifdef USE_TOOLKIT_SCROLL_BARS
1753 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1754 int width = 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
1755 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
1756 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = width;
1757 #else
1758 /* Make the actual width at least 14 pixels and a multiple of a
1759 character width. */
1760 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
1762 /* Use all of that space (aside from required margins) for the
1763 scroll bar. */
1764 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 0;
1765 #endif
1769 /* Record in frame F the specified or default value according to ALIST
1770 of the parameter named PROP (a Lisp symbol). If no value is
1771 specified for PROP, look for an X default for XPROP on the frame
1772 named NAME. If that is not found either, use the value DEFLT. */
1774 static Lisp_Object
1775 x_default_scroll_bar_color_parameter (struct frame *f,
1776 Lisp_Object alist, Lisp_Object prop,
1777 const char *xprop, const char *xclass,
1778 int foreground_p)
1780 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1781 Lisp_Object tem;
1783 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
1784 if (EQ (tem, Qunbound))
1786 #ifdef USE_TOOLKIT_SCROLL_BARS
1788 /* See if an X resource for the scroll bar color has been
1789 specified. */
1790 tem = display_x_get_resource (dpyinfo,
1791 build_string (foreground_p
1792 ? "foreground"
1793 : "background"),
1794 empty_unibyte_string,
1795 build_string ("verticalScrollBar"),
1796 empty_unibyte_string);
1797 if (!STRINGP (tem))
1799 /* If nothing has been specified, scroll bars will use a
1800 toolkit-dependent default. Because these defaults are
1801 difficult to get at without actually creating a scroll
1802 bar, use nil to indicate that no color has been
1803 specified. */
1804 tem = Qnil;
1807 #else /* not USE_TOOLKIT_SCROLL_BARS */
1809 tem = Qnil;
1811 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1814 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
1815 return tem;
1821 #ifdef USE_X_TOOLKIT
1823 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1824 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1825 already be present because of the toolkit (Motif adds some of them,
1826 for example, but Xt doesn't). */
1828 static void
1829 hack_wm_protocols (FRAME_PTR f, Widget widget)
1831 Display *dpy = XtDisplay (widget);
1832 Window w = XtWindow (widget);
1833 int need_delete = 1;
1834 int need_focus = 1;
1835 int need_save = 1;
1837 BLOCK_INPUT;
1839 Atom type;
1840 unsigned char *catoms;
1841 int format = 0;
1842 unsigned long nitems = 0;
1843 unsigned long bytes_after;
1845 if ((XGetWindowProperty (dpy, w,
1846 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1847 (long)0, (long)100, False, XA_ATOM,
1848 &type, &format, &nitems, &bytes_after,
1849 &catoms)
1850 == Success)
1851 && format == 32 && type == XA_ATOM)
1853 Atom *atoms = (Atom *) catoms;
1854 while (nitems > 0)
1856 nitems--;
1857 if (atoms[nitems]
1858 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
1859 need_delete = 0;
1860 else if (atoms[nitems]
1861 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
1862 need_focus = 0;
1863 else if (atoms[nitems]
1864 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
1865 need_save = 0;
1868 if (catoms)
1869 XFree (catoms);
1872 Atom props [10];
1873 int count = 0;
1874 if (need_delete)
1875 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
1876 if (need_focus)
1877 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
1878 if (need_save)
1879 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
1880 if (count)
1881 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1882 XA_ATOM, 32, PropModeAppend,
1883 (unsigned char *) props, count);
1885 UNBLOCK_INPUT;
1887 #endif
1891 /* Support routines for XIC (X Input Context). */
1893 #ifdef HAVE_X_I18N
1895 static XFontSet xic_create_xfontset (struct frame *);
1896 static XIMStyle best_xim_style (XIMStyles *, XIMStyles *);
1899 /* Supported XIM styles, ordered by preference. */
1901 static XIMStyle supported_xim_styles[] =
1903 XIMPreeditPosition | XIMStatusArea,
1904 XIMPreeditPosition | XIMStatusNothing,
1905 XIMPreeditPosition | XIMStatusNone,
1906 XIMPreeditNothing | XIMStatusArea,
1907 XIMPreeditNothing | XIMStatusNothing,
1908 XIMPreeditNothing | XIMStatusNone,
1909 XIMPreeditNone | XIMStatusArea,
1910 XIMPreeditNone | XIMStatusNothing,
1911 XIMPreeditNone | XIMStatusNone,
1916 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1918 const char xic_defaut_fontset[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1920 /* Create an Xt fontset spec from the name of a base font.
1921 If `motif' is True use the Motif syntax. */
1922 char *
1923 xic_create_fontsetname (const char *base_fontname, int motif)
1925 const char *sep = motif ? ";" : ",";
1926 char *fontsetname;
1928 /* Make a fontset name from the base font name. */
1929 if (xic_defaut_fontset == base_fontname)
1930 { /* There is no base font name, use the default. */
1931 int len = strlen (base_fontname) + 2;
1932 fontsetname = xmalloc (len);
1933 memset (fontsetname, 0, len);
1934 strcpy (fontsetname, base_fontname);
1936 else
1938 /* Make a fontset name from the base font name.
1939 The font set will be made of the following elements:
1940 - the base font.
1941 - the base font where the charset spec is replaced by -*-*.
1942 - the same but with the family also replaced with -*-*-. */
1943 const char *p = base_fontname;
1944 int i;
1946 for (i = 0; *p; p++)
1947 if (*p == '-') i++;
1948 if (i != 14)
1949 { /* As the font name doesn't conform to XLFD, we can't
1950 modify it to generalize it to allcs and allfamilies.
1951 Use the specified font plus the default. */
1952 int len = strlen (base_fontname) + strlen (xic_defaut_fontset) + 3;
1953 fontsetname = xmalloc (len);
1954 memset (fontsetname, 0, len);
1955 strcpy (fontsetname, base_fontname);
1956 strcat (fontsetname, sep);
1957 strcat (fontsetname, xic_defaut_fontset);
1959 else
1961 int len;
1962 const char *p1 = NULL, *p2 = NULL, *p3 = NULL;
1963 char *font_allcs = NULL;
1964 char *font_allfamilies = NULL;
1965 char *font_all = NULL;
1966 const char *allcs = "*-*-*-*-*-*-*";
1967 const char *allfamilies = "-*-*-";
1968 const char *all = "*-*-*-*-";
1969 char *base;
1971 for (i = 0, p = base_fontname; i < 8; p++)
1973 if (*p == '-')
1975 i++;
1976 if (i == 3)
1977 p1 = p + 1;
1978 else if (i == 7)
1979 p2 = p + 1;
1980 else if (i == 6)
1981 p3 = p + 1;
1984 /* If base_fontname specifies ADSTYLE, make it a
1985 wildcard. */
1986 if (*p3 != '*')
1988 int diff = (p2 - p3) - 2;
1990 base = alloca (strlen (base_fontname) + 1);
1991 memcpy (base, base_fontname, p3 - base_fontname);
1992 base[p3 - base_fontname] = '*';
1993 base[(p3 - base_fontname) + 1] = '-';
1994 strcpy (base + (p3 - base_fontname) + 2, p2);
1995 p = base + (p - base_fontname) - diff;
1996 p1 = base + (p1 - base_fontname);
1997 p2 = base + (p2 - base_fontname) - diff;
1998 base_fontname = base;
2001 /* Build the font spec that matches all charsets. */
2002 len = p - base_fontname + strlen (allcs) + 1;
2003 font_allcs = (char *) alloca (len);
2004 memset (font_allcs, 0, len);
2005 memcpy (font_allcs, base_fontname, p - base_fontname);
2006 strcat (font_allcs, allcs);
2008 /* Build the font spec that matches all families and
2009 add-styles. */
2010 len = p - p1 + strlen (allcs) + strlen (allfamilies) + 1;
2011 font_allfamilies = (char *) alloca (len);
2012 memset (font_allfamilies, 0, len);
2013 strcpy (font_allfamilies, allfamilies);
2014 memcpy (font_allfamilies + strlen (allfamilies), p1, p - p1);
2015 strcat (font_allfamilies, allcs);
2017 /* Build the font spec that matches all. */
2018 len = p - p2 + strlen (allcs) + strlen (all) + strlen (allfamilies) + 1;
2019 font_all = (char *) alloca (len);
2020 memset (font_all, 0, len);
2021 strcpy (font_all, allfamilies);
2022 strcat (font_all, all);
2023 memcpy (font_all + strlen (all) + strlen (allfamilies), p2, p - p2);
2024 strcat (font_all, allcs);
2026 /* Build the actual font set name. */
2027 len = strlen (base_fontname) + strlen (font_allcs)
2028 + strlen (font_allfamilies) + strlen (font_all) + 5;
2029 fontsetname = xmalloc (len);
2030 memset (fontsetname, 0, len);
2031 strcpy (fontsetname, base_fontname);
2032 strcat (fontsetname, sep);
2033 strcat (fontsetname, font_allcs);
2034 strcat (fontsetname, sep);
2035 strcat (fontsetname, font_allfamilies);
2036 strcat (fontsetname, sep);
2037 strcat (fontsetname, font_all);
2040 if (motif)
2041 strcat (fontsetname, ":");
2042 return fontsetname;
2045 #ifdef DEBUG_XIC_FONTSET
2046 static void
2047 print_fontset_result (xfs, name, missing_list, missing_count)
2048 XFontSet xfs;
2049 char *name;
2050 char **missing_list;
2051 int missing_count;
2053 if (xfs)
2054 fprintf (stderr, "XIC Fontset created: %s\n", name);
2055 else
2057 fprintf (stderr, "XIC Fontset failed: %s\n", name);
2058 while (missing_count-- > 0)
2060 fprintf (stderr, " missing: %s\n", *missing_list);
2061 missing_list++;
2066 #endif
2068 static XFontSet
2069 xic_create_xfontset (struct frame *f)
2071 XFontSet xfs = NULL;
2072 struct font *font = FRAME_FONT (f);
2073 int pixel_size = font->pixel_size;
2074 Lisp_Object rest, frame;
2076 /* See if there is another frame already using same fontset. */
2077 FOR_EACH_FRAME (rest, frame)
2079 struct frame *cf = XFRAME (frame);
2081 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2082 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
2083 && FRAME_FONT (f)
2084 && FRAME_FONT (f)->pixel_size == pixel_size)
2086 xfs = FRAME_XIC_FONTSET (cf);
2087 break;
2091 if (! xfs)
2093 char buf[256];
2094 char **missing_list;
2095 int missing_count;
2096 char *def_string;
2097 const char *xlfd_format = "-*-*-medium-r-normal--%d-*-*-*-*-*";
2099 sprintf (buf, xlfd_format, pixel_size);
2100 missing_list = NULL;
2101 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), buf,
2102 &missing_list, &missing_count, &def_string);
2103 #ifdef DEBUG_XIC_FONTSET
2104 print_fontset_result (xfs, buf, missing_list, missing_count);
2105 #endif
2106 if (missing_list)
2107 XFreeStringList (missing_list);
2108 if (! xfs)
2110 /* List of pixel sizes most likely available. Find one that
2111 is closest to pixel_size. */
2112 int sizes[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2113 int *smaller, *larger;
2115 for (smaller = sizes; smaller[1]; smaller++)
2116 if (smaller[1] >= pixel_size)
2117 break;
2118 larger = smaller + 1;
2119 if (*larger == pixel_size)
2120 larger++;
2121 while (*smaller || *larger)
2123 int this_size;
2125 if (! *larger)
2126 this_size = *smaller--;
2127 else if (! *smaller)
2128 this_size = *larger++;
2129 else if (pixel_size - *smaller < *larger - pixel_size)
2130 this_size = *smaller--;
2131 else
2132 this_size = *larger++;
2133 sprintf (buf, xlfd_format, this_size);
2134 missing_list = NULL;
2135 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), buf,
2136 &missing_list, &missing_count, &def_string);
2137 #ifdef DEBUG_XIC_FONTSET
2138 print_fontset_result (xfs, buf, missing_list, missing_count);
2139 #endif
2140 if (missing_list)
2141 XFreeStringList (missing_list);
2142 if (xfs)
2143 break;
2146 if (! xfs)
2148 const char *last_resort = "-*-*-*-r-normal--*-*-*-*-*-*";
2150 missing_list = NULL;
2151 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), last_resort,
2152 &missing_list, &missing_count, &def_string);
2153 #ifdef DEBUG_XIC_FONTSET
2154 print_fontset_result (xfs, last_resort, missing_list, missing_count);
2155 #endif
2156 if (missing_list)
2157 XFreeStringList (missing_list);
2162 return xfs;
2165 /* Free the X fontset of frame F if it is the last frame using it. */
2167 void
2168 xic_free_xfontset (struct frame *f)
2170 Lisp_Object rest, frame;
2171 int shared_p = 0;
2173 if (!FRAME_XIC_FONTSET (f))
2174 return;
2176 /* See if there is another frame sharing the same fontset. */
2177 FOR_EACH_FRAME (rest, frame)
2179 struct frame *cf = XFRAME (frame);
2180 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2181 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
2182 && FRAME_XIC_FONTSET (cf) == FRAME_XIC_FONTSET (f))
2184 shared_p = 1;
2185 break;
2189 if (!shared_p)
2190 /* The fontset is not used anymore. It is safe to free it. */
2191 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
2193 if (FRAME_XIC_BASE_FONTNAME (f))
2194 xfree (FRAME_XIC_BASE_FONTNAME (f));
2195 FRAME_XIC_BASE_FONTNAME (f) = NULL;
2196 FRAME_XIC_FONTSET (f) = NULL;
2200 /* Value is the best input style, given user preferences USER (already
2201 checked to be supported by Emacs), and styles supported by the
2202 input method XIM. */
2204 static XIMStyle
2205 best_xim_style (XIMStyles *user, XIMStyles *xim)
2207 int i, j;
2209 for (i = 0; i < user->count_styles; ++i)
2210 for (j = 0; j < xim->count_styles; ++j)
2211 if (user->supported_styles[i] == xim->supported_styles[j])
2212 return user->supported_styles[i];
2214 /* Return the default style. */
2215 return XIMPreeditNothing | XIMStatusNothing;
2218 /* Create XIC for frame F. */
2220 static XIMStyle xic_style;
2222 void
2223 create_frame_xic (struct frame *f)
2225 XIM xim;
2226 XIC xic = NULL;
2227 XFontSet xfs = NULL;
2229 if (FRAME_XIC (f))
2230 return;
2232 /* Create X fontset. */
2233 xfs = xic_create_xfontset (f);
2234 xim = FRAME_X_XIM (f);
2235 if (xim)
2237 XRectangle s_area;
2238 XPoint spot;
2239 XVaNestedList preedit_attr;
2240 XVaNestedList status_attr;
2242 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
2243 spot.x = 0; spot.y = 1;
2245 /* Determine XIC style. */
2246 if (xic_style == 0)
2248 XIMStyles supported_list;
2249 supported_list.count_styles = (sizeof supported_xim_styles
2250 / sizeof supported_xim_styles[0]);
2251 supported_list.supported_styles = supported_xim_styles;
2252 xic_style = best_xim_style (&supported_list,
2253 FRAME_X_XIM_STYLES (f));
2256 preedit_attr = XVaCreateNestedList (0,
2257 XNFontSet, xfs,
2258 XNForeground,
2259 FRAME_FOREGROUND_PIXEL (f),
2260 XNBackground,
2261 FRAME_BACKGROUND_PIXEL (f),
2262 (xic_style & XIMPreeditPosition
2263 ? XNSpotLocation
2264 : NULL),
2265 &spot,
2266 NULL);
2267 status_attr = XVaCreateNestedList (0,
2268 XNArea,
2269 &s_area,
2270 XNFontSet,
2271 xfs,
2272 XNForeground,
2273 FRAME_FOREGROUND_PIXEL (f),
2274 XNBackground,
2275 FRAME_BACKGROUND_PIXEL (f),
2276 NULL);
2278 xic = XCreateIC (xim,
2279 XNInputStyle, xic_style,
2280 XNClientWindow, FRAME_X_WINDOW (f),
2281 XNFocusWindow, FRAME_X_WINDOW (f),
2282 XNStatusAttributes, status_attr,
2283 XNPreeditAttributes, preedit_attr,
2284 NULL);
2285 XFree (preedit_attr);
2286 XFree (status_attr);
2289 FRAME_XIC (f) = xic;
2290 FRAME_XIC_STYLE (f) = xic_style;
2291 FRAME_XIC_FONTSET (f) = xfs;
2295 /* Destroy XIC and free XIC fontset of frame F, if any. */
2297 void
2298 free_frame_xic (struct frame *f)
2300 if (FRAME_XIC (f) == NULL)
2301 return;
2303 XDestroyIC (FRAME_XIC (f));
2304 xic_free_xfontset (f);
2306 FRAME_XIC (f) = NULL;
2310 /* Place preedit area for XIC of window W's frame to specified
2311 pixel position X/Y. X and Y are relative to window W. */
2313 void
2314 xic_set_preeditarea (struct window *w, int x, int y)
2316 struct frame *f = XFRAME (w->frame);
2317 XVaNestedList attr;
2318 XPoint spot;
2320 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w);
2321 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
2322 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
2323 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2324 XFree (attr);
2328 /* Place status area for XIC in bottom right corner of frame F.. */
2330 void
2331 xic_set_statusarea (struct frame *f)
2333 XIC xic = FRAME_XIC (f);
2334 XVaNestedList attr;
2335 XRectangle area;
2336 XRectangle *needed;
2338 /* Negotiate geometry of status area. If input method has existing
2339 status area, use its current size. */
2340 area.x = area.y = area.width = area.height = 0;
2341 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
2342 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2343 XFree (attr);
2345 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
2346 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2347 XFree (attr);
2349 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
2351 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
2352 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2353 XFree (attr);
2356 area.width = needed->width;
2357 area.height = needed->height;
2358 area.x = FRAME_PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
2359 area.y = (FRAME_PIXEL_HEIGHT (f) - area.height
2360 - FRAME_MENUBAR_HEIGHT (f)
2361 - FRAME_TOOLBAR_TOP_HEIGHT (f)
2362 - FRAME_INTERNAL_BORDER_WIDTH (f));
2363 XFree (needed);
2365 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
2366 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2367 XFree (attr);
2371 /* Set X fontset for XIC of frame F, using base font name
2372 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2374 void
2375 xic_set_xfontset (struct frame *f, const char *base_fontname)
2377 XVaNestedList attr;
2378 XFontSet xfs;
2380 xic_free_xfontset (f);
2382 xfs = xic_create_xfontset (f);
2384 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
2385 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
2386 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2387 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
2388 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
2389 XFree (attr);
2391 FRAME_XIC_FONTSET (f) = xfs;
2394 #endif /* HAVE_X_I18N */
2398 #ifdef USE_X_TOOLKIT
2400 /* Create and set up the X widget for frame F. */
2402 static void
2403 x_window (struct frame *f, long window_prompting, int minibuffer_only)
2405 XClassHint class_hints;
2406 XSetWindowAttributes attributes;
2407 unsigned long attribute_mask;
2408 Widget shell_widget;
2409 Widget pane_widget;
2410 Widget frame_widget;
2411 Arg al [25];
2412 int ac;
2414 BLOCK_INPUT;
2416 /* Use the resource name as the top-level widget name
2417 for looking up resources. Make a non-Lisp copy
2418 for the window manager, so GC relocation won't bother it.
2420 Elsewhere we specify the window name for the window manager. */
2423 char *str = (char *) SDATA (Vx_resource_name);
2424 f->namebuf = (char *) xmalloc (strlen (str) + 1);
2425 strcpy (f->namebuf, str);
2428 ac = 0;
2429 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
2430 XtSetArg (al[ac], XtNinput, 1); ac++;
2431 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2432 XtSetArg (al[ac], XtNborderWidth, f->border_width); ac++;
2433 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2434 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2435 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2436 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
2437 applicationShellWidgetClass,
2438 FRAME_X_DISPLAY (f), al, ac);
2440 f->output_data.x->widget = shell_widget;
2441 /* maybe_set_screen_title_format (shell_widget); */
2443 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
2444 (widget_value *) NULL,
2445 shell_widget, False,
2446 (lw_callback) NULL,
2447 (lw_callback) NULL,
2448 (lw_callback) NULL,
2449 (lw_callback) NULL);
2451 ac = 0;
2452 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2453 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2454 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2455 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2456 XtSetValues (pane_widget, al, ac);
2457 f->output_data.x->column_widget = pane_widget;
2459 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2460 the emacs screen when changing menubar. This reduces flickering. */
2462 ac = 0;
2463 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2464 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
2465 XtSetArg (al[ac], XtNallowResize, 1); ac++;
2466 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
2467 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
2468 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2469 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2470 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2471 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2472 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
2473 al, ac);
2475 f->output_data.x->edit_widget = frame_widget;
2477 XtManageChild (frame_widget);
2479 /* Do some needed geometry management. */
2481 int len;
2482 char *tem, shell_position[32];
2483 Arg al[10];
2484 int ac = 0;
2485 int extra_borders = 0;
2486 int menubar_size
2487 = (f->output_data.x->menubar_widget
2488 ? (f->output_data.x->menubar_widget->core.height
2489 + f->output_data.x->menubar_widget->core.border_width)
2490 : 0);
2492 #if 0 /* Experimentally, we now get the right results
2493 for -geometry -0-0 without this. 24 Aug 96, rms. */
2494 if (FRAME_EXTERNAL_MENU_BAR (f))
2496 Dimension ibw = 0;
2497 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
2498 menubar_size += ibw;
2500 #endif
2502 f->output_data.x->menubar_height = menubar_size;
2504 #ifndef USE_LUCID
2505 /* Motif seems to need this amount added to the sizes
2506 specified for the shell widget. The Athena/Lucid widgets don't.
2507 Both conclusions reached experimentally. -- rms. */
2508 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
2509 &extra_borders, NULL);
2510 extra_borders *= 2;
2511 #endif
2513 /* Convert our geometry parameters into a geometry string
2514 and specify it.
2515 Note that we do not specify here whether the position
2516 is a user-specified or program-specified one.
2517 We pass that information later, in x_wm_set_size_hints. */
2519 int left = f->left_pos;
2520 int xneg = window_prompting & XNegative;
2521 int top = f->top_pos;
2522 int yneg = window_prompting & YNegative;
2523 if (xneg)
2524 left = -left;
2525 if (yneg)
2526 top = -top;
2528 if (window_prompting & USPosition)
2529 sprintf (shell_position, "=%dx%d%c%d%c%d",
2530 FRAME_PIXEL_WIDTH (f) + extra_borders,
2531 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders,
2532 (xneg ? '-' : '+'), left,
2533 (yneg ? '-' : '+'), top);
2534 else
2536 sprintf (shell_position, "=%dx%d",
2537 FRAME_PIXEL_WIDTH (f) + extra_borders,
2538 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders);
2540 /* Setting x and y when the position is not specified in
2541 the geometry string will set program position in the WM hints.
2542 If Emacs had just one program position, we could set it in
2543 fallback resources, but since each make-frame call can specify
2544 different program positions, this is easier. */
2545 XtSetArg (al[ac], XtNx, left); ac++;
2546 XtSetArg (al[ac], XtNy, top); ac++;
2550 len = strlen (shell_position) + 1;
2551 /* We don't free this because we don't know whether
2552 it is safe to free it while the frame exists.
2553 It isn't worth the trouble of arranging to free it
2554 when the frame is deleted. */
2555 tem = (char *) xmalloc (len);
2556 strncpy (tem, shell_position, len);
2557 XtSetArg (al[ac], XtNgeometry, tem); ac++;
2558 XtSetValues (shell_widget, al, ac);
2561 XtManageChild (pane_widget);
2562 XtRealizeWidget (shell_widget);
2564 if (FRAME_X_EMBEDDED_P (f))
2565 XReparentWindow (FRAME_X_DISPLAY (f), XtWindow (shell_widget),
2566 f->output_data.x->parent_desc, 0, 0);
2568 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
2570 validate_x_resource_name ();
2572 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2573 class_hints.res_class = (char *) SDATA (Vx_resource_class);
2574 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
2576 #ifdef HAVE_X_I18N
2577 FRAME_XIC (f) = NULL;
2578 if (use_xim)
2579 create_frame_xic (f);
2580 #endif
2582 f->output_data.x->wm_hints.input = True;
2583 f->output_data.x->wm_hints.flags |= InputHint;
2584 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2585 &f->output_data.x->wm_hints);
2587 hack_wm_protocols (f, shell_widget);
2589 #ifdef HACK_EDITRES
2590 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
2591 #endif
2593 /* Do a stupid property change to force the server to generate a
2594 PropertyNotify event so that the event_stream server timestamp will
2595 be initialized to something relevant to the time we created the window.
2597 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
2598 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2599 XA_ATOM, 32, PropModeAppend,
2600 (unsigned char*) NULL, 0);
2602 /* Make all the standard events reach the Emacs frame. */
2603 attributes.event_mask = STANDARD_EVENT_SET;
2605 #ifdef HAVE_X_I18N
2606 if (FRAME_XIC (f))
2608 /* XIM server might require some X events. */
2609 unsigned long fevent = NoEventMask;
2610 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2611 attributes.event_mask |= fevent;
2613 #endif /* HAVE_X_I18N */
2615 attribute_mask = CWEventMask;
2616 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
2617 attribute_mask, &attributes);
2619 XtMapWidget (frame_widget);
2621 /* x_set_name normally ignores requests to set the name if the
2622 requested name is the same as the current name. This is the one
2623 place where that assumption isn't correct; f->name is set, but
2624 the X server hasn't been told. */
2626 Lisp_Object name;
2627 int explicit = f->explicit_name;
2629 f->explicit_name = 0;
2630 name = f->name;
2631 f->name = Qnil;
2632 x_set_name (f, name, explicit);
2635 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2636 f->output_data.x->current_cursor
2637 = f->output_data.x->text_cursor);
2639 UNBLOCK_INPUT;
2641 /* This is a no-op, except under Motif. Make sure main areas are
2642 set to something reasonable, in case we get an error later. */
2643 lw_set_main_areas (pane_widget, 0, frame_widget);
2646 #else /* not USE_X_TOOLKIT */
2647 #ifdef USE_GTK
2648 void
2649 x_window (FRAME_PTR f)
2651 if (! xg_create_frame_widgets (f))
2652 error ("Unable to create window");
2654 #ifdef HAVE_X_I18N
2655 FRAME_XIC (f) = NULL;
2656 if (use_xim)
2658 BLOCK_INPUT;
2659 create_frame_xic (f);
2660 if (FRAME_XIC (f))
2662 /* XIM server might require some X events. */
2663 unsigned long fevent = NoEventMask;
2664 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2666 if (fevent != NoEventMask)
2668 XSetWindowAttributes attributes;
2669 XWindowAttributes wattr;
2670 unsigned long attribute_mask;
2672 XGetWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2673 &wattr);
2674 attributes.event_mask = wattr.your_event_mask | fevent;
2675 attribute_mask = CWEventMask;
2676 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2677 attribute_mask, &attributes);
2680 UNBLOCK_INPUT;
2682 #endif
2685 #else /*! USE_GTK */
2686 /* Create and set up the X window for frame F. */
2688 void
2689 x_window (struct frame *f)
2691 XClassHint class_hints;
2692 XSetWindowAttributes attributes;
2693 unsigned long attribute_mask;
2695 attributes.background_pixel = FRAME_BACKGROUND_PIXEL (f);
2696 attributes.border_pixel = f->output_data.x->border_pixel;
2697 attributes.bit_gravity = StaticGravity;
2698 attributes.backing_store = NotUseful;
2699 attributes.save_under = True;
2700 attributes.event_mask = STANDARD_EVENT_SET;
2701 attributes.colormap = FRAME_X_COLORMAP (f);
2702 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
2703 | CWColormap);
2705 BLOCK_INPUT;
2706 FRAME_X_WINDOW (f)
2707 = XCreateWindow (FRAME_X_DISPLAY (f),
2708 f->output_data.x->parent_desc,
2709 f->left_pos,
2710 f->top_pos,
2711 FRAME_PIXEL_WIDTH (f), FRAME_PIXEL_HEIGHT (f),
2712 f->border_width,
2713 CopyFromParent, /* depth */
2714 InputOutput, /* class */
2715 FRAME_X_VISUAL (f),
2716 attribute_mask, &attributes);
2718 #ifdef HAVE_X_I18N
2719 if (use_xim)
2721 create_frame_xic (f);
2722 if (FRAME_XIC (f))
2724 /* XIM server might require some X events. */
2725 unsigned long fevent = NoEventMask;
2726 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2727 attributes.event_mask |= fevent;
2728 attribute_mask = CWEventMask;
2729 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2730 attribute_mask, &attributes);
2733 #endif /* HAVE_X_I18N */
2735 validate_x_resource_name ();
2737 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2738 class_hints.res_class = (char *) SDATA (Vx_resource_class);
2739 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
2741 /* The menubar is part of the ordinary display;
2742 it does not count in addition to the height of the window. */
2743 f->output_data.x->menubar_height = 0;
2745 /* This indicates that we use the "Passive Input" input model.
2746 Unless we do this, we don't get the Focus{In,Out} events that we
2747 need to draw the cursor correctly. Accursed bureaucrats.
2748 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2750 f->output_data.x->wm_hints.input = True;
2751 f->output_data.x->wm_hints.flags |= InputHint;
2752 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2753 &f->output_data.x->wm_hints);
2754 f->output_data.x->wm_hints.icon_pixmap = None;
2756 /* Request "save yourself" and "delete window" commands from wm. */
2758 Atom protocols[2];
2759 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
2760 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
2761 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
2764 /* x_set_name normally ignores requests to set the name if the
2765 requested name is the same as the current name. This is the one
2766 place where that assumption isn't correct; f->name is set, but
2767 the X server hasn't been told. */
2769 Lisp_Object name;
2770 int explicit = f->explicit_name;
2772 f->explicit_name = 0;
2773 name = f->name;
2774 f->name = Qnil;
2775 x_set_name (f, name, explicit);
2778 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2779 f->output_data.x->current_cursor
2780 = f->output_data.x->text_cursor);
2782 UNBLOCK_INPUT;
2784 if (FRAME_X_WINDOW (f) == 0)
2785 error ("Unable to create window");
2788 #endif /* not USE_GTK */
2789 #endif /* not USE_X_TOOLKIT */
2791 /* Verify that the icon position args for this window are valid. */
2793 static void
2794 x_icon_verify (struct frame *f, Lisp_Object parms)
2796 Lisp_Object icon_x, icon_y;
2798 /* Set the position of the icon. Note that twm groups all
2799 icons in an icon window. */
2800 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2801 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2802 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2804 CHECK_NUMBER (icon_x);
2805 CHECK_NUMBER (icon_y);
2807 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2808 error ("Both left and top icon corners of icon must be specified");
2811 /* Handle the icon stuff for this window. Perhaps later we might
2812 want an x_set_icon_position which can be called interactively as
2813 well. */
2815 static void
2816 x_icon (struct frame *f, Lisp_Object parms)
2818 Lisp_Object icon_x, icon_y;
2819 #if 0
2820 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2821 #endif
2823 /* Set the position of the icon. Note that twm groups all
2824 icons in an icon window. */
2825 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2826 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2827 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2829 CHECK_NUMBER (icon_x);
2830 CHECK_NUMBER (icon_y);
2832 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2833 error ("Both left and top icon corners of icon must be specified");
2835 BLOCK_INPUT;
2837 if (! EQ (icon_x, Qunbound))
2838 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
2840 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2841 but x_create_frame still needs it. */
2842 /* Start up iconic or window? */
2843 x_wm_set_window_state
2844 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
2845 Qicon)
2846 ? IconicState
2847 : NormalState));
2848 #endif
2850 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
2851 ? f->icon_name
2852 : f->name)));
2854 UNBLOCK_INPUT;
2857 /* Make the GCs needed for this window, setting the
2858 background, border and mouse colors; also create the
2859 mouse cursor and the gray border tile. */
2861 static void
2862 x_make_gc (struct frame *f)
2864 XGCValues gc_values;
2866 BLOCK_INPUT;
2868 /* Create the GCs of this frame.
2869 Note that many default values are used. */
2871 gc_values.foreground = FRAME_FOREGROUND_PIXEL (f);
2872 gc_values.background = FRAME_BACKGROUND_PIXEL (f);
2873 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
2874 f->output_data.x->normal_gc
2875 = XCreateGC (FRAME_X_DISPLAY (f),
2876 FRAME_X_WINDOW (f),
2877 GCLineWidth | GCForeground | GCBackground,
2878 &gc_values);
2880 /* Reverse video style. */
2881 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2882 gc_values.background = FRAME_FOREGROUND_PIXEL (f);
2883 f->output_data.x->reverse_gc
2884 = XCreateGC (FRAME_X_DISPLAY (f),
2885 FRAME_X_WINDOW (f),
2886 GCForeground | GCBackground | GCLineWidth,
2887 &gc_values);
2889 /* Cursor has cursor-color background, background-color foreground. */
2890 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2891 gc_values.background = f->output_data.x->cursor_pixel;
2892 gc_values.fill_style = FillOpaqueStippled;
2893 f->output_data.x->cursor_gc
2894 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2895 (GCForeground | GCBackground
2896 | GCFillStyle | GCLineWidth),
2897 &gc_values);
2899 /* Reliefs. */
2900 f->output_data.x->white_relief.gc = 0;
2901 f->output_data.x->black_relief.gc = 0;
2903 /* Create the gray border tile used when the pointer is not in
2904 the frame. Since this depends on the frame's pixel values,
2905 this must be done on a per-frame basis. */
2906 f->output_data.x->border_tile
2907 = (XCreatePixmapFromBitmapData
2908 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
2909 gray_bits, gray_width, gray_height,
2910 FRAME_FOREGROUND_PIXEL (f),
2911 FRAME_BACKGROUND_PIXEL (f),
2912 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
2914 UNBLOCK_INPUT;
2918 /* Free what was allocated in x_make_gc. */
2920 void
2921 x_free_gcs (struct frame *f)
2923 Display *dpy = FRAME_X_DISPLAY (f);
2925 BLOCK_INPUT;
2927 if (f->output_data.x->normal_gc)
2929 XFreeGC (dpy, f->output_data.x->normal_gc);
2930 f->output_data.x->normal_gc = 0;
2933 if (f->output_data.x->reverse_gc)
2935 XFreeGC (dpy, f->output_data.x->reverse_gc);
2936 f->output_data.x->reverse_gc = 0;
2939 if (f->output_data.x->cursor_gc)
2941 XFreeGC (dpy, f->output_data.x->cursor_gc);
2942 f->output_data.x->cursor_gc = 0;
2945 if (f->output_data.x->border_tile)
2947 XFreePixmap (dpy, f->output_data.x->border_tile);
2948 f->output_data.x->border_tile = 0;
2951 UNBLOCK_INPUT;
2955 /* Handler for signals raised during x_create_frame and
2956 x_create_top_frame. FRAME is the frame which is partially
2957 constructed. */
2959 static Lisp_Object
2960 unwind_create_frame (Lisp_Object frame)
2962 struct frame *f = XFRAME (frame);
2964 /* If frame is already dead, nothing to do. This can happen if the
2965 display is disconnected after the frame has become official, but
2966 before x_create_frame removes the unwind protect. */
2967 if (!FRAME_LIVE_P (f))
2968 return Qnil;
2970 /* If frame is ``official'', nothing to do. */
2971 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
2973 #if GLYPH_DEBUG
2974 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2975 #endif
2977 x_free_frame_resources (f);
2979 #if GLYPH_DEBUG
2980 /* Check that reference counts are indeed correct. */
2981 xassert (dpyinfo->reference_count == dpyinfo_refcount);
2982 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
2983 #endif
2984 return Qt;
2987 return Qnil;
2991 static void
2992 x_default_font_parameter (struct frame *f, Lisp_Object parms)
2994 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2995 Lisp_Object font_param = x_get_arg (dpyinfo, parms, Qfont, NULL, NULL,
2996 RES_TYPE_STRING);
2997 Lisp_Object font = Qnil;
2998 if (EQ (font_param, Qunbound))
2999 font_param = Qnil;
3001 if (NILP (font_param))
3003 /* System font should take precedendce over X resources. We suggest this
3004 regardless of font-use-system-font because .emacs may not have been
3005 read yet. */
3006 const char *system_font = xsettings_get_system_font ();
3007 if (system_font)
3009 char *name = xstrdup (system_font);
3010 font = font_open_by_name (f, name);
3011 free (name);
3015 if (NILP (font))
3016 font = !NILP (font_param) ? font_param
3017 : x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
3019 if (! FONTP (font) && ! STRINGP (font))
3021 const char *names[]
3023 #ifdef HAVE_XFT
3024 /* This will find the normal Xft font. */
3025 "monospace-10",
3026 #endif
3027 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3028 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3029 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3030 /* This was formerly the first thing tried, but it finds
3031 too many fonts and takes too long. */
3032 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
3033 /* If those didn't work, look for something which will
3034 at least work. */
3035 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
3036 "fixed",
3037 NULL };
3038 int i;
3040 for (i = 0; names[i]; i++)
3042 font = font_open_by_name (f, names[i]);
3043 if (! NILP (font))
3044 break;
3046 if (NILP (font))
3047 error ("No suitable font was found");
3049 else if (!NILP (font_param))
3051 /* Remember the explicit font parameter, so we can re-apply it after
3052 we've applied the `default' face settings. */
3053 x_set_frame_parameters (f, Fcons (Fcons (Qfont_param, font_param), Qnil));
3056 /* This call will make X resources override any system font setting. */
3057 x_default_parameter (f, parms, Qfont, font, "font", "Font", RES_TYPE_STRING);
3061 DEFUN ("x-wm-set-size-hint", Fx_wm_set_size_hint, Sx_wm_set_size_hint,
3062 0, 1, 0,
3063 doc: /* Send the size hints for frame FRAME to the window manager.
3064 If FRAME is nil, use the selected frame. */)
3065 (Lisp_Object frame)
3067 struct frame *f;
3068 if (NILP (frame))
3069 frame = selected_frame;
3070 f = XFRAME (frame);
3071 BLOCK_INPUT;
3072 if (FRAME_X_P (f))
3073 x_wm_set_size_hint (f, 0, 0);
3074 UNBLOCK_INPUT;
3075 return Qnil;
3078 static void
3079 set_machine_and_pid_properties (struct frame *f)
3081 /* See the above comment "Note: Encoding strategy". */
3082 XTextProperty text;
3083 int bytes, stringp;
3084 int do_free_text_value = 0;
3085 long pid = (long) getpid ();
3087 text.value = x_encode_text (Vsystem_name,
3088 Qcompound_text, 0, &bytes, &stringp,
3089 &do_free_text_value);
3090 text.encoding = (stringp ? XA_STRING
3091 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
3092 text.format = 8;
3093 text.nitems = bytes;
3094 XSetWMClientMachine (FRAME_X_DISPLAY (f),
3095 FRAME_OUTER_WINDOW (f),
3096 &text);
3097 if (do_free_text_value)
3098 xfree (text.value);
3100 XChangeProperty (FRAME_X_DISPLAY (f),
3101 FRAME_OUTER_WINDOW (f),
3102 XInternAtom (FRAME_X_DISPLAY (f),
3103 "_NET_WM_PID",
3104 False),
3105 XA_CARDINAL, 32, PropModeReplace,
3106 (unsigned char *) &pid, 1);
3109 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
3110 1, 1, 0,
3111 doc: /* Make a new X window, which is called a "frame" in Emacs terms.
3112 Return an Emacs frame object.
3113 PARMS is an alist of frame parameters.
3114 If the parameters specify that the frame should not have a minibuffer,
3115 and do not specify a specific minibuffer window to use,
3116 then `default-minibuffer-frame' must be a frame whose minibuffer can
3117 be shared by the new frame.
3119 This function is an internal primitive--use `make-frame' instead. */)
3120 (Lisp_Object parms)
3122 struct frame *f;
3123 Lisp_Object frame, tem;
3124 Lisp_Object name;
3125 int minibuffer_only = 0;
3126 long window_prompting = 0;
3127 int width, height;
3128 int count = SPECPDL_INDEX ();
3129 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3130 Lisp_Object display;
3131 struct x_display_info *dpyinfo = NULL;
3132 Lisp_Object parent;
3133 struct kboard *kb;
3135 parms = Fcopy_alist (parms);
3137 /* Use this general default value to start with
3138 until we know if this frame has a specified name. */
3139 Vx_resource_name = Vinvocation_name;
3141 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_NUMBER);
3142 if (EQ (display, Qunbound))
3143 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
3144 if (EQ (display, Qunbound))
3145 display = Qnil;
3146 dpyinfo = check_x_display_info (display);
3147 kb = dpyinfo->terminal->kboard;
3149 if (!dpyinfo->terminal->name)
3150 error ("Terminal is not live, can't create new frames on it");
3152 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
3153 if (!STRINGP (name)
3154 && ! EQ (name, Qunbound)
3155 && ! NILP (name))
3156 error ("Invalid frame name--not a string or nil");
3158 if (STRINGP (name))
3159 Vx_resource_name = name;
3161 /* See if parent window is specified. */
3162 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
3163 if (EQ (parent, Qunbound))
3164 parent = Qnil;
3165 if (! NILP (parent))
3166 CHECK_NUMBER (parent);
3168 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3169 /* No need to protect DISPLAY because that's not used after passing
3170 it to make_frame_without_minibuffer. */
3171 frame = Qnil;
3172 GCPRO4 (parms, parent, name, frame);
3173 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
3174 RES_TYPE_SYMBOL);
3175 if (EQ (tem, Qnone) || NILP (tem))
3176 f = make_frame_without_minibuffer (Qnil, kb, display);
3177 else if (EQ (tem, Qonly))
3179 f = make_minibuffer_frame ();
3180 minibuffer_only = 1;
3182 else if (WINDOWP (tem))
3183 f = make_frame_without_minibuffer (tem, kb, display);
3184 else
3185 f = make_frame (1);
3187 XSETFRAME (frame, f);
3189 /* Note that X Windows does support scroll bars. */
3190 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
3192 f->terminal = dpyinfo->terminal;
3193 f->terminal->reference_count++;
3195 f->output_method = output_x_window;
3196 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
3197 memset (f->output_data.x, 0, sizeof (struct x_output));
3198 f->output_data.x->icon_bitmap = -1;
3199 FRAME_FONTSET (f) = -1;
3200 f->output_data.x->scroll_bar_foreground_pixel = -1;
3201 f->output_data.x->scroll_bar_background_pixel = -1;
3202 #ifdef USE_TOOLKIT_SCROLL_BARS
3203 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
3204 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
3205 #endif /* USE_TOOLKIT_SCROLL_BARS */
3207 f->icon_name
3208 = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
3209 RES_TYPE_STRING);
3210 if (! STRINGP (f->icon_name))
3211 f->icon_name = Qnil;
3213 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
3215 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3216 record_unwind_protect (unwind_create_frame, frame);
3217 #if GLYPH_DEBUG
3218 image_cache_refcount = FRAME_IMAGE_CACHE (f)->refcount;
3219 dpyinfo_refcount = dpyinfo->reference_count;
3220 #endif /* GLYPH_DEBUG */
3222 /* These colors will be set anyway later, but it's important
3223 to get the color reference counts right, so initialize them! */
3225 Lisp_Object black;
3226 struct gcpro gcpro1;
3228 /* Function x_decode_color can signal an error. Make
3229 sure to initialize color slots so that we won't try
3230 to free colors we haven't allocated. */
3231 FRAME_FOREGROUND_PIXEL (f) = -1;
3232 FRAME_BACKGROUND_PIXEL (f) = -1;
3233 f->output_data.x->cursor_pixel = -1;
3234 f->output_data.x->cursor_foreground_pixel = -1;
3235 f->output_data.x->border_pixel = -1;
3236 f->output_data.x->mouse_pixel = -1;
3238 black = build_string ("black");
3239 GCPRO1 (black);
3240 FRAME_FOREGROUND_PIXEL (f)
3241 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3242 FRAME_BACKGROUND_PIXEL (f)
3243 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3244 f->output_data.x->cursor_pixel
3245 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3246 f->output_data.x->cursor_foreground_pixel
3247 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3248 f->output_data.x->border_pixel
3249 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3250 f->output_data.x->mouse_pixel
3251 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3252 UNGCPRO;
3255 /* Specify the parent under which to make this X window. */
3257 if (!NILP (parent))
3259 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
3260 f->output_data.x->explicit_parent = 1;
3262 else
3264 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
3265 f->output_data.x->explicit_parent = 0;
3268 /* Set the name; the functions to which we pass f expect the name to
3269 be set. */
3270 if (EQ (name, Qunbound) || NILP (name))
3272 f->name = build_string (dpyinfo->x_id_name);
3273 f->explicit_name = 0;
3275 else
3277 f->name = name;
3278 f->explicit_name = 1;
3279 /* use the frame's title when getting resources for this frame. */
3280 specbind (Qx_resource_name, name);
3283 f->resx = dpyinfo->resx;
3284 f->resy = dpyinfo->resy;
3286 #ifdef HAVE_FREETYPE
3287 #ifdef HAVE_XFT
3288 register_font_driver (&xftfont_driver, f);
3289 #else /* not HAVE_XFT */
3290 register_font_driver (&ftxfont_driver, f);
3291 #endif /* not HAVE_XFT */
3292 #endif /* HAVE_FREETYPE */
3293 register_font_driver (&xfont_driver, f);
3295 x_default_parameter (f, parms, Qfont_backend, Qnil,
3296 "fontBackend", "FontBackend", RES_TYPE_STRING);
3298 /* Extract the window parameters from the supplied values
3299 that are needed to determine window geometry. */
3300 x_default_font_parameter (f, parms);
3301 if (!FRAME_FONT (f))
3303 delete_frame (frame, Qnoelisp);
3304 error ("Invalid frame font");
3307 /* Frame contents get displaced if an embedded X window has a border. */
3308 if (! FRAME_X_EMBEDDED_P (f))
3309 x_default_parameter (f, parms, Qborder_width, make_number (0),
3310 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
3312 /* This defaults to 1 in order to match xterm. We recognize either
3313 internalBorderWidth or internalBorder (which is what xterm calls
3314 it). */
3315 if (NILP (Fassq (Qinternal_border_width, parms)))
3317 Lisp_Object value;
3319 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
3320 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
3321 if (! EQ (value, Qunbound))
3322 parms = Fcons (Fcons (Qinternal_border_width, value),
3323 parms);
3325 x_default_parameter (f, parms, Qinternal_border_width,
3326 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3327 make_number (0),
3328 #else
3329 make_number (1),
3330 #endif
3331 "internalBorderWidth", "internalBorderWidth",
3332 RES_TYPE_NUMBER);
3333 x_default_parameter (f, parms, Qvertical_scroll_bars,
3334 #if defined(USE_GTK) && defined(USE_TOOLKIT_SCROLL_BARS)
3335 Qright,
3336 #else
3337 Qleft,
3338 #endif
3339 "verticalScrollBars", "ScrollBars",
3340 RES_TYPE_SYMBOL);
3342 /* Also do the stuff which must be set before the window exists. */
3343 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
3344 "foreground", "Foreground", RES_TYPE_STRING);
3345 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
3346 "background", "Background", RES_TYPE_STRING);
3347 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
3348 "pointerColor", "Foreground", RES_TYPE_STRING);
3349 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
3350 "cursorColor", "Foreground", RES_TYPE_STRING);
3351 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
3352 "borderColor", "BorderColor", RES_TYPE_STRING);
3353 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
3354 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
3355 x_default_parameter (f, parms, Qline_spacing, Qnil,
3356 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
3357 x_default_parameter (f, parms, Qleft_fringe, Qnil,
3358 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
3359 x_default_parameter (f, parms, Qright_fringe, Qnil,
3360 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
3362 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
3363 "scrollBarForeground",
3364 "ScrollBarForeground", 1);
3365 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
3366 "scrollBarBackground",
3367 "ScrollBarBackground", 0);
3369 /* Init faces before x_default_parameter is called for scroll-bar
3370 parameters because that function calls x_set_scroll_bar_width,
3371 which calls change_frame_size, which calls Fset_window_buffer,
3372 which runs hooks, which call Fvertical_motion. At the end, we
3373 end up in init_iterator with a null face cache, which should not
3374 happen. */
3375 init_frame_faces (f);
3377 /* The X resources controlling the menu-bar and tool-bar are
3378 processed specially at startup, and reflected in the mode
3379 variables; ignore them here. */
3380 x_default_parameter (f, parms, Qmenu_bar_lines,
3381 NILP (Vmenu_bar_mode)
3382 ? make_number (0) : make_number (1),
3383 NULL, NULL, RES_TYPE_NUMBER);
3384 x_default_parameter (f, parms, Qtool_bar_lines,
3385 NILP (Vtool_bar_mode)
3386 ? make_number (0) : make_number (1),
3387 NULL, NULL, RES_TYPE_NUMBER);
3389 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
3390 "bufferPredicate", "BufferPredicate",
3391 RES_TYPE_SYMBOL);
3392 x_default_parameter (f, parms, Qtitle, Qnil,
3393 "title", "Title", RES_TYPE_STRING);
3394 x_default_parameter (f, parms, Qwait_for_wm, Qt,
3395 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN);
3396 x_default_parameter (f, parms, Qfullscreen, Qnil,
3397 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
3398 x_default_parameter (f, parms, Qtool_bar_position,
3399 f->tool_bar_position, 0, 0, RES_TYPE_SYMBOL);
3401 /* Compute the size of the X window. */
3402 window_prompting = x_figure_window_size (f, parms, 1);
3404 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
3405 f->no_split = minibuffer_only || EQ (tem, Qt);
3407 x_icon_verify (f, parms);
3409 /* Create the X widget or window. */
3410 #ifdef USE_X_TOOLKIT
3411 x_window (f, window_prompting, minibuffer_only);
3412 #else
3413 x_window (f);
3414 #endif
3416 x_icon (f, parms);
3417 x_make_gc (f);
3419 /* Now consider the frame official. */
3420 FRAME_X_DISPLAY_INFO (f)->reference_count++;
3421 Vframe_list = Fcons (frame, Vframe_list);
3423 /* We need to do this after creating the X window, so that the
3424 icon-creation functions can say whose icon they're describing. */
3425 x_default_parameter (f, parms, Qicon_type, Qt,
3426 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
3428 x_default_parameter (f, parms, Qauto_raise, Qnil,
3429 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3430 x_default_parameter (f, parms, Qauto_lower, Qnil,
3431 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3432 x_default_parameter (f, parms, Qcursor_type, Qbox,
3433 "cursorType", "CursorType", RES_TYPE_SYMBOL);
3434 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
3435 "scrollBarWidth", "ScrollBarWidth",
3436 RES_TYPE_NUMBER);
3437 x_default_parameter (f, parms, Qalpha, Qnil,
3438 "alpha", "Alpha", RES_TYPE_NUMBER);
3440 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3441 Change will not be effected unless different from the current
3442 FRAME_LINES (f). */
3443 width = FRAME_COLS (f);
3444 height = FRAME_LINES (f);
3446 SET_FRAME_COLS (f, 0);
3447 FRAME_LINES (f) = 0;
3448 change_frame_size (f, height, width, 1, 0, 0);
3450 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3451 /* Create the menu bar. */
3452 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
3454 /* If this signals an error, we haven't set size hints for the
3455 frame and we didn't make it visible. */
3456 initialize_frame_menubar (f);
3458 #ifndef USE_GTK
3459 /* This is a no-op, except under Motif where it arranges the
3460 main window for the widgets on it. */
3461 lw_set_main_areas (f->output_data.x->column_widget,
3462 f->output_data.x->menubar_widget,
3463 f->output_data.x->edit_widget);
3464 #endif /* not USE_GTK */
3466 #endif /* USE_X_TOOLKIT || USE_GTK */
3468 /* Tell the server what size and position, etc, we want, and how
3469 badly we want them. This should be done after we have the menu
3470 bar so that its size can be taken into account. */
3471 BLOCK_INPUT;
3472 x_wm_set_size_hint (f, window_prompting, 0);
3473 UNBLOCK_INPUT;
3475 /* Make the window appear on the frame and enable display, unless
3476 the caller says not to. However, with explicit parent, Emacs
3477 cannot control visibility, so don't try. */
3478 if (! f->output_data.x->explicit_parent)
3480 Lisp_Object visibility;
3482 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
3483 RES_TYPE_SYMBOL);
3484 if (EQ (visibility, Qunbound))
3485 visibility = Qt;
3487 if (EQ (visibility, Qicon))
3488 x_iconify_frame (f);
3489 else if (! NILP (visibility))
3490 x_make_frame_visible (f);
3491 else
3492 /* Must have been Qnil. */
3496 BLOCK_INPUT;
3498 /* Set machine name and pid for the purpose of window managers. */
3499 set_machine_and_pid_properties(f);
3501 /* Set the WM leader property. GTK does this itself, so this is not
3502 needed when using GTK. */
3503 if (dpyinfo->client_leader_window != 0)
3505 XChangeProperty (FRAME_X_DISPLAY (f),
3506 FRAME_OUTER_WINDOW (f),
3507 dpyinfo->Xatom_wm_client_leader,
3508 XA_WINDOW, 32, PropModeReplace,
3509 (unsigned char *) &dpyinfo->client_leader_window, 1);
3512 UNBLOCK_INPUT;
3514 /* Initialize `default-minibuffer-frame' in case this is the first
3515 frame on this terminal. */
3516 if (FRAME_HAS_MINIBUF_P (f)
3517 && (!FRAMEP (kb->Vdefault_minibuffer_frame)
3518 || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame))))
3519 kb->Vdefault_minibuffer_frame = frame;
3521 /* All remaining specified parameters, which have not been "used"
3522 by x_get_arg and friends, now go in the misc. alist of the frame. */
3523 for (tem = parms; CONSP (tem); tem = XCDR (tem))
3524 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
3525 f->param_alist = Fcons (XCAR (tem), f->param_alist);
3527 UNGCPRO;
3529 /* Make sure windows on this frame appear in calls to next-window
3530 and similar functions. */
3531 Vwindow_list = Qnil;
3533 return unbind_to (count, frame);
3537 /* FRAME is used only to get a handle on the X display. We don't pass the
3538 display info directly because we're called from frame.c, which doesn't
3539 know about that structure. */
3541 Lisp_Object
3542 x_get_focus_frame (struct frame *frame)
3544 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
3545 Lisp_Object xfocus;
3546 if (! dpyinfo->x_focus_frame)
3547 return Qnil;
3549 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
3550 return xfocus;
3554 /* In certain situations, when the window manager follows a
3555 click-to-focus policy, there seems to be no way around calling
3556 XSetInputFocus to give another frame the input focus .
3558 In an ideal world, XSetInputFocus should generally be avoided so
3559 that applications don't interfere with the window manager's focus
3560 policy. But I think it's okay to use when it's clearly done
3561 following a user-command. */
3563 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
3564 doc: /* Set the input focus to FRAME.
3565 FRAME nil means use the selected frame. */)
3566 (Lisp_Object frame)
3568 struct frame *f = check_x_frame (frame);
3569 Display *dpy = FRAME_X_DISPLAY (f);
3571 BLOCK_INPUT;
3572 x_catch_errors (dpy);
3573 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3574 RevertToParent, CurrentTime);
3575 x_ewmh_activate_frame (f);
3576 x_uncatch_errors ();
3577 UNBLOCK_INPUT;
3579 return Qnil;
3583 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
3584 doc: /* Internal function called by `color-defined-p', which see. */)
3585 (Lisp_Object color, Lisp_Object frame)
3587 XColor foo;
3588 FRAME_PTR f = check_x_frame (frame);
3590 CHECK_STRING (color);
3592 if (x_defined_color (f, SDATA (color), &foo, 0))
3593 return Qt;
3594 else
3595 return Qnil;
3598 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
3599 doc: /* Internal function called by `color-values', which see. */)
3600 (Lisp_Object color, Lisp_Object frame)
3602 XColor foo;
3603 FRAME_PTR f = check_x_frame (frame);
3605 CHECK_STRING (color);
3607 if (x_defined_color (f, SDATA (color), &foo, 0))
3608 return list3 (make_number (foo.red),
3609 make_number (foo.green),
3610 make_number (foo.blue));
3611 else
3612 return Qnil;
3615 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
3616 doc: /* Internal function called by `display-color-p', which see. */)
3617 (Lisp_Object terminal)
3619 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3621 if (dpyinfo->n_planes <= 2)
3622 return Qnil;
3624 switch (dpyinfo->visual->class)
3626 case StaticColor:
3627 case PseudoColor:
3628 case TrueColor:
3629 case DirectColor:
3630 return Qt;
3632 default:
3633 return Qnil;
3637 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
3638 0, 1, 0,
3639 doc: /* Return t if the X display supports shades of gray.
3640 Note that color displays do support shades of gray.
3641 The optional argument TERMINAL specifies which display to ask about.
3642 TERMINAL should be a terminal object, a frame or a display name (a string).
3643 If omitted or nil, that stands for the selected frame's display. */)
3644 (Lisp_Object terminal)
3646 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3648 if (dpyinfo->n_planes <= 1)
3649 return Qnil;
3651 switch (dpyinfo->visual->class)
3653 case StaticColor:
3654 case PseudoColor:
3655 case TrueColor:
3656 case DirectColor:
3657 case StaticGray:
3658 case GrayScale:
3659 return Qt;
3661 default:
3662 return Qnil;
3666 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
3667 0, 1, 0,
3668 doc: /* Return the width in pixels of the X display TERMINAL.
3669 The optional argument TERMINAL specifies which display to ask about.
3670 TERMINAL should be a terminal object, a frame or a display name (a string).
3671 If omitted or nil, that stands for the selected frame's display. */)
3672 (Lisp_Object terminal)
3674 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3676 return make_number (x_display_pixel_width (dpyinfo));
3679 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
3680 Sx_display_pixel_height, 0, 1, 0,
3681 doc: /* Return the height in pixels of the X display TERMINAL.
3682 The optional argument TERMINAL specifies which display to ask about.
3683 TERMINAL should be a terminal object, a frame or a display name (a string).
3684 If omitted or nil, that stands for the selected frame's display. */)
3685 (Lisp_Object terminal)
3687 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3689 return make_number (x_display_pixel_height (dpyinfo));
3692 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
3693 0, 1, 0,
3694 doc: /* Return the number of bitplanes of the X display TERMINAL.
3695 The optional argument TERMINAL specifies which display to ask about.
3696 TERMINAL should be a terminal object, a frame or a display name (a string).
3697 If omitted or nil, that stands for the selected frame's display. */)
3698 (Lisp_Object terminal)
3700 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3702 return make_number (dpyinfo->n_planes);
3705 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
3706 0, 1, 0,
3707 doc: /* Return the number of color cells of the X display TERMINAL.
3708 The optional argument TERMINAL specifies which display to ask about.
3709 TERMINAL should be a terminal object, a frame or a display name (a string).
3710 If omitted or nil, that stands for the selected frame's display. */)
3711 (Lisp_Object terminal)
3713 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3715 int nr_planes = DisplayPlanes (dpyinfo->display,
3716 XScreenNumberOfScreen (dpyinfo->screen));
3718 /* Truncate nr_planes to 24 to avoid integer overflow.
3719 Some displays says 32, but only 24 bits are actually significant.
3720 There are only very few and rare video cards that have more than
3721 24 significant bits. Also 24 bits is more than 16 million colors,
3722 it "should be enough for everyone". */
3723 if (nr_planes > 24) nr_planes = 24;
3725 return make_number (1 << nr_planes);
3728 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
3729 Sx_server_max_request_size,
3730 0, 1, 0,
3731 doc: /* Return the maximum request size of the X server of display TERMINAL.
3732 The optional argument TERMINAL specifies which display to ask about.
3733 TERMINAL should be a terminal object, a frame or a display name (a string).
3734 If omitted or nil, that stands for the selected frame's display. */)
3735 (Lisp_Object terminal)
3737 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3739 return make_number (MAXREQUEST (dpyinfo->display));
3742 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
3743 doc: /* Return the "vendor ID" string of the X server of display TERMINAL.
3744 \(Labelling every distributor as a "vendor" embodies the false assumption
3745 that operating systems cannot be developed and distributed noncommercially.)
3746 The optional argument TERMINAL specifies which display to ask about.
3747 TERMINAL should be a terminal object, a frame or a display name (a string).
3748 If omitted or nil, that stands for the selected frame's display. */)
3749 (Lisp_Object terminal)
3751 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3752 const char *vendor = ServerVendor (dpyinfo->display);
3754 if (! vendor) vendor = "";
3755 return build_string (vendor);
3758 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
3759 doc: /* Return the version numbers of the X server of display TERMINAL.
3760 The value is a list of three integers: the major and minor
3761 version numbers of the X Protocol in use, and the distributor-specific release
3762 number. See also the function `x-server-vendor'.
3764 The optional argument TERMINAL specifies which display to ask about.
3765 TERMINAL should be a terminal object, a frame or a display name (a string).
3766 If omitted or nil, that stands for the selected frame's display. */)
3767 (Lisp_Object terminal)
3769 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3770 Display *dpy = dpyinfo->display;
3772 return Fcons (make_number (ProtocolVersion (dpy)),
3773 Fcons (make_number (ProtocolRevision (dpy)),
3774 Fcons (make_number (VendorRelease (dpy)), Qnil)));
3777 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
3778 doc: /* Return the number of screens on the X server of display TERMINAL.
3779 The optional argument TERMINAL specifies which display to ask about.
3780 TERMINAL should be a terminal object, a frame or a display name (a string).
3781 If omitted or nil, that stands for the selected frame's display. */)
3782 (Lisp_Object terminal)
3784 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3786 return make_number (ScreenCount (dpyinfo->display));
3789 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
3790 doc: /* Return the height in millimeters of the X display TERMINAL.
3791 The optional argument TERMINAL specifies which display to ask about.
3792 TERMINAL should be a terminal object, a frame or a display name (a string).
3793 If omitted or nil, that stands for the selected frame's display. */)
3794 (Lisp_Object terminal)
3796 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3798 return make_number (HeightMMOfScreen (dpyinfo->screen));
3801 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
3802 doc: /* Return the width in millimeters of the X display TERMINAL.
3803 The optional argument TERMINAL specifies which display to ask about.
3804 TERMINAL should be a terminal object, a frame or a display name (a string).
3805 If omitted or nil, that stands for the selected frame's display. */)
3806 (Lisp_Object terminal)
3808 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3810 return make_number (WidthMMOfScreen (dpyinfo->screen));
3813 DEFUN ("x-display-backing-store", Fx_display_backing_store,
3814 Sx_display_backing_store, 0, 1, 0,
3815 doc: /* Return an indication of whether X display TERMINAL does backing store.
3816 The value may be `always', `when-mapped', or `not-useful'.
3817 The optional argument TERMINAL specifies which display to ask about.
3818 TERMINAL should be a terminal object, a frame or a display name (a string).
3819 If omitted or nil, that stands for the selected frame's display. */)
3820 (Lisp_Object terminal)
3822 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3823 Lisp_Object result;
3825 switch (DoesBackingStore (dpyinfo->screen))
3827 case Always:
3828 result = intern ("always");
3829 break;
3831 case WhenMapped:
3832 result = intern ("when-mapped");
3833 break;
3835 case NotUseful:
3836 result = intern ("not-useful");
3837 break;
3839 default:
3840 error ("Strange value for BackingStore parameter of screen");
3841 result = Qnil;
3844 return result;
3847 DEFUN ("x-display-visual-class", Fx_display_visual_class,
3848 Sx_display_visual_class, 0, 1, 0,
3849 doc: /* Return the visual class of the X display TERMINAL.
3850 The value is one of the symbols `static-gray', `gray-scale',
3851 `static-color', `pseudo-color', `true-color', or `direct-color'.
3853 The optional argument TERMINAL specifies which display to ask about.
3854 TERMINAL should a terminal object, a frame or a display name (a string).
3855 If omitted or nil, that stands for the selected frame's display. */)
3856 (Lisp_Object terminal)
3858 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3859 Lisp_Object result;
3861 switch (dpyinfo->visual->class)
3863 case StaticGray:
3864 result = intern ("static-gray");
3865 break;
3866 case GrayScale:
3867 result = intern ("gray-scale");
3868 break;
3869 case StaticColor:
3870 result = intern ("static-color");
3871 break;
3872 case PseudoColor:
3873 result = intern ("pseudo-color");
3874 break;
3875 case TrueColor:
3876 result = intern ("true-color");
3877 break;
3878 case DirectColor:
3879 result = intern ("direct-color");
3880 break;
3881 default:
3882 error ("Display has an unknown visual class");
3883 result = Qnil;
3886 return result;
3889 DEFUN ("x-display-save-under", Fx_display_save_under,
3890 Sx_display_save_under, 0, 1, 0,
3891 doc: /* Return t if the X display TERMINAL supports the save-under feature.
3892 The optional argument TERMINAL specifies which display to ask about.
3893 TERMINAL should be a terminal object, a frame or a display name (a string).
3894 If omitted or nil, that stands for the selected frame's display. */)
3895 (Lisp_Object terminal)
3897 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3899 if (DoesSaveUnders (dpyinfo->screen) == True)
3900 return Qt;
3901 else
3902 return Qnil;
3906 x_pixel_width (register struct frame *f)
3908 return FRAME_PIXEL_WIDTH (f);
3912 x_pixel_height (register struct frame *f)
3914 return FRAME_PIXEL_HEIGHT (f);
3918 x_char_width (register struct frame *f)
3920 return FRAME_COLUMN_WIDTH (f);
3924 x_char_height (register struct frame *f)
3926 return FRAME_LINE_HEIGHT (f);
3930 x_screen_planes (register struct frame *f)
3932 return FRAME_X_DISPLAY_INFO (f)->n_planes;
3937 /************************************************************************
3938 X Displays
3939 ************************************************************************/
3942 /* Mapping visual names to visuals. */
3944 static struct visual_class
3946 const char *name;
3947 int class;
3949 visual_classes[] =
3951 {"StaticGray", StaticGray},
3952 {"GrayScale", GrayScale},
3953 {"StaticColor", StaticColor},
3954 {"PseudoColor", PseudoColor},
3955 {"TrueColor", TrueColor},
3956 {"DirectColor", DirectColor},
3957 {NULL, 0}
3961 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3963 /* Value is the screen number of screen SCR. This is a substitute for
3964 the X function with the same name when that doesn't exist. */
3967 XScreenNumberOfScreen (scr)
3968 register Screen *scr;
3970 Display *dpy = scr->display;
3971 int i;
3973 for (i = 0; i < dpy->nscreens; ++i)
3974 if (scr == dpy->screens + i)
3975 break;
3977 return i;
3980 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3983 /* Select the visual that should be used on display DPYINFO. Set
3984 members of DPYINFO appropriately. Called from x_term_init. */
3986 void
3987 select_visual (struct x_display_info *dpyinfo)
3989 Display *dpy = dpyinfo->display;
3990 Screen *screen = dpyinfo->screen;
3991 Lisp_Object value;
3993 /* See if a visual is specified. */
3994 value = display_x_get_resource (dpyinfo,
3995 build_string ("visualClass"),
3996 build_string ("VisualClass"),
3997 Qnil, Qnil);
3998 if (STRINGP (value))
4000 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4001 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4002 depth, a decimal number. NAME is compared with case ignored. */
4003 char *s = (char *) alloca (SBYTES (value) + 1);
4004 char *dash;
4005 int i, class = -1;
4006 XVisualInfo vinfo;
4008 strcpy (s, SDATA (value));
4009 dash = strchr (s, '-');
4010 if (dash)
4012 dpyinfo->n_planes = atoi (dash + 1);
4013 *dash = '\0';
4015 else
4016 /* We won't find a matching visual with depth 0, so that
4017 an error will be printed below. */
4018 dpyinfo->n_planes = 0;
4020 /* Determine the visual class. */
4021 for (i = 0; visual_classes[i].name; ++i)
4022 if (xstrcasecmp (s, visual_classes[i].name) == 0)
4024 class = visual_classes[i].class;
4025 break;
4028 /* Look up a matching visual for the specified class. */
4029 if (class == -1
4030 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
4031 dpyinfo->n_planes, class, &vinfo))
4032 fatal ("Invalid visual specification `%s'", SDATA (value));
4034 dpyinfo->visual = vinfo.visual;
4036 else
4038 int n_visuals;
4039 XVisualInfo *vinfo, vinfo_template;
4041 dpyinfo->visual = DefaultVisualOfScreen (screen);
4043 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
4044 vinfo_template.screen = XScreenNumberOfScreen (screen);
4045 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
4046 &vinfo_template, &n_visuals);
4047 if (n_visuals <= 0)
4048 fatal ("Can't get proper X visual info");
4050 dpyinfo->n_planes = vinfo->depth;
4051 XFree ((char *) vinfo);
4056 /* Return the X display structure for the display named NAME.
4057 Open a new connection if necessary. */
4059 struct x_display_info *
4060 x_display_info_for_name (Lisp_Object name)
4062 Lisp_Object names;
4063 struct x_display_info *dpyinfo;
4065 CHECK_STRING (name);
4067 #if 0
4068 if (! EQ (Vinitial_window_system, intern ("x")))
4069 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4070 #endif
4072 for (dpyinfo = x_display_list, names = x_display_name_list;
4073 dpyinfo;
4074 dpyinfo = dpyinfo->next, names = XCDR (names))
4076 Lisp_Object tem;
4077 tem = Fstring_equal (XCAR (XCAR (names)), name);
4078 if (!NILP (tem))
4079 return dpyinfo;
4082 /* Use this general default value to start with. */
4083 Vx_resource_name = Vinvocation_name;
4085 validate_x_resource_name ();
4087 dpyinfo = x_term_init (name, (char *)0,
4088 (char *) SDATA (Vx_resource_name));
4090 if (dpyinfo == 0)
4091 error ("Cannot connect to X server %s", SDATA (name));
4093 x_in_use = 1;
4094 XSETFASTINT (Vwindow_system_version, 11);
4096 return dpyinfo;
4100 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
4101 1, 3, 0,
4102 doc: /* Open a connection to an X server.
4103 DISPLAY is the name of the display to connect to.
4104 Optional second arg XRM-STRING is a string of resources in xrdb format.
4105 If the optional third arg MUST-SUCCEED is non-nil,
4106 terminate Emacs if we can't open the connection. */)
4107 (Lisp_Object display, Lisp_Object xrm_string, Lisp_Object must_succeed)
4109 unsigned char *xrm_option;
4110 struct x_display_info *dpyinfo;
4112 CHECK_STRING (display);
4113 if (! NILP (xrm_string))
4114 CHECK_STRING (xrm_string);
4116 #if 0
4117 if (! EQ (Vinitial_window_system, intern ("x")))
4118 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4119 #endif
4121 if (! NILP (xrm_string))
4122 xrm_option = (unsigned char *) SDATA (xrm_string);
4123 else
4124 xrm_option = (unsigned char *) 0;
4126 validate_x_resource_name ();
4128 /* This is what opens the connection and sets x_current_display.
4129 This also initializes many symbols, such as those used for input. */
4130 dpyinfo = x_term_init (display, xrm_option,
4131 (char *) SDATA (Vx_resource_name));
4133 if (dpyinfo == 0)
4135 if (!NILP (must_succeed))
4136 fatal ("Cannot connect to X server %s.\n\
4137 Check the DISPLAY environment variable or use `-d'.\n\
4138 Also use the `xauth' program to verify that you have the proper\n\
4139 authorization information needed to connect the X server.\n\
4140 An insecure way to solve the problem may be to use `xhost'.\n",
4141 SDATA (display));
4142 else
4143 error ("Cannot connect to X server %s", SDATA (display));
4146 x_in_use = 1;
4148 XSETFASTINT (Vwindow_system_version, 11);
4149 return Qnil;
4152 DEFUN ("x-close-connection", Fx_close_connection,
4153 Sx_close_connection, 1, 1, 0,
4154 doc: /* Close the connection to TERMINAL's X server.
4155 For TERMINAL, specify a terminal object, a frame or a display name (a
4156 string). If TERMINAL is nil, that stands for the selected frame's
4157 terminal. */)
4158 (Lisp_Object terminal)
4160 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4162 if (dpyinfo->reference_count > 0)
4163 error ("Display still has frames on it");
4165 x_delete_terminal (dpyinfo->terminal);
4167 return Qnil;
4170 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
4171 doc: /* Return the list of display names that Emacs has connections to. */)
4172 (void)
4174 Lisp_Object tail, result;
4176 result = Qnil;
4177 for (tail = x_display_name_list; CONSP (tail); tail = XCDR (tail))
4178 result = Fcons (XCAR (XCAR (tail)), result);
4180 return result;
4183 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
4184 doc: /* If ON is non-nil, report X errors as soon as the erring request is made.
4185 This function only has an effect on X Windows. With MS Windows, it is
4186 defined but does nothing.
4188 If ON is nil, allow buffering of requests.
4189 Turning on synchronization prohibits the Xlib routines from buffering
4190 requests and seriously degrades performance, but makes debugging much
4191 easier.
4192 The optional second argument TERMINAL specifies which display to act on.
4193 TERMINAL should be a terminal object, a frame or a display name (a string).
4194 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4195 (Lisp_Object on, Lisp_Object terminal)
4197 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4199 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
4201 return Qnil;
4204 /* Wait for responses to all X commands issued so far for frame F. */
4206 void
4207 x_sync (FRAME_PTR f)
4209 BLOCK_INPUT;
4210 XSync (FRAME_X_DISPLAY (f), False);
4211 UNBLOCK_INPUT;
4215 /***********************************************************************
4216 Window properties
4217 ***********************************************************************/
4219 DEFUN ("x-change-window-property", Fx_change_window_property,
4220 Sx_change_window_property, 2, 6, 0,
4221 doc: /* Change window property PROP to VALUE on the X window of FRAME.
4222 PROP must be a string. VALUE may be a string or a list of conses,
4223 numbers and/or strings. If an element in the list is a string, it is
4224 converted to an atom and the value of the atom is used. If an element
4225 is a cons, it is converted to a 32 bit number where the car is the 16
4226 top bits and the cdr is the lower 16 bits.
4228 FRAME nil or omitted means use the selected frame.
4229 If TYPE is given and non-nil, it is the name of the type of VALUE.
4230 If TYPE is not given or nil, the type is STRING.
4231 FORMAT gives the size in bits of each element if VALUE is a list.
4232 It must be one of 8, 16 or 32.
4233 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4234 If OUTER_P is non-nil, the property is changed for the outer X window of
4235 FRAME. Default is to change on the edit X window. */)
4236 (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, Lisp_Object type, Lisp_Object format, Lisp_Object outer_p)
4238 struct frame *f = check_x_frame (frame);
4239 Atom prop_atom;
4240 Atom target_type = XA_STRING;
4241 int element_format = 8;
4242 unsigned char *data;
4243 int nelements;
4244 Window w;
4246 CHECK_STRING (prop);
4248 if (! NILP (format))
4250 CHECK_NUMBER (format);
4251 element_format = XFASTINT (format);
4253 if (element_format != 8 && element_format != 16
4254 && element_format != 32)
4255 error ("FORMAT must be one of 8, 16 or 32");
4258 if (CONSP (value))
4260 nelements = x_check_property_data (value);
4261 if (nelements == -1)
4262 error ("Bad data in VALUE, must be number, string or cons");
4264 if (element_format == 8)
4265 data = (unsigned char *) xmalloc (nelements);
4266 else if (element_format == 16)
4267 data = (unsigned char *) xmalloc (nelements*2);
4268 else /* format == 32 */
4269 /* The man page for XChangeProperty:
4270 "If the specified format is 32, the property data must be a
4271 long array."
4272 This applies even if long is more than 64 bits. The X library
4273 converts to 32 bits before sending to the X server. */
4274 data = (unsigned char *) xmalloc (nelements * sizeof(long));
4276 x_fill_property_data (FRAME_X_DISPLAY (f), value, data, element_format);
4278 else
4280 CHECK_STRING (value);
4281 data = SDATA (value);
4282 nelements = SCHARS (value);
4285 BLOCK_INPUT;
4286 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4287 if (! NILP (type))
4289 CHECK_STRING (type);
4290 target_type = XInternAtom (FRAME_X_DISPLAY (f), SDATA (type), False);
4293 if (! NILP (outer_p)) w = FRAME_OUTER_WINDOW (f);
4294 else w = FRAME_X_WINDOW (f);
4296 XChangeProperty (FRAME_X_DISPLAY (f), w,
4297 prop_atom, target_type, element_format, PropModeReplace,
4298 data, nelements);
4300 if (CONSP (value)) xfree (data);
4302 /* Make sure the property is set when we return. */
4303 XFlush (FRAME_X_DISPLAY (f));
4304 UNBLOCK_INPUT;
4306 return value;
4310 DEFUN ("x-delete-window-property", Fx_delete_window_property,
4311 Sx_delete_window_property, 1, 2, 0,
4312 doc: /* Remove window property PROP from X window of FRAME.
4313 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4314 (Lisp_Object prop, Lisp_Object frame)
4316 struct frame *f = check_x_frame (frame);
4317 Atom prop_atom;
4319 CHECK_STRING (prop);
4320 BLOCK_INPUT;
4321 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4322 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
4324 /* Make sure the property is removed when we return. */
4325 XFlush (FRAME_X_DISPLAY (f));
4326 UNBLOCK_INPUT;
4328 return prop;
4332 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
4333 1, 6, 0,
4334 doc: /* Value is the value of window property PROP on FRAME.
4335 If FRAME is nil or omitted, use the selected frame.
4337 On MS Windows, this function only accepts the PROP and FRAME arguments.
4339 On X Windows, the following optional arguments are also accepted:
4340 If TYPE is nil or omitted, get the property as a string.
4341 Otherwise TYPE is the name of the atom that denotes the type expected.
4342 If SOURCE is non-nil, get the property on that window instead of from
4343 FRAME. The number 0 denotes the root window.
4344 If DELETE_P is non-nil, delete the property after retreiving it.
4345 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4347 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4348 no value of TYPE (always string in the MS Windows case). */)
4349 (Lisp_Object prop, Lisp_Object frame, Lisp_Object type, Lisp_Object source, Lisp_Object delete_p, Lisp_Object vector_ret_p)
4351 struct frame *f = check_x_frame (frame);
4352 Atom prop_atom;
4353 int rc;
4354 Lisp_Object prop_value = Qnil;
4355 unsigned char *tmp_data = NULL;
4356 Atom actual_type;
4357 Atom target_type = XA_STRING;
4358 int actual_format;
4359 unsigned long actual_size, bytes_remaining;
4360 Window target_window = FRAME_X_WINDOW (f);
4361 struct gcpro gcpro1;
4363 GCPRO1 (prop_value);
4364 CHECK_STRING (prop);
4366 if (! NILP (source))
4368 if (NUMBERP (source))
4370 if (FLOATP (source))
4371 target_window = (Window) XFLOAT (source);
4372 else
4373 target_window = XFASTINT (source);
4375 if (target_window == 0)
4376 target_window = FRAME_X_DISPLAY_INFO (f)->root_window;
4378 else if (CONSP (source))
4379 target_window = cons_to_long (source);
4382 BLOCK_INPUT;
4383 if (STRINGP (type))
4385 if (strcmp ("AnyPropertyType", SDATA (type)) == 0)
4386 target_type = AnyPropertyType;
4387 else
4388 target_type = XInternAtom (FRAME_X_DISPLAY (f), SDATA (type), False);
4391 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4392 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4393 prop_atom, 0, 0, False, target_type,
4394 &actual_type, &actual_format, &actual_size,
4395 &bytes_remaining, &tmp_data);
4396 if (rc == Success)
4398 int size = bytes_remaining;
4400 XFree (tmp_data);
4401 tmp_data = NULL;
4403 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4404 prop_atom, 0, bytes_remaining,
4405 ! NILP (delete_p), target_type,
4406 &actual_type, &actual_format,
4407 &actual_size, &bytes_remaining,
4408 &tmp_data);
4409 if (rc == Success && tmp_data)
4411 /* The man page for XGetWindowProperty says:
4412 "If the returned format is 32, the returned data is represented
4413 as a long array and should be cast to that type to obtain the
4414 elements."
4415 This applies even if long is more than 32 bits, the X library
4416 converts from 32 bit elements received from the X server to long
4417 and passes the long array to us. Thus, for that case memcpy can not
4418 be used. We convert to a 32 bit type here, because so much code
4419 assume on that.
4421 The bytes and offsets passed to XGetWindowProperty refers to the
4422 property and those are indeed in 32 bit quantities if format is
4423 32. */
4425 if (actual_format == 32 && actual_format < BITS_PER_LONG)
4427 unsigned long i;
4428 int *idata = (int *) tmp_data;
4429 long *ldata = (long *) tmp_data;
4431 for (i = 0; i < actual_size; ++i)
4432 idata[i] = (int) ldata[i];
4435 if (NILP (vector_ret_p))
4436 prop_value = make_string (tmp_data, size);
4437 else
4438 prop_value = x_property_data_to_lisp (f,
4439 tmp_data,
4440 actual_type,
4441 actual_format,
4442 actual_size);
4445 if (tmp_data) XFree (tmp_data);
4448 UNBLOCK_INPUT;
4449 UNGCPRO;
4450 return prop_value;
4455 /***********************************************************************
4456 Busy cursor
4457 ***********************************************************************/
4459 /* Timer function of hourglass_atimer. TIMER is equal to
4460 hourglass_atimer.
4462 Display an hourglass pointer on all frames by mapping the frames'
4463 hourglass_window. Set the hourglass_p flag in the frames'
4464 output_data.x structure to indicate that an hourglass cursor is
4465 shown on the frames. */
4467 void
4468 show_hourglass (struct atimer *timer)
4470 /* The timer implementation will cancel this timer automatically
4471 after this function has run. Set hourglass_atimer to null
4472 so that we know the timer doesn't have to be canceled. */
4473 hourglass_atimer = NULL;
4475 if (!hourglass_shown_p)
4477 Lisp_Object rest, frame;
4479 BLOCK_INPUT;
4481 FOR_EACH_FRAME (rest, frame)
4483 struct frame *f = XFRAME (frame);
4485 if (FRAME_LIVE_P (f) && FRAME_X_P (f) && FRAME_X_DISPLAY (f))
4487 Display *dpy = FRAME_X_DISPLAY (f);
4489 #ifdef USE_X_TOOLKIT
4490 if (f->output_data.x->widget)
4491 #else
4492 if (FRAME_OUTER_WINDOW (f))
4493 #endif
4495 f->output_data.x->hourglass_p = 1;
4497 if (!f->output_data.x->hourglass_window)
4499 unsigned long mask = CWCursor;
4500 XSetWindowAttributes attrs;
4501 #ifdef USE_GTK
4502 Window parent = FRAME_X_WINDOW (f);
4503 #else
4504 Window parent = FRAME_OUTER_WINDOW (f);
4505 #endif
4506 attrs.cursor = f->output_data.x->hourglass_cursor;
4508 f->output_data.x->hourglass_window
4509 = XCreateWindow (dpy, parent,
4510 0, 0, 32000, 32000, 0, 0,
4511 InputOnly,
4512 CopyFromParent,
4513 mask, &attrs);
4516 XMapRaised (dpy, f->output_data.x->hourglass_window);
4517 XFlush (dpy);
4522 hourglass_shown_p = 1;
4523 UNBLOCK_INPUT;
4528 /* Hide the hourglass pointer on all frames, if it is currently
4529 shown. */
4531 void
4532 hide_hourglass (void)
4534 if (hourglass_shown_p)
4536 Lisp_Object rest, frame;
4538 BLOCK_INPUT;
4539 FOR_EACH_FRAME (rest, frame)
4541 struct frame *f = XFRAME (frame);
4543 if (FRAME_X_P (f)
4544 /* Watch out for newly created frames. */
4545 && f->output_data.x->hourglass_window)
4547 XUnmapWindow (FRAME_X_DISPLAY (f),
4548 f->output_data.x->hourglass_window);
4549 /* Sync here because XTread_socket looks at the
4550 hourglass_p flag that is reset to zero below. */
4551 XSync (FRAME_X_DISPLAY (f), False);
4552 f->output_data.x->hourglass_p = 0;
4556 hourglass_shown_p = 0;
4557 UNBLOCK_INPUT;
4563 /***********************************************************************
4564 Tool tips
4565 ***********************************************************************/
4567 static Lisp_Object x_create_tip_frame (struct x_display_info *,
4568 Lisp_Object, Lisp_Object);
4569 static void compute_tip_xy (struct frame *, Lisp_Object, Lisp_Object,
4570 Lisp_Object, int, int, int *, int *);
4572 /* The frame of a currently visible tooltip. */
4574 Lisp_Object tip_frame;
4576 /* If non-nil, a timer started that hides the last tooltip when it
4577 fires. */
4579 Lisp_Object tip_timer;
4580 Window tip_window;
4582 /* If non-nil, a vector of 3 elements containing the last args
4583 with which x-show-tip was called. See there. */
4585 Lisp_Object last_show_tip_args;
4587 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4589 Lisp_Object Vx_max_tooltip_size;
4592 static Lisp_Object
4593 unwind_create_tip_frame (Lisp_Object frame)
4595 Lisp_Object deleted;
4597 deleted = unwind_create_frame (frame);
4598 if (EQ (deleted, Qt))
4600 tip_window = None;
4601 tip_frame = Qnil;
4604 return deleted;
4608 /* Create a frame for a tooltip on the display described by DPYINFO.
4609 PARMS is a list of frame parameters. TEXT is the string to
4610 display in the tip frame. Value is the frame.
4612 Note that functions called here, esp. x_default_parameter can
4613 signal errors, for instance when a specified color name is
4614 undefined. We have to make sure that we're in a consistent state
4615 when this happens. */
4617 static Lisp_Object
4618 x_create_tip_frame (struct x_display_info *dpyinfo,
4619 Lisp_Object parms,
4620 Lisp_Object text)
4622 struct frame *f;
4623 Lisp_Object frame, tem;
4624 Lisp_Object name;
4625 long window_prompting = 0;
4626 int width, height;
4627 int count = SPECPDL_INDEX ();
4628 struct gcpro gcpro1, gcpro2, gcpro3;
4629 int face_change_count_before = face_change_count;
4630 Lisp_Object buffer;
4631 struct buffer *old_buffer;
4633 check_x ();
4635 if (!dpyinfo->terminal->name)
4636 error ("Terminal is not live, can't create new frames on it");
4638 parms = Fcopy_alist (parms);
4640 /* Get the name of the frame to use for resource lookup. */
4641 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
4642 if (!STRINGP (name)
4643 && !EQ (name, Qunbound)
4644 && !NILP (name))
4645 error ("Invalid frame name--not a string or nil");
4647 frame = Qnil;
4648 GCPRO3 (parms, name, frame);
4649 f = make_frame (1);
4650 XSETFRAME (frame, f);
4652 buffer = Fget_buffer_create (build_string (" *tip*"));
4653 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer, Qnil);
4654 old_buffer = current_buffer;
4655 set_buffer_internal_1 (XBUFFER (buffer));
4656 current_buffer->truncate_lines = Qnil;
4657 specbind (Qinhibit_read_only, Qt);
4658 specbind (Qinhibit_modification_hooks, Qt);
4659 Ferase_buffer ();
4660 Finsert (1, &text);
4661 set_buffer_internal_1 (old_buffer);
4663 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
4664 record_unwind_protect (unwind_create_tip_frame, frame);
4666 f->terminal = dpyinfo->terminal;
4667 f->terminal->reference_count++;
4669 /* By setting the output method, we're essentially saying that
4670 the frame is live, as per FRAME_LIVE_P. If we get a signal
4671 from this point on, x_destroy_window might screw up reference
4672 counts etc. */
4673 f->output_method = output_x_window;
4674 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
4675 memset (f->output_data.x, 0, sizeof (struct x_output));
4676 f->output_data.x->icon_bitmap = -1;
4677 FRAME_FONTSET (f) = -1;
4678 f->output_data.x->scroll_bar_foreground_pixel = -1;
4679 f->output_data.x->scroll_bar_background_pixel = -1;
4680 #ifdef USE_TOOLKIT_SCROLL_BARS
4681 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
4682 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
4683 #endif /* USE_TOOLKIT_SCROLL_BARS */
4684 f->icon_name = Qnil;
4685 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
4686 #if GLYPH_DEBUG
4687 image_cache_refcount = FRAME_IMAGE_CACHE (f)->refcount;
4688 dpyinfo_refcount = dpyinfo->reference_count;
4689 #endif /* GLYPH_DEBUG */
4690 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4691 f->output_data.x->explicit_parent = 0;
4693 /* These colors will be set anyway later, but it's important
4694 to get the color reference counts right, so initialize them! */
4696 Lisp_Object black;
4697 struct gcpro gcpro1;
4699 /* Function x_decode_color can signal an error. Make
4700 sure to initialize color slots so that we won't try
4701 to free colors we haven't allocated. */
4702 FRAME_FOREGROUND_PIXEL (f) = -1;
4703 FRAME_BACKGROUND_PIXEL (f) = -1;
4704 f->output_data.x->cursor_pixel = -1;
4705 f->output_data.x->cursor_foreground_pixel = -1;
4706 f->output_data.x->border_pixel = -1;
4707 f->output_data.x->mouse_pixel = -1;
4709 black = build_string ("black");
4710 GCPRO1 (black);
4711 FRAME_FOREGROUND_PIXEL (f)
4712 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4713 FRAME_BACKGROUND_PIXEL (f)
4714 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4715 f->output_data.x->cursor_pixel
4716 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4717 f->output_data.x->cursor_foreground_pixel
4718 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4719 f->output_data.x->border_pixel
4720 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4721 f->output_data.x->mouse_pixel
4722 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4723 UNGCPRO;
4726 /* Set the name; the functions to which we pass f expect the name to
4727 be set. */
4728 if (EQ (name, Qunbound) || NILP (name))
4730 f->name = build_string (dpyinfo->x_id_name);
4731 f->explicit_name = 0;
4733 else
4735 f->name = name;
4736 f->explicit_name = 1;
4737 /* use the frame's title when getting resources for this frame. */
4738 specbind (Qx_resource_name, name);
4741 f->resx = dpyinfo->resx;
4742 f->resy = dpyinfo->resy;
4744 register_font_driver (&xfont_driver, f);
4745 #ifdef HAVE_FREETYPE
4746 #ifdef HAVE_XFT
4747 register_font_driver (&xftfont_driver, f);
4748 #else /* not HAVE_XFT */
4749 register_font_driver (&ftxfont_driver, f);
4750 #endif /* not HAVE_XFT */
4751 #endif /* HAVE_FREETYPE */
4753 x_default_parameter (f, parms, Qfont_backend, Qnil,
4754 "fontBackend", "FontBackend", RES_TYPE_STRING);
4756 /* Extract the window parameters from the supplied values that are
4757 needed to determine window geometry. */
4758 x_default_font_parameter (f, parms);
4760 x_default_parameter (f, parms, Qborder_width, make_number (0),
4761 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
4763 /* This defaults to 2 in order to match xterm. We recognize either
4764 internalBorderWidth or internalBorder (which is what xterm calls
4765 it). */
4766 if (NILP (Fassq (Qinternal_border_width, parms)))
4768 Lisp_Object value;
4770 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
4771 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
4772 if (! EQ (value, Qunbound))
4773 parms = Fcons (Fcons (Qinternal_border_width, value),
4774 parms);
4777 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
4778 "internalBorderWidth", "internalBorderWidth",
4779 RES_TYPE_NUMBER);
4781 /* Also do the stuff which must be set before the window exists. */
4782 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
4783 "foreground", "Foreground", RES_TYPE_STRING);
4784 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
4785 "background", "Background", RES_TYPE_STRING);
4786 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
4787 "pointerColor", "Foreground", RES_TYPE_STRING);
4788 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
4789 "cursorColor", "Foreground", RES_TYPE_STRING);
4790 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
4791 "borderColor", "BorderColor", RES_TYPE_STRING);
4793 /* Init faces before x_default_parameter is called for scroll-bar
4794 parameters because that function calls x_set_scroll_bar_width,
4795 which calls change_frame_size, which calls Fset_window_buffer,
4796 which runs hooks, which call Fvertical_motion. At the end, we
4797 end up in init_iterator with a null face cache, which should not
4798 happen. */
4799 init_frame_faces (f);
4801 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4803 window_prompting = x_figure_window_size (f, parms, 0);
4806 XSetWindowAttributes attrs;
4807 unsigned long mask;
4808 Atom type = FRAME_X_DISPLAY_INFO (f)->Xatom_net_window_type_tooltip;
4810 BLOCK_INPUT;
4811 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
4812 if (DoesSaveUnders (dpyinfo->screen))
4813 mask |= CWSaveUnder;
4815 /* Window managers look at the override-redirect flag to determine
4816 whether or net to give windows a decoration (Xlib spec, chapter
4817 3.2.8). */
4818 attrs.override_redirect = True;
4819 attrs.save_under = True;
4820 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4821 /* Arrange for getting MapNotify and UnmapNotify events. */
4822 attrs.event_mask = StructureNotifyMask;
4823 tip_window
4824 = FRAME_X_WINDOW (f)
4825 = XCreateWindow (FRAME_X_DISPLAY (f),
4826 FRAME_X_DISPLAY_INFO (f)->root_window,
4827 /* x, y, width, height */
4828 0, 0, 1, 1,
4829 /* Border. */
4830 f->border_width,
4831 CopyFromParent, InputOutput, CopyFromParent,
4832 mask, &attrs);
4833 XChangeProperty (FRAME_X_DISPLAY (f), tip_window,
4834 FRAME_X_DISPLAY_INFO (f)->Xatom_net_window_type,
4835 XA_ATOM, 32, PropModeReplace,
4836 (unsigned char *)&type, 1);
4837 UNBLOCK_INPUT;
4840 x_make_gc (f);
4842 x_default_parameter (f, parms, Qauto_raise, Qnil,
4843 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4844 x_default_parameter (f, parms, Qauto_lower, Qnil,
4845 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4846 x_default_parameter (f, parms, Qcursor_type, Qbox,
4847 "cursorType", "CursorType", RES_TYPE_SYMBOL);
4849 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4850 Change will not be effected unless different from the current
4851 FRAME_LINES (f). */
4852 width = FRAME_COLS (f);
4853 height = FRAME_LINES (f);
4854 SET_FRAME_COLS (f, 0);
4855 FRAME_LINES (f) = 0;
4856 change_frame_size (f, height, width, 1, 0, 0);
4858 /* Add `tooltip' frame parameter's default value. */
4859 if (NILP (Fframe_parameter (frame, Qtooltip)))
4860 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtooltip, Qt), Qnil));
4862 /* FIXME - can this be done in a similar way to normal frames?
4863 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
4865 /* Set the `display-type' frame parameter before setting up faces. */
4867 Lisp_Object disptype;
4869 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
4870 disptype = intern ("mono");
4871 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale
4872 || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
4873 disptype = intern ("grayscale");
4874 else
4875 disptype = intern ("color");
4877 if (NILP (Fframe_parameter (frame, Qdisplay_type)))
4878 Fmodify_frame_parameters (frame, Fcons (Fcons (Qdisplay_type, disptype),
4879 Qnil));
4882 /* Set up faces after all frame parameters are known. This call
4883 also merges in face attributes specified for new frames.
4885 Frame parameters may be changed if .Xdefaults contains
4886 specifications for the default font. For example, if there is an
4887 `Emacs.default.attributeBackground: pink', the `background-color'
4888 attribute of the frame get's set, which let's the internal border
4889 of the tooltip frame appear in pink. Prevent this. */
4891 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
4893 /* Set tip_frame here, so that */
4894 tip_frame = frame;
4895 call2 (Qface_set_after_frame_default, frame, Qnil);
4897 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
4898 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
4899 Qnil));
4902 f->no_split = 1;
4904 UNGCPRO;
4906 /* It is now ok to make the frame official even if we get an error
4907 below. And the frame needs to be on Vframe_list or making it
4908 visible won't work. */
4909 Vframe_list = Fcons (frame, Vframe_list);
4911 /* Now that the frame is official, it counts as a reference to
4912 its display. */
4913 FRAME_X_DISPLAY_INFO (f)->reference_count++;
4915 /* Setting attributes of faces of the tooltip frame from resources
4916 and similar will increment face_change_count, which leads to the
4917 clearing of all current matrices. Since this isn't necessary
4918 here, avoid it by resetting face_change_count to the value it
4919 had before we created the tip frame. */
4920 face_change_count = face_change_count_before;
4922 /* Discard the unwind_protect. */
4923 return unbind_to (count, frame);
4927 /* Compute where to display tip frame F. PARMS is the list of frame
4928 parameters for F. DX and DY are specified offsets from the current
4929 location of the mouse. WIDTH and HEIGHT are the width and height
4930 of the tooltip. Return coordinates relative to the root window of
4931 the display in *ROOT_X, and *ROOT_Y. */
4933 static void
4934 compute_tip_xy (struct frame *f, Lisp_Object parms, Lisp_Object dx, Lisp_Object dy, int width, int height, int *root_x, int *root_y)
4936 Lisp_Object left, top;
4937 int win_x, win_y;
4938 Window root, child;
4939 unsigned pmask;
4941 /* User-specified position? */
4942 left = Fcdr (Fassq (Qleft, parms));
4943 top = Fcdr (Fassq (Qtop, parms));
4945 /* Move the tooltip window where the mouse pointer is. Resize and
4946 show it. */
4947 if (!INTEGERP (left) || !INTEGERP (top))
4949 BLOCK_INPUT;
4950 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
4951 &root, &child, root_x, root_y, &win_x, &win_y, &pmask);
4952 UNBLOCK_INPUT;
4955 if (INTEGERP (top))
4956 *root_y = XINT (top);
4957 else if (*root_y + XINT (dy) <= 0)
4958 *root_y = 0; /* Can happen for negative dy */
4959 else if (*root_y + XINT (dy) + height
4960 <= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f)))
4961 /* It fits below the pointer */
4962 *root_y += XINT (dy);
4963 else if (height + XINT (dy) <= *root_y)
4964 /* It fits above the pointer. */
4965 *root_y -= height + XINT (dy);
4966 else
4967 /* Put it on the top. */
4968 *root_y = 0;
4970 if (INTEGERP (left))
4971 *root_x = XINT (left);
4972 else if (*root_x + XINT (dx) <= 0)
4973 *root_x = 0; /* Can happen for negative dx */
4974 else if (*root_x + XINT (dx) + width
4975 <= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f)))
4976 /* It fits to the right of the pointer. */
4977 *root_x += XINT (dx);
4978 else if (width + XINT (dx) <= *root_x)
4979 /* It fits to the left of the pointer. */
4980 *root_x -= width + XINT (dx);
4981 else
4982 /* Put it left-justified on the screen--it ought to fit that way. */
4983 *root_x = 0;
4987 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
4988 doc: /* Show STRING in a "tooltip" window on frame FRAME.
4989 A tooltip window is a small X window displaying a string.
4991 This is an internal function; Lisp code should call `tooltip-show'.
4993 FRAME nil or omitted means use the selected frame.
4995 PARMS is an optional list of frame parameters which can be used to
4996 change the tooltip's appearance.
4998 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
4999 means use the default timeout of 5 seconds.
5001 If the list of frame parameters PARAMS contains a `left' parameters,
5002 the tooltip is displayed at that x-position. Otherwise it is
5003 displayed at the mouse position, with offset DX added (default is 5 if
5004 DX isn't specified). Likewise for the y-position; if a `top' frame
5005 parameter is specified, it determines the y-position of the tooltip
5006 window, otherwise it is displayed at the mouse position, with offset
5007 DY added (default is -10).
5009 A tooltip's maximum size is specified by `x-max-tooltip-size'.
5010 Text larger than the specified size is clipped. */)
5011 (Lisp_Object string, Lisp_Object frame, Lisp_Object parms, Lisp_Object timeout, Lisp_Object dx, Lisp_Object dy)
5013 struct frame *f;
5014 struct window *w;
5015 int root_x, root_y;
5016 struct buffer *old_buffer;
5017 struct text_pos pos;
5018 int i, width, height;
5019 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5020 int old_windows_or_buffers_changed = windows_or_buffers_changed;
5021 int count = SPECPDL_INDEX ();
5023 specbind (Qinhibit_redisplay, Qt);
5025 GCPRO4 (string, parms, frame, timeout);
5027 CHECK_STRING (string);
5028 if (SCHARS (string) == 0)
5029 string = make_unibyte_string (" ", 1);
5031 f = check_x_frame (frame);
5032 if (NILP (timeout))
5033 timeout = make_number (5);
5034 else
5035 CHECK_NATNUM (timeout);
5037 if (NILP (dx))
5038 dx = make_number (5);
5039 else
5040 CHECK_NUMBER (dx);
5042 if (NILP (dy))
5043 dy = make_number (-10);
5044 else
5045 CHECK_NUMBER (dy);
5047 #ifdef USE_GTK
5048 if (x_gtk_use_system_tooltips)
5050 int ok;
5052 /* Hide a previous tip, if any. */
5053 Fx_hide_tip ();
5055 BLOCK_INPUT;
5056 if ((ok = xg_prepare_tooltip (f, string, &width, &height)) != 0)
5058 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
5059 xg_show_tooltip (f, root_x, root_y);
5060 /* This is used in Fx_hide_tip. */
5061 XSETFRAME (tip_frame, f);
5063 UNBLOCK_INPUT;
5064 if (ok) goto start_timer;
5066 #endif /* USE_GTK */
5068 if (NILP (last_show_tip_args))
5069 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
5071 if (!NILP (tip_frame))
5073 Lisp_Object last_string = AREF (last_show_tip_args, 0);
5074 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
5075 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
5077 if (EQ (frame, last_frame)
5078 && !NILP (Fequal (last_string, string))
5079 && !NILP (Fequal (last_parms, parms)))
5081 struct frame *f = XFRAME (tip_frame);
5083 /* Only DX and DY have changed. */
5084 if (!NILP (tip_timer))
5086 Lisp_Object timer = tip_timer;
5087 tip_timer = Qnil;
5088 call1 (Qcancel_timer, timer);
5091 BLOCK_INPUT;
5092 compute_tip_xy (f, parms, dx, dy, FRAME_PIXEL_WIDTH (f),
5093 FRAME_PIXEL_HEIGHT (f), &root_x, &root_y);
5094 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5095 root_x, root_y);
5096 UNBLOCK_INPUT;
5097 goto start_timer;
5101 /* Hide a previous tip, if any. */
5102 Fx_hide_tip ();
5104 ASET (last_show_tip_args, 0, string);
5105 ASET (last_show_tip_args, 1, frame);
5106 ASET (last_show_tip_args, 2, parms);
5108 /* Add default values to frame parameters. */
5109 if (NILP (Fassq (Qname, parms)))
5110 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
5111 if (NILP (Fassq (Qinternal_border_width, parms)))
5112 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
5113 if (NILP (Fassq (Qborder_width, parms)))
5114 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
5115 if (NILP (Fassq (Qborder_color, parms)))
5116 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
5117 if (NILP (Fassq (Qbackground_color, parms)))
5118 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
5119 parms);
5121 /* Create a frame for the tooltip, and record it in the global
5122 variable tip_frame. */
5123 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms, string);
5124 f = XFRAME (frame);
5126 /* Set up the frame's root window. */
5127 w = XWINDOW (FRAME_ROOT_WINDOW (f));
5128 w->left_col = w->top_line = make_number (0);
5130 if (CONSP (Vx_max_tooltip_size)
5131 && INTEGERP (XCAR (Vx_max_tooltip_size))
5132 && XINT (XCAR (Vx_max_tooltip_size)) > 0
5133 && INTEGERP (XCDR (Vx_max_tooltip_size))
5134 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
5136 w->total_cols = XCAR (Vx_max_tooltip_size);
5137 w->total_lines = XCDR (Vx_max_tooltip_size);
5139 else
5141 w->total_cols = make_number (80);
5142 w->total_lines = make_number (40);
5145 FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
5146 adjust_glyphs (f);
5147 w->pseudo_window_p = 1;
5149 /* Display the tooltip text in a temporary buffer. */
5150 old_buffer = current_buffer;
5151 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
5152 current_buffer->truncate_lines = Qnil;
5153 clear_glyph_matrix (w->desired_matrix);
5154 clear_glyph_matrix (w->current_matrix);
5155 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
5156 try_window (FRAME_ROOT_WINDOW (f), pos, TRY_WINDOW_IGNORE_FONTS_CHANGE);
5158 /* Compute width and height of the tooltip. */
5159 width = height = 0;
5160 for (i = 0; i < w->desired_matrix->nrows; ++i)
5162 struct glyph_row *row = &w->desired_matrix->rows[i];
5163 struct glyph *last;
5164 int row_width;
5166 /* Stop at the first empty row at the end. */
5167 if (!row->enabled_p || !row->displays_text_p)
5168 break;
5170 /* Let the row go over the full width of the frame. */
5171 row->full_width_p = 1;
5173 row_width = row->pixel_width;
5174 /* There's a glyph at the end of rows that is used to place
5175 the cursor there. Don't include the width of this glyph. */
5176 if (row->used[TEXT_AREA])
5178 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
5179 if (INTEGERP (last->object))
5180 row_width -= last->pixel_width;
5183 height += row->height;
5184 width = max (width, row_width);
5187 /* Add the frame's internal border to the width and height the X
5188 window should have. */
5189 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5190 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5192 /* Move the tooltip window where the mouse pointer is. Resize and
5193 show it. */
5194 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
5196 BLOCK_INPUT;
5197 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5198 root_x, root_y, width, height);
5199 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5200 UNBLOCK_INPUT;
5202 /* Draw into the window. */
5203 w->must_be_updated_p = 1;
5204 update_single_window (w, 1);
5206 /* Restore original current buffer. */
5207 set_buffer_internal_1 (old_buffer);
5208 windows_or_buffers_changed = old_windows_or_buffers_changed;
5210 start_timer:
5211 /* Let the tip disappear after timeout seconds. */
5212 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
5213 intern ("x-hide-tip"));
5215 UNGCPRO;
5216 return unbind_to (count, Qnil);
5220 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
5221 doc: /* Hide the current tooltip window, if there is any.
5222 Value is t if tooltip was open, nil otherwise. */)
5223 (void)
5225 int count;
5226 Lisp_Object deleted, frame, timer;
5227 struct gcpro gcpro1, gcpro2;
5228 struct frame *f;
5230 /* Return quickly if nothing to do. */
5231 if (NILP (tip_timer) && NILP (tip_frame))
5232 return Qnil;
5234 frame = tip_frame;
5235 timer = tip_timer;
5236 GCPRO2 (frame, timer);
5237 tip_frame = tip_timer = deleted = Qnil;
5239 count = SPECPDL_INDEX ();
5240 specbind (Qinhibit_redisplay, Qt);
5241 specbind (Qinhibit_quit, Qt);
5243 if (!NILP (timer))
5244 call1 (Qcancel_timer, timer);
5246 #ifdef USE_GTK
5247 /* When using system tooltip, tip_frame is the Emacs frame on which
5248 the tip is shown. */
5249 f = XFRAME (frame);
5250 if (FRAME_LIVE_P (f) && xg_hide_tooltip (f))
5251 frame = Qnil;
5252 #endif
5254 if (FRAMEP (frame))
5256 delete_frame (frame, Qnil);
5257 deleted = Qt;
5259 #ifdef USE_LUCID
5260 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5261 redisplay procedure is not called when a tip frame over menu
5262 items is unmapped. Redisplay the menu manually... */
5264 Widget w;
5265 f = SELECTED_FRAME ();
5266 w = f->output_data.x->menubar_widget;
5268 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
5269 && w != NULL)
5271 BLOCK_INPUT;
5272 xlwmenu_redisplay (w);
5273 UNBLOCK_INPUT;
5276 #endif /* USE_LUCID */
5279 UNGCPRO;
5280 return unbind_to (count, deleted);
5285 /***********************************************************************
5286 File selection dialog
5287 ***********************************************************************/
5289 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog,
5290 Sx_uses_old_gtk_dialog,
5291 0, 0, 0,
5292 doc: /* Return t if the old Gtk+ file selection dialog is used. */)
5293 (void)
5295 #ifdef USE_GTK
5296 if (use_dialog_box
5297 && use_file_dialog
5298 && have_menus_p ()
5299 && xg_uses_old_file_dialog ())
5300 return Qt;
5301 #endif
5302 return Qnil;
5306 #ifdef USE_MOTIF
5307 /* Callback for "OK" and "Cancel" on file selection dialog. */
5309 static void
5310 file_dialog_cb (Widget widget, XtPointer client_data, XtPointer call_data)
5312 int *result = (int *) client_data;
5313 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
5314 *result = cb->reason;
5318 /* Callback for unmapping a file selection dialog. This is used to
5319 capture the case where a dialog is closed via a window manager's
5320 closer button, for example. Using a XmNdestroyCallback didn't work
5321 in this case. */
5323 static void
5324 file_dialog_unmap_cb (Widget widget, XtPointer client_data, XtPointer call_data)
5326 int *result = (int *) client_data;
5327 *result = XmCR_CANCEL;
5330 static Lisp_Object
5331 clean_up_file_dialog (Lisp_Object arg)
5333 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
5334 Widget dialog = (Widget) p->pointer;
5336 /* Clean up. */
5337 BLOCK_INPUT;
5338 XtUnmanageChild (dialog);
5339 XtDestroyWidget (dialog);
5340 x_menu_set_in_use (0);
5341 UNBLOCK_INPUT;
5343 return Qnil;
5347 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5348 doc: /* Read file name, prompting with PROMPT in directory DIR.
5349 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5350 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5351 or directory must exist.
5353 This function is only defined on MS Windows, and X Windows with the
5354 Motif or Gtk toolkits. With the Motif toolkit, ONLY-DIR-P is ignored.
5355 Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories. */)
5356 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object only_dir_p)
5358 int result;
5359 struct frame *f = SELECTED_FRAME ();
5360 Lisp_Object file = Qnil;
5361 Lisp_Object decoded_file;
5362 Widget dialog, text, help;
5363 Arg al[10];
5364 int ac = 0;
5365 XmString dir_xmstring, pattern_xmstring;
5366 int count = SPECPDL_INDEX ();
5367 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
5369 check_x ();
5371 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5373 if (popup_activated ())
5374 error ("Trying to use a menu from within a menu-entry");
5376 CHECK_STRING (prompt);
5377 CHECK_STRING (dir);
5379 /* Prevent redisplay. */
5380 specbind (Qinhibit_redisplay, Qt);
5382 BLOCK_INPUT;
5384 /* Create the dialog with PROMPT as title, using DIR as initial
5385 directory and using "*" as pattern. */
5386 dir = Fexpand_file_name (dir, Qnil);
5387 dir_xmstring = XmStringCreateLocalized (SDATA (dir));
5388 pattern_xmstring = XmStringCreateLocalized ("*");
5390 XtSetArg (al[ac], XmNtitle, SDATA (prompt)); ++ac;
5391 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
5392 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
5393 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
5394 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
5395 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
5396 "fsb", al, ac);
5397 XmStringFree (dir_xmstring);
5398 XmStringFree (pattern_xmstring);
5400 /* Add callbacks for OK and Cancel. */
5401 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
5402 (XtPointer) &result);
5403 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
5404 (XtPointer) &result);
5405 XtAddCallback (dialog, XmNunmapCallback, file_dialog_unmap_cb,
5406 (XtPointer) &result);
5408 /* Remove the help button since we can't display help. */
5409 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
5410 XtUnmanageChild (help);
5412 /* Mark OK button as default. */
5413 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
5414 XmNshowAsDefault, True, NULL);
5416 /* If MUSTMATCH is non-nil, disable the file entry field of the
5417 dialog, so that the user must select a file from the files list
5418 box. We can't remove it because we wouldn't have a way to get at
5419 the result file name, then. */
5420 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5421 if (!NILP (mustmatch))
5423 Widget label;
5424 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
5425 XtSetSensitive (text, False);
5426 XtSetSensitive (label, False);
5429 /* Manage the dialog, so that list boxes get filled. */
5430 XtManageChild (dialog);
5432 if (STRINGP (default_filename))
5434 XmString default_xmstring;
5435 Widget wtext = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5436 Widget list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
5438 XmTextPosition last_pos = XmTextFieldGetLastPosition (wtext);
5439 XmTextFieldReplace (wtext, 0, last_pos,
5440 (SDATA (Ffile_name_nondirectory (default_filename))));
5442 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5443 must include the path for this to work. */
5445 default_xmstring = XmStringCreateLocalized (SDATA (default_filename));
5447 if (XmListItemExists (list, default_xmstring))
5449 int item_pos = XmListItemPos (list, default_xmstring);
5450 /* Select the item and scroll it into view. */
5451 XmListSelectPos (list, item_pos, True);
5452 XmListSetPos (list, item_pos);
5455 XmStringFree (default_xmstring);
5458 record_unwind_protect (clean_up_file_dialog, make_save_value (dialog, 0));
5460 /* Process events until the user presses Cancel or OK. */
5461 x_menu_set_in_use (1);
5462 result = 0;
5463 while (result == 0)
5465 XEvent event;
5466 x_menu_wait_for_event (0);
5467 XtAppNextEvent (Xt_app_con, &event);
5468 if (event.type == KeyPress
5469 && FRAME_X_DISPLAY (f) == event.xkey.display)
5471 KeySym keysym = XLookupKeysym (&event.xkey, 0);
5473 /* Pop down on C-g. */
5474 if (keysym == XK_g && (event.xkey.state & ControlMask) != 0)
5475 XtUnmanageChild (dialog);
5478 (void) x_dispatch_event (&event, FRAME_X_DISPLAY (f));
5481 /* Get the result. */
5482 if (result == XmCR_OK)
5484 XmString text;
5485 String data;
5487 XtVaGetValues (dialog, XmNtextString, &text, NULL);
5488 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
5489 XmStringFree (text);
5490 file = build_string (data);
5491 XtFree (data);
5493 else
5494 file = Qnil;
5496 UNBLOCK_INPUT;
5497 UNGCPRO;
5499 /* Make "Cancel" equivalent to C-g. */
5500 if (NILP (file))
5501 Fsignal (Qquit, Qnil);
5503 decoded_file = DECODE_FILE (file);
5505 return unbind_to (count, decoded_file);
5508 #endif /* USE_MOTIF */
5510 #ifdef USE_GTK
5512 static Lisp_Object
5513 clean_up_dialog (Lisp_Object arg)
5515 x_menu_set_in_use (0);
5517 return Qnil;
5520 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5521 doc: /* Read file name, prompting with PROMPT in directory DIR.
5522 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5523 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5524 or directory must exist.
5526 This function is only defined on MS Windows, and X Windows with the
5527 Motif or Gtk toolkits. With the Motif toolkit, ONLY-DIR-P is ignored.
5528 Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories. */)
5529 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object only_dir_p)
5531 FRAME_PTR f = SELECTED_FRAME ();
5532 char *fn;
5533 Lisp_Object file = Qnil;
5534 Lisp_Object decoded_file;
5535 int count = SPECPDL_INDEX ();
5536 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
5537 char *cdef_file;
5539 check_x ();
5541 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5543 if (popup_activated ())
5544 error ("Trying to use a menu from within a menu-entry");
5546 CHECK_STRING (prompt);
5547 CHECK_STRING (dir);
5549 /* Prevent redisplay. */
5550 specbind (Qinhibit_redisplay, Qt);
5551 record_unwind_protect (clean_up_dialog, Qnil);
5553 BLOCK_INPUT;
5555 if (STRINGP (default_filename))
5556 cdef_file = SDATA (default_filename);
5557 else
5558 cdef_file = SDATA (dir);
5560 fn = xg_get_file_name (f, SDATA (prompt), cdef_file,
5561 ! NILP (mustmatch),
5562 ! NILP (only_dir_p));
5564 if (fn)
5566 file = build_string (fn);
5567 xfree (fn);
5570 UNBLOCK_INPUT;
5571 UNGCPRO;
5573 /* Make "Cancel" equivalent to C-g. */
5574 if (NILP (file))
5575 Fsignal (Qquit, Qnil);
5577 decoded_file = DECODE_FILE (file);
5579 return unbind_to (count, decoded_file);
5583 #ifdef HAVE_FREETYPE
5585 DEFUN ("x-select-font", Fx_select_font, Sx_select_font, 0, 2, 0,
5586 doc: /* Read a font name using a GTK font selection dialog.
5587 Return a GTK-style font string corresponding to the selection.
5589 If FRAME is omitted or nil, it defaults to the selected frame. */)
5590 (Lisp_Object frame, Lisp_Object ignored)
5592 FRAME_PTR f = check_x_frame (frame);
5593 char *name;
5594 Lisp_Object font;
5595 Lisp_Object font_param;
5596 char *default_name = NULL;
5597 struct gcpro gcpro1, gcpro2;
5598 int count = SPECPDL_INDEX ();
5600 check_x ();
5602 if (popup_activated ())
5603 error ("Trying to use a menu from within a menu-entry");
5605 /* Prevent redisplay. */
5606 specbind (Qinhibit_redisplay, Qt);
5607 record_unwind_protect (clean_up_dialog, Qnil);
5609 BLOCK_INPUT;
5611 GCPRO2(font_param, font);
5613 XSETFONT (font, FRAME_FONT (f));
5614 font_param = Ffont_get (font, intern (":name"));
5615 if (STRINGP (font_param))
5616 default_name = xstrdup (SDATA (font_param));
5617 else
5619 font_param = Fframe_parameter (frame, Qfont_param);
5620 if (STRINGP (font_param))
5621 default_name = xstrdup (SDATA (font_param));
5624 if (default_name == NULL && x_last_font_name != NULL)
5625 default_name = xstrdup (x_last_font_name);
5627 /* Convert fontconfig names to Gtk names, i.e. remove - before number */
5628 if (default_name)
5630 char *p = strrchr (default_name, '-');
5631 if (p)
5633 char *ep = p+1;
5634 while (isdigit (*ep))
5635 ++ep;
5636 if (*ep == '\0') *p = ' ';
5640 name = xg_get_font_name (f, default_name);
5641 xfree (default_name);
5643 if (name)
5645 font = build_string (name);
5646 g_free (x_last_font_name);
5647 x_last_font_name = name;
5650 UNBLOCK_INPUT;
5652 if (NILP (font))
5653 Fsignal (Qquit, Qnil);
5655 return unbind_to (count, font);
5657 #endif /* HAVE_FREETYPE */
5659 #endif /* USE_GTK */
5662 /***********************************************************************
5663 Keyboard
5664 ***********************************************************************/
5666 #ifdef HAVE_XKBGETKEYBOARD
5667 #include <X11/XKBlib.h>
5668 #include <X11/keysym.h>
5669 #endif
5671 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p,
5672 Sx_backspace_delete_keys_p, 0, 1, 0,
5673 doc: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5674 FRAME nil means use the selected frame.
5675 Value is t if we know that both keys are present, and are mapped to the
5676 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5677 present and mapped to the usual X keysyms. */)
5678 (Lisp_Object frame)
5680 #ifdef HAVE_XKBGETKEYBOARD
5681 XkbDescPtr kb;
5682 struct frame *f = check_x_frame (frame);
5683 Display *dpy = FRAME_X_DISPLAY (f);
5684 Lisp_Object have_keys;
5685 int major, minor, op, event, error;
5687 BLOCK_INPUT;
5689 /* Check library version in case we're dynamically linked. */
5690 major = XkbMajorVersion;
5691 minor = XkbMinorVersion;
5692 if (!XkbLibraryVersion (&major, &minor))
5694 UNBLOCK_INPUT;
5695 return Qlambda;
5698 /* Check that the server supports XKB. */
5699 major = XkbMajorVersion;
5700 minor = XkbMinorVersion;
5701 if (!XkbQueryExtension (dpy, &op, &event, &error, &major, &minor))
5703 UNBLOCK_INPUT;
5704 return Qlambda;
5707 /* In this code we check that the keyboard has physical keys with names
5708 that start with BKSP (Backspace) and DELE (Delete), and that they
5709 generate keysym XK_BackSpace and XK_Delete respectively.
5710 This function is used to test if normal-erase-is-backspace should be
5711 turned on.
5712 An alternative approach would be to just check if XK_BackSpace and
5713 XK_Delete are mapped to any key. But if any of those are mapped to
5714 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5715 user doesn't know about it, it is better to return false here.
5716 It is more obvious to the user what to do if she/he has two keys
5717 clearly marked with names/symbols and one key does something not
5718 expected (i.e. she/he then tries the other).
5719 The cases where Backspace/Delete is mapped to some other key combination
5720 are rare, and in those cases, normal-erase-is-backspace can be turned on
5721 manually. */
5723 have_keys = Qnil;
5724 kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
5725 if (kb)
5727 int delete_keycode = 0, backspace_keycode = 0, i;
5729 if (XkbGetNames (dpy, XkbAllNamesMask, kb) == Success)
5731 for (i = kb->min_key_code;
5732 (i < kb->max_key_code
5733 && (delete_keycode == 0 || backspace_keycode == 0));
5734 ++i)
5736 /* The XKB symbolic key names can be seen most easily in
5737 the PS file generated by `xkbprint -label name
5738 $DISPLAY'. */
5739 if (memcmp ("DELE", kb->names->keys[i].name, 4) == 0)
5740 delete_keycode = i;
5741 else if (memcmp ("BKSP", kb->names->keys[i].name, 4) == 0)
5742 backspace_keycode = i;
5745 XkbFreeNames (kb, 0, True);
5748 XkbFreeClientMap (kb, 0, True);
5750 if (delete_keycode
5751 && backspace_keycode
5752 && XKeysymToKeycode (dpy, XK_Delete) == delete_keycode
5753 && XKeysymToKeycode (dpy, XK_BackSpace) == backspace_keycode)
5754 have_keys = Qt;
5756 UNBLOCK_INPUT;
5757 return have_keys;
5758 #else /* not HAVE_XKBGETKEYBOARD */
5759 return Qlambda;
5760 #endif /* not HAVE_XKBGETKEYBOARD */
5765 /***********************************************************************
5766 Initialization
5767 ***********************************************************************/
5769 /* Keep this list in the same order as frame_parms in frame.c.
5770 Use 0 for unsupported frame parameters. */
5772 frame_parm_handler x_frame_parm_handlers[] =
5774 x_set_autoraise,
5775 x_set_autolower,
5776 x_set_background_color,
5777 x_set_border_color,
5778 x_set_border_width,
5779 x_set_cursor_color,
5780 x_set_cursor_type,
5781 x_set_font,
5782 x_set_foreground_color,
5783 x_set_icon_name,
5784 x_set_icon_type,
5785 x_set_internal_border_width,
5786 x_set_menu_bar_lines,
5787 x_set_mouse_color,
5788 x_explicitly_set_name,
5789 x_set_scroll_bar_width,
5790 x_set_title,
5791 x_set_unsplittable,
5792 x_set_vertical_scroll_bars,
5793 x_set_visibility,
5794 x_set_tool_bar_lines,
5795 x_set_scroll_bar_foreground,
5796 x_set_scroll_bar_background,
5797 x_set_screen_gamma,
5798 x_set_line_spacing,
5799 x_set_fringe_width,
5800 x_set_fringe_width,
5801 x_set_wait_for_wm,
5802 x_set_fullscreen,
5803 x_set_font_backend,
5804 x_set_alpha,
5805 x_set_sticky,
5806 x_set_tool_bar_position,
5809 void
5810 syms_of_xfns (void)
5812 /* This is zero if not using X windows. */
5813 x_in_use = 0;
5815 /* The section below is built by the lisp expression at the top of the file,
5816 just above where these variables are declared. */
5817 /*&&& init symbols here &&&*/
5818 Qnone = intern_c_string ("none");
5819 staticpro (&Qnone);
5820 Qsuppress_icon = intern_c_string ("suppress-icon");
5821 staticpro (&Qsuppress_icon);
5822 Qundefined_color = intern_c_string ("undefined-color");
5823 staticpro (&Qundefined_color);
5824 Qcompound_text = intern_c_string ("compound-text");
5825 staticpro (&Qcompound_text);
5826 Qcancel_timer = intern_c_string ("cancel-timer");
5827 staticpro (&Qcancel_timer);
5828 Qfont_param = intern_c_string ("font-parameter");
5829 staticpro (&Qfont_param);
5830 /* This is the end of symbol initialization. */
5832 /* Text property `display' should be nonsticky by default. */
5833 Vtext_property_default_nonsticky
5834 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
5837 Fput (Qundefined_color, Qerror_conditions,
5838 pure_cons (Qundefined_color, pure_cons (Qerror, Qnil)));
5839 Fput (Qundefined_color, Qerror_message,
5840 make_pure_c_string ("Undefined color"));
5842 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
5843 doc: /* The shape of the pointer when over text.
5844 Changing the value does not affect existing frames
5845 unless you set the mouse color. */);
5846 Vx_pointer_shape = Qnil;
5848 #if 0 /* This doesn't really do anything. */
5849 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
5850 doc: /* The shape of the pointer when not over text.
5851 This variable takes effect when you create a new frame
5852 or when you set the mouse color. */);
5853 #endif
5854 Vx_nontext_pointer_shape = Qnil;
5856 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
5857 doc: /* The shape of the pointer when Emacs is busy.
5858 This variable takes effect when you create a new frame
5859 or when you set the mouse color. */);
5860 Vx_hourglass_pointer_shape = Qnil;
5862 #if 0 /* This doesn't really do anything. */
5863 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
5864 doc: /* The shape of the pointer when over the mode line.
5865 This variable takes effect when you create a new frame
5866 or when you set the mouse color. */);
5867 #endif
5868 Vx_mode_pointer_shape = Qnil;
5870 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5871 &Vx_sensitive_text_pointer_shape,
5872 doc: /* The shape of the pointer when over mouse-sensitive text.
5873 This variable takes effect when you create a new frame
5874 or when you set the mouse color. */);
5875 Vx_sensitive_text_pointer_shape = Qnil;
5877 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5878 &Vx_window_horizontal_drag_shape,
5879 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
5880 This variable takes effect when you create a new frame
5881 or when you set the mouse color. */);
5882 Vx_window_horizontal_drag_shape = Qnil;
5884 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
5885 doc: /* A string indicating the foreground color of the cursor box. */);
5886 Vx_cursor_fore_pixel = Qnil;
5888 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
5889 doc: /* Maximum size for tooltips.
5890 Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
5891 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
5893 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
5894 doc: /* Non-nil if no X window manager is in use.
5895 Emacs doesn't try to figure this out; this is always nil
5896 unless you set it to something else. */);
5897 /* We don't have any way to find this out, so set it to nil
5898 and maybe the user would like to set it to t. */
5899 Vx_no_window_manager = Qnil;
5901 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5902 &Vx_pixel_size_width_font_regexp,
5903 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5905 Since Emacs gets width of a font matching with this regexp from
5906 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5907 such a font. This is especially effective for such large fonts as
5908 Chinese, Japanese, and Korean. */);
5909 Vx_pixel_size_width_font_regexp = Qnil;
5911 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5912 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog,
5913 doc: /* *Non-nil means prompt with the old GTK file selection dialog.
5914 If nil or if the file selection dialog is not available, the new GTK file
5915 chooser is used instead. To turn off all file dialogs set the
5916 variable `use-file-dialog'. */);
5917 x_gtk_use_old_file_dialog = 0;
5919 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files,
5920 doc: /* *If non-nil, the GTK file chooser will by default show hidden files.
5921 Note that this is just the default, there is a toggle button on the file
5922 chooser to show or not show hidden files on a case by case basis. */);
5923 x_gtk_show_hidden_files = 0;
5925 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text,
5926 doc: /* *If non-nil, the GTK file chooser will show additional help text.
5927 If more space for files in the file chooser dialog is wanted, set this to nil
5928 to turn the additional text off. */);
5929 x_gtk_file_dialog_help_text = 1;
5931 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar,
5932 doc: /* *If non-nil, a detached tool bar is shown in full.
5933 The default is to just show an arrow and pressing on that arrow shows
5934 the tool bar buttons. */);
5935 x_gtk_whole_detached_tool_bar = 0;
5937 DEFVAR_BOOL ("x-gtk-use-system-tooltips", &x_gtk_use_system_tooltips,
5938 doc: /* *If non-nil with a Gtk+ built Emacs, the Gtk+ toolip is used.
5939 Otherwise use Emacs own tooltip implementation.
5940 When using Gtk+ tooltips, the tooltip face is not used. */);
5941 x_gtk_use_system_tooltips = 1;
5943 Fprovide (intern_c_string ("x"), Qnil);
5945 #ifdef USE_X_TOOLKIT
5946 Fprovide (intern_c_string ("x-toolkit"), Qnil);
5947 #ifdef USE_MOTIF
5948 Fprovide (intern_c_string ("motif"), Qnil);
5950 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string,
5951 doc: /* Version info for LessTif/Motif. */);
5952 Vmotif_version_string = build_string (XmVERSION_STRING);
5953 #endif /* USE_MOTIF */
5954 #endif /* USE_X_TOOLKIT */
5956 #ifdef USE_GTK
5957 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
5958 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
5959 But for a user it is a toolkit for X, and indeed, configure
5960 accepts --with-x-toolkit=gtk. */
5961 Fprovide (intern_c_string ("x-toolkit"), Qnil);
5962 Fprovide (intern_c_string ("gtk"), Qnil);
5963 Fprovide (intern_c_string ("move-toolbar"), Qnil);
5965 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string,
5966 doc: /* Version info for GTK+. */);
5968 char gtk_version[40];
5969 g_snprintf (gtk_version, sizeof (gtk_version), "%u.%u.%u",
5970 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
5971 Vgtk_version_string = make_pure_string (gtk_version, strlen (gtk_version), strlen (gtk_version), 0);
5973 #endif /* USE_GTK */
5975 /* X window properties. */
5976 defsubr (&Sx_change_window_property);
5977 defsubr (&Sx_delete_window_property);
5978 defsubr (&Sx_window_property);
5980 defsubr (&Sxw_display_color_p);
5981 defsubr (&Sx_display_grayscale_p);
5982 defsubr (&Sxw_color_defined_p);
5983 defsubr (&Sxw_color_values);
5984 defsubr (&Sx_server_max_request_size);
5985 defsubr (&Sx_server_vendor);
5986 defsubr (&Sx_server_version);
5987 defsubr (&Sx_display_pixel_width);
5988 defsubr (&Sx_display_pixel_height);
5989 defsubr (&Sx_display_mm_width);
5990 defsubr (&Sx_display_mm_height);
5991 defsubr (&Sx_display_screens);
5992 defsubr (&Sx_display_planes);
5993 defsubr (&Sx_display_color_cells);
5994 defsubr (&Sx_display_visual_class);
5995 defsubr (&Sx_display_backing_store);
5996 defsubr (&Sx_display_save_under);
5997 defsubr (&Sx_wm_set_size_hint);
5998 defsubr (&Sx_create_frame);
5999 defsubr (&Sx_open_connection);
6000 defsubr (&Sx_close_connection);
6001 defsubr (&Sx_display_list);
6002 defsubr (&Sx_synchronize);
6003 defsubr (&Sx_focus_frame);
6004 defsubr (&Sx_backspace_delete_keys_p);
6006 /* Setting callback functions for fontset handler. */
6007 check_window_system_func = check_x;
6009 defsubr (&Sx_show_tip);
6010 defsubr (&Sx_hide_tip);
6011 tip_timer = Qnil;
6012 staticpro (&tip_timer);
6013 tip_frame = Qnil;
6014 staticpro (&tip_frame);
6016 last_show_tip_args = Qnil;
6017 staticpro (&last_show_tip_args);
6019 defsubr (&Sx_uses_old_gtk_dialog);
6020 #if defined (USE_MOTIF) || defined (USE_GTK)
6021 defsubr (&Sx_file_dialog);
6022 #endif
6024 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
6025 defsubr (&Sx_select_font);
6026 x_last_font_name = NULL;
6027 #endif
6030 #endif /* HAVE_X_WINDOWS */