(defmath): Add `doc-string' decl. Add docstring.
[emacs.git] / src / xfns.c
blobd32442fe7fa785c671df6110725be44b4c5bc2d6
1 /* Functions for the X window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <stdio.h>
23 #include <math.h>
25 #ifdef HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
29 /* This makes the fields of a Display accessible, in Xlib header files. */
31 #define XLIB_ILLEGAL_ACCESS
33 #include "lisp.h"
34 #include "xterm.h"
35 #include "frame.h"
36 #include "window.h"
37 #include "buffer.h"
38 #include "intervals.h"
39 #include "dispextern.h"
40 #include "keyboard.h"
41 #include "blockinput.h"
42 #include <epaths.h>
43 #include "character.h"
44 #include "charset.h"
45 #include "coding.h"
46 #include "fontset.h"
47 #include "systime.h"
48 #include "termhooks.h"
49 #include "atimer.h"
50 #include "termchar.h"
51 #include "font.h"
53 #ifdef HAVE_X_WINDOWS
55 #include <ctype.h>
56 #include <sys/types.h>
57 #include <sys/stat.h>
59 #ifndef VMS
60 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
61 #include "bitmaps/gray.xbm"
62 #else
63 #include <X11/bitmaps/gray>
64 #endif
65 #else
66 #include "[.bitmaps]gray.xbm"
67 #endif
69 #ifdef USE_GTK
70 #include "gtkutil.h"
71 #endif
73 #ifdef USE_X_TOOLKIT
74 #include <X11/Shell.h>
76 #ifndef USE_MOTIF
77 #ifdef HAVE_XAW3D
78 #include <X11/Xaw3d/Paned.h>
79 #include <X11/Xaw3d/Label.h>
80 #else /* !HAVE_XAW3D */
81 #include <X11/Xaw/Paned.h>
82 #include <X11/Xaw/Label.h>
83 #endif /* HAVE_XAW3D */
84 #endif /* USE_MOTIF */
86 #ifdef USG
87 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
88 #include <X11/Xos.h>
89 #define USG
90 #else
91 #include <X11/Xos.h>
92 #endif
94 #include "widget.h"
96 #include "../lwlib/lwlib.h"
98 #ifdef USE_MOTIF
99 #include <Xm/Xm.h>
100 #include <Xm/DialogS.h>
101 #include <Xm/FileSB.h>
102 #endif
104 /* Do the EDITRES protocol if running X11R5
105 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
107 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
108 #define HACK_EDITRES
109 extern void _XEditResCheckMessages ();
110 #endif /* R5 + Athena */
112 /* Unique id counter for widgets created by the Lucid Widget Library. */
114 extern LWLIB_ID widget_id_tick;
116 #ifdef USE_LUCID
117 /* This is part of a kludge--see lwlib/xlwmenu.c. */
118 extern XFontStruct *xlwmenu_default_font;
119 #endif
121 extern void free_frame_menubar ();
122 extern double atof ();
124 #ifdef USE_MOTIF
126 /* LessTif/Motif version info. */
128 static Lisp_Object Vmotif_version_string;
130 #endif /* USE_MOTIF */
132 #endif /* USE_X_TOOLKIT */
134 #ifdef USE_GTK
136 /* GTK+ version info */
138 static Lisp_Object Vgtk_version_string;
140 #endif /* USE_GTK */
142 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
144 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
145 it, and including `bitmaps/gray' more than once is a problem when
146 config.h defines `static' as an empty replacement string. */
148 int gray_bitmap_width = gray_width;
149 int gray_bitmap_height = gray_height;
150 char *gray_bitmap_bits = gray_bits;
152 /* Non-zero means we're allowed to display an hourglass cursor. */
154 int display_hourglass_p;
156 /* Non-zero means prompt with the old GTK file selection dialog. */
158 int x_gtk_use_old_file_dialog;
160 /* If non-zero, by default show hidden files in the GTK file chooser. */
162 int x_gtk_show_hidden_files;
164 /* If non-zero, don't show additional help text in the GTK file chooser. */
166 int x_gtk_file_dialog_help_text;
168 /* If non-zero, don't collapse to tool bar when it is detached. */
170 int x_gtk_whole_detached_tool_bar;
172 /* The background and shape of the mouse pointer, and shape when not
173 over text or in the modeline. */
175 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
176 Lisp_Object Vx_hourglass_pointer_shape;
178 /* The shape when over mouse-sensitive text. */
180 Lisp_Object Vx_sensitive_text_pointer_shape;
182 /* If non-nil, the pointer shape to indicate that windows can be
183 dragged horizontally. */
185 Lisp_Object Vx_window_horizontal_drag_shape;
187 /* Color of chars displayed in cursor box. */
189 Lisp_Object Vx_cursor_fore_pixel;
191 /* Nonzero if using X. */
193 static int x_in_use;
195 /* Non nil if no window manager is in use. */
197 Lisp_Object Vx_no_window_manager;
199 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
201 Lisp_Object Vx_pixel_size_width_font_regexp;
203 Lisp_Object Qnone;
204 Lisp_Object Qsuppress_icon;
205 Lisp_Object Qundefined_color;
206 Lisp_Object Qcompound_text, Qcancel_timer;
207 static Lisp_Object Qfont_param;
209 /* In dispnew.c */
211 extern Lisp_Object Vwindow_system_version;
213 /* The below are defined in frame.c. */
215 #if GLYPH_DEBUG
216 int image_cache_refcount, dpyinfo_refcount;
217 #endif
221 /* Error if we are not connected to X. */
223 void
224 check_x ()
226 if (! x_in_use)
227 error ("X windows are not in use or not initialized");
230 /* Nonzero if we can use mouse menus.
231 You should not call this unless HAVE_MENUS is defined. */
234 have_menus_p ()
236 return x_in_use;
239 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
240 and checking validity for X. */
242 FRAME_PTR
243 check_x_frame (frame)
244 Lisp_Object frame;
246 FRAME_PTR f;
248 if (NILP (frame))
249 frame = selected_frame;
250 CHECK_LIVE_FRAME (frame);
251 f = XFRAME (frame);
252 if (! FRAME_X_P (f))
253 error ("Non-X frame used");
254 return f;
257 /* Let the user specify an X display with a Lisp object.
258 OBJECT may be nil, a frame or a terminal id.
259 nil stands for the selected frame--or, if that is not an X frame,
260 the first X display on the list. */
262 struct x_display_info *
263 check_x_display_info (object)
264 Lisp_Object object;
266 struct x_display_info *dpyinfo = NULL;
268 if (NILP (object))
270 struct frame *sf = XFRAME (selected_frame);
272 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
273 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
274 else if (x_display_list != 0)
275 dpyinfo = x_display_list;
276 else
277 error ("X windows are not in use or not initialized");
279 else if (INTEGERP (object))
281 struct terminal *t = get_terminal (object, 1);
283 if (t->type != output_x_window)
284 error ("Terminal %d is not an X display", XINT (object));
286 dpyinfo = t->display_info.x;
288 else if (STRINGP (object))
289 dpyinfo = x_display_info_for_name (object);
290 else
292 FRAME_PTR f = check_x_frame (object);
293 dpyinfo = FRAME_X_DISPLAY_INFO (f);
296 return dpyinfo;
300 /* Return the Emacs frame-object corresponding to an X window.
301 It could be the frame's main window or an icon window. */
303 /* This function can be called during GC, so use GC_xxx type test macros. */
305 struct frame *
306 x_window_to_frame (dpyinfo, wdesc)
307 struct x_display_info *dpyinfo;
308 int wdesc;
310 Lisp_Object tail, frame;
311 struct frame *f;
313 if (wdesc == None) return 0;
315 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
317 frame = XCAR (tail);
318 if (!FRAMEP (frame))
319 continue;
320 f = XFRAME (frame);
321 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
322 continue;
323 if (f->output_data.x->hourglass_window == wdesc)
324 return f;
325 #ifdef USE_X_TOOLKIT
326 if ((f->output_data.x->edit_widget
327 && XtWindow (f->output_data.x->edit_widget) == wdesc)
328 /* A tooltip frame? */
329 || (!f->output_data.x->edit_widget
330 && FRAME_X_WINDOW (f) == wdesc)
331 || f->output_data.x->icon_desc == wdesc)
332 return f;
333 #else /* not USE_X_TOOLKIT */
334 #ifdef USE_GTK
335 if (f->output_data.x->edit_widget)
337 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
338 struct x_output *x = f->output_data.x;
339 if (gwdesc != 0 && gwdesc == x->edit_widget)
340 return f;
342 #endif /* USE_GTK */
343 if (FRAME_X_WINDOW (f) == wdesc
344 || f->output_data.x->icon_desc == wdesc)
345 return f;
346 #endif /* not USE_X_TOOLKIT */
348 return 0;
351 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
352 /* Like x_window_to_frame but also compares the window with the widget's
353 windows. */
355 struct frame *
356 x_any_window_to_frame (dpyinfo, wdesc)
357 struct x_display_info *dpyinfo;
358 int wdesc;
360 Lisp_Object tail, frame;
361 struct frame *f, *found;
362 struct x_output *x;
364 if (wdesc == None) return NULL;
366 found = NULL;
367 for (tail = Vframe_list; CONSP (tail) && !found; tail = XCDR (tail))
369 frame = XCAR (tail);
370 if (!FRAMEP (frame))
371 continue;
373 f = XFRAME (frame);
374 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
376 /* This frame matches if the window is any of its widgets. */
377 x = f->output_data.x;
378 if (x->hourglass_window == wdesc)
379 found = f;
380 else if (x->widget)
382 #ifdef USE_GTK
383 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
384 if (gwdesc != 0
385 && (gwdesc == x->widget
386 || gwdesc == x->edit_widget
387 || gwdesc == x->vbox_widget
388 || gwdesc == x->menubar_widget))
389 found = f;
390 #else
391 if (wdesc == XtWindow (x->widget)
392 || wdesc == XtWindow (x->column_widget)
393 || wdesc == XtWindow (x->edit_widget))
394 found = f;
395 /* Match if the window is this frame's menubar. */
396 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
397 found = f;
398 #endif
400 else if (FRAME_X_WINDOW (f) == wdesc)
401 /* A tooltip frame. */
402 found = f;
406 return found;
409 /* Likewise, but exclude the menu bar widget. */
411 struct frame *
412 x_non_menubar_window_to_frame (dpyinfo, wdesc)
413 struct x_display_info *dpyinfo;
414 int wdesc;
416 Lisp_Object tail, frame;
417 struct frame *f;
418 struct x_output *x;
420 if (wdesc == None) return 0;
422 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
424 frame = XCAR (tail);
425 if (!FRAMEP (frame))
426 continue;
427 f = XFRAME (frame);
428 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
429 continue;
430 x = f->output_data.x;
431 /* This frame matches if the window is any of its widgets. */
432 if (x->hourglass_window == wdesc)
433 return f;
434 else if (x->widget)
436 #ifdef USE_GTK
437 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
438 if (gwdesc != 0
439 && (gwdesc == x->widget
440 || gwdesc == x->edit_widget
441 || gwdesc == x->vbox_widget))
442 return f;
443 #else
444 if (wdesc == XtWindow (x->widget)
445 || wdesc == XtWindow (x->column_widget)
446 || wdesc == XtWindow (x->edit_widget))
447 return f;
448 #endif
450 else if (FRAME_X_WINDOW (f) == wdesc)
451 /* A tooltip frame. */
452 return f;
454 return 0;
457 /* Likewise, but consider only the menu bar widget. */
459 struct frame *
460 x_menubar_window_to_frame (dpyinfo, wdesc)
461 struct x_display_info *dpyinfo;
462 int wdesc;
464 Lisp_Object tail, frame;
465 struct frame *f;
466 struct x_output *x;
468 if (wdesc == None) return 0;
470 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
472 frame = XCAR (tail);
473 if (!FRAMEP (frame))
474 continue;
475 f = XFRAME (frame);
476 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
477 continue;
478 x = f->output_data.x;
479 /* Match if the window is this frame's menubar. */
480 #ifdef USE_GTK
481 if (x->menubar_widget)
483 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
484 int found = 0;
486 BLOCK_INPUT;
487 if (gwdesc != 0
488 && (gwdesc == x->menubar_widget
489 || gtk_widget_get_parent (gwdesc) == x->menubar_widget))
490 found = 1;
491 UNBLOCK_INPUT;
492 if (found) return f;
494 #else
495 if (x->menubar_widget
496 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
497 return f;
498 #endif
500 return 0;
503 /* Return the frame whose principal (outermost) window is WDESC.
504 If WDESC is some other (smaller) window, we return 0. */
506 struct frame *
507 x_top_window_to_frame (dpyinfo, wdesc)
508 struct x_display_info *dpyinfo;
509 int wdesc;
511 Lisp_Object tail, frame;
512 struct frame *f;
513 struct x_output *x;
515 if (wdesc == None) return 0;
517 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
519 frame = XCAR (tail);
520 if (!FRAMEP (frame))
521 continue;
522 f = XFRAME (frame);
523 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
524 continue;
525 x = f->output_data.x;
527 if (x->widget)
529 /* This frame matches if the window is its topmost widget. */
530 #ifdef USE_GTK
531 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
532 if (gwdesc == x->widget)
533 return f;
534 #else
535 if (wdesc == XtWindow (x->widget))
536 return f;
537 #if 0 /* I don't know why it did this,
538 but it seems logically wrong,
539 and it causes trouble for MapNotify events. */
540 /* Match if the window is this frame's menubar. */
541 if (x->menubar_widget
542 && wdesc == XtWindow (x->menubar_widget))
543 return f;
544 #endif
545 #endif
547 else if (FRAME_X_WINDOW (f) == wdesc)
548 /* Tooltip frame. */
549 return f;
551 return 0;
553 #endif /* USE_X_TOOLKIT || USE_GTK */
557 static void x_default_font_parameter P_ ((struct frame *, Lisp_Object));
559 static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
560 static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
562 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
563 static void x_set_wait_for_wm P_ ((struct frame *, Lisp_Object, Lisp_Object));
564 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
565 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
566 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
567 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
568 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
569 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
570 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
571 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
572 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
573 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
574 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
575 void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object,
576 Lisp_Object));
577 void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object,
578 Lisp_Object));
579 static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *,
580 Lisp_Object,
581 Lisp_Object,
582 char *, char *,
583 int));
586 /* Store the screen positions of frame F into XPTR and YPTR.
587 These are the positions of the containing window manager window,
588 not Emacs's own window. */
590 void
591 x_real_positions (f, xptr, yptr)
592 FRAME_PTR f;
593 int *xptr, *yptr;
595 int win_x, win_y, outer_x, outer_y;
596 int real_x = 0, real_y = 0;
597 int had_errors = 0;
598 Window win = f->output_data.x->parent_desc;
600 BLOCK_INPUT;
602 x_catch_errors (FRAME_X_DISPLAY (f));
604 if (win == FRAME_X_DISPLAY_INFO (f)->root_window)
605 win = FRAME_OUTER_WINDOW (f);
607 /* This loop traverses up the containment tree until we hit the root
608 window. Window managers may intersect many windows between our window
609 and the root window. The window we find just before the root window
610 should be the outer WM window. */
611 for (;;)
613 Window wm_window, rootw;
614 Window *tmp_children;
615 unsigned int tmp_nchildren;
616 int success;
618 success = XQueryTree (FRAME_X_DISPLAY (f), win, &rootw,
619 &wm_window, &tmp_children, &tmp_nchildren);
621 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
623 /* Don't free tmp_children if XQueryTree failed. */
624 if (! success)
625 break;
627 XFree ((char *) tmp_children);
629 if (wm_window == rootw || had_errors)
630 break;
632 win = wm_window;
635 if (! had_errors)
637 unsigned int ign;
638 Window child, rootw;
640 /* Get the real coordinates for the WM window upper left corner */
641 XGetGeometry (FRAME_X_DISPLAY (f), win,
642 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
644 /* Translate real coordinates to coordinates relative to our
645 window. For our window, the upper left corner is 0, 0.
646 Since the upper left corner of the WM window is outside
647 our window, win_x and win_y will be negative:
649 ------------------ ---> x
650 | title |
651 | ----------------- v y
652 | | our window
654 XTranslateCoordinates (FRAME_X_DISPLAY (f),
656 /* From-window, to-window. */
657 FRAME_X_DISPLAY_INFO (f)->root_window,
658 FRAME_X_WINDOW (f),
660 /* From-position, to-position. */
661 real_x, real_y, &win_x, &win_y,
663 /* Child of win. */
664 &child);
666 if (FRAME_X_WINDOW (f) == FRAME_OUTER_WINDOW (f))
668 outer_x = win_x;
669 outer_y = win_y;
671 else
673 XTranslateCoordinates (FRAME_X_DISPLAY (f),
675 /* From-window, to-window. */
676 FRAME_X_DISPLAY_INFO (f)->root_window,
677 FRAME_OUTER_WINDOW (f),
679 /* From-position, to-position. */
680 real_x, real_y, &outer_x, &outer_y,
682 /* Child of win. */
683 &child);
686 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
689 x_uncatch_errors ();
691 UNBLOCK_INPUT;
693 if (had_errors) return;
695 f->x_pixels_diff = -win_x;
696 f->y_pixels_diff = -win_y;
698 FRAME_X_OUTPUT (f)->x_pixels_outer_diff = -outer_x;
699 FRAME_X_OUTPUT (f)->y_pixels_outer_diff = -outer_y;
701 *xptr = real_x;
702 *yptr = real_y;
708 /* Gamma-correct COLOR on frame F. */
710 void
711 gamma_correct (f, color)
712 struct frame *f;
713 XColor *color;
715 if (f->gamma)
717 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
718 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
719 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
724 /* Decide if color named COLOR_NAME is valid for use on frame F. If
725 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
726 allocate the color. Value is zero if COLOR_NAME is invalid, or
727 no color could be allocated. */
730 x_defined_color (f, color_name, color, alloc_p)
731 struct frame *f;
732 char *color_name;
733 XColor *color;
734 int alloc_p;
736 int success_p;
737 Display *dpy = FRAME_X_DISPLAY (f);
738 Colormap cmap = FRAME_X_COLORMAP (f);
740 BLOCK_INPUT;
741 success_p = XParseColor (dpy, cmap, color_name, color);
742 if (success_p && alloc_p)
743 success_p = x_alloc_nearest_color (f, cmap, color);
744 UNBLOCK_INPUT;
746 return success_p;
750 /* Return the pixel color value for color COLOR_NAME on frame F. If F
751 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
752 Signal an error if color can't be allocated. */
755 x_decode_color (f, color_name, mono_color)
756 FRAME_PTR f;
757 Lisp_Object color_name;
758 int mono_color;
760 XColor cdef;
762 CHECK_STRING (color_name);
764 #if 0 /* Don't do this. It's wrong when we're not using the default
765 colormap, it makes freeing difficult, and it's probably not
766 an important optimization. */
767 if (strcmp (SDATA (color_name), "black") == 0)
768 return BLACK_PIX_DEFAULT (f);
769 else if (strcmp (SDATA (color_name), "white") == 0)
770 return WHITE_PIX_DEFAULT (f);
771 #endif
773 /* Return MONO_COLOR for monochrome frames. */
774 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
775 return mono_color;
777 /* x_defined_color is responsible for coping with failures
778 by looking for a near-miss. */
779 if (x_defined_color (f, SDATA (color_name), &cdef, 1))
780 return cdef.pixel;
782 signal_error ("Undefined color", color_name);
787 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
788 the previous value of that parameter, NEW_VALUE is the new value.
789 See also the comment of wait_for_wm in struct x_output. */
791 static void
792 x_set_wait_for_wm (f, new_value, old_value)
793 struct frame *f;
794 Lisp_Object new_value, old_value;
796 f->output_data.x->wait_for_wm = !NILP (new_value);
799 #ifdef USE_GTK
801 /* Set icon from FILE for frame F. By using GTK functions the icon
802 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
805 xg_set_icon (f, file)
806 FRAME_PTR f;
807 Lisp_Object file;
809 int result = 0;
810 Lisp_Object found;
812 found = x_find_image_file (file);
814 if (! NILP (found))
816 GdkPixbuf *pixbuf;
817 GError *err = NULL;
818 char *filename = (char *) SDATA (found);
819 BLOCK_INPUT;
821 pixbuf = gdk_pixbuf_new_from_file (filename, &err);
823 if (pixbuf)
825 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
826 pixbuf);
827 g_object_unref (pixbuf);
829 result = 1;
831 else
832 g_error_free (err);
834 UNBLOCK_INPUT;
837 return result;
841 xg_set_icon_from_xpm_data (f, data)
842 FRAME_PTR f;
843 char **data;
845 int result = 0;
846 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_xpm_data ((const char **) data);
848 if (!pixbuf)
849 return 0;
851 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), pixbuf);
852 g_object_unref (pixbuf);
853 return 1;
855 #endif /* USE_GTK */
858 /* Functions called only from `x_set_frame_param'
859 to set individual parameters.
861 If FRAME_X_WINDOW (f) is 0,
862 the frame is being created and its X-window does not exist yet.
863 In that case, just record the parameter's new value
864 in the standard place; do not attempt to change the window. */
866 void
867 x_set_foreground_color (f, arg, oldval)
868 struct frame *f;
869 Lisp_Object arg, oldval;
871 struct x_output *x = f->output_data.x;
872 unsigned long fg, old_fg;
874 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
875 old_fg = FRAME_FOREGROUND_PIXEL (f);
876 FRAME_FOREGROUND_PIXEL (f) = fg;
878 if (FRAME_X_WINDOW (f) != 0)
880 Display *dpy = FRAME_X_DISPLAY (f);
882 BLOCK_INPUT;
883 XSetForeground (dpy, x->normal_gc, fg);
884 XSetBackground (dpy, x->reverse_gc, fg);
886 if (x->cursor_pixel == old_fg)
888 unload_color (f, x->cursor_pixel);
889 x->cursor_pixel = x_copy_color (f, fg);
890 XSetBackground (dpy, x->cursor_gc, x->cursor_pixel);
893 UNBLOCK_INPUT;
895 update_face_from_frame_parameter (f, Qforeground_color, arg);
897 if (FRAME_VISIBLE_P (f))
898 redraw_frame (f);
901 unload_color (f, old_fg);
904 void
905 x_set_background_color (f, arg, oldval)
906 struct frame *f;
907 Lisp_Object arg, oldval;
909 struct x_output *x = f->output_data.x;
910 unsigned long bg;
912 bg = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
913 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
914 FRAME_BACKGROUND_PIXEL (f) = bg;
916 if (FRAME_X_WINDOW (f) != 0)
918 Display *dpy = FRAME_X_DISPLAY (f);
920 BLOCK_INPUT;
921 XSetBackground (dpy, x->normal_gc, bg);
922 XSetForeground (dpy, x->reverse_gc, bg);
923 XSetWindowBackground (dpy, FRAME_X_WINDOW (f), bg);
924 XSetForeground (dpy, x->cursor_gc, bg);
926 #ifdef USE_GTK
927 xg_set_background_color (f, bg);
928 #endif
930 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
931 toolkit scroll bars. */
933 Lisp_Object bar;
934 for (bar = FRAME_SCROLL_BARS (f);
935 !NILP (bar);
936 bar = XSCROLL_BAR (bar)->next)
938 Window window = XSCROLL_BAR (bar)->x_window;
939 XSetWindowBackground (dpy, window, bg);
942 #endif /* USE_TOOLKIT_SCROLL_BARS */
944 UNBLOCK_INPUT;
945 update_face_from_frame_parameter (f, Qbackground_color, arg);
947 if (FRAME_VISIBLE_P (f))
948 redraw_frame (f);
952 void
953 x_set_mouse_color (f, arg, oldval)
954 struct frame *f;
955 Lisp_Object arg, oldval;
957 struct x_output *x = f->output_data.x;
958 Display *dpy = FRAME_X_DISPLAY (f);
959 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
960 Cursor hourglass_cursor, horizontal_drag_cursor;
961 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
962 unsigned long mask_color = FRAME_BACKGROUND_PIXEL (f);
964 /* Don't let pointers be invisible. */
965 if (mask_color == pixel)
967 x_free_colors (f, &pixel, 1);
968 pixel = x_copy_color (f, FRAME_FOREGROUND_PIXEL (f));
971 unload_color (f, x->mouse_pixel);
972 x->mouse_pixel = pixel;
974 BLOCK_INPUT;
976 /* It's not okay to crash if the user selects a screwy cursor. */
977 x_catch_errors (dpy);
979 if (!NILP (Vx_pointer_shape))
981 CHECK_NUMBER (Vx_pointer_shape);
982 cursor = XCreateFontCursor (dpy, XINT (Vx_pointer_shape));
984 else
985 cursor = XCreateFontCursor (dpy, XC_xterm);
986 x_check_errors (dpy, "bad text pointer cursor: %s");
988 if (!NILP (Vx_nontext_pointer_shape))
990 CHECK_NUMBER (Vx_nontext_pointer_shape);
991 nontext_cursor
992 = XCreateFontCursor (dpy, XINT (Vx_nontext_pointer_shape));
994 else
995 nontext_cursor = XCreateFontCursor (dpy, XC_left_ptr);
996 x_check_errors (dpy, "bad nontext pointer cursor: %s");
998 if (!NILP (Vx_hourglass_pointer_shape))
1000 CHECK_NUMBER (Vx_hourglass_pointer_shape);
1001 hourglass_cursor
1002 = XCreateFontCursor (dpy, XINT (Vx_hourglass_pointer_shape));
1004 else
1005 hourglass_cursor = XCreateFontCursor (dpy, XC_watch);
1006 x_check_errors (dpy, "bad hourglass pointer cursor: %s");
1008 if (!NILP (Vx_mode_pointer_shape))
1010 CHECK_NUMBER (Vx_mode_pointer_shape);
1011 mode_cursor = XCreateFontCursor (dpy, XINT (Vx_mode_pointer_shape));
1013 else
1014 mode_cursor = XCreateFontCursor (dpy, XC_xterm);
1015 x_check_errors (dpy, "bad modeline pointer cursor: %s");
1017 if (!NILP (Vx_sensitive_text_pointer_shape))
1019 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
1020 hand_cursor
1021 = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape));
1023 else
1024 hand_cursor = XCreateFontCursor (dpy, XC_hand2);
1026 if (!NILP (Vx_window_horizontal_drag_shape))
1028 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
1029 horizontal_drag_cursor
1030 = XCreateFontCursor (dpy, XINT (Vx_window_horizontal_drag_shape));
1032 else
1033 horizontal_drag_cursor
1034 = XCreateFontCursor (dpy, XC_sb_h_double_arrow);
1036 /* Check and report errors with the above calls. */
1037 x_check_errors (dpy, "can't set cursor shape: %s");
1038 x_uncatch_errors ();
1041 XColor fore_color, back_color;
1043 fore_color.pixel = x->mouse_pixel;
1044 x_query_color (f, &fore_color);
1045 back_color.pixel = mask_color;
1046 x_query_color (f, &back_color);
1048 XRecolorCursor (dpy, cursor, &fore_color, &back_color);
1049 XRecolorCursor (dpy, nontext_cursor, &fore_color, &back_color);
1050 XRecolorCursor (dpy, mode_cursor, &fore_color, &back_color);
1051 XRecolorCursor (dpy, hand_cursor, &fore_color, &back_color);
1052 XRecolorCursor (dpy, hourglass_cursor, &fore_color, &back_color);
1053 XRecolorCursor (dpy, horizontal_drag_cursor, &fore_color, &back_color);
1056 if (FRAME_X_WINDOW (f) != 0)
1057 XDefineCursor (dpy, FRAME_X_WINDOW (f), cursor);
1059 if (cursor != x->text_cursor
1060 && x->text_cursor != 0)
1061 XFreeCursor (dpy, x->text_cursor);
1062 x->text_cursor = cursor;
1064 if (nontext_cursor != x->nontext_cursor
1065 && x->nontext_cursor != 0)
1066 XFreeCursor (dpy, x->nontext_cursor);
1067 x->nontext_cursor = nontext_cursor;
1069 if (hourglass_cursor != x->hourglass_cursor
1070 && x->hourglass_cursor != 0)
1071 XFreeCursor (dpy, x->hourglass_cursor);
1072 x->hourglass_cursor = hourglass_cursor;
1074 if (mode_cursor != x->modeline_cursor
1075 && x->modeline_cursor != 0)
1076 XFreeCursor (dpy, f->output_data.x->modeline_cursor);
1077 x->modeline_cursor = mode_cursor;
1079 if (hand_cursor != x->hand_cursor
1080 && x->hand_cursor != 0)
1081 XFreeCursor (dpy, x->hand_cursor);
1082 x->hand_cursor = hand_cursor;
1084 if (horizontal_drag_cursor != x->horizontal_drag_cursor
1085 && x->horizontal_drag_cursor != 0)
1086 XFreeCursor (dpy, x->horizontal_drag_cursor);
1087 x->horizontal_drag_cursor = horizontal_drag_cursor;
1089 XFlush (dpy);
1090 UNBLOCK_INPUT;
1092 update_face_from_frame_parameter (f, Qmouse_color, arg);
1095 void
1096 x_set_cursor_color (f, arg, oldval)
1097 struct frame *f;
1098 Lisp_Object arg, oldval;
1100 unsigned long fore_pixel, pixel;
1101 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
1102 struct x_output *x = f->output_data.x;
1104 if (!NILP (Vx_cursor_fore_pixel))
1106 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1107 WHITE_PIX_DEFAULT (f));
1108 fore_pixel_allocated_p = 1;
1110 else
1111 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
1113 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1114 pixel_allocated_p = 1;
1116 /* Make sure that the cursor color differs from the background color. */
1117 if (pixel == FRAME_BACKGROUND_PIXEL (f))
1119 if (pixel_allocated_p)
1121 x_free_colors (f, &pixel, 1);
1122 pixel_allocated_p = 0;
1125 pixel = x->mouse_pixel;
1126 if (pixel == fore_pixel)
1128 if (fore_pixel_allocated_p)
1130 x_free_colors (f, &fore_pixel, 1);
1131 fore_pixel_allocated_p = 0;
1133 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
1137 unload_color (f, x->cursor_foreground_pixel);
1138 if (!fore_pixel_allocated_p)
1139 fore_pixel = x_copy_color (f, fore_pixel);
1140 x->cursor_foreground_pixel = fore_pixel;
1142 unload_color (f, x->cursor_pixel);
1143 if (!pixel_allocated_p)
1144 pixel = x_copy_color (f, pixel);
1145 x->cursor_pixel = pixel;
1147 if (FRAME_X_WINDOW (f) != 0)
1149 BLOCK_INPUT;
1150 XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel);
1151 XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel);
1152 UNBLOCK_INPUT;
1154 if (FRAME_VISIBLE_P (f))
1156 x_update_cursor (f, 0);
1157 x_update_cursor (f, 1);
1161 update_face_from_frame_parameter (f, Qcursor_color, arg);
1164 /* Set the border-color of frame F to pixel value PIX.
1165 Note that this does not fully take effect if done before
1166 F has an x-window. */
1168 void
1169 x_set_border_pixel (f, pix)
1170 struct frame *f;
1171 int pix;
1173 unload_color (f, f->output_data.x->border_pixel);
1174 f->output_data.x->border_pixel = pix;
1176 if (FRAME_X_WINDOW (f) != 0 && f->border_width > 0)
1178 BLOCK_INPUT;
1179 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1180 (unsigned long)pix);
1181 UNBLOCK_INPUT;
1183 if (FRAME_VISIBLE_P (f))
1184 redraw_frame (f);
1188 /* Set the border-color of frame F to value described by ARG.
1189 ARG can be a string naming a color.
1190 The border-color is used for the border that is drawn by the X server.
1191 Note that this does not fully take effect if done before
1192 F has an x-window; it must be redone when the window is created.
1194 Note: this is done in two routines because of the way X10 works.
1196 Note: under X11, this is normally the province of the window manager,
1197 and so emacs' border colors may be overridden. */
1199 void
1200 x_set_border_color (f, arg, oldval)
1201 struct frame *f;
1202 Lisp_Object arg, oldval;
1204 int pix;
1206 CHECK_STRING (arg);
1207 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1208 x_set_border_pixel (f, pix);
1209 update_face_from_frame_parameter (f, Qborder_color, arg);
1213 void
1214 x_set_cursor_type (f, arg, oldval)
1215 FRAME_PTR f;
1216 Lisp_Object arg, oldval;
1218 set_frame_cursor_types (f, arg);
1220 /* Make sure the cursor gets redrawn. */
1221 cursor_type_changed = 1;
1224 void
1225 x_set_icon_type (f, arg, oldval)
1226 struct frame *f;
1227 Lisp_Object arg, oldval;
1229 int result;
1231 if (STRINGP (arg))
1233 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1234 return;
1236 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1237 return;
1239 BLOCK_INPUT;
1240 if (NILP (arg))
1241 result = x_text_icon (f,
1242 (char *) SDATA ((!NILP (f->icon_name)
1243 ? f->icon_name
1244 : f->name)));
1245 else
1246 result = x_bitmap_icon (f, arg);
1248 if (result)
1250 UNBLOCK_INPUT;
1251 error ("No icon window available");
1254 XFlush (FRAME_X_DISPLAY (f));
1255 UNBLOCK_INPUT;
1258 void
1259 x_set_icon_name (f, arg, oldval)
1260 struct frame *f;
1261 Lisp_Object arg, oldval;
1263 int result;
1265 if (STRINGP (arg))
1267 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1268 return;
1270 else if (!NILP (arg) || NILP (oldval))
1271 return;
1273 f->icon_name = arg;
1275 if (f->output_data.x->icon_bitmap != 0)
1276 return;
1278 BLOCK_INPUT;
1280 result = x_text_icon (f,
1281 (char *) SDATA ((!NILP (f->icon_name)
1282 ? f->icon_name
1283 : !NILP (f->title)
1284 ? f->title
1285 : f->name)));
1287 if (result)
1289 UNBLOCK_INPUT;
1290 error ("No icon window available");
1293 XFlush (FRAME_X_DISPLAY (f));
1294 UNBLOCK_INPUT;
1298 void
1299 x_set_menu_bar_lines (f, value, oldval)
1300 struct frame *f;
1301 Lisp_Object value, oldval;
1303 int nlines;
1304 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1305 int olines = FRAME_MENU_BAR_LINES (f);
1306 #endif
1308 /* Right now, menu bars don't work properly in minibuf-only frames;
1309 most of the commands try to apply themselves to the minibuffer
1310 frame itself, and get an error because you can't switch buffers
1311 in or split the minibuffer window. */
1312 if (FRAME_MINIBUF_ONLY_P (f))
1313 return;
1315 if (INTEGERP (value))
1316 nlines = XINT (value);
1317 else
1318 nlines = 0;
1320 /* Make sure we redisplay all windows in this frame. */
1321 windows_or_buffers_changed++;
1323 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1324 FRAME_MENU_BAR_LINES (f) = 0;
1325 if (nlines)
1327 FRAME_EXTERNAL_MENU_BAR (f) = 1;
1328 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
1329 /* Make sure next redisplay shows the menu bar. */
1330 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1332 else
1334 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1335 free_frame_menubar (f);
1336 FRAME_EXTERNAL_MENU_BAR (f) = 0;
1337 if (FRAME_X_P (f))
1338 f->output_data.x->menubar_widget = 0;
1340 #else /* not USE_X_TOOLKIT && not USE_GTK */
1341 FRAME_MENU_BAR_LINES (f) = nlines;
1342 change_window_heights (f->root_window, nlines - olines);
1343 #endif /* not USE_X_TOOLKIT */
1344 adjust_glyphs (f);
1348 /* Set the number of lines used for the tool bar of frame F to VALUE.
1349 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1350 is the old number of tool bar lines. This function changes the
1351 height of all windows on frame F to match the new tool bar height.
1352 The frame's height doesn't change. */
1354 void
1355 x_set_tool_bar_lines (f, value, oldval)
1356 struct frame *f;
1357 Lisp_Object value, oldval;
1359 int delta, nlines, root_height;
1360 Lisp_Object root_window;
1362 /* Treat tool bars like menu bars. */
1363 if (FRAME_MINIBUF_ONLY_P (f))
1364 return;
1366 /* Use VALUE only if an integer >= 0. */
1367 if (INTEGERP (value) && XINT (value) >= 0)
1368 nlines = XFASTINT (value);
1369 else
1370 nlines = 0;
1372 #ifdef USE_GTK
1373 FRAME_TOOL_BAR_LINES (f) = 0;
1374 if (nlines)
1376 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
1377 if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
1378 /* Make sure next redisplay shows the tool bar. */
1379 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1380 update_frame_tool_bar (f);
1382 else
1384 if (FRAME_EXTERNAL_TOOL_BAR (f))
1385 free_frame_tool_bar (f);
1386 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
1389 return;
1390 #endif
1392 /* Make sure we redisplay all windows in this frame. */
1393 ++windows_or_buffers_changed;
1395 delta = nlines - FRAME_TOOL_BAR_LINES (f);
1397 /* Don't resize the tool-bar to more than we have room for. */
1398 root_window = FRAME_ROOT_WINDOW (f);
1399 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
1400 if (root_height - delta < 1)
1402 delta = root_height - 1;
1403 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1406 FRAME_TOOL_BAR_LINES (f) = nlines;
1407 change_window_heights (root_window, delta);
1408 adjust_glyphs (f);
1410 /* We also have to make sure that the internal border at the top of
1411 the frame, below the menu bar or tool bar, is redrawn when the
1412 tool bar disappears. This is so because the internal border is
1413 below the tool bar if one is displayed, but is below the menu bar
1414 if there isn't a tool bar. The tool bar draws into the area
1415 below the menu bar. */
1416 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1418 clear_frame (f);
1419 clear_current_matrices (f);
1422 /* If the tool bar gets smaller, the internal border below it
1423 has to be cleared. It was formerly part of the display
1424 of the larger tool bar, and updating windows won't clear it. */
1425 if (delta < 0)
1427 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1428 int width = FRAME_PIXEL_WIDTH (f);
1429 int y = nlines * FRAME_LINE_HEIGHT (f);
1431 /* height can be zero here. */
1432 if (height > 0 && width > 0)
1434 BLOCK_INPUT;
1435 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1436 0, y, width, height, False);
1437 UNBLOCK_INPUT;
1440 if (WINDOWP (f->tool_bar_window))
1441 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
1446 /* Set the foreground color for scroll bars on frame F to VALUE.
1447 VALUE should be a string, a color name. If it isn't a string or
1448 isn't a valid color name, do nothing. OLDVAL is the old value of
1449 the frame parameter. */
1451 void
1452 x_set_scroll_bar_foreground (f, value, oldval)
1453 struct frame *f;
1454 Lisp_Object value, oldval;
1456 unsigned long pixel;
1458 if (STRINGP (value))
1459 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
1460 else
1461 pixel = -1;
1463 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
1464 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
1466 f->output_data.x->scroll_bar_foreground_pixel = pixel;
1467 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1469 /* Remove all scroll bars because they have wrong colors. */
1470 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
1471 (*FRAME_TERMINAL (f)->condemn_scroll_bars_hook) (f);
1472 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
1473 (*FRAME_TERMINAL (f)->judge_scroll_bars_hook) (f);
1475 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
1476 redraw_frame (f);
1481 /* Set the background color for scroll bars on frame F to VALUE VALUE
1482 should be a string, a color name. If it isn't a string or isn't a
1483 valid color name, do nothing. OLDVAL is the old value of the frame
1484 parameter. */
1486 void
1487 x_set_scroll_bar_background (f, value, oldval)
1488 struct frame *f;
1489 Lisp_Object value, oldval;
1491 unsigned long pixel;
1493 if (STRINGP (value))
1494 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
1495 else
1496 pixel = -1;
1498 if (f->output_data.x->scroll_bar_background_pixel != -1)
1499 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
1501 #ifdef USE_TOOLKIT_SCROLL_BARS
1502 /* Scrollbar shadow colors. */
1503 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
1505 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
1506 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
1508 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
1510 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
1511 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
1513 #endif /* USE_TOOLKIT_SCROLL_BARS */
1515 f->output_data.x->scroll_bar_background_pixel = pixel;
1516 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1518 /* Remove all scroll bars because they have wrong colors. */
1519 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
1520 (*FRAME_TERMINAL (f)->condemn_scroll_bars_hook) (f);
1521 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
1522 (*FRAME_TERMINAL (f)->judge_scroll_bars_hook) (f);
1524 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
1525 redraw_frame (f);
1530 /* Encode Lisp string STRING as a text in a format appropriate for
1531 XICCC (X Inter Client Communication Conventions).
1533 This can call Lisp code, so callers must GCPRO.
1535 If STRING contains only ASCII characters, do no conversion and
1536 return the string data of STRING. Otherwise, encode the text by
1537 CODING_SYSTEM, and return a newly allocated memory area which
1538 should be freed by `xfree' by a caller.
1540 SELECTIONP non-zero means the string is being encoded for an X
1541 selection, so it is safe to run pre-write conversions (which
1542 may run Lisp code).
1544 Store the byte length of resulting text in *TEXT_BYTES.
1546 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1547 which means that the `encoding' of the result can be `STRING'.
1548 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1549 the result should be `COMPOUND_TEXT'. */
1551 static unsigned char *
1552 x_encode_text (string, coding_system, selectionp, text_bytes, stringp, freep)
1553 Lisp_Object string, coding_system;
1554 int *text_bytes, *stringp;
1555 int selectionp;
1556 int *freep;
1558 int result = string_xstring_p (string);
1559 struct coding_system coding;
1561 if (result == 0)
1563 /* No multibyte character in OBJ. We need not encode it. */
1564 *text_bytes = SBYTES (string);
1565 *stringp = 1;
1566 *freep = 0;
1567 return SDATA (string);
1570 setup_coding_system (coding_system, &coding);
1571 coding.mode |= (CODING_MODE_SAFE_ENCODING | CODING_MODE_LAST_BLOCK);
1572 /* We suppress producing escape sequences for composition. */
1573 coding.common_flags &= ~CODING_ANNOTATION_MASK;
1574 coding.dst_bytes = SCHARS (string) * 2;
1575 coding.destination = (unsigned char *) xmalloc (coding.dst_bytes);
1576 encode_coding_object (&coding, string, 0, 0,
1577 SCHARS (string), SBYTES (string), Qnil);
1578 *text_bytes = coding.produced;
1579 *stringp = (result == 1 || !EQ (coding_system, Qcompound_text));
1580 *freep = 1;
1581 return coding.destination;
1585 /* Set the WM name to NAME for frame F. Also set the icon name.
1586 If the frame already has an icon name, use that, otherwise set the
1587 icon name to NAME. */
1589 static void
1590 x_set_name_internal (f, name)
1591 FRAME_PTR f;
1592 Lisp_Object name;
1594 if (FRAME_X_WINDOW (f))
1596 BLOCK_INPUT;
1598 XTextProperty text, icon;
1599 int bytes, stringp;
1600 int do_free_icon_value = 0, do_free_text_value = 0;
1601 Lisp_Object coding_system;
1602 #ifdef USE_GTK
1603 Lisp_Object encoded_name;
1604 struct gcpro gcpro1;
1606 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1607 we use it before x_encode_text that may return string data. */
1608 GCPRO1 (name);
1609 encoded_name = ENCODE_UTF_8 (name);
1610 UNGCPRO;
1611 #endif
1613 coding_system = Qcompound_text;
1614 /* Note: Encoding strategy
1616 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1617 text.encoding. But, there are non-internationalized window
1618 managers which don't support that encoding. So, if NAME
1619 contains only ASCII and 8859-1 characters, encode it by
1620 iso-latin-1, and use "STRING" in text.encoding hoping that
1621 such window managers at least analyze this format correctly,
1622 i.e. treat 8-bit bytes as 8859-1 characters.
1624 We may also be able to use "UTF8_STRING" in text.encoding
1625 in the future which can encode all Unicode characters.
1626 But, for the moment, there's no way to know that the
1627 current window manager supports it or not. */
1628 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp,
1629 &do_free_text_value);
1630 text.encoding = (stringp ? XA_STRING
1631 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1632 text.format = 8;
1633 text.nitems = bytes;
1635 if (!STRINGP (f->icon_name))
1637 icon = text;
1639 else
1641 /* See the above comment "Note: Encoding strategy". */
1642 icon.value = x_encode_text (f->icon_name, coding_system, 0,
1643 &bytes, &stringp, &do_free_icon_value);
1644 icon.encoding = (stringp ? XA_STRING
1645 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1646 icon.format = 8;
1647 icon.nitems = bytes;
1650 #ifdef USE_GTK
1651 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1652 (char *) SDATA (encoded_name));
1653 #else /* not USE_GTK */
1654 XSetWMName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
1655 #endif /* not USE_GTK */
1657 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &icon);
1659 if (do_free_icon_value)
1660 xfree (icon.value);
1661 if (do_free_text_value)
1662 xfree (text.value);
1664 UNBLOCK_INPUT;
1668 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1669 x_id_name.
1671 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1672 name; if NAME is a string, set F's name to NAME and set
1673 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1675 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1676 suggesting a new name, which lisp code should override; if
1677 F->explicit_name is set, ignore the new name; otherwise, set it. */
1679 void
1680 x_set_name (f, name, explicit)
1681 struct frame *f;
1682 Lisp_Object name;
1683 int explicit;
1685 /* Make sure that requests from lisp code override requests from
1686 Emacs redisplay code. */
1687 if (explicit)
1689 /* If we're switching from explicit to implicit, we had better
1690 update the mode lines and thereby update the title. */
1691 if (f->explicit_name && NILP (name))
1692 update_mode_lines = 1;
1694 f->explicit_name = ! NILP (name);
1696 else if (f->explicit_name)
1697 return;
1699 /* If NAME is nil, set the name to the x_id_name. */
1700 if (NILP (name))
1702 /* Check for no change needed in this very common case
1703 before we do any consing. */
1704 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
1705 SDATA (f->name)))
1706 return;
1707 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
1709 else
1710 CHECK_STRING (name);
1712 /* Don't change the name if it's already NAME. */
1713 if (! NILP (Fstring_equal (name, f->name)))
1714 return;
1716 f->name = name;
1718 /* For setting the frame title, the title parameter should override
1719 the name parameter. */
1720 if (! NILP (f->title))
1721 name = f->title;
1723 x_set_name_internal (f, name);
1726 /* This function should be called when the user's lisp code has
1727 specified a name for the frame; the name will override any set by the
1728 redisplay code. */
1729 void
1730 x_explicitly_set_name (f, arg, oldval)
1731 FRAME_PTR f;
1732 Lisp_Object arg, oldval;
1734 x_set_name (f, arg, 1);
1737 /* This function should be called by Emacs redisplay code to set the
1738 name; names set this way will never override names set by the user's
1739 lisp code. */
1740 void
1741 x_implicitly_set_name (f, arg, oldval)
1742 FRAME_PTR f;
1743 Lisp_Object arg, oldval;
1745 x_set_name (f, arg, 0);
1748 /* Change the title of frame F to NAME.
1749 If NAME is nil, use the frame name as the title. */
1751 void
1752 x_set_title (f, name, old_name)
1753 struct frame *f;
1754 Lisp_Object name, old_name;
1756 /* Don't change the title if it's already NAME. */
1757 if (EQ (name, f->title))
1758 return;
1760 update_mode_lines = 1;
1762 f->title = name;
1764 if (NILP (name))
1765 name = f->name;
1766 else
1767 CHECK_STRING (name);
1769 x_set_name_internal (f, name);
1772 void
1773 x_set_scroll_bar_default_width (f)
1774 struct frame *f;
1776 int wid = FRAME_COLUMN_WIDTH (f);
1778 #ifdef USE_TOOLKIT_SCROLL_BARS
1779 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1780 int width = 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
1781 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
1782 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = width;
1783 #else
1784 /* Make the actual width at least 14 pixels and a multiple of a
1785 character width. */
1786 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
1788 /* Use all of that space (aside from required margins) for the
1789 scroll bar. */
1790 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 0;
1791 #endif
1795 /* Record in frame F the specified or default value according to ALIST
1796 of the parameter named PROP (a Lisp symbol). If no value is
1797 specified for PROP, look for an X default for XPROP on the frame
1798 named NAME. If that is not found either, use the value DEFLT. */
1800 static Lisp_Object
1801 x_default_scroll_bar_color_parameter (f, alist, prop, xprop, xclass,
1802 foreground_p)
1803 struct frame *f;
1804 Lisp_Object alist;
1805 Lisp_Object prop;
1806 char *xprop;
1807 char *xclass;
1808 int foreground_p;
1810 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1811 Lisp_Object tem;
1813 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
1814 if (EQ (tem, Qunbound))
1816 #ifdef USE_TOOLKIT_SCROLL_BARS
1818 /* See if an X resource for the scroll bar color has been
1819 specified. */
1820 tem = display_x_get_resource (dpyinfo,
1821 build_string (foreground_p
1822 ? "foreground"
1823 : "background"),
1824 empty_unibyte_string,
1825 build_string ("verticalScrollBar"),
1826 empty_unibyte_string);
1827 if (!STRINGP (tem))
1829 /* If nothing has been specified, scroll bars will use a
1830 toolkit-dependent default. Because these defaults are
1831 difficult to get at without actually creating a scroll
1832 bar, use nil to indicate that no color has been
1833 specified. */
1834 tem = Qnil;
1837 #else /* not USE_TOOLKIT_SCROLL_BARS */
1839 tem = Qnil;
1841 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1844 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
1845 return tem;
1851 #ifdef USE_X_TOOLKIT
1853 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1854 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1855 already be present because of the toolkit (Motif adds some of them,
1856 for example, but Xt doesn't). */
1858 static void
1859 hack_wm_protocols (f, widget)
1860 FRAME_PTR f;
1861 Widget widget;
1863 Display *dpy = XtDisplay (widget);
1864 Window w = XtWindow (widget);
1865 int need_delete = 1;
1866 int need_focus = 1;
1867 int need_save = 1;
1869 BLOCK_INPUT;
1871 Atom type;
1872 unsigned char *catoms;
1873 int format = 0;
1874 unsigned long nitems = 0;
1875 unsigned long bytes_after;
1877 if ((XGetWindowProperty (dpy, w,
1878 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1879 (long)0, (long)100, False, XA_ATOM,
1880 &type, &format, &nitems, &bytes_after,
1881 &catoms)
1882 == Success)
1883 && format == 32 && type == XA_ATOM)
1885 Atom *atoms = (Atom *) catoms;
1886 while (nitems > 0)
1888 nitems--;
1889 if (atoms[nitems]
1890 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
1891 need_delete = 0;
1892 else if (atoms[nitems]
1893 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
1894 need_focus = 0;
1895 else if (atoms[nitems]
1896 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
1897 need_save = 0;
1900 if (catoms)
1901 XFree (catoms);
1904 Atom props [10];
1905 int count = 0;
1906 if (need_delete)
1907 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
1908 if (need_focus)
1909 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
1910 if (need_save)
1911 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
1912 if (count)
1913 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1914 XA_ATOM, 32, PropModeAppend,
1915 (unsigned char *) props, count);
1917 UNBLOCK_INPUT;
1919 #endif
1923 /* Support routines for XIC (X Input Context). */
1925 #ifdef HAVE_X_I18N
1927 static XFontSet xic_create_xfontset P_ ((struct frame *));
1928 static XIMStyle best_xim_style P_ ((XIMStyles *, XIMStyles *));
1931 /* Supported XIM styles, ordered by preference. */
1933 static XIMStyle supported_xim_styles[] =
1935 XIMPreeditPosition | XIMStatusArea,
1936 XIMPreeditPosition | XIMStatusNothing,
1937 XIMPreeditPosition | XIMStatusNone,
1938 XIMPreeditNothing | XIMStatusArea,
1939 XIMPreeditNothing | XIMStatusNothing,
1940 XIMPreeditNothing | XIMStatusNone,
1941 XIMPreeditNone | XIMStatusArea,
1942 XIMPreeditNone | XIMStatusNothing,
1943 XIMPreeditNone | XIMStatusNone,
1948 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1950 char xic_defaut_fontset[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1952 /* Create an Xt fontset spec from the name of a base font.
1953 If `motif' is True use the Motif syntax. */
1954 char *
1955 xic_create_fontsetname (base_fontname, motif)
1956 char *base_fontname;
1957 Bool motif;
1959 const char *sep = motif ? ";" : ",";
1960 char *fontsetname;
1962 /* Make a fontset name from the base font name. */
1963 if (xic_defaut_fontset == base_fontname)
1964 { /* There is no base font name, use the default. */
1965 int len = strlen (base_fontname) + 2;
1966 fontsetname = xmalloc (len);
1967 bzero (fontsetname, len);
1968 strcpy (fontsetname, base_fontname);
1970 else
1972 /* Make a fontset name from the base font name.
1973 The font set will be made of the following elements:
1974 - the base font.
1975 - the base font where the charset spec is replaced by -*-*.
1976 - the same but with the family also replaced with -*-*-. */
1977 char *p = base_fontname;
1978 int i;
1980 for (i = 0; *p; p++)
1981 if (*p == '-') i++;
1982 if (i != 14)
1983 { /* As the font name doesn't conform to XLFD, we can't
1984 modify it to generalize it to allcs and allfamilies.
1985 Use the specified font plus the default. */
1986 int len = strlen (base_fontname) + strlen (xic_defaut_fontset) + 3;
1987 fontsetname = xmalloc (len);
1988 bzero (fontsetname, len);
1989 strcpy (fontsetname, base_fontname);
1990 strcat (fontsetname, sep);
1991 strcat (fontsetname, xic_defaut_fontset);
1993 else
1995 int len;
1996 char *p1 = NULL, *p2 = NULL, *p3 = NULL;
1997 char *font_allcs = NULL;
1998 char *font_allfamilies = NULL;
1999 char *font_all = NULL;
2000 char *allcs = "*-*-*-*-*-*-*";
2001 char *allfamilies = "-*-*-";
2002 char *all = "*-*-*-*-";
2003 char *base;
2005 for (i = 0, p = base_fontname; i < 8; p++)
2007 if (*p == '-')
2009 i++;
2010 if (i == 3)
2011 p1 = p + 1;
2012 else if (i == 7)
2013 p2 = p + 1;
2014 else if (i == 6)
2015 p3 = p + 1;
2018 /* If base_fontname specifies ADSTYLE, make it a
2019 wildcard. */
2020 if (*p3 != '*')
2022 int diff = (p2 - p3) - 2;
2024 base = alloca (strlen (base_fontname) + 1);
2025 bcopy (base_fontname, base, p3 - base_fontname);
2026 base[p3 - base_fontname] = '*';
2027 base[(p3 - base_fontname) + 1] = '-';
2028 strcpy (base + (p3 - base_fontname) + 2, p2);
2029 p = base + (p - base_fontname) - diff;
2030 p1 = base + (p1 - base_fontname);
2031 p2 = base + (p2 - base_fontname) - diff;
2032 base_fontname = base;
2035 /* Build the font spec that matches all charsets. */
2036 len = p - base_fontname + strlen (allcs) + 1;
2037 font_allcs = (char *) alloca (len);
2038 bzero (font_allcs, len);
2039 bcopy (base_fontname, font_allcs, p - base_fontname);
2040 strcat (font_allcs, allcs);
2042 /* Build the font spec that matches all families and
2043 add-styles. */
2044 len = p - p1 + strlen (allcs) + strlen (allfamilies) + 1;
2045 font_allfamilies = (char *) alloca (len);
2046 bzero (font_allfamilies, len);
2047 strcpy (font_allfamilies, allfamilies);
2048 bcopy (p1, font_allfamilies + strlen (allfamilies), p - p1);
2049 strcat (font_allfamilies, allcs);
2051 /* Build the font spec that matches all. */
2052 len = p - p2 + strlen (allcs) + strlen (all) + strlen (allfamilies) + 1;
2053 font_all = (char *) alloca (len);
2054 bzero (font_all, len);
2055 strcpy (font_all, allfamilies);
2056 strcat (font_all, all);
2057 bcopy (p2, font_all + strlen (all) + strlen (allfamilies), p - p2);
2058 strcat (font_all, allcs);
2060 /* Build the actual font set name. */
2061 len = strlen (base_fontname) + strlen (font_allcs)
2062 + strlen (font_allfamilies) + strlen (font_all) + 5;
2063 fontsetname = xmalloc (len);
2064 bzero (fontsetname, len);
2065 strcpy (fontsetname, base_fontname);
2066 strcat (fontsetname, sep);
2067 strcat (fontsetname, font_allcs);
2068 strcat (fontsetname, sep);
2069 strcat (fontsetname, font_allfamilies);
2070 strcat (fontsetname, sep);
2071 strcat (fontsetname, font_all);
2074 if (motif)
2075 strcat (fontsetname, ":");
2076 return fontsetname;
2079 #ifdef DEBUG_XIC_FONTSET
2080 static void
2081 print_fontset_result (xfs, name, missing_list, missing_count)
2082 XFontSet xfs;
2083 char *name;
2084 char **missing_list;
2085 int missing_count;
2087 if (xfs)
2088 fprintf (stderr, "XIC Fontset created: %s\n", name);
2089 else
2091 fprintf (stderr, "XIC Fontset failed: %s\n", name);
2092 while (missing_count-- > 0)
2094 fprintf (stderr, " missing: %s\n", *missing_list);
2095 missing_list++;
2100 #endif
2102 static XFontSet
2103 xic_create_xfontset (f)
2104 struct frame *f;
2106 XFontSet xfs = NULL;
2107 struct font *font = FRAME_FONT (f);
2108 int pixel_size = font->pixel_size;
2109 Lisp_Object rest, frame;
2111 /* See if there is another frame already using same fontset. */
2112 FOR_EACH_FRAME (rest, frame)
2114 struct frame *cf = XFRAME (frame);
2116 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2117 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
2118 && FRAME_FONT (f)
2119 && FRAME_FONT (f)->pixel_size == pixel_size)
2121 xfs = FRAME_XIC_FONTSET (cf);
2122 break;
2126 if (! xfs)
2128 char buf[256];
2129 char **missing_list;
2130 int missing_count;
2131 char *def_string;
2132 char *xlfd_format = "-*-*-medium-r-normal--%d-*-*-*-*-*";
2134 sprintf (buf, xlfd_format, pixel_size);
2135 missing_list = NULL;
2136 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), buf,
2137 &missing_list, &missing_count, &def_string);
2138 #ifdef DEBUG_XIC_FONTSET
2139 print_fontset_result (xfs, buf, missing_list, missing_count);
2140 #endif
2141 if (missing_list)
2142 XFreeStringList (missing_list);
2143 if (! xfs)
2145 /* List of pixel sizes most likely available. Find one that
2146 is closest to pixel_size. */
2147 int sizes[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2148 int *smaller, *larger;
2150 for (smaller = sizes; smaller[1]; smaller++)
2151 if (smaller[1] >= pixel_size)
2152 break;
2153 larger = smaller + 1;
2154 if (*larger == pixel_size)
2155 larger++;
2156 while (*smaller || *larger)
2158 int this_size;
2160 if (! *larger)
2161 this_size = *smaller--;
2162 else if (! *smaller)
2163 this_size = *larger++;
2164 else if (pixel_size - *smaller < *larger - pixel_size)
2165 this_size = *smaller--;
2166 else
2167 this_size = *larger++;
2168 sprintf (buf, xlfd_format, this_size);
2169 missing_list = NULL;
2170 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), buf,
2171 &missing_list, &missing_count, &def_string);
2172 #ifdef DEBUG_XIC_FONTSET
2173 print_fontset_result (xfs, buf, missing_list, missing_count);
2174 #endif
2175 if (missing_list)
2176 XFreeStringList (missing_list);
2177 if (xfs)
2178 break;
2181 if (! xfs)
2183 char *last_resort = "-*-*-*-r-normal--*-*-*-*-*-*";
2185 missing_list = NULL;
2186 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), last_resort,
2187 &missing_list, &missing_count, &def_string);
2188 #ifdef DEBUG_XIC_FONTSET
2189 print_fontset_result (xfs, last_resort, missing_list, missing_count);
2190 #endif
2191 if (missing_list)
2192 XFreeStringList (missing_list);
2197 return xfs;
2200 /* Free the X fontset of frame F if it is the last frame using it. */
2202 void
2203 xic_free_xfontset (f)
2204 struct frame *f;
2206 Lisp_Object rest, frame;
2207 int shared_p = 0;
2209 if (!FRAME_XIC_FONTSET (f))
2210 return;
2212 /* See if there is another frame sharing the same fontset. */
2213 FOR_EACH_FRAME (rest, frame)
2215 struct frame *cf = XFRAME (frame);
2216 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2217 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
2218 && FRAME_XIC_FONTSET (cf) == FRAME_XIC_FONTSET (f))
2220 shared_p = 1;
2221 break;
2225 if (!shared_p)
2226 /* The fontset is not used anymore. It is safe to free it. */
2227 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
2229 if (FRAME_XIC_BASE_FONTNAME (f))
2230 xfree (FRAME_XIC_BASE_FONTNAME (f));
2231 FRAME_XIC_BASE_FONTNAME (f) = NULL;
2232 FRAME_XIC_FONTSET (f) = NULL;
2236 /* Value is the best input style, given user preferences USER (already
2237 checked to be supported by Emacs), and styles supported by the
2238 input method XIM. */
2240 static XIMStyle
2241 best_xim_style (user, xim)
2242 XIMStyles *user;
2243 XIMStyles *xim;
2245 int i, j;
2247 for (i = 0; i < user->count_styles; ++i)
2248 for (j = 0; j < xim->count_styles; ++j)
2249 if (user->supported_styles[i] == xim->supported_styles[j])
2250 return user->supported_styles[i];
2252 /* Return the default style. */
2253 return XIMPreeditNothing | XIMStatusNothing;
2256 /* Create XIC for frame F. */
2258 static XIMStyle xic_style;
2260 void
2261 create_frame_xic (f)
2262 struct frame *f;
2264 XIM xim;
2265 XIC xic = NULL;
2266 XFontSet xfs = NULL;
2268 if (FRAME_XIC (f))
2269 return;
2271 /* Create X fontset. */
2272 xfs = xic_create_xfontset (f);
2273 xim = FRAME_X_XIM (f);
2274 if (xim)
2276 XRectangle s_area;
2277 XPoint spot;
2278 XVaNestedList preedit_attr;
2279 XVaNestedList status_attr;
2281 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
2282 spot.x = 0; spot.y = 1;
2284 /* Determine XIC style. */
2285 if (xic_style == 0)
2287 XIMStyles supported_list;
2288 supported_list.count_styles = (sizeof supported_xim_styles
2289 / sizeof supported_xim_styles[0]);
2290 supported_list.supported_styles = supported_xim_styles;
2291 xic_style = best_xim_style (&supported_list,
2292 FRAME_X_XIM_STYLES (f));
2295 preedit_attr = XVaCreateNestedList (0,
2296 XNFontSet, xfs,
2297 XNForeground,
2298 FRAME_FOREGROUND_PIXEL (f),
2299 XNBackground,
2300 FRAME_BACKGROUND_PIXEL (f),
2301 (xic_style & XIMPreeditPosition
2302 ? XNSpotLocation
2303 : NULL),
2304 &spot,
2305 NULL);
2306 status_attr = XVaCreateNestedList (0,
2307 XNArea,
2308 &s_area,
2309 XNFontSet,
2310 xfs,
2311 XNForeground,
2312 FRAME_FOREGROUND_PIXEL (f),
2313 XNBackground,
2314 FRAME_BACKGROUND_PIXEL (f),
2315 NULL);
2317 xic = XCreateIC (xim,
2318 XNInputStyle, xic_style,
2319 XNClientWindow, FRAME_X_WINDOW (f),
2320 XNFocusWindow, FRAME_X_WINDOW (f),
2321 XNStatusAttributes, status_attr,
2322 XNPreeditAttributes, preedit_attr,
2323 NULL);
2324 XFree (preedit_attr);
2325 XFree (status_attr);
2328 FRAME_XIC (f) = xic;
2329 FRAME_XIC_STYLE (f) = xic_style;
2330 FRAME_XIC_FONTSET (f) = xfs;
2334 /* Destroy XIC and free XIC fontset of frame F, if any. */
2336 void
2337 free_frame_xic (f)
2338 struct frame *f;
2340 if (FRAME_XIC (f) == NULL)
2341 return;
2343 XDestroyIC (FRAME_XIC (f));
2344 xic_free_xfontset (f);
2346 FRAME_XIC (f) = NULL;
2350 /* Place preedit area for XIC of window W's frame to specified
2351 pixel position X/Y. X and Y are relative to window W. */
2353 void
2354 xic_set_preeditarea (w, x, y)
2355 struct window *w;
2356 int x, y;
2358 struct frame *f = XFRAME (w->frame);
2359 XVaNestedList attr;
2360 XPoint spot;
2362 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w);
2363 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
2364 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
2365 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2366 XFree (attr);
2370 /* Place status area for XIC in bottom right corner of frame F.. */
2372 void
2373 xic_set_statusarea (f)
2374 struct frame *f;
2376 XIC xic = FRAME_XIC (f);
2377 XVaNestedList attr;
2378 XRectangle area;
2379 XRectangle *needed;
2381 /* Negotiate geometry of status area. If input method has existing
2382 status area, use its current size. */
2383 area.x = area.y = area.width = area.height = 0;
2384 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
2385 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2386 XFree (attr);
2388 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
2389 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2390 XFree (attr);
2392 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
2394 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
2395 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2396 XFree (attr);
2399 area.width = needed->width;
2400 area.height = needed->height;
2401 area.x = FRAME_PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
2402 area.y = (FRAME_PIXEL_HEIGHT (f) - area.height
2403 - FRAME_MENUBAR_HEIGHT (f)
2404 - FRAME_TOOLBAR_HEIGHT (f)
2405 - FRAME_INTERNAL_BORDER_WIDTH (f));
2406 XFree (needed);
2408 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
2409 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2410 XFree (attr);
2414 /* Set X fontset for XIC of frame F, using base font name
2415 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2417 void
2418 xic_set_xfontset (f, base_fontname)
2419 struct frame *f;
2420 char *base_fontname;
2422 XVaNestedList attr;
2423 XFontSet xfs;
2425 xic_free_xfontset (f);
2427 xfs = xic_create_xfontset (f);
2429 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
2430 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
2431 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2432 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
2433 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
2434 XFree (attr);
2436 FRAME_XIC_FONTSET (f) = xfs;
2439 #endif /* HAVE_X_I18N */
2443 #ifdef USE_X_TOOLKIT
2445 /* Create and set up the X widget for frame F. */
2447 static void
2448 x_window (f, window_prompting, minibuffer_only)
2449 struct frame *f;
2450 long window_prompting;
2451 int minibuffer_only;
2453 XClassHint class_hints;
2454 XSetWindowAttributes attributes;
2455 unsigned long attribute_mask;
2456 Widget shell_widget;
2457 Widget pane_widget;
2458 Widget frame_widget;
2459 Arg al [25];
2460 int ac;
2462 BLOCK_INPUT;
2464 /* Use the resource name as the top-level widget name
2465 for looking up resources. Make a non-Lisp copy
2466 for the window manager, so GC relocation won't bother it.
2468 Elsewhere we specify the window name for the window manager. */
2471 char *str = (char *) SDATA (Vx_resource_name);
2472 f->namebuf = (char *) xmalloc (strlen (str) + 1);
2473 strcpy (f->namebuf, str);
2476 ac = 0;
2477 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
2478 XtSetArg (al[ac], XtNinput, 1); ac++;
2479 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2480 XtSetArg (al[ac], XtNborderWidth, f->border_width); ac++;
2481 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2482 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2483 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2484 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
2485 applicationShellWidgetClass,
2486 FRAME_X_DISPLAY (f), al, ac);
2488 f->output_data.x->widget = shell_widget;
2489 /* maybe_set_screen_title_format (shell_widget); */
2491 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
2492 (widget_value *) NULL,
2493 shell_widget, False,
2494 (lw_callback) NULL,
2495 (lw_callback) NULL,
2496 (lw_callback) NULL,
2497 (lw_callback) NULL);
2499 ac = 0;
2500 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2501 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2502 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2503 XtSetValues (pane_widget, al, ac);
2504 f->output_data.x->column_widget = pane_widget;
2506 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2507 the emacs screen when changing menubar. This reduces flickering. */
2509 ac = 0;
2510 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2511 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
2512 XtSetArg (al[ac], XtNallowResize, 1); ac++;
2513 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
2514 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
2515 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2516 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2517 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2518 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
2519 al, ac);
2521 f->output_data.x->edit_widget = frame_widget;
2523 XtManageChild (frame_widget);
2525 /* Do some needed geometry management. */
2527 int len;
2528 char *tem, shell_position[32];
2529 Arg al[10];
2530 int ac = 0;
2531 int extra_borders = 0;
2532 int menubar_size
2533 = (f->output_data.x->menubar_widget
2534 ? (f->output_data.x->menubar_widget->core.height
2535 + f->output_data.x->menubar_widget->core.border_width)
2536 : 0);
2538 #if 0 /* Experimentally, we now get the right results
2539 for -geometry -0-0 without this. 24 Aug 96, rms. */
2540 if (FRAME_EXTERNAL_MENU_BAR (f))
2542 Dimension ibw = 0;
2543 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
2544 menubar_size += ibw;
2546 #endif
2548 f->output_data.x->menubar_height = menubar_size;
2550 #ifndef USE_LUCID
2551 /* Motif seems to need this amount added to the sizes
2552 specified for the shell widget. The Athena/Lucid widgets don't.
2553 Both conclusions reached experimentally. -- rms. */
2554 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
2555 &extra_borders, NULL);
2556 extra_borders *= 2;
2557 #endif
2559 /* Convert our geometry parameters into a geometry string
2560 and specify it.
2561 Note that we do not specify here whether the position
2562 is a user-specified or program-specified one.
2563 We pass that information later, in x_wm_set_size_hints. */
2565 int left = f->left_pos;
2566 int xneg = window_prompting & XNegative;
2567 int top = f->top_pos;
2568 int yneg = window_prompting & YNegative;
2569 if (xneg)
2570 left = -left;
2571 if (yneg)
2572 top = -top;
2574 if (window_prompting & USPosition)
2575 sprintf (shell_position, "=%dx%d%c%d%c%d",
2576 FRAME_PIXEL_WIDTH (f) + extra_borders,
2577 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders,
2578 (xneg ? '-' : '+'), left,
2579 (yneg ? '-' : '+'), top);
2580 else
2582 sprintf (shell_position, "=%dx%d",
2583 FRAME_PIXEL_WIDTH (f) + extra_borders,
2584 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders);
2586 /* Setting x and y when the position is not specified in
2587 the geometry string will set program position in the WM hints.
2588 If Emacs had just one program position, we could set it in
2589 fallback resources, but since each make-frame call can specify
2590 different program positions, this is easier. */
2591 XtSetArg (al[ac], XtNx, left); ac++;
2592 XtSetArg (al[ac], XtNy, top); ac++;
2596 len = strlen (shell_position) + 1;
2597 /* We don't free this because we don't know whether
2598 it is safe to free it while the frame exists.
2599 It isn't worth the trouble of arranging to free it
2600 when the frame is deleted. */
2601 tem = (char *) xmalloc (len);
2602 strncpy (tem, shell_position, len);
2603 XtSetArg (al[ac], XtNgeometry, tem); ac++;
2604 XtSetValues (shell_widget, al, ac);
2607 XtManageChild (pane_widget);
2608 XtRealizeWidget (shell_widget);
2610 if (FRAME_X_EMBEDDED_P (f))
2611 XReparentWindow (FRAME_X_DISPLAY (f), XtWindow (shell_widget),
2612 f->output_data.x->parent_desc, 0, 0);
2614 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
2616 validate_x_resource_name ();
2618 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2619 class_hints.res_class = (char *) SDATA (Vx_resource_class);
2620 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
2622 #ifdef HAVE_X_I18N
2623 FRAME_XIC (f) = NULL;
2624 if (use_xim)
2625 create_frame_xic (f);
2626 #endif
2628 f->output_data.x->wm_hints.input = True;
2629 f->output_data.x->wm_hints.flags |= InputHint;
2630 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2631 &f->output_data.x->wm_hints);
2633 hack_wm_protocols (f, shell_widget);
2635 #ifdef HACK_EDITRES
2636 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
2637 #endif
2639 /* Do a stupid property change to force the server to generate a
2640 PropertyNotify event so that the event_stream server timestamp will
2641 be initialized to something relevant to the time we created the window.
2643 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
2644 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2645 XA_ATOM, 32, PropModeAppend,
2646 (unsigned char*) NULL, 0);
2648 /* Make all the standard events reach the Emacs frame. */
2649 attributes.event_mask = STANDARD_EVENT_SET;
2651 #ifdef HAVE_X_I18N
2652 if (FRAME_XIC (f))
2654 /* XIM server might require some X events. */
2655 unsigned long fevent = NoEventMask;
2656 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2657 attributes.event_mask |= fevent;
2659 #endif /* HAVE_X_I18N */
2661 attribute_mask = CWEventMask;
2662 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
2663 attribute_mask, &attributes);
2665 XtMapWidget (frame_widget);
2667 /* x_set_name normally ignores requests to set the name if the
2668 requested name is the same as the current name. This is the one
2669 place where that assumption isn't correct; f->name is set, but
2670 the X server hasn't been told. */
2672 Lisp_Object name;
2673 int explicit = f->explicit_name;
2675 f->explicit_name = 0;
2676 name = f->name;
2677 f->name = Qnil;
2678 x_set_name (f, name, explicit);
2681 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2682 f->output_data.x->text_cursor);
2684 UNBLOCK_INPUT;
2686 /* This is a no-op, except under Motif. Make sure main areas are
2687 set to something reasonable, in case we get an error later. */
2688 lw_set_main_areas (pane_widget, 0, frame_widget);
2691 #else /* not USE_X_TOOLKIT */
2692 #ifdef USE_GTK
2693 void
2694 x_window (f)
2695 FRAME_PTR f;
2697 if (! xg_create_frame_widgets (f))
2698 error ("Unable to create window");
2700 #ifdef HAVE_X_I18N
2701 FRAME_XIC (f) = NULL;
2702 if (use_xim)
2704 BLOCK_INPUT;
2705 create_frame_xic (f);
2706 if (FRAME_XIC (f))
2708 /* XIM server might require some X events. */
2709 unsigned long fevent = NoEventMask;
2710 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2712 if (fevent != NoEventMask)
2714 XSetWindowAttributes attributes;
2715 XWindowAttributes wattr;
2716 unsigned long attribute_mask;
2718 XGetWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2719 &wattr);
2720 attributes.event_mask = wattr.your_event_mask | fevent;
2721 attribute_mask = CWEventMask;
2722 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2723 attribute_mask, &attributes);
2726 UNBLOCK_INPUT;
2728 #endif
2731 #else /*! USE_GTK */
2732 /* Create and set up the X window for frame F. */
2734 void
2735 x_window (f)
2736 struct frame *f;
2739 XClassHint class_hints;
2740 XSetWindowAttributes attributes;
2741 unsigned long attribute_mask;
2743 attributes.background_pixel = FRAME_BACKGROUND_PIXEL (f);
2744 attributes.border_pixel = f->output_data.x->border_pixel;
2745 attributes.bit_gravity = StaticGravity;
2746 attributes.backing_store = NotUseful;
2747 attributes.save_under = True;
2748 attributes.event_mask = STANDARD_EVENT_SET;
2749 attributes.colormap = FRAME_X_COLORMAP (f);
2750 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
2751 | CWColormap);
2753 BLOCK_INPUT;
2754 FRAME_X_WINDOW (f)
2755 = XCreateWindow (FRAME_X_DISPLAY (f),
2756 f->output_data.x->parent_desc,
2757 f->left_pos,
2758 f->top_pos,
2759 FRAME_PIXEL_WIDTH (f), FRAME_PIXEL_HEIGHT (f),
2760 f->border_width,
2761 CopyFromParent, /* depth */
2762 InputOutput, /* class */
2763 FRAME_X_VISUAL (f),
2764 attribute_mask, &attributes);
2766 #ifdef HAVE_X_I18N
2767 if (use_xim)
2769 create_frame_xic (f);
2770 if (FRAME_XIC (f))
2772 /* XIM server might require some X events. */
2773 unsigned long fevent = NoEventMask;
2774 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2775 attributes.event_mask |= fevent;
2776 attribute_mask = CWEventMask;
2777 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2778 attribute_mask, &attributes);
2781 #endif /* HAVE_X_I18N */
2783 validate_x_resource_name ();
2785 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2786 class_hints.res_class = (char *) SDATA (Vx_resource_class);
2787 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
2789 /* The menubar is part of the ordinary display;
2790 it does not count in addition to the height of the window. */
2791 f->output_data.x->menubar_height = 0;
2793 /* This indicates that we use the "Passive Input" input model.
2794 Unless we do this, we don't get the Focus{In,Out} events that we
2795 need to draw the cursor correctly. Accursed bureaucrats.
2796 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2798 f->output_data.x->wm_hints.input = True;
2799 f->output_data.x->wm_hints.flags |= InputHint;
2800 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2801 &f->output_data.x->wm_hints);
2802 f->output_data.x->wm_hints.icon_pixmap = None;
2804 /* Request "save yourself" and "delete window" commands from wm. */
2806 Atom protocols[2];
2807 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
2808 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
2809 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
2812 /* x_set_name normally ignores requests to set the name if the
2813 requested name is the same as the current name. This is the one
2814 place where that assumption isn't correct; f->name is set, but
2815 the X server hasn't been told. */
2817 Lisp_Object name;
2818 int explicit = f->explicit_name;
2820 f->explicit_name = 0;
2821 name = f->name;
2822 f->name = Qnil;
2823 x_set_name (f, name, explicit);
2826 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2827 f->output_data.x->text_cursor);
2829 UNBLOCK_INPUT;
2831 if (FRAME_X_WINDOW (f) == 0)
2832 error ("Unable to create window");
2835 #endif /* not USE_GTK */
2836 #endif /* not USE_X_TOOLKIT */
2838 /* Verify that the icon position args for this window are valid. */
2840 static void
2841 x_icon_verify (f, parms)
2842 struct frame *f;
2843 Lisp_Object parms;
2845 Lisp_Object icon_x, icon_y;
2847 /* Set the position of the icon. Note that twm groups all
2848 icons in an icon window. */
2849 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2850 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2851 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2853 CHECK_NUMBER (icon_x);
2854 CHECK_NUMBER (icon_y);
2856 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2857 error ("Both left and top icon corners of icon must be specified");
2860 /* Handle the icon stuff for this window. Perhaps later we might
2861 want an x_set_icon_position which can be called interactively as
2862 well. */
2864 static void
2865 x_icon (f, parms)
2866 struct frame *f;
2867 Lisp_Object parms;
2869 Lisp_Object icon_x, icon_y;
2870 #if 0
2871 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2872 #endif
2874 /* Set the position of the icon. Note that twm groups all
2875 icons in an icon window. */
2876 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2877 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2878 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2880 CHECK_NUMBER (icon_x);
2881 CHECK_NUMBER (icon_y);
2883 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2884 error ("Both left and top icon corners of icon must be specified");
2886 BLOCK_INPUT;
2888 if (! EQ (icon_x, Qunbound))
2889 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
2891 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2892 but x_create_frame still needs it. */
2893 /* Start up iconic or window? */
2894 x_wm_set_window_state
2895 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
2896 Qicon)
2897 ? IconicState
2898 : NormalState));
2899 #endif
2901 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
2902 ? f->icon_name
2903 : f->name)));
2905 UNBLOCK_INPUT;
2908 /* Make the GCs needed for this window, setting the
2909 background, border and mouse colors; also create the
2910 mouse cursor and the gray border tile. */
2912 static char cursor_bits[] =
2914 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2915 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2916 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2917 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2920 static void
2921 x_make_gc (f)
2922 struct frame *f;
2924 XGCValues gc_values;
2926 BLOCK_INPUT;
2928 /* Create the GCs of this frame.
2929 Note that many default values are used. */
2931 gc_values.foreground = FRAME_FOREGROUND_PIXEL (f);
2932 gc_values.background = FRAME_BACKGROUND_PIXEL (f);
2933 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
2934 f->output_data.x->normal_gc
2935 = XCreateGC (FRAME_X_DISPLAY (f),
2936 FRAME_X_WINDOW (f),
2937 GCLineWidth | GCForeground | GCBackground,
2938 &gc_values);
2940 /* Reverse video style. */
2941 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2942 gc_values.background = FRAME_FOREGROUND_PIXEL (f);
2943 f->output_data.x->reverse_gc
2944 = XCreateGC (FRAME_X_DISPLAY (f),
2945 FRAME_X_WINDOW (f),
2946 GCForeground | GCBackground | GCLineWidth,
2947 &gc_values);
2949 /* Cursor has cursor-color background, background-color foreground. */
2950 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2951 gc_values.background = f->output_data.x->cursor_pixel;
2952 gc_values.fill_style = FillOpaqueStippled;
2953 gc_values.stipple
2954 = XCreateBitmapFromData (FRAME_X_DISPLAY (f),
2955 FRAME_X_DISPLAY_INFO (f)->root_window,
2956 cursor_bits, 16, 16);
2957 f->output_data.x->cursor_gc
2958 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2959 (GCForeground | GCBackground
2960 | GCFillStyle /* | GCStipple */ | GCLineWidth),
2961 &gc_values);
2963 /* Reliefs. */
2964 f->output_data.x->white_relief.gc = 0;
2965 f->output_data.x->black_relief.gc = 0;
2967 /* Create the gray border tile used when the pointer is not in
2968 the frame. Since this depends on the frame's pixel values,
2969 this must be done on a per-frame basis. */
2970 f->output_data.x->border_tile
2971 = (XCreatePixmapFromBitmapData
2972 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
2973 gray_bits, gray_width, gray_height,
2974 FRAME_FOREGROUND_PIXEL (f),
2975 FRAME_BACKGROUND_PIXEL (f),
2976 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
2978 UNBLOCK_INPUT;
2982 /* Free what was was allocated in x_make_gc. */
2984 void
2985 x_free_gcs (f)
2986 struct frame *f;
2988 Display *dpy = FRAME_X_DISPLAY (f);
2990 BLOCK_INPUT;
2992 if (f->output_data.x->normal_gc)
2994 XFreeGC (dpy, f->output_data.x->normal_gc);
2995 f->output_data.x->normal_gc = 0;
2998 if (f->output_data.x->reverse_gc)
3000 XFreeGC (dpy, f->output_data.x->reverse_gc);
3001 f->output_data.x->reverse_gc = 0;
3004 if (f->output_data.x->cursor_gc)
3006 XFreeGC (dpy, f->output_data.x->cursor_gc);
3007 f->output_data.x->cursor_gc = 0;
3010 if (f->output_data.x->border_tile)
3012 XFreePixmap (dpy, f->output_data.x->border_tile);
3013 f->output_data.x->border_tile = 0;
3016 UNBLOCK_INPUT;
3020 /* Handler for signals raised during x_create_frame and
3021 x_create_top_frame. FRAME is the frame which is partially
3022 constructed. */
3024 static Lisp_Object
3025 unwind_create_frame (frame)
3026 Lisp_Object frame;
3028 struct frame *f = XFRAME (frame);
3030 /* If frame is already dead, nothing to do. This can happen if the
3031 display is disconnected after the frame has become official, but
3032 before x_create_frame removes the unwind protect. */
3033 if (!FRAME_LIVE_P (f))
3034 return Qnil;
3036 /* If frame is ``official'', nothing to do. */
3037 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
3039 #if GLYPH_DEBUG
3040 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3041 #endif
3043 x_free_frame_resources (f);
3045 #if GLYPH_DEBUG
3046 /* Check that reference counts are indeed correct. */
3047 xassert (dpyinfo->reference_count == dpyinfo_refcount);
3048 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
3049 #endif
3050 return Qt;
3053 return Qnil;
3057 static void
3058 x_default_font_parameter (f, parms)
3059 struct frame *f;
3060 Lisp_Object parms;
3062 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3063 Lisp_Object font_param = x_get_arg (dpyinfo, parms, Qfont, NULL, NULL,
3064 RES_TYPE_STRING);
3065 Lisp_Object font;
3066 if (EQ (font_param, Qunbound))
3067 font_param = Qnil;
3068 font = !NILP (font_param) ? font_param
3069 : x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
3071 if (! STRINGP (font))
3073 char *names[]
3075 #ifdef HAVE_XFT
3076 /* This will find the normal Xft font. */
3077 "monospace-12",
3078 #endif
3079 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3080 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3081 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3082 /* This was formerly the first thing tried, but it finds
3083 too many fonts and takes too long. */
3084 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
3085 /* If those didn't work, look for something which will
3086 at least work. */
3087 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
3088 "fixed",
3089 NULL };
3090 int i;
3092 for (i = 0; names[i]; i++)
3094 font = font_open_by_name (f, names[i]);
3095 if (! NILP (font))
3096 break;
3098 if (NILP (font))
3099 error ("No suitable font was found");
3101 else if (!NILP (font_param))
3103 /* Remember the explicit font parameter, so we can re-apply it after
3104 we've applied the `default' face settings. */
3105 x_set_frame_parameters (f, Fcons (Fcons (Qfont_param, font_param), Qnil));
3107 x_default_parameter (f, parms, Qfont, font, "font", "Font", RES_TYPE_STRING);
3111 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
3112 1, 1, 0,
3113 doc: /* Make a new X window, which is called a "frame" in Emacs terms.
3114 Return an Emacs frame object.
3115 ALIST is an alist of frame parameters.
3116 If the parameters specify that the frame should not have a minibuffer,
3117 and do not specify a specific minibuffer window to use,
3118 then `default-minibuffer-frame' must be a frame whose minibuffer can
3119 be shared by the new frame.
3121 This function is an internal primitive--use `make-frame' instead. */)
3122 (parms)
3123 Lisp_Object parms;
3125 struct frame *f;
3126 Lisp_Object frame, tem;
3127 Lisp_Object name;
3128 int minibuffer_only = 0;
3129 long window_prompting = 0;
3130 int width, height;
3131 int count = SPECPDL_INDEX ();
3132 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3133 Lisp_Object display;
3134 struct x_display_info *dpyinfo = NULL;
3135 Lisp_Object parent;
3136 struct kboard *kb;
3138 parms = Fcopy_alist (parms);
3140 /* Use this general default value to start with
3141 until we know if this frame has a specified name. */
3142 Vx_resource_name = Vinvocation_name;
3144 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_NUMBER);
3145 if (EQ (display, Qunbound))
3146 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
3147 if (EQ (display, Qunbound))
3148 display = Qnil;
3149 dpyinfo = check_x_display_info (display);
3150 #ifdef MULTI_KBOARD
3151 kb = dpyinfo->terminal->kboard;
3152 #else
3153 kb = &the_only_kboard;
3154 #endif
3156 if (!dpyinfo->terminal->name)
3157 error ("Terminal is not live, can't create new frames on it");
3159 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
3160 if (!STRINGP (name)
3161 && ! EQ (name, Qunbound)
3162 && ! NILP (name))
3163 error ("Invalid frame name--not a string or nil");
3165 if (STRINGP (name))
3166 Vx_resource_name = name;
3168 /* See if parent window is specified. */
3169 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
3170 if (EQ (parent, Qunbound))
3171 parent = Qnil;
3172 if (! NILP (parent))
3173 CHECK_NUMBER (parent);
3175 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3176 /* No need to protect DISPLAY because that's not used after passing
3177 it to make_frame_without_minibuffer. */
3178 frame = Qnil;
3179 GCPRO4 (parms, parent, name, frame);
3180 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
3181 RES_TYPE_SYMBOL);
3182 if (EQ (tem, Qnone) || NILP (tem))
3183 f = make_frame_without_minibuffer (Qnil, kb, display);
3184 else if (EQ (tem, Qonly))
3186 f = make_minibuffer_frame ();
3187 minibuffer_only = 1;
3189 else if (WINDOWP (tem))
3190 f = make_frame_without_minibuffer (tem, kb, display);
3191 else
3192 f = make_frame (1);
3194 XSETFRAME (frame, f);
3196 /* Note that X Windows does support scroll bars. */
3197 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
3199 f->terminal = dpyinfo->terminal;
3200 f->terminal->reference_count++;
3202 f->output_method = output_x_window;
3203 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
3204 bzero (f->output_data.x, sizeof (struct x_output));
3205 f->output_data.x->icon_bitmap = -1;
3206 FRAME_FONTSET (f) = -1;
3207 f->output_data.x->scroll_bar_foreground_pixel = -1;
3208 f->output_data.x->scroll_bar_background_pixel = -1;
3209 #ifdef USE_TOOLKIT_SCROLL_BARS
3210 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
3211 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
3212 #endif /* USE_TOOLKIT_SCROLL_BARS */
3214 f->icon_name
3215 = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
3216 RES_TYPE_STRING);
3217 if (! STRINGP (f->icon_name))
3218 f->icon_name = Qnil;
3220 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
3222 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3223 record_unwind_protect (unwind_create_frame, frame);
3224 #if GLYPH_DEBUG
3225 image_cache_refcount = FRAME_IMAGE_CACHE (f)->refcount;
3226 dpyinfo_refcount = dpyinfo->reference_count;
3227 #endif /* GLYPH_DEBUG */
3229 /* These colors will be set anyway later, but it's important
3230 to get the color reference counts right, so initialize them! */
3232 Lisp_Object black;
3233 struct gcpro gcpro1;
3235 /* Function x_decode_color can signal an error. Make
3236 sure to initialize color slots so that we won't try
3237 to free colors we haven't allocated. */
3238 FRAME_FOREGROUND_PIXEL (f) = -1;
3239 FRAME_BACKGROUND_PIXEL (f) = -1;
3240 f->output_data.x->cursor_pixel = -1;
3241 f->output_data.x->cursor_foreground_pixel = -1;
3242 f->output_data.x->border_pixel = -1;
3243 f->output_data.x->mouse_pixel = -1;
3245 black = build_string ("black");
3246 GCPRO1 (black);
3247 FRAME_FOREGROUND_PIXEL (f)
3248 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3249 FRAME_BACKGROUND_PIXEL (f)
3250 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3251 f->output_data.x->cursor_pixel
3252 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3253 f->output_data.x->cursor_foreground_pixel
3254 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3255 f->output_data.x->border_pixel
3256 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3257 f->output_data.x->mouse_pixel
3258 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3259 UNGCPRO;
3262 /* Specify the parent under which to make this X window. */
3264 if (!NILP (parent))
3266 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
3267 f->output_data.x->explicit_parent = 1;
3269 else
3271 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
3272 f->output_data.x->explicit_parent = 0;
3275 /* Set the name; the functions to which we pass f expect the name to
3276 be set. */
3277 if (EQ (name, Qunbound) || NILP (name))
3279 f->name = build_string (dpyinfo->x_id_name);
3280 f->explicit_name = 0;
3282 else
3284 f->name = name;
3285 f->explicit_name = 1;
3286 /* use the frame's title when getting resources for this frame. */
3287 specbind (Qx_resource_name, name);
3290 f->resx = dpyinfo->resx;
3291 f->resy = dpyinfo->resy;
3293 register_font_driver (&xfont_driver, f);
3294 #ifdef HAVE_FREETYPE
3295 #ifdef HAVE_XFT
3296 register_font_driver (&xftfont_driver, f);
3297 #else /* not HAVE_XFT */
3298 register_font_driver (&ftxfont_driver, f);
3299 #endif /* not HAVE_XFT */
3300 #endif /* HAVE_FREETYPE */
3302 x_default_parameter (f, parms, Qfont_backend, Qnil,
3303 "fontBackend", "FontBackend", RES_TYPE_STRING);
3305 /* Extract the window parameters from the supplied values
3306 that are needed to determine window geometry. */
3307 x_default_font_parameter (f, parms);
3309 #ifdef USE_LUCID
3310 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
3311 whereby it fails to get any font. */
3312 xlwmenu_default_font = XLoadQueryFont (FRAME_X_DISPLAY (f), "fixed");
3313 #endif
3315 /* Frame contents get displaced if an embedded X window has a border. */
3316 if (! FRAME_X_EMBEDDED_P (f))
3317 x_default_parameter (f, parms, Qborder_width, make_number (2),
3318 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
3320 /* This defaults to 1 in order to match xterm. We recognize either
3321 internalBorderWidth or internalBorder (which is what xterm calls
3322 it). */
3323 if (NILP (Fassq (Qinternal_border_width, parms)))
3325 Lisp_Object value;
3327 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
3328 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
3329 if (! EQ (value, Qunbound))
3330 parms = Fcons (Fcons (Qinternal_border_width, value),
3331 parms);
3333 x_default_parameter (f, parms, Qinternal_border_width,
3334 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3335 make_number (0),
3336 #else
3337 make_number (1),
3338 #endif
3339 "internalBorderWidth", "internalBorderWidth",
3340 RES_TYPE_NUMBER);
3341 x_default_parameter (f, parms, Qvertical_scroll_bars, Qleft,
3342 "verticalScrollBars", "ScrollBars",
3343 RES_TYPE_SYMBOL);
3345 /* Also do the stuff which must be set before the window exists. */
3346 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
3347 "foreground", "Foreground", RES_TYPE_STRING);
3348 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
3349 "background", "Background", RES_TYPE_STRING);
3350 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
3351 "pointerColor", "Foreground", RES_TYPE_STRING);
3352 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
3353 "cursorColor", "Foreground", RES_TYPE_STRING);
3354 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
3355 "borderColor", "BorderColor", RES_TYPE_STRING);
3356 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
3357 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
3358 x_default_parameter (f, parms, Qline_spacing, Qnil,
3359 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
3360 x_default_parameter (f, parms, Qleft_fringe, Qnil,
3361 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
3362 x_default_parameter (f, parms, Qright_fringe, Qnil,
3363 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
3365 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
3366 "scrollBarForeground",
3367 "ScrollBarForeground", 1);
3368 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
3369 "scrollBarBackground",
3370 "ScrollBarBackground", 0);
3372 /* Init faces before x_default_parameter is called for scroll-bar
3373 parameters because that function calls x_set_scroll_bar_width,
3374 which calls change_frame_size, which calls Fset_window_buffer,
3375 which runs hooks, which call Fvertical_motion. At the end, we
3376 end up in init_iterator with a null face cache, which should not
3377 happen. */
3378 init_frame_faces (f);
3380 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
3381 "menuBar", "MenuBar", RES_TYPE_NUMBER);
3382 x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
3383 "toolBar", "ToolBar", RES_TYPE_NUMBER);
3384 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
3385 "bufferPredicate", "BufferPredicate",
3386 RES_TYPE_SYMBOL);
3387 x_default_parameter (f, parms, Qtitle, Qnil,
3388 "title", "Title", RES_TYPE_STRING);
3389 x_default_parameter (f, parms, Qwait_for_wm, Qt,
3390 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN);
3391 x_default_parameter (f, parms, Qfullscreen, Qnil,
3392 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
3394 /* Compute the size of the X window. */
3395 window_prompting = x_figure_window_size (f, parms, 1);
3397 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
3398 f->no_split = minibuffer_only || EQ (tem, Qt);
3400 x_icon_verify (f, parms);
3402 /* Create the X widget or window. */
3403 #ifdef USE_X_TOOLKIT
3404 x_window (f, window_prompting, minibuffer_only);
3405 #else
3406 x_window (f);
3407 #endif
3409 x_icon (f, parms);
3410 x_make_gc (f);
3412 /* Now consider the frame official. */
3413 FRAME_X_DISPLAY_INFO (f)->reference_count++;
3414 Vframe_list = Fcons (frame, Vframe_list);
3416 /* We need to do this after creating the X window, so that the
3417 icon-creation functions can say whose icon they're describing. */
3418 x_default_parameter (f, parms, Qicon_type, Qt,
3419 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
3421 x_default_parameter (f, parms, Qauto_raise, Qnil,
3422 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3423 x_default_parameter (f, parms, Qauto_lower, Qnil,
3424 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3425 x_default_parameter (f, parms, Qcursor_type, Qbox,
3426 "cursorType", "CursorType", RES_TYPE_SYMBOL);
3427 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
3428 "scrollBarWidth", "ScrollBarWidth",
3429 RES_TYPE_NUMBER);
3430 x_default_parameter (f, parms, Qalpha, Qnil,
3431 "alpha", "Alpha", RES_TYPE_NUMBER);
3433 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3434 Change will not be effected unless different from the current
3435 FRAME_LINES (f). */
3436 width = FRAME_COLS (f);
3437 height = FRAME_LINES (f);
3439 SET_FRAME_COLS (f, 0);
3440 FRAME_LINES (f) = 0;
3441 change_frame_size (f, height, width, 1, 0, 0);
3443 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3444 /* Create the menu bar. */
3445 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
3447 /* If this signals an error, we haven't set size hints for the
3448 frame and we didn't make it visible. */
3449 initialize_frame_menubar (f);
3451 #ifndef USE_GTK
3452 /* This is a no-op, except under Motif where it arranges the
3453 main window for the widgets on it. */
3454 lw_set_main_areas (f->output_data.x->column_widget,
3455 f->output_data.x->menubar_widget,
3456 f->output_data.x->edit_widget);
3457 #endif /* not USE_GTK */
3459 #endif /* USE_X_TOOLKIT || USE_GTK */
3461 /* Tell the server what size and position, etc, we want, and how
3462 badly we want them. This should be done after we have the menu
3463 bar so that its size can be taken into account. */
3464 BLOCK_INPUT;
3465 x_wm_set_size_hint (f, window_prompting, 0);
3466 UNBLOCK_INPUT;
3468 /* Make the window appear on the frame and enable display, unless
3469 the caller says not to. However, with explicit parent, Emacs
3470 cannot control visibility, so don't try. */
3471 if (! f->output_data.x->explicit_parent)
3473 Lisp_Object visibility;
3475 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
3476 RES_TYPE_SYMBOL);
3477 if (EQ (visibility, Qunbound))
3478 visibility = Qt;
3480 if (EQ (visibility, Qicon))
3481 x_iconify_frame (f);
3482 else if (! NILP (visibility))
3483 x_make_frame_visible (f);
3484 else
3485 /* Must have been Qnil. */
3489 /* Set the WM leader property. GTK does this itself, so this is not
3490 needed when using GTK. */
3491 if (dpyinfo->client_leader_window != 0)
3493 BLOCK_INPUT;
3494 XChangeProperty (FRAME_X_DISPLAY (f),
3495 FRAME_OUTER_WINDOW (f),
3496 dpyinfo->Xatom_wm_client_leader,
3497 XA_WINDOW, 32, PropModeReplace,
3498 (unsigned char *) &dpyinfo->client_leader_window, 1);
3499 UNBLOCK_INPUT;
3502 /* Initialize `default-minibuffer-frame' in case this is the first
3503 frame on this terminal. */
3504 if (FRAME_HAS_MINIBUF_P (f)
3505 && (!FRAMEP (kb->Vdefault_minibuffer_frame)
3506 || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame))))
3507 kb->Vdefault_minibuffer_frame = frame;
3509 /* All remaining specified parameters, which have not been "used"
3510 by x_get_arg and friends, now go in the misc. alist of the frame. */
3511 for (tem = parms; CONSP (tem); tem = XCDR (tem))
3512 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
3513 f->param_alist = Fcons (XCAR (tem), f->param_alist);
3515 UNGCPRO;
3517 /* Make sure windows on this frame appear in calls to next-window
3518 and similar functions. */
3519 Vwindow_list = Qnil;
3521 return unbind_to (count, frame);
3525 /* FRAME is used only to get a handle on the X display. We don't pass the
3526 display info directly because we're called from frame.c, which doesn't
3527 know about that structure. */
3529 Lisp_Object
3530 x_get_focus_frame (frame)
3531 struct frame *frame;
3533 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
3534 Lisp_Object xfocus;
3535 if (! dpyinfo->x_focus_frame)
3536 return Qnil;
3538 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
3539 return xfocus;
3543 /* In certain situations, when the window manager follows a
3544 click-to-focus policy, there seems to be no way around calling
3545 XSetInputFocus to give another frame the input focus .
3547 In an ideal world, XSetInputFocus should generally be avoided so
3548 that applications don't interfere with the window manager's focus
3549 policy. But I think it's okay to use when it's clearly done
3550 following a user-command. */
3552 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
3553 doc: /* Set the input focus to FRAME.
3554 FRAME nil means use the selected frame. */)
3555 (frame)
3556 Lisp_Object frame;
3558 struct frame *f = check_x_frame (frame);
3559 Display *dpy = FRAME_X_DISPLAY (f);
3561 BLOCK_INPUT;
3562 x_catch_errors (dpy);
3563 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3564 RevertToParent, CurrentTime);
3565 x_ewmh_activate_frame (f);
3566 x_uncatch_errors ();
3567 UNBLOCK_INPUT;
3569 return Qnil;
3573 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
3574 doc: /* Internal function called by `color-defined-p', which see. */)
3575 (color, frame)
3576 Lisp_Object color, frame;
3578 XColor foo;
3579 FRAME_PTR f = check_x_frame (frame);
3581 CHECK_STRING (color);
3583 if (x_defined_color (f, SDATA (color), &foo, 0))
3584 return Qt;
3585 else
3586 return Qnil;
3589 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
3590 doc: /* Internal function called by `color-values', which see. */)
3591 (color, frame)
3592 Lisp_Object color, frame;
3594 XColor foo;
3595 FRAME_PTR f = check_x_frame (frame);
3597 CHECK_STRING (color);
3599 if (x_defined_color (f, SDATA (color), &foo, 0))
3600 return list3 (make_number (foo.red),
3601 make_number (foo.green),
3602 make_number (foo.blue));
3603 else
3604 return Qnil;
3607 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
3608 doc: /* Internal function called by `display-color-p', which see. */)
3609 (terminal)
3610 Lisp_Object terminal;
3612 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3614 if (dpyinfo->n_planes <= 2)
3615 return Qnil;
3617 switch (dpyinfo->visual->class)
3619 case StaticColor:
3620 case PseudoColor:
3621 case TrueColor:
3622 case DirectColor:
3623 return Qt;
3625 default:
3626 return Qnil;
3630 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
3631 0, 1, 0,
3632 doc: /* Return t if the X display supports shades of gray.
3633 Note that color displays do support shades of gray.
3634 The optional argument TERMINAL specifies which display to ask about.
3635 TERMINAL should be a terminal id, a frame or a display name (a string).
3636 If omitted or nil, that stands for the selected frame's display. */)
3637 (terminal)
3638 Lisp_Object terminal;
3640 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3642 if (dpyinfo->n_planes <= 1)
3643 return Qnil;
3645 switch (dpyinfo->visual->class)
3647 case StaticColor:
3648 case PseudoColor:
3649 case TrueColor:
3650 case DirectColor:
3651 case StaticGray:
3652 case GrayScale:
3653 return Qt;
3655 default:
3656 return Qnil;
3660 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
3661 0, 1, 0,
3662 doc: /* Return the width in pixels of the X display TERMINAL.
3663 The optional argument TERMINAL specifies which display to ask about.
3664 TERMINAL should be a terminal id, a frame or a display name (a string).
3665 If omitted or nil, that stands for the selected frame's display. */)
3666 (terminal)
3667 Lisp_Object terminal;
3669 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3671 return make_number (dpyinfo->width);
3674 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
3675 Sx_display_pixel_height, 0, 1, 0,
3676 doc: /* Return the height in pixels of the X display TERMINAL.
3677 The optional argument TERMINAL specifies which display to ask about.
3678 TERMINAL should be a terminal id, a frame or a display name (a string).
3679 If omitted or nil, that stands for the selected frame's display. */)
3680 (terminal)
3681 Lisp_Object terminal;
3683 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3685 return make_number (dpyinfo->height);
3688 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
3689 0, 1, 0,
3690 doc: /* Return the number of bitplanes of the X display TERMINAL.
3691 The optional argument TERMINAL specifies which display to ask about.
3692 TERMINAL should be a terminal id, a frame or a display name (a string).
3693 If omitted or nil, that stands for the selected frame's display. */)
3694 (terminal)
3695 Lisp_Object terminal;
3697 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3699 return make_number (dpyinfo->n_planes);
3702 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
3703 0, 1, 0,
3704 doc: /* Return the number of color cells of the X display TERMINAL.
3705 The optional argument TERMINAL specifies which display to ask about.
3706 TERMINAL should be a terminal id, a frame or a display name (a string).
3707 If omitted or nil, that stands for the selected frame's display. */)
3708 (terminal)
3709 Lisp_Object terminal;
3711 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3713 int nr_planes = DisplayPlanes (dpyinfo->display,
3714 XScreenNumberOfScreen (dpyinfo->screen));
3716 /* Truncate nr_planes to 24 to avoid integer overflow.
3717 Some displays says 32, but only 24 bits are actually significant.
3718 There are only very few and rare video cards that have more than
3719 24 significant bits. Also 24 bits is more than 16 million colors,
3720 it "should be enough for everyone". */
3721 if (nr_planes > 24) nr_planes = 24;
3723 return make_number (1 << nr_planes);
3726 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
3727 Sx_server_max_request_size,
3728 0, 1, 0,
3729 doc: /* Return the maximum request size of the X server of display TERMINAL.
3730 The optional argument TERMINAL specifies which display to ask about.
3731 TERMINAL should be a terminal id, a frame or a display name (a string).
3732 If omitted or nil, that stands for the selected frame's display. */)
3733 (terminal)
3734 Lisp_Object terminal;
3736 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3738 return make_number (MAXREQUEST (dpyinfo->display));
3741 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
3742 doc: /* Return the "vendor ID" string of the X server of display TERMINAL.
3743 \(Labelling every distributor as a "vendor" embodies the false assumption
3744 that operating systems cannot be developed and distributed noncommercially.)
3745 The optional argument TERMINAL specifies which display to ask about.
3746 TERMINAL should be a terminal id, a frame or a display name (a string).
3747 If omitted or nil, that stands for the selected frame's display. */)
3748 (terminal)
3749 Lisp_Object terminal;
3751 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3752 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 id, a frame or a display name (a string).
3766 If omitted or nil, that stands for the selected frame's display. */)
3767 (terminal)
3768 Lisp_Object terminal;
3770 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3771 Display *dpy = dpyinfo->display;
3773 return Fcons (make_number (ProtocolVersion (dpy)),
3774 Fcons (make_number (ProtocolRevision (dpy)),
3775 Fcons (make_number (VendorRelease (dpy)), Qnil)));
3778 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
3779 doc: /* Return the number of screens on the X server of display TERMINAL.
3780 The optional argument TERMINAL specifies which display to ask about.
3781 TERMINAL should be a terminal id, a frame or a display name (a string).
3782 If omitted or nil, that stands for the selected frame's display. */)
3783 (terminal)
3784 Lisp_Object terminal;
3786 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3788 return make_number (ScreenCount (dpyinfo->display));
3791 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
3792 doc: /* Return the height in millimeters of the X display TERMINAL.
3793 The optional argument TERMINAL specifies which display to ask about.
3794 TERMINAL should be a terminal id, a frame or a display name (a string).
3795 If omitted or nil, that stands for the selected frame's display. */)
3796 (terminal)
3797 Lisp_Object terminal;
3799 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3801 return make_number (HeightMMOfScreen (dpyinfo->screen));
3804 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
3805 doc: /* Return the width in millimeters of the X display TERMINAL.
3806 The optional argument TERMINAL specifies which display to ask about.
3807 TERMINAL should be a terminal id, a frame or a display name (a string).
3808 If omitted or nil, that stands for the selected frame's display. */)
3809 (terminal)
3810 Lisp_Object terminal;
3812 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3814 return make_number (WidthMMOfScreen (dpyinfo->screen));
3817 DEFUN ("x-display-backing-store", Fx_display_backing_store,
3818 Sx_display_backing_store, 0, 1, 0,
3819 doc: /* Return an indication of whether X display TERMINAL does backing store.
3820 The value may be `always', `when-mapped', or `not-useful'.
3821 The optional argument TERMINAL specifies which display to ask about.
3822 TERMINAL should be a terminal id, a frame or a display name (a string).
3823 If omitted or nil, that stands for the selected frame's display. */)
3824 (terminal)
3825 Lisp_Object terminal;
3827 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3828 Lisp_Object result;
3830 switch (DoesBackingStore (dpyinfo->screen))
3832 case Always:
3833 result = intern ("always");
3834 break;
3836 case WhenMapped:
3837 result = intern ("when-mapped");
3838 break;
3840 case NotUseful:
3841 result = intern ("not-useful");
3842 break;
3844 default:
3845 error ("Strange value for BackingStore parameter of screen");
3846 result = Qnil;
3849 return result;
3852 DEFUN ("x-display-visual-class", Fx_display_visual_class,
3853 Sx_display_visual_class, 0, 1, 0,
3854 doc: /* Return the visual class of the X display TERMINAL.
3855 The value is one of the symbols `static-gray', `gray-scale',
3856 `static-color', `pseudo-color', `true-color', or `direct-color'.
3858 The optional argument TERMINAL specifies which display to ask about.
3859 TERMINAL should a terminal id, a frame or a display name (a string).
3860 If omitted or nil, that stands for the selected frame's display. */)
3861 (terminal)
3862 Lisp_Object terminal;
3864 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3865 Lisp_Object result;
3867 switch (dpyinfo->visual->class)
3869 case StaticGray:
3870 result = intern ("static-gray");
3871 break;
3872 case GrayScale:
3873 result = intern ("gray-scale");
3874 break;
3875 case StaticColor:
3876 result = intern ("static-color");
3877 break;
3878 case PseudoColor:
3879 result = intern ("pseudo-color");
3880 break;
3881 case TrueColor:
3882 result = intern ("true-color");
3883 break;
3884 case DirectColor:
3885 result = intern ("direct-color");
3886 break;
3887 default:
3888 error ("Display has an unknown visual class");
3889 result = Qnil;
3892 return result;
3895 DEFUN ("x-display-save-under", Fx_display_save_under,
3896 Sx_display_save_under, 0, 1, 0,
3897 doc: /* Return t if the X display TERMINAL supports the save-under feature.
3898 The optional argument TERMINAL specifies which display to ask about.
3899 TERMINAL should be a terminal id, a frame or a display name (a string).
3900 If omitted or nil, that stands for the selected frame's display. */)
3901 (terminal)
3902 Lisp_Object terminal;
3904 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3906 if (DoesSaveUnders (dpyinfo->screen) == True)
3907 return Qt;
3908 else
3909 return Qnil;
3913 x_pixel_width (f)
3914 register struct frame *f;
3916 return FRAME_PIXEL_WIDTH (f);
3920 x_pixel_height (f)
3921 register struct frame *f;
3923 return FRAME_PIXEL_HEIGHT (f);
3927 x_char_width (f)
3928 register struct frame *f;
3930 return FRAME_COLUMN_WIDTH (f);
3934 x_char_height (f)
3935 register struct frame *f;
3937 return FRAME_LINE_HEIGHT (f);
3941 x_screen_planes (f)
3942 register struct frame *f;
3944 return FRAME_X_DISPLAY_INFO (f)->n_planes;
3949 /************************************************************************
3950 X Displays
3951 ************************************************************************/
3954 /* Mapping visual names to visuals. */
3956 static struct visual_class
3958 char *name;
3959 int class;
3961 visual_classes[] =
3963 {"StaticGray", StaticGray},
3964 {"GrayScale", GrayScale},
3965 {"StaticColor", StaticColor},
3966 {"PseudoColor", PseudoColor},
3967 {"TrueColor", TrueColor},
3968 {"DirectColor", DirectColor},
3969 {NULL, 0}
3973 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3975 /* Value is the screen number of screen SCR. This is a substitute for
3976 the X function with the same name when that doesn't exist. */
3979 XScreenNumberOfScreen (scr)
3980 register Screen *scr;
3982 Display *dpy = scr->display;
3983 int i;
3985 for (i = 0; i < dpy->nscreens; ++i)
3986 if (scr == dpy->screens + i)
3987 break;
3989 return i;
3992 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3995 /* Select the visual that should be used on display DPYINFO. Set
3996 members of DPYINFO appropriately. Called from x_term_init. */
3998 void
3999 select_visual (dpyinfo)
4000 struct x_display_info *dpyinfo;
4002 Display *dpy = dpyinfo->display;
4003 Screen *screen = dpyinfo->screen;
4004 Lisp_Object value;
4006 /* See if a visual is specified. */
4007 value = display_x_get_resource (dpyinfo,
4008 build_string ("visualClass"),
4009 build_string ("VisualClass"),
4010 Qnil, Qnil);
4011 if (STRINGP (value))
4013 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4014 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4015 depth, a decimal number. NAME is compared with case ignored. */
4016 char *s = (char *) alloca (SBYTES (value) + 1);
4017 char *dash;
4018 int i, class = -1;
4019 XVisualInfo vinfo;
4021 strcpy (s, SDATA (value));
4022 dash = index (s, '-');
4023 if (dash)
4025 dpyinfo->n_planes = atoi (dash + 1);
4026 *dash = '\0';
4028 else
4029 /* We won't find a matching visual with depth 0, so that
4030 an error will be printed below. */
4031 dpyinfo->n_planes = 0;
4033 /* Determine the visual class. */
4034 for (i = 0; visual_classes[i].name; ++i)
4035 if (xstrcasecmp (s, visual_classes[i].name) == 0)
4037 class = visual_classes[i].class;
4038 break;
4041 /* Look up a matching visual for the specified class. */
4042 if (class == -1
4043 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
4044 dpyinfo->n_planes, class, &vinfo))
4045 fatal ("Invalid visual specification `%s'", SDATA (value));
4047 dpyinfo->visual = vinfo.visual;
4049 else
4051 int n_visuals;
4052 XVisualInfo *vinfo, vinfo_template;
4054 dpyinfo->visual = DefaultVisualOfScreen (screen);
4056 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
4057 vinfo_template.screen = XScreenNumberOfScreen (screen);
4058 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
4059 &vinfo_template, &n_visuals);
4060 if (n_visuals != 1)
4061 fatal ("Can't get proper X visual info");
4063 dpyinfo->n_planes = vinfo->depth;
4064 XFree ((char *) vinfo);
4069 /* Return the X display structure for the display named NAME.
4070 Open a new connection if necessary. */
4072 struct x_display_info *
4073 x_display_info_for_name (name)
4074 Lisp_Object name;
4076 Lisp_Object names;
4077 struct x_display_info *dpyinfo;
4079 CHECK_STRING (name);
4081 #if 0
4082 if (! EQ (Vinitial_window_system, intern ("x")))
4083 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4084 #endif
4086 for (dpyinfo = x_display_list, names = x_display_name_list;
4087 dpyinfo;
4088 dpyinfo = dpyinfo->next, names = XCDR (names))
4090 Lisp_Object tem;
4091 tem = Fstring_equal (XCAR (XCAR (names)), name);
4092 if (!NILP (tem))
4093 return dpyinfo;
4096 /* Use this general default value to start with. */
4097 Vx_resource_name = Vinvocation_name;
4099 validate_x_resource_name ();
4101 dpyinfo = x_term_init (name, (char *)0,
4102 (char *) SDATA (Vx_resource_name));
4104 if (dpyinfo == 0)
4105 error ("Cannot connect to X server %s", SDATA (name));
4107 x_in_use = 1;
4108 XSETFASTINT (Vwindow_system_version, 11);
4110 return dpyinfo;
4114 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
4115 1, 3, 0,
4116 doc: /* Open a connection to an X server.
4117 DISPLAY is the name of the display to connect to.
4118 Optional second arg XRM-STRING is a string of resources in xrdb format.
4119 If the optional third arg MUST-SUCCEED is non-nil,
4120 terminate Emacs if we can't open the connection. */)
4121 (display, xrm_string, must_succeed)
4122 Lisp_Object display, xrm_string, must_succeed;
4124 unsigned char *xrm_option;
4125 struct x_display_info *dpyinfo;
4127 CHECK_STRING (display);
4128 if (! NILP (xrm_string))
4129 CHECK_STRING (xrm_string);
4131 #if 0
4132 if (! EQ (Vinitial_window_system, intern ("x")))
4133 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4134 #endif
4136 if (! NILP (xrm_string))
4137 xrm_option = (unsigned char *) SDATA (xrm_string);
4138 else
4139 xrm_option = (unsigned char *) 0;
4141 validate_x_resource_name ();
4143 /* This is what opens the connection and sets x_current_display.
4144 This also initializes many symbols, such as those used for input. */
4145 dpyinfo = x_term_init (display, xrm_option,
4146 (char *) SDATA (Vx_resource_name));
4148 if (dpyinfo == 0)
4150 if (!NILP (must_succeed))
4151 fatal ("Cannot connect to X server %s.\n\
4152 Check the DISPLAY environment variable or use `-d'.\n\
4153 Also use the `xauth' program to verify that you have the proper\n\
4154 authorization information needed to connect the X server.\n\
4155 An insecure way to solve the problem may be to use `xhost'.\n",
4156 SDATA (display));
4157 else
4158 error ("Cannot connect to X server %s", SDATA (display));
4161 x_in_use = 1;
4163 XSETFASTINT (Vwindow_system_version, 11);
4164 return Qnil;
4167 DEFUN ("x-close-connection", Fx_close_connection,
4168 Sx_close_connection, 1, 1, 0,
4169 doc: /* Close the connection to TERMINAL's X server.
4170 For TERMINAL, specify a terminal id, a frame or a display name (a
4171 string). If TERMINAL is nil, that stands for the selected frame's
4172 terminal. */)
4173 (terminal)
4174 Lisp_Object terminal;
4176 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4178 if (dpyinfo->reference_count > 0)
4179 error ("Display still has frames on it");
4181 x_delete_terminal (dpyinfo->terminal);
4183 return Qnil;
4186 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
4187 doc: /* Return the list of display names that Emacs has connections to. */)
4190 Lisp_Object tail, result;
4192 result = Qnil;
4193 for (tail = x_display_name_list; CONSP (tail); tail = XCDR (tail))
4194 result = Fcons (XCAR (XCAR (tail)), result);
4196 return result;
4199 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
4200 doc: /* If ON is non-nil, report X errors as soon as the erring request is made.
4201 If ON is nil, allow buffering of requests.
4202 Turning on synchronization prohibits the Xlib routines from buffering
4203 requests and seriously degrades performance, but makes debugging much
4204 easier.
4205 The optional second argument TERMINAL specifies which display to act on.
4206 TERMINAL should be a terminal id, a frame or a display name (a string).
4207 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4208 (on, terminal)
4209 Lisp_Object terminal, on;
4211 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4213 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
4215 return Qnil;
4218 /* Wait for responses to all X commands issued so far for frame F. */
4220 void
4221 x_sync (f)
4222 FRAME_PTR f;
4224 BLOCK_INPUT;
4225 XSync (FRAME_X_DISPLAY (f), False);
4226 UNBLOCK_INPUT;
4230 /***********************************************************************
4231 Window properties
4232 ***********************************************************************/
4234 DEFUN ("x-change-window-property", Fx_change_window_property,
4235 Sx_change_window_property, 2, 6, 0,
4236 doc: /* Change window property PROP to VALUE on the X window of FRAME.
4237 PROP must be a string.
4238 VALUE may be a string or a list of conses, numbers and/or strings.
4239 If an element in the list is a string, it is converted to
4240 an Atom and the value of the Atom is used. If an element is a cons,
4241 it is converted to a 32 bit number where the car is the 16 top bits and the
4242 cdr is the lower 16 bits.
4243 FRAME nil or omitted means use the selected frame.
4244 If TYPE is given and non-nil, it is the name of the type of VALUE.
4245 If TYPE is not given or nil, the type is STRING.
4246 FORMAT gives the size in bits of each element if VALUE is a list.
4247 It must be one of 8, 16 or 32.
4248 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4249 If OUTER_P is non-nil, the property is changed for the outer X window of
4250 FRAME. Default is to change on the edit X window.
4252 Value is VALUE. */)
4253 (prop, value, frame, type, format, outer_p)
4254 Lisp_Object prop, value, frame, type, format, outer_p;
4256 struct frame *f = check_x_frame (frame);
4257 Atom prop_atom;
4258 Atom target_type = XA_STRING;
4259 int element_format = 8;
4260 unsigned char *data;
4261 int nelements;
4262 Window w;
4264 CHECK_STRING (prop);
4266 if (! NILP (format))
4268 CHECK_NUMBER (format);
4269 element_format = XFASTINT (format);
4271 if (element_format != 8 && element_format != 16
4272 && element_format != 32)
4273 error ("FORMAT must be one of 8, 16 or 32");
4276 if (CONSP (value))
4278 nelements = x_check_property_data (value);
4279 if (nelements == -1)
4280 error ("Bad data in VALUE, must be number, string or cons");
4282 if (element_format == 8)
4283 data = (unsigned char *) xmalloc (nelements);
4284 else if (element_format == 16)
4285 data = (unsigned char *) xmalloc (nelements*2);
4286 else /* format == 32 */
4287 /* The man page for XChangeProperty:
4288 "If the specified format is 32, the property data must be a
4289 long array."
4290 This applies even if long is more than 64 bits. The X library
4291 converts to 32 bits before sending to the X server. */
4292 data = (unsigned char *) xmalloc (nelements * sizeof(long));
4294 x_fill_property_data (FRAME_X_DISPLAY (f), value, data, element_format);
4296 else
4298 CHECK_STRING (value);
4299 data = SDATA (value);
4300 nelements = SCHARS (value);
4303 BLOCK_INPUT;
4304 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4305 if (! NILP (type))
4307 CHECK_STRING (type);
4308 target_type = XInternAtom (FRAME_X_DISPLAY (f), SDATA (type), False);
4311 if (! NILP (outer_p)) w = FRAME_OUTER_WINDOW (f);
4312 else w = FRAME_X_WINDOW (f);
4314 XChangeProperty (FRAME_X_DISPLAY (f), w,
4315 prop_atom, target_type, element_format, PropModeReplace,
4316 data, nelements);
4318 if (CONSP (value)) xfree (data);
4320 /* Make sure the property is set when we return. */
4321 XFlush (FRAME_X_DISPLAY (f));
4322 UNBLOCK_INPUT;
4324 return value;
4328 DEFUN ("x-delete-window-property", Fx_delete_window_property,
4329 Sx_delete_window_property, 1, 2, 0,
4330 doc: /* Remove window property PROP from X window of FRAME.
4331 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4332 (prop, frame)
4333 Lisp_Object prop, frame;
4335 struct frame *f = check_x_frame (frame);
4336 Atom prop_atom;
4338 CHECK_STRING (prop);
4339 BLOCK_INPUT;
4340 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4341 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
4343 /* Make sure the property is removed when we return. */
4344 XFlush (FRAME_X_DISPLAY (f));
4345 UNBLOCK_INPUT;
4347 return prop;
4351 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
4352 1, 6, 0,
4353 doc: /* Value is the value of window property PROP on FRAME.
4354 If FRAME is nil or omitted, use the selected frame.
4355 If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4356 is the name of the Atom that denotes the type expected.
4357 If SOURCE is non-nil, get the property on that window instead of from
4358 FRAME. The number 0 denotes the root window.
4359 If DELETE_P is non-nil, delete the property after retreiving it.
4360 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4362 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4363 no value of TYPE. */)
4364 (prop, frame, type, source, delete_p, vector_ret_p)
4365 Lisp_Object prop, frame, type, source, delete_p, vector_ret_p;
4367 struct frame *f = check_x_frame (frame);
4368 Atom prop_atom;
4369 int rc;
4370 Lisp_Object prop_value = Qnil;
4371 unsigned char *tmp_data = NULL;
4372 Atom actual_type;
4373 Atom target_type = XA_STRING;
4374 int actual_format;
4375 unsigned long actual_size, bytes_remaining;
4376 Window target_window = FRAME_X_WINDOW (f);
4377 struct gcpro gcpro1;
4379 GCPRO1 (prop_value);
4380 CHECK_STRING (prop);
4382 if (! NILP (source))
4384 if (NUMBERP (source))
4386 if (FLOATP (source))
4387 target_window = (Window) XFLOAT (source);
4388 else
4389 target_window = XFASTINT (source);
4391 if (target_window == 0)
4392 target_window = FRAME_X_DISPLAY_INFO (f)->root_window;
4394 else if (CONSP (source))
4395 target_window = cons_to_long (source);
4398 BLOCK_INPUT;
4399 if (STRINGP (type))
4401 if (strcmp ("AnyPropertyType", SDATA (type)) == 0)
4402 target_type = AnyPropertyType;
4403 else
4404 target_type = XInternAtom (FRAME_X_DISPLAY (f), SDATA (type), False);
4407 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4408 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4409 prop_atom, 0, 0, False, target_type,
4410 &actual_type, &actual_format, &actual_size,
4411 &bytes_remaining, &tmp_data);
4412 if (rc == Success)
4414 int size = bytes_remaining;
4416 XFree (tmp_data);
4417 tmp_data = NULL;
4419 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4420 prop_atom, 0, bytes_remaining,
4421 ! NILP (delete_p), target_type,
4422 &actual_type, &actual_format,
4423 &actual_size, &bytes_remaining,
4424 &tmp_data);
4425 if (rc == Success && tmp_data)
4427 /* The man page for XGetWindowProperty says:
4428 "If the returned format is 32, the returned data is represented
4429 as a long array and should be cast to that type to obtain the
4430 elements."
4431 This applies even if long is more than 32 bits, the X library
4432 converts from 32 bit elements received from the X server to long
4433 and passes the long array to us. Thus, for that case bcopy can not
4434 be used. We convert to a 32 bit type here, because so much code
4435 assume on that.
4437 The bytes and offsets passed to XGetWindowProperty refers to the
4438 property and those are indeed in 32 bit quantities if format is
4439 32. */
4441 if (actual_format == 32 && actual_format < BITS_PER_LONG)
4443 unsigned long i;
4444 int *idata = (int *) tmp_data;
4445 long *ldata = (long *) tmp_data;
4447 for (i = 0; i < actual_size; ++i)
4448 idata[i] = (int) ldata[i];
4451 if (NILP (vector_ret_p))
4452 prop_value = make_string (tmp_data, size);
4453 else
4454 prop_value = x_property_data_to_lisp (f,
4455 tmp_data,
4456 actual_type,
4457 actual_format,
4458 actual_size);
4461 if (tmp_data) XFree (tmp_data);
4464 UNBLOCK_INPUT;
4465 UNGCPRO;
4466 return prop_value;
4471 /***********************************************************************
4472 Busy cursor
4473 ***********************************************************************/
4475 /* If non-null, an asynchronous timer that, when it expires, displays
4476 an hourglass cursor on all frames. */
4478 static struct atimer *hourglass_atimer;
4480 /* Non-zero means an hourglass cursor is currently shown. */
4482 static int hourglass_shown_p;
4484 /* Number of seconds to wait before displaying an hourglass cursor. */
4486 static Lisp_Object Vhourglass_delay;
4488 /* Default number of seconds to wait before displaying an hourglass
4489 cursor. */
4491 #define DEFAULT_HOURGLASS_DELAY 1
4493 /* Function prototypes. */
4495 static void show_hourglass P_ ((struct atimer *));
4496 static void hide_hourglass P_ ((void));
4498 /* Return non-zero if houglass timer has been started or hourglass is shown. */
4501 hourglass_started ()
4503 return hourglass_shown_p || hourglass_atimer != NULL;
4507 /* Cancel a currently active hourglass timer, and start a new one. */
4509 void
4510 start_hourglass ()
4512 EMACS_TIME delay;
4513 int secs, usecs = 0;
4515 cancel_hourglass ();
4517 if (INTEGERP (Vhourglass_delay)
4518 && XINT (Vhourglass_delay) > 0)
4519 secs = XFASTINT (Vhourglass_delay);
4520 else if (FLOATP (Vhourglass_delay)
4521 && XFLOAT_DATA (Vhourglass_delay) > 0)
4523 Lisp_Object tem;
4524 tem = Ftruncate (Vhourglass_delay, Qnil);
4525 secs = XFASTINT (tem);
4526 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
4528 else
4529 secs = DEFAULT_HOURGLASS_DELAY;
4531 EMACS_SET_SECS_USECS (delay, secs, usecs);
4532 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
4533 show_hourglass, NULL);
4537 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
4538 shown. */
4540 void
4541 cancel_hourglass ()
4543 if (hourglass_atimer)
4545 cancel_atimer (hourglass_atimer);
4546 hourglass_atimer = NULL;
4549 if (hourglass_shown_p)
4550 hide_hourglass ();
4554 /* Timer function of hourglass_atimer. TIMER is equal to
4555 hourglass_atimer.
4557 Display an hourglass pointer on all frames by mapping the frames'
4558 hourglass_window. Set the hourglass_p flag in the frames'
4559 output_data.x structure to indicate that an hourglass cursor is
4560 shown on the frames. */
4562 static void
4563 show_hourglass (timer)
4564 struct atimer *timer;
4566 /* The timer implementation will cancel this timer automatically
4567 after this function has run. Set hourglass_atimer to null
4568 so that we know the timer doesn't have to be canceled. */
4569 hourglass_atimer = NULL;
4571 if (!hourglass_shown_p)
4573 Lisp_Object rest, frame;
4575 BLOCK_INPUT;
4577 FOR_EACH_FRAME (rest, frame)
4579 struct frame *f = XFRAME (frame);
4581 if (FRAME_LIVE_P (f) && FRAME_X_P (f) && FRAME_X_DISPLAY (f))
4583 Display *dpy = FRAME_X_DISPLAY (f);
4585 #ifdef USE_X_TOOLKIT
4586 if (f->output_data.x->widget)
4587 #else
4588 if (FRAME_OUTER_WINDOW (f))
4589 #endif
4591 f->output_data.x->hourglass_p = 1;
4593 if (!f->output_data.x->hourglass_window)
4595 unsigned long mask = CWCursor;
4596 XSetWindowAttributes attrs;
4597 #ifdef USE_GTK
4598 Window parent = FRAME_X_WINDOW (f);
4599 #else
4600 Window parent = FRAME_OUTER_WINDOW (f);
4601 #endif
4602 attrs.cursor = f->output_data.x->hourglass_cursor;
4604 f->output_data.x->hourglass_window
4605 = XCreateWindow (dpy, parent,
4606 0, 0, 32000, 32000, 0, 0,
4607 InputOnly,
4608 CopyFromParent,
4609 mask, &attrs);
4612 XMapRaised (dpy, f->output_data.x->hourglass_window);
4613 XFlush (dpy);
4618 hourglass_shown_p = 1;
4619 UNBLOCK_INPUT;
4624 /* Hide the hourglass pointer on all frames, if it is currently
4625 shown. */
4627 static void
4628 hide_hourglass ()
4630 if (hourglass_shown_p)
4632 Lisp_Object rest, frame;
4634 BLOCK_INPUT;
4635 FOR_EACH_FRAME (rest, frame)
4637 struct frame *f = XFRAME (frame);
4639 if (FRAME_X_P (f)
4640 /* Watch out for newly created frames. */
4641 && f->output_data.x->hourglass_window)
4643 XUnmapWindow (FRAME_X_DISPLAY (f),
4644 f->output_data.x->hourglass_window);
4645 /* Sync here because XTread_socket looks at the
4646 hourglass_p flag that is reset to zero below. */
4647 XSync (FRAME_X_DISPLAY (f), False);
4648 f->output_data.x->hourglass_p = 0;
4652 hourglass_shown_p = 0;
4653 UNBLOCK_INPUT;
4659 /***********************************************************************
4660 Tool tips
4661 ***********************************************************************/
4663 static Lisp_Object x_create_tip_frame P_ ((struct x_display_info *,
4664 Lisp_Object, Lisp_Object));
4665 static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
4666 Lisp_Object, int, int, int *, int *));
4668 /* The frame of a currently visible tooltip. */
4670 Lisp_Object tip_frame;
4672 /* If non-nil, a timer started that hides the last tooltip when it
4673 fires. */
4675 Lisp_Object tip_timer;
4676 Window tip_window;
4678 /* If non-nil, a vector of 3 elements containing the last args
4679 with which x-show-tip was called. See there. */
4681 Lisp_Object last_show_tip_args;
4683 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4685 Lisp_Object Vx_max_tooltip_size;
4688 static Lisp_Object
4689 unwind_create_tip_frame (frame)
4690 Lisp_Object frame;
4692 Lisp_Object deleted;
4694 deleted = unwind_create_frame (frame);
4695 if (EQ (deleted, Qt))
4697 tip_window = None;
4698 tip_frame = Qnil;
4701 return deleted;
4705 /* Create a frame for a tooltip on the display described by DPYINFO.
4706 PARMS is a list of frame parameters. TEXT is the string to
4707 display in the tip frame. Value is the frame.
4709 Note that functions called here, esp. x_default_parameter can
4710 signal errors, for instance when a specified color name is
4711 undefined. We have to make sure that we're in a consistent state
4712 when this happens. */
4714 static Lisp_Object
4715 x_create_tip_frame (dpyinfo, parms, text)
4716 struct x_display_info *dpyinfo;
4717 Lisp_Object parms, text;
4719 struct frame *f;
4720 Lisp_Object frame, tem;
4721 Lisp_Object name;
4722 long window_prompting = 0;
4723 int width, height;
4724 int count = SPECPDL_INDEX ();
4725 struct gcpro gcpro1, gcpro2, gcpro3;
4726 int face_change_count_before = face_change_count;
4727 Lisp_Object buffer;
4728 struct buffer *old_buffer;
4730 check_x ();
4732 if (!dpyinfo->terminal->name)
4733 error ("Terminal is not live, can't create new frames on it");
4735 parms = Fcopy_alist (parms);
4737 /* Get the name of the frame to use for resource lookup. */
4738 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
4739 if (!STRINGP (name)
4740 && !EQ (name, Qunbound)
4741 && !NILP (name))
4742 error ("Invalid frame name--not a string or nil");
4744 frame = Qnil;
4745 GCPRO3 (parms, name, frame);
4746 f = make_frame (1);
4747 XSETFRAME (frame, f);
4749 buffer = Fget_buffer_create (build_string (" *tip*"));
4750 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer, Qnil);
4751 old_buffer = current_buffer;
4752 set_buffer_internal_1 (XBUFFER (buffer));
4753 current_buffer->truncate_lines = Qnil;
4754 specbind (Qinhibit_read_only, Qt);
4755 specbind (Qinhibit_modification_hooks, Qt);
4756 Ferase_buffer ();
4757 Finsert (1, &text);
4758 set_buffer_internal_1 (old_buffer);
4760 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
4761 record_unwind_protect (unwind_create_tip_frame, frame);
4763 f->terminal = dpyinfo->terminal;
4764 f->terminal->reference_count++;
4766 /* By setting the output method, we're essentially saying that
4767 the frame is live, as per FRAME_LIVE_P. If we get a signal
4768 from this point on, x_destroy_window might screw up reference
4769 counts etc. */
4770 f->output_method = output_x_window;
4771 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
4772 bzero (f->output_data.x, sizeof (struct x_output));
4773 f->output_data.x->icon_bitmap = -1;
4774 FRAME_FONTSET (f) = -1;
4775 f->output_data.x->scroll_bar_foreground_pixel = -1;
4776 f->output_data.x->scroll_bar_background_pixel = -1;
4777 #ifdef USE_TOOLKIT_SCROLL_BARS
4778 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
4779 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
4780 #endif /* USE_TOOLKIT_SCROLL_BARS */
4781 f->icon_name = Qnil;
4782 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
4783 #if GLYPH_DEBUG
4784 image_cache_refcount = FRAME_IMAGE_CACHE (f)->refcount;
4785 dpyinfo_refcount = dpyinfo->reference_count;
4786 #endif /* GLYPH_DEBUG */
4787 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4788 f->output_data.x->explicit_parent = 0;
4790 /* These colors will be set anyway later, but it's important
4791 to get the color reference counts right, so initialize them! */
4793 Lisp_Object black;
4794 struct gcpro gcpro1;
4796 /* Function x_decode_color can signal an error. Make
4797 sure to initialize color slots so that we won't try
4798 to free colors we haven't allocated. */
4799 FRAME_FOREGROUND_PIXEL (f) = -1;
4800 FRAME_BACKGROUND_PIXEL (f) = -1;
4801 f->output_data.x->cursor_pixel = -1;
4802 f->output_data.x->cursor_foreground_pixel = -1;
4803 f->output_data.x->border_pixel = -1;
4804 f->output_data.x->mouse_pixel = -1;
4806 black = build_string ("black");
4807 GCPRO1 (black);
4808 FRAME_FOREGROUND_PIXEL (f)
4809 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4810 FRAME_BACKGROUND_PIXEL (f)
4811 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4812 f->output_data.x->cursor_pixel
4813 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4814 f->output_data.x->cursor_foreground_pixel
4815 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4816 f->output_data.x->border_pixel
4817 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4818 f->output_data.x->mouse_pixel
4819 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4820 UNGCPRO;
4823 /* Set the name; the functions to which we pass f expect the name to
4824 be set. */
4825 if (EQ (name, Qunbound) || NILP (name))
4827 f->name = build_string (dpyinfo->x_id_name);
4828 f->explicit_name = 0;
4830 else
4832 f->name = name;
4833 f->explicit_name = 1;
4834 /* use the frame's title when getting resources for this frame. */
4835 specbind (Qx_resource_name, name);
4838 f->resx = dpyinfo->resx;
4839 f->resy = dpyinfo->resy;
4841 register_font_driver (&xfont_driver, f);
4842 #ifdef HAVE_FREETYPE
4843 #ifdef HAVE_XFT
4844 register_font_driver (&xftfont_driver, f);
4845 #else /* not HAVE_XFT */
4846 register_font_driver (&ftxfont_driver, f);
4847 #endif /* not HAVE_XFT */
4848 #endif /* HAVE_FREETYPE */
4850 x_default_parameter (f, parms, Qfont_backend, Qnil,
4851 "fontBackend", "FontBackend", RES_TYPE_STRING);
4853 /* Extract the window parameters from the supplied values that are
4854 needed to determine window geometry. */
4855 x_default_font_parameter (f, parms);
4857 x_default_parameter (f, parms, Qborder_width, make_number (2),
4858 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
4860 /* This defaults to 2 in order to match xterm. We recognize either
4861 internalBorderWidth or internalBorder (which is what xterm calls
4862 it). */
4863 if (NILP (Fassq (Qinternal_border_width, parms)))
4865 Lisp_Object value;
4867 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
4868 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
4869 if (! EQ (value, Qunbound))
4870 parms = Fcons (Fcons (Qinternal_border_width, value),
4871 parms);
4874 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
4875 "internalBorderWidth", "internalBorderWidth",
4876 RES_TYPE_NUMBER);
4878 /* Also do the stuff which must be set before the window exists. */
4879 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
4880 "foreground", "Foreground", RES_TYPE_STRING);
4881 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
4882 "background", "Background", RES_TYPE_STRING);
4883 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
4884 "pointerColor", "Foreground", RES_TYPE_STRING);
4885 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
4886 "cursorColor", "Foreground", RES_TYPE_STRING);
4887 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
4888 "borderColor", "BorderColor", RES_TYPE_STRING);
4890 /* Init faces before x_default_parameter is called for scroll-bar
4891 parameters because that function calls x_set_scroll_bar_width,
4892 which calls change_frame_size, which calls Fset_window_buffer,
4893 which runs hooks, which call Fvertical_motion. At the end, we
4894 end up in init_iterator with a null face cache, which should not
4895 happen. */
4896 init_frame_faces (f);
4898 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4900 window_prompting = x_figure_window_size (f, parms, 0);
4903 XSetWindowAttributes attrs;
4904 unsigned long mask;
4906 BLOCK_INPUT;
4907 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
4908 if (DoesSaveUnders (dpyinfo->screen))
4909 mask |= CWSaveUnder;
4911 /* Window managers look at the override-redirect flag to determine
4912 whether or net to give windows a decoration (Xlib spec, chapter
4913 3.2.8). */
4914 attrs.override_redirect = True;
4915 attrs.save_under = True;
4916 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4917 /* Arrange for getting MapNotify and UnmapNotify events. */
4918 attrs.event_mask = StructureNotifyMask;
4919 tip_window
4920 = FRAME_X_WINDOW (f)
4921 = XCreateWindow (FRAME_X_DISPLAY (f),
4922 FRAME_X_DISPLAY_INFO (f)->root_window,
4923 /* x, y, width, height */
4924 0, 0, 1, 1,
4925 /* Border. */
4927 CopyFromParent, InputOutput, CopyFromParent,
4928 mask, &attrs);
4929 UNBLOCK_INPUT;
4932 x_make_gc (f);
4934 x_default_parameter (f, parms, Qauto_raise, Qnil,
4935 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4936 x_default_parameter (f, parms, Qauto_lower, Qnil,
4937 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4938 x_default_parameter (f, parms, Qcursor_type, Qbox,
4939 "cursorType", "CursorType", RES_TYPE_SYMBOL);
4941 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4942 Change will not be effected unless different from the current
4943 FRAME_LINES (f). */
4944 width = FRAME_COLS (f);
4945 height = FRAME_LINES (f);
4946 SET_FRAME_COLS (f, 0);
4947 FRAME_LINES (f) = 0;
4948 change_frame_size (f, height, width, 1, 0, 0);
4950 /* Add `tooltip' frame parameter's default value. */
4951 if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
4952 Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
4953 Qnil));
4955 /* FIXME - can this be done in a similar way to normal frames?
4956 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
4958 /* Set the `display-type' frame parameter before setting up faces. */
4960 Lisp_Object disptype;
4962 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
4963 disptype = intern ("mono");
4964 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale
4965 || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
4966 disptype = intern ("grayscale");
4967 else
4968 disptype = intern ("color");
4970 if (NILP (Fframe_parameter (frame, Qdisplay_type)))
4971 Fmodify_frame_parameters (frame, Fcons (Fcons (Qdisplay_type, disptype),
4972 Qnil));
4975 /* Set up faces after all frame parameters are known. This call
4976 also merges in face attributes specified for new frames.
4978 Frame parameters may be changed if .Xdefaults contains
4979 specifications for the default font. For example, if there is an
4980 `Emacs.default.attributeBackground: pink', the `background-color'
4981 attribute of the frame get's set, which let's the internal border
4982 of the tooltip frame appear in pink. Prevent this. */
4984 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
4986 /* Set tip_frame here, so that */
4987 tip_frame = frame;
4988 call1 (Qface_set_after_frame_default, frame);
4990 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
4991 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
4992 Qnil));
4995 f->no_split = 1;
4997 UNGCPRO;
4999 /* It is now ok to make the frame official even if we get an error
5000 below. And the frame needs to be on Vframe_list or making it
5001 visible won't work. */
5002 Vframe_list = Fcons (frame, Vframe_list);
5004 /* Now that the frame is official, it counts as a reference to
5005 its display. */
5006 FRAME_X_DISPLAY_INFO (f)->reference_count++;
5008 /* Setting attributes of faces of the tooltip frame from resources
5009 and similar will increment face_change_count, which leads to the
5010 clearing of all current matrices. Since this isn't necessary
5011 here, avoid it by resetting face_change_count to the value it
5012 had before we created the tip frame. */
5013 face_change_count = face_change_count_before;
5015 /* Discard the unwind_protect. */
5016 return unbind_to (count, frame);
5020 /* Compute where to display tip frame F. PARMS is the list of frame
5021 parameters for F. DX and DY are specified offsets from the current
5022 location of the mouse. WIDTH and HEIGHT are the width and height
5023 of the tooltip. Return coordinates relative to the root window of
5024 the display in *ROOT_X, and *ROOT_Y. */
5026 static void
5027 compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
5028 struct frame *f;
5029 Lisp_Object parms, dx, dy;
5030 int width, height;
5031 int *root_x, *root_y;
5033 Lisp_Object left, top;
5034 int win_x, win_y;
5035 Window root, child;
5036 unsigned pmask;
5038 /* User-specified position? */
5039 left = Fcdr (Fassq (Qleft, parms));
5040 top = Fcdr (Fassq (Qtop, parms));
5042 /* Move the tooltip window where the mouse pointer is. Resize and
5043 show it. */
5044 if (!INTEGERP (left) || !INTEGERP (top))
5046 BLOCK_INPUT;
5047 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
5048 &root, &child, root_x, root_y, &win_x, &win_y, &pmask);
5049 UNBLOCK_INPUT;
5052 if (INTEGERP (top))
5053 *root_y = XINT (top);
5054 else if (*root_y + XINT (dy) <= 0)
5055 *root_y = 0; /* Can happen for negative dy */
5056 else if (*root_y + XINT (dy) + height <= FRAME_X_DISPLAY_INFO (f)->height)
5057 /* It fits below the pointer */
5058 *root_y += XINT (dy);
5059 else if (height + XINT (dy) <= *root_y)
5060 /* It fits above the pointer. */
5061 *root_y -= height + XINT (dy);
5062 else
5063 /* Put it on the top. */
5064 *root_y = 0;
5066 if (INTEGERP (left))
5067 *root_x = XINT (left);
5068 else if (*root_x + XINT (dx) <= 0)
5069 *root_x = 0; /* Can happen for negative dx */
5070 else if (*root_x + XINT (dx) + width <= FRAME_X_DISPLAY_INFO (f)->width)
5071 /* It fits to the right of the pointer. */
5072 *root_x += XINT (dx);
5073 else if (width + XINT (dx) <= *root_x)
5074 /* It fits to the left of the pointer. */
5075 *root_x -= width + XINT (dx);
5076 else
5077 /* Put it left-justified on the screen--it ought to fit that way. */
5078 *root_x = 0;
5082 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
5083 doc: /* Show STRING in a "tooltip" window on frame FRAME.
5084 A tooltip window is a small X window displaying a string.
5086 This is an internal function; Lisp code should call `tooltip-show'.
5088 FRAME nil or omitted means use the selected frame.
5090 PARMS is an optional list of frame parameters which can be used to
5091 change the tooltip's appearance.
5093 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
5094 means use the default timeout of 5 seconds.
5096 If the list of frame parameters PARAMS contains a `left' parameters,
5097 the tooltip is displayed at that x-position. Otherwise it is
5098 displayed at the mouse position, with offset DX added (default is 5 if
5099 DX isn't specified). Likewise for the y-position; if a `top' frame
5100 parameter is specified, it determines the y-position of the tooltip
5101 window, otherwise it is displayed at the mouse position, with offset
5102 DY added (default is -10).
5104 A tooltip's maximum size is specified by `x-max-tooltip-size'.
5105 Text larger than the specified size is clipped. */)
5106 (string, frame, parms, timeout, dx, dy)
5107 Lisp_Object string, frame, parms, timeout, dx, dy;
5109 struct frame *f;
5110 struct window *w;
5111 int root_x, root_y;
5112 struct buffer *old_buffer;
5113 struct text_pos pos;
5114 int i, width, height;
5115 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5116 int old_windows_or_buffers_changed = windows_or_buffers_changed;
5117 int count = SPECPDL_INDEX ();
5119 specbind (Qinhibit_redisplay, Qt);
5121 GCPRO4 (string, parms, frame, timeout);
5123 CHECK_STRING (string);
5124 if (SCHARS (string) == 0)
5125 string = make_unibyte_string (" ", 1);
5127 f = check_x_frame (frame);
5128 if (NILP (timeout))
5129 timeout = make_number (5);
5130 else
5131 CHECK_NATNUM (timeout);
5133 if (NILP (dx))
5134 dx = make_number (5);
5135 else
5136 CHECK_NUMBER (dx);
5138 if (NILP (dy))
5139 dy = make_number (-10);
5140 else
5141 CHECK_NUMBER (dy);
5143 if (NILP (last_show_tip_args))
5144 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
5146 if (!NILP (tip_frame))
5148 Lisp_Object last_string = AREF (last_show_tip_args, 0);
5149 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
5150 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
5152 if (EQ (frame, last_frame)
5153 && !NILP (Fequal (last_string, string))
5154 && !NILP (Fequal (last_parms, parms)))
5156 struct frame *f = XFRAME (tip_frame);
5158 /* Only DX and DY have changed. */
5159 if (!NILP (tip_timer))
5161 Lisp_Object timer = tip_timer;
5162 tip_timer = Qnil;
5163 call1 (Qcancel_timer, timer);
5166 BLOCK_INPUT;
5167 compute_tip_xy (f, parms, dx, dy, FRAME_PIXEL_WIDTH (f),
5168 FRAME_PIXEL_HEIGHT (f), &root_x, &root_y);
5169 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5170 root_x, root_y);
5171 UNBLOCK_INPUT;
5172 goto start_timer;
5176 /* Hide a previous tip, if any. */
5177 Fx_hide_tip ();
5179 ASET (last_show_tip_args, 0, string);
5180 ASET (last_show_tip_args, 1, frame);
5181 ASET (last_show_tip_args, 2, parms);
5183 /* Add default values to frame parameters. */
5184 if (NILP (Fassq (Qname, parms)))
5185 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
5186 if (NILP (Fassq (Qinternal_border_width, parms)))
5187 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
5188 if (NILP (Fassq (Qborder_width, parms)))
5189 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
5190 if (NILP (Fassq (Qborder_color, parms)))
5191 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
5192 if (NILP (Fassq (Qbackground_color, parms)))
5193 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
5194 parms);
5196 /* Create a frame for the tooltip, and record it in the global
5197 variable tip_frame. */
5198 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms, string);
5199 f = XFRAME (frame);
5201 /* Set up the frame's root window. */
5202 w = XWINDOW (FRAME_ROOT_WINDOW (f));
5203 w->left_col = w->top_line = make_number (0);
5205 if (CONSP (Vx_max_tooltip_size)
5206 && INTEGERP (XCAR (Vx_max_tooltip_size))
5207 && XINT (XCAR (Vx_max_tooltip_size)) > 0
5208 && INTEGERP (XCDR (Vx_max_tooltip_size))
5209 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
5211 w->total_cols = XCAR (Vx_max_tooltip_size);
5212 w->total_lines = XCDR (Vx_max_tooltip_size);
5214 else
5216 w->total_cols = make_number (80);
5217 w->total_lines = make_number (40);
5220 FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
5221 adjust_glyphs (f);
5222 w->pseudo_window_p = 1;
5224 /* Display the tooltip text in a temporary buffer. */
5225 old_buffer = current_buffer;
5226 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
5227 current_buffer->truncate_lines = Qnil;
5228 clear_glyph_matrix (w->desired_matrix);
5229 clear_glyph_matrix (w->current_matrix);
5230 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
5231 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
5233 /* Compute width and height of the tooltip. */
5234 width = height = 0;
5235 for (i = 0; i < w->desired_matrix->nrows; ++i)
5237 struct glyph_row *row = &w->desired_matrix->rows[i];
5238 struct glyph *last;
5239 int row_width;
5241 /* Stop at the first empty row at the end. */
5242 if (!row->enabled_p || !row->displays_text_p)
5243 break;
5245 /* Let the row go over the full width of the frame. */
5246 row->full_width_p = 1;
5248 /* There's a glyph at the end of rows that is used to place
5249 the cursor there. Don't include the width of this glyph. */
5250 if (row->used[TEXT_AREA])
5252 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
5253 row_width = row->pixel_width - last->pixel_width;
5255 else
5256 row_width = row->pixel_width;
5258 height += row->height;
5259 width = max (width, row_width);
5262 /* Add the frame's internal border to the width and height the X
5263 window should have. */
5264 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5265 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5267 /* Move the tooltip window where the mouse pointer is. Resize and
5268 show it. */
5269 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
5271 BLOCK_INPUT;
5272 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5273 root_x, root_y, width, height);
5274 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5275 UNBLOCK_INPUT;
5277 /* Draw into the window. */
5278 w->must_be_updated_p = 1;
5279 update_single_window (w, 1);
5281 /* Restore original current buffer. */
5282 set_buffer_internal_1 (old_buffer);
5283 windows_or_buffers_changed = old_windows_or_buffers_changed;
5285 start_timer:
5286 /* Let the tip disappear after timeout seconds. */
5287 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
5288 intern ("x-hide-tip"));
5290 UNGCPRO;
5291 return unbind_to (count, Qnil);
5295 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
5296 doc: /* Hide the current tooltip window, if there is any.
5297 Value is t if tooltip was open, nil otherwise. */)
5300 int count;
5301 Lisp_Object deleted, frame, timer;
5302 struct gcpro gcpro1, gcpro2;
5304 /* Return quickly if nothing to do. */
5305 if (NILP (tip_timer) && NILP (tip_frame))
5306 return Qnil;
5308 frame = tip_frame;
5309 timer = tip_timer;
5310 GCPRO2 (frame, timer);
5311 tip_frame = tip_timer = deleted = Qnil;
5313 count = SPECPDL_INDEX ();
5314 specbind (Qinhibit_redisplay, Qt);
5315 specbind (Qinhibit_quit, Qt);
5317 if (!NILP (timer))
5318 call1 (Qcancel_timer, timer);
5320 if (FRAMEP (frame))
5322 Fdelete_frame (frame, Qnil);
5323 deleted = Qt;
5325 #ifdef USE_LUCID
5326 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5327 redisplay procedure is not called when a tip frame over menu
5328 items is unmapped. Redisplay the menu manually... */
5330 struct frame *f = SELECTED_FRAME ();
5331 Widget w = f->output_data.x->menubar_widget;
5332 extern void xlwmenu_redisplay P_ ((Widget));
5334 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
5335 && w != NULL)
5337 BLOCK_INPUT;
5338 xlwmenu_redisplay (w);
5339 UNBLOCK_INPUT;
5342 #endif /* USE_LUCID */
5345 UNGCPRO;
5346 return unbind_to (count, deleted);
5351 /***********************************************************************
5352 File selection dialog
5353 ***********************************************************************/
5355 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog,
5356 Sx_uses_old_gtk_dialog,
5357 0, 0, 0,
5358 doc: /* Return t if the old Gtk+ file selection dialog is used. */)
5361 #ifdef USE_GTK
5362 extern int use_dialog_box;
5363 extern int use_file_dialog;
5365 if (use_dialog_box
5366 && use_file_dialog
5367 && have_menus_p ()
5368 && xg_uses_old_file_dialog ())
5369 return Qt;
5370 #endif
5371 return Qnil;
5375 #ifdef USE_MOTIF
5376 /* Callback for "OK" and "Cancel" on file selection dialog. */
5378 static void
5379 file_dialog_cb (widget, client_data, call_data)
5380 Widget widget;
5381 XtPointer call_data, client_data;
5383 int *result = (int *) client_data;
5384 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
5385 *result = cb->reason;
5389 /* Callback for unmapping a file selection dialog. This is used to
5390 capture the case where a dialog is closed via a window manager's
5391 closer button, for example. Using a XmNdestroyCallback didn't work
5392 in this case. */
5394 static void
5395 file_dialog_unmap_cb (widget, client_data, call_data)
5396 Widget widget;
5397 XtPointer call_data, client_data;
5399 int *result = (int *) client_data;
5400 *result = XmCR_CANCEL;
5403 static Lisp_Object
5404 clean_up_file_dialog (arg)
5405 Lisp_Object arg;
5407 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
5408 Widget dialog = (Widget) p->pointer;
5410 /* Clean up. */
5411 BLOCK_INPUT;
5412 XtUnmanageChild (dialog);
5413 XtDestroyWidget (dialog);
5414 x_menu_set_in_use (0);
5415 UNBLOCK_INPUT;
5417 return Qnil;
5421 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5422 doc: /* Read file name, prompting with PROMPT in directory DIR.
5423 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5424 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5425 or directory must exist. ONLY-DIR-P is ignored." */)
5426 (prompt, dir, default_filename, mustmatch, only_dir_p)
5427 Lisp_Object prompt, dir, default_filename, mustmatch, only_dir_p;
5429 int result;
5430 struct frame *f = SELECTED_FRAME ();
5431 Lisp_Object file = Qnil;
5432 Lisp_Object decoded_file;
5433 Widget dialog, text, help;
5434 Arg al[10];
5435 int ac = 0;
5436 extern XtAppContext Xt_app_con;
5437 XmString dir_xmstring, pattern_xmstring;
5438 int count = SPECPDL_INDEX ();
5439 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
5441 check_x ();
5443 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5445 if (popup_activated ())
5446 error ("Trying to use a menu from within a menu-entry");
5448 CHECK_STRING (prompt);
5449 CHECK_STRING (dir);
5451 /* Prevent redisplay. */
5452 specbind (Qinhibit_redisplay, Qt);
5454 BLOCK_INPUT;
5456 /* Create the dialog with PROMPT as title, using DIR as initial
5457 directory and using "*" as pattern. */
5458 dir = Fexpand_file_name (dir, Qnil);
5459 dir_xmstring = XmStringCreateLocalized (SDATA (dir));
5460 pattern_xmstring = XmStringCreateLocalized ("*");
5462 XtSetArg (al[ac], XmNtitle, SDATA (prompt)); ++ac;
5463 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
5464 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
5465 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
5466 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
5467 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
5468 "fsb", al, ac);
5469 XmStringFree (dir_xmstring);
5470 XmStringFree (pattern_xmstring);
5472 /* Add callbacks for OK and Cancel. */
5473 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
5474 (XtPointer) &result);
5475 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
5476 (XtPointer) &result);
5477 XtAddCallback (dialog, XmNunmapCallback, file_dialog_unmap_cb,
5478 (XtPointer) &result);
5480 /* Remove the help button since we can't display help. */
5481 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
5482 XtUnmanageChild (help);
5484 /* Mark OK button as default. */
5485 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
5486 XmNshowAsDefault, True, NULL);
5488 /* If MUSTMATCH is non-nil, disable the file entry field of the
5489 dialog, so that the user must select a file from the files list
5490 box. We can't remove it because we wouldn't have a way to get at
5491 the result file name, then. */
5492 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5493 if (!NILP (mustmatch))
5495 Widget label;
5496 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
5497 XtSetSensitive (text, False);
5498 XtSetSensitive (label, False);
5501 /* Manage the dialog, so that list boxes get filled. */
5502 XtManageChild (dialog);
5504 if (STRINGP (default_filename))
5506 XmString default_xmstring;
5507 Widget wtext = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5508 Widget list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
5510 XmTextPosition last_pos = XmTextFieldGetLastPosition (wtext);
5511 XmTextFieldReplace (wtext, 0, last_pos,
5512 (SDATA (Ffile_name_nondirectory (default_filename))));
5514 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5515 must include the path for this to work. */
5517 default_xmstring = XmStringCreateLocalized (SDATA (default_filename));
5519 if (XmListItemExists (list, default_xmstring))
5521 int item_pos = XmListItemPos (list, default_xmstring);
5522 /* Select the item and scroll it into view. */
5523 XmListSelectPos (list, item_pos, True);
5524 XmListSetPos (list, item_pos);
5527 XmStringFree (default_xmstring);
5530 record_unwind_protect (clean_up_file_dialog, make_save_value (dialog, 0));
5532 /* Process events until the user presses Cancel or OK. */
5533 x_menu_set_in_use (1);
5534 result = 0;
5535 while (result == 0)
5537 XEvent event;
5538 x_menu_wait_for_event (0);
5539 XtAppNextEvent (Xt_app_con, &event);
5540 if (event.type == KeyPress
5541 && FRAME_X_DISPLAY (f) == event.xkey.display)
5543 KeySym keysym = XLookupKeysym (&event.xkey, 0);
5545 /* Pop down on C-g. */
5546 if (keysym == XK_g && (event.xkey.state & ControlMask) != 0)
5547 XtUnmanageChild (dialog);
5550 (void) x_dispatch_event (&event, FRAME_X_DISPLAY (f));
5553 /* Get the result. */
5554 if (result == XmCR_OK)
5556 XmString text;
5557 String data;
5559 XtVaGetValues (dialog, XmNtextString, &text, NULL);
5560 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
5561 XmStringFree (text);
5562 file = build_string (data);
5563 XtFree (data);
5565 else
5566 file = Qnil;
5568 UNBLOCK_INPUT;
5569 UNGCPRO;
5571 /* Make "Cancel" equivalent to C-g. */
5572 if (NILP (file))
5573 Fsignal (Qquit, Qnil);
5575 decoded_file = DECODE_FILE (file);
5577 return unbind_to (count, decoded_file);
5580 #endif /* USE_MOTIF */
5582 #ifdef USE_GTK
5584 static Lisp_Object
5585 clean_up_dialog (arg)
5586 Lisp_Object arg;
5588 x_menu_set_in_use (0);
5590 return Qnil;
5593 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5594 doc: /* Read file name, prompting with PROMPT in directory DIR.
5595 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5596 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5597 or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5598 directories. */)
5599 (prompt, dir, default_filename, mustmatch, only_dir_p)
5600 Lisp_Object prompt, dir, default_filename, mustmatch, only_dir_p;
5602 FRAME_PTR f = SELECTED_FRAME ();
5603 char *fn;
5604 Lisp_Object file = Qnil;
5605 Lisp_Object decoded_file;
5606 int count = SPECPDL_INDEX ();
5607 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
5608 char *cdef_file;
5610 check_x ();
5612 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5614 if (popup_activated ())
5615 error ("Trying to use a menu from within a menu-entry");
5617 CHECK_STRING (prompt);
5618 CHECK_STRING (dir);
5620 /* Prevent redisplay. */
5621 specbind (Qinhibit_redisplay, Qt);
5622 record_unwind_protect (clean_up_dialog, Qnil);
5624 BLOCK_INPUT;
5626 if (STRINGP (default_filename))
5627 cdef_file = SDATA (default_filename);
5628 else
5629 cdef_file = SDATA (dir);
5631 fn = xg_get_file_name (f, SDATA (prompt), cdef_file,
5632 ! NILP (mustmatch),
5633 ! NILP (only_dir_p));
5635 if (fn)
5637 file = build_string (fn);
5638 xfree (fn);
5641 UNBLOCK_INPUT;
5642 UNGCPRO;
5644 /* Make "Cancel" equivalent to C-g. */
5645 if (NILP (file))
5646 Fsignal (Qquit, Qnil);
5648 decoded_file = DECODE_FILE (file);
5650 return unbind_to (count, decoded_file);
5654 #ifdef HAVE_FREETYPE
5656 DEFUN ("x-select-font", Fx_select_font, Sx_select_font, 0, 2, 0,
5657 doc: /* Read a font name using a GTK font selection dialog.
5658 Return a GTK-style font string corresponding to the selection.
5660 If FRAME is omitted or nil, it defaults to the selected frame. */)
5661 (frame, ignored)
5662 Lisp_Object frame, ignored;
5664 FRAME_PTR f = check_x_frame (frame);
5665 char *name;
5666 Lisp_Object default_font, font = Qnil;
5667 int count = SPECPDL_INDEX ();
5669 check_x ();
5671 if (popup_activated ())
5672 error ("Trying to use a menu from within a menu-entry");
5674 /* Prevent redisplay. */
5675 specbind (Qinhibit_redisplay, Qt);
5676 record_unwind_protect (clean_up_dialog, Qnil);
5678 BLOCK_INPUT;
5680 XSETFONT (default_font, FRAME_FONT (f));
5681 if (FONTP (default_font))
5683 char *default_name = alloca (256);
5684 if (font_unparse_gtkname (default_font, f, default_name, 256) < 0)
5685 default_name = NULL;
5686 name = xg_get_font_name (f, default_name);
5688 else
5689 name = xg_get_font_name (f, NULL);
5691 if (name)
5693 font = build_string (name);
5694 xfree (name);
5697 UNBLOCK_INPUT;
5699 if (NILP (font))
5700 Fsignal (Qquit, Qnil);
5702 return unbind_to (count, font);
5704 #endif /* HAVE_FREETYPE */
5706 #endif /* USE_GTK */
5709 /***********************************************************************
5710 Keyboard
5711 ***********************************************************************/
5713 #ifdef HAVE_XKBGETKEYBOARD
5714 #include <X11/XKBlib.h>
5715 #include <X11/keysym.h>
5716 #endif
5718 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p,
5719 Sx_backspace_delete_keys_p, 0, 1, 0,
5720 doc: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5721 FRAME nil means use the selected frame.
5722 Value is t if we know that both keys are present, and are mapped to the
5723 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5724 present and mapped to the usual X keysyms. */)
5725 (frame)
5726 Lisp_Object frame;
5728 #ifdef HAVE_XKBGETKEYBOARD
5729 XkbDescPtr kb;
5730 struct frame *f = check_x_frame (frame);
5731 Display *dpy = FRAME_X_DISPLAY (f);
5732 Lisp_Object have_keys;
5733 int major, minor, op, event, error;
5735 BLOCK_INPUT;
5737 /* Check library version in case we're dynamically linked. */
5738 major = XkbMajorVersion;
5739 minor = XkbMinorVersion;
5740 if (!XkbLibraryVersion (&major, &minor))
5742 UNBLOCK_INPUT;
5743 return Qlambda;
5746 /* Check that the server supports XKB. */
5747 major = XkbMajorVersion;
5748 minor = XkbMinorVersion;
5749 if (!XkbQueryExtension (dpy, &op, &event, &error, &major, &minor))
5751 UNBLOCK_INPUT;
5752 return Qlambda;
5755 /* In this code we check that the keyboard has physical keys with names
5756 that start with BKSP (Backspace) and DELE (Delete), and that they
5757 generate keysym XK_BackSpace and XK_Delete respectively.
5758 This function is used to test if normal-erase-is-backspace should be
5759 turned on.
5760 An alternative approach would be to just check if XK_BackSpace and
5761 XK_Delete are mapped to any key. But if any of those are mapped to
5762 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5763 user doesn't know about it, it is better to return false here.
5764 It is more obvious to the user what to do if she/he has two keys
5765 clearly marked with names/symbols and one key does something not
5766 expected (i.e. she/he then tries the other).
5767 The cases where Backspace/Delete is mapped to some other key combination
5768 are rare, and in those cases, normal-erase-is-backspace can be turned on
5769 manually. */
5771 have_keys = Qnil;
5772 kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
5773 if (kb)
5775 int delete_keycode = 0, backspace_keycode = 0, i;
5777 if (XkbGetNames (dpy, XkbAllNamesMask, kb) == Success)
5779 for (i = kb->min_key_code;
5780 (i < kb->max_key_code
5781 && (delete_keycode == 0 || backspace_keycode == 0));
5782 ++i)
5784 /* The XKB symbolic key names can be seen most easily in
5785 the PS file generated by `xkbprint -label name
5786 $DISPLAY'. */
5787 if (bcmp ("DELE", kb->names->keys[i].name, 4) == 0)
5788 delete_keycode = i;
5789 else if (bcmp ("BKSP", kb->names->keys[i].name, 4) == 0)
5790 backspace_keycode = i;
5793 XkbFreeNames (kb, 0, True);
5796 XkbFreeClientMap (kb, 0, True);
5798 if (delete_keycode
5799 && backspace_keycode
5800 && XKeysymToKeycode (dpy, XK_Delete) == delete_keycode
5801 && XKeysymToKeycode (dpy, XK_BackSpace) == backspace_keycode)
5802 have_keys = Qt;
5804 UNBLOCK_INPUT;
5805 return have_keys;
5806 #else /* not HAVE_XKBGETKEYBOARD */
5807 return Qlambda;
5808 #endif /* not HAVE_XKBGETKEYBOARD */
5813 /***********************************************************************
5814 Initialization
5815 ***********************************************************************/
5817 /* Keep this list in the same order as frame_parms in frame.c.
5818 Use 0 for unsupported frame parameters. */
5820 frame_parm_handler x_frame_parm_handlers[] =
5822 x_set_autoraise,
5823 x_set_autolower,
5824 x_set_background_color,
5825 x_set_border_color,
5826 x_set_border_width,
5827 x_set_cursor_color,
5828 x_set_cursor_type,
5829 x_set_font,
5830 x_set_foreground_color,
5831 x_set_icon_name,
5832 x_set_icon_type,
5833 x_set_internal_border_width,
5834 x_set_menu_bar_lines,
5835 x_set_mouse_color,
5836 x_explicitly_set_name,
5837 x_set_scroll_bar_width,
5838 x_set_title,
5839 x_set_unsplittable,
5840 x_set_vertical_scroll_bars,
5841 x_set_visibility,
5842 x_set_tool_bar_lines,
5843 x_set_scroll_bar_foreground,
5844 x_set_scroll_bar_background,
5845 x_set_screen_gamma,
5846 x_set_line_spacing,
5847 x_set_fringe_width,
5848 x_set_fringe_width,
5849 x_set_wait_for_wm,
5850 x_set_fullscreen,
5851 x_set_font_backend,
5852 x_set_alpha
5855 void
5856 syms_of_xfns ()
5858 /* This is zero if not using X windows. */
5859 x_in_use = 0;
5861 /* The section below is built by the lisp expression at the top of the file,
5862 just above where these variables are declared. */
5863 /*&&& init symbols here &&&*/
5864 Qnone = intern ("none");
5865 staticpro (&Qnone);
5866 Qsuppress_icon = intern ("suppress-icon");
5867 staticpro (&Qsuppress_icon);
5868 Qundefined_color = intern ("undefined-color");
5869 staticpro (&Qundefined_color);
5870 Qcompound_text = intern ("compound-text");
5871 staticpro (&Qcompound_text);
5872 Qcancel_timer = intern ("cancel-timer");
5873 staticpro (&Qcancel_timer);
5874 Qfont_param = intern ("font-parameter");
5875 staticpro (&Qfont_param);
5876 /* This is the end of symbol initialization. */
5878 /* Text property `display' should be nonsticky by default. */
5879 Vtext_property_default_nonsticky
5880 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
5883 Fput (Qundefined_color, Qerror_conditions,
5884 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
5885 Fput (Qundefined_color, Qerror_message,
5886 build_string ("Undefined color"));
5888 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
5889 doc: /* The shape of the pointer when over text.
5890 Changing the value does not affect existing frames
5891 unless you set the mouse color. */);
5892 Vx_pointer_shape = Qnil;
5894 #if 0 /* This doesn't really do anything. */
5895 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
5896 doc: /* The shape of the pointer when not over text.
5897 This variable takes effect when you create a new frame
5898 or when you set the mouse color. */);
5899 #endif
5900 Vx_nontext_pointer_shape = Qnil;
5902 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
5903 doc: /* The shape of the pointer when Emacs is busy.
5904 This variable takes effect when you create a new frame
5905 or when you set the mouse color. */);
5906 Vx_hourglass_pointer_shape = Qnil;
5908 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
5909 doc: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
5910 display_hourglass_p = 1;
5912 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
5913 doc: /* *Seconds to wait before displaying an hourglass pointer.
5914 Value must be an integer or float. */);
5915 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
5917 #if 0 /* This doesn't really do anything. */
5918 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
5919 doc: /* The shape of the pointer when over the mode line.
5920 This variable takes effect when you create a new frame
5921 or when you set the mouse color. */);
5922 #endif
5923 Vx_mode_pointer_shape = Qnil;
5925 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5926 &Vx_sensitive_text_pointer_shape,
5927 doc: /* The shape of the pointer when over mouse-sensitive text.
5928 This variable takes effect when you create a new frame
5929 or when you set the mouse color. */);
5930 Vx_sensitive_text_pointer_shape = Qnil;
5932 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5933 &Vx_window_horizontal_drag_shape,
5934 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
5935 This variable takes effect when you create a new frame
5936 or when you set the mouse color. */);
5937 Vx_window_horizontal_drag_shape = Qnil;
5939 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
5940 doc: /* A string indicating the foreground color of the cursor box. */);
5941 Vx_cursor_fore_pixel = Qnil;
5943 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
5944 doc: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
5945 Text larger than this is clipped. */);
5946 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
5948 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
5949 doc: /* Non-nil if no X window manager is in use.
5950 Emacs doesn't try to figure this out; this is always nil
5951 unless you set it to something else. */);
5952 /* We don't have any way to find this out, so set it to nil
5953 and maybe the user would like to set it to t. */
5954 Vx_no_window_manager = Qnil;
5956 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5957 &Vx_pixel_size_width_font_regexp,
5958 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5960 Since Emacs gets width of a font matching with this regexp from
5961 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5962 such a font. This is especially effective for such large fonts as
5963 Chinese, Japanese, and Korean. */);
5964 Vx_pixel_size_width_font_regexp = Qnil;
5966 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5967 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog,
5968 doc: /* *Non-nil means prompt with the old GTK file selection dialog.
5969 If nil or if the file selection dialog is not available, the new GTK file
5970 chooser is used instead. To turn off all file dialogs set the
5971 variable `use-file-dialog'. */);
5972 x_gtk_use_old_file_dialog = 0;
5974 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files,
5975 doc: /* *If non-nil, the GTK file chooser will by default show hidden files.
5976 Note that this is just the default, there is a toggle button on the file
5977 chooser to show or not show hidden files on a case by case basis. */);
5978 x_gtk_show_hidden_files = 0;
5980 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text,
5981 doc: /* *If non-nil, the GTK file chooser will show additional help text.
5982 If more space for files in the file chooser dialog is wanted, set this to nil
5983 to turn the additional text off. */);
5984 x_gtk_file_dialog_help_text = 1;
5986 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar,
5987 doc: /* *If non-nil, a detached tool bar is shown in full.
5988 The default is to just show an arrow and pressing on that arrow shows
5989 the tool bar buttons. */);
5990 x_gtk_whole_detached_tool_bar = 0;
5992 Fprovide (intern ("x"), Qnil);
5994 #ifdef USE_X_TOOLKIT
5995 Fprovide (intern ("x-toolkit"), Qnil);
5996 #ifdef USE_MOTIF
5997 Fprovide (intern ("motif"), Qnil);
5999 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string,
6000 doc: /* Version info for LessTif/Motif. */);
6001 Vmotif_version_string = build_string (XmVERSION_STRING);
6002 #endif /* USE_MOTIF */
6003 #endif /* USE_X_TOOLKIT */
6005 #ifdef USE_GTK
6006 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
6007 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
6008 But for a user it is a toolkit for X, and indeed, configure
6009 accepts --with-x-toolkit=gtk. */
6010 Fprovide (intern ("x-toolkit"), Qnil);
6011 Fprovide (intern ("gtk"), Qnil);
6013 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string,
6014 doc: /* Version info for GTK+. */);
6016 char gtk_version[40];
6017 g_snprintf (gtk_version, sizeof (gtk_version), "%u.%u.%u",
6018 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
6019 Vgtk_version_string = build_string (gtk_version);
6021 #endif /* USE_GTK */
6023 /* X window properties. */
6024 defsubr (&Sx_change_window_property);
6025 defsubr (&Sx_delete_window_property);
6026 defsubr (&Sx_window_property);
6028 defsubr (&Sxw_display_color_p);
6029 defsubr (&Sx_display_grayscale_p);
6030 defsubr (&Sxw_color_defined_p);
6031 defsubr (&Sxw_color_values);
6032 defsubr (&Sx_server_max_request_size);
6033 defsubr (&Sx_server_vendor);
6034 defsubr (&Sx_server_version);
6035 defsubr (&Sx_display_pixel_width);
6036 defsubr (&Sx_display_pixel_height);
6037 defsubr (&Sx_display_mm_width);
6038 defsubr (&Sx_display_mm_height);
6039 defsubr (&Sx_display_screens);
6040 defsubr (&Sx_display_planes);
6041 defsubr (&Sx_display_color_cells);
6042 defsubr (&Sx_display_visual_class);
6043 defsubr (&Sx_display_backing_store);
6044 defsubr (&Sx_display_save_under);
6045 defsubr (&Sx_create_frame);
6046 defsubr (&Sx_open_connection);
6047 defsubr (&Sx_close_connection);
6048 defsubr (&Sx_display_list);
6049 defsubr (&Sx_synchronize);
6050 defsubr (&Sx_focus_frame);
6051 defsubr (&Sx_backspace_delete_keys_p);
6053 /* Setting callback functions for fontset handler. */
6054 check_window_system_func = check_x;
6056 hourglass_atimer = NULL;
6057 hourglass_shown_p = 0;
6059 defsubr (&Sx_show_tip);
6060 defsubr (&Sx_hide_tip);
6061 tip_timer = Qnil;
6062 staticpro (&tip_timer);
6063 tip_frame = Qnil;
6064 staticpro (&tip_frame);
6066 last_show_tip_args = Qnil;
6067 staticpro (&last_show_tip_args);
6069 defsubr (&Sx_uses_old_gtk_dialog);
6070 #if defined (USE_MOTIF) || defined (USE_GTK)
6071 defsubr (&Sx_file_dialog);
6072 #endif
6074 #ifdef USE_GTK
6075 defsubr (&Sx_select_font);
6076 #endif
6079 #endif /* HAVE_X_WINDOWS */
6081 /* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
6082 (do not change this comment) */