merge trunk
[bpt/emacs.git] / src / xfns.c
1 /* Functions for the X window system.
2
3 Copyright (C) 1989, 1992-2013 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <math.h>
23 #include <unistd.h>
24
25 /* This makes the fields of a Display accessible, in Xlib header files. */
26
27 #define XLIB_ILLEGAL_ACCESS
28
29 #include "lisp.h"
30 #include "xterm.h"
31 #include "frame.h"
32 #include "window.h"
33 #include "character.h"
34 #include "buffer.h"
35 #include "intervals.h"
36 #include "dispextern.h"
37 #include "keyboard.h"
38 #include "blockinput.h"
39 #include <epaths.h>
40 #include "charset.h"
41 #include "coding.h"
42 #include "fontset.h"
43 #include "systime.h"
44 #include "termhooks.h"
45 #include "atimer.h"
46 #include "termchar.h"
47 #include "font.h"
48
49 #ifdef HAVE_X_WINDOWS
50
51 #include <sys/types.h>
52 #include <sys/stat.h>
53
54 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
55 #include "bitmaps/gray.xbm"
56 #else
57 #include <X11/bitmaps/gray>
58 #endif
59
60 #include "xsettings.h"
61
62 #ifdef HAVE_XRANDR
63 #include <X11/extensions/Xrandr.h>
64 #endif
65 #ifdef HAVE_XINERAMA
66 #include <X11/extensions/Xinerama.h>
67 #endif
68
69 #ifdef USE_GTK
70 #include "gtkutil.h"
71 #endif
72
73 #ifdef USE_X_TOOLKIT
74 #include <X11/Shell.h>
75
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 */
85
86 #ifdef USG
87 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
88 #include <X11/Xos.h>
89 #define USG
90 #ifdef USG /* Pacify gcc -Wunused-macros. */
91 #endif
92 #else
93 #include <X11/Xos.h>
94 #endif
95
96 #include "widget.h"
97
98 #include "../lwlib/lwlib.h"
99
100 #ifdef USE_MOTIF
101 #include <Xm/Xm.h>
102 #include <Xm/DialogS.h>
103 #include <Xm/FileSB.h>
104 #include <Xm/List.h>
105 #include <Xm/TextF.h>
106 #endif
107
108 #ifdef USE_LUCID
109 #include "../lwlib/xlwmenu.h"
110 #endif
111
112 #if !defined (NO_EDITRES)
113 #define HACK_EDITRES
114 extern void _XEditResCheckMessages (Widget, XtPointer, XEvent *, Boolean *);
115 #endif /* not defined NO_EDITRES */
116
117 /* Unique id counter for widgets created by the Lucid Widget Library. */
118
119 extern LWLIB_ID widget_id_tick;
120
121 #ifdef USE_MOTIF
122
123 #endif /* USE_MOTIF */
124
125 #endif /* USE_X_TOOLKIT */
126
127 #ifdef USE_GTK
128
129 #endif /* USE_GTK */
130
131 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
132
133 static Lisp_Object Qsuppress_icon;
134 static Lisp_Object Qundefined_color;
135 static Lisp_Object Qcompound_text, Qcancel_timer;
136 static Lisp_Object Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource;
137 Lisp_Object Qfont_param;
138
139 #ifdef GLYPH_DEBUG
140 static ptrdiff_t image_cache_refcount;
141 static int dpyinfo_refcount;
142 #endif
143
144 static struct x_display_info *x_display_info_for_name (Lisp_Object);
145
146 /* Let the user specify an X display with a Lisp object.
147 OBJECT may be nil, a frame or a terminal object.
148 nil stands for the selected frame--or, if that is not an X frame,
149 the first X display on the list. */
150
151 struct x_display_info *
152 check_x_display_info (Lisp_Object object)
153 {
154 struct x_display_info *dpyinfo = NULL;
155
156 if (NILP (object))
157 {
158 struct frame *sf = XFRAME (selected_frame);
159
160 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
161 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
162 else if (x_display_list != 0)
163 dpyinfo = x_display_list;
164 else
165 error ("X windows are not in use or not initialized");
166 }
167 else if (TERMINALP (object))
168 {
169 struct terminal *t = get_terminal (object, 1);
170
171 if (t->type != output_x_window)
172 error ("Terminal %d is not an X display", t->id);
173
174 dpyinfo = t->display_info.x;
175 }
176 else if (STRINGP (object))
177 dpyinfo = x_display_info_for_name (object);
178 else
179 {
180 FRAME_PTR f = decode_window_system_frame (object);
181 dpyinfo = FRAME_X_DISPLAY_INFO (f);
182 }
183
184 return dpyinfo;
185 }
186
187 \f
188 /* Return the Emacs frame-object corresponding to an X window.
189 It could be the frame's main window or an icon window. */
190
191 /* This function can be called during GC, so use GC_xxx type test macros. */
192
193 struct frame *
194 x_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
195 {
196 Lisp_Object tail, frame;
197 struct frame *f;
198
199 if (wdesc == None)
200 return NULL;
201
202 FOR_EACH_FRAME (tail, frame)
203 {
204 f = XFRAME (frame);
205 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
206 continue;
207 if (f->output_data.x->hourglass_window == wdesc)
208 return f;
209 #ifdef USE_X_TOOLKIT
210 if ((f->output_data.x->edit_widget
211 && XtWindow (f->output_data.x->edit_widget) == wdesc)
212 /* A tooltip frame? */
213 || (!f->output_data.x->edit_widget
214 && FRAME_X_WINDOW (f) == wdesc)
215 || f->output_data.x->icon_desc == wdesc)
216 return f;
217 #else /* not USE_X_TOOLKIT */
218 #ifdef USE_GTK
219 if (f->output_data.x->edit_widget)
220 {
221 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
222 struct x_output *x = f->output_data.x;
223 if (gwdesc != 0 && gwdesc == x->edit_widget)
224 return f;
225 }
226 #endif /* USE_GTK */
227 if (FRAME_X_WINDOW (f) == wdesc
228 || f->output_data.x->icon_desc == wdesc)
229 return f;
230 #endif /* not USE_X_TOOLKIT */
231 }
232 return 0;
233 }
234
235 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
236 /* Like x_window_to_frame but also compares the window with the widget's
237 windows. */
238
239 struct frame *
240 x_any_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
241 {
242 Lisp_Object tail, frame;
243 struct frame *f, *found = NULL;
244 struct x_output *x;
245
246 if (wdesc == None)
247 return NULL;
248
249 FOR_EACH_FRAME (tail, frame)
250 {
251 if (found)
252 break;
253 f = XFRAME (frame);
254 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
255 {
256 /* This frame matches if the window is any of its widgets. */
257 x = f->output_data.x;
258 if (x->hourglass_window == wdesc)
259 found = f;
260 else if (x->widget)
261 {
262 #ifdef USE_GTK
263 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
264 if (gwdesc != 0
265 && gtk_widget_get_toplevel (gwdesc) == x->widget)
266 found = f;
267 #else
268 if (wdesc == XtWindow (x->widget)
269 || wdesc == XtWindow (x->column_widget)
270 || wdesc == XtWindow (x->edit_widget))
271 found = f;
272 /* Match if the window is this frame's menubar. */
273 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
274 found = f;
275 #endif
276 }
277 else if (FRAME_X_WINDOW (f) == wdesc)
278 /* A tooltip frame. */
279 found = f;
280 }
281 }
282
283 return found;
284 }
285
286 /* Likewise, but consider only the menu bar widget. */
287
288 struct frame *
289 x_menubar_window_to_frame (struct x_display_info *dpyinfo, XEvent *event)
290 {
291 Window wdesc = event->xany.window;
292 Lisp_Object tail, frame;
293 struct frame *f;
294 struct x_output *x;
295
296 if (wdesc == None)
297 return NULL;
298
299 FOR_EACH_FRAME (tail, frame)
300 {
301 f = XFRAME (frame);
302 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
303 continue;
304 x = f->output_data.x;
305 #ifdef USE_GTK
306 if (x->menubar_widget && xg_event_is_for_menubar (f, event))
307 return f;
308 #else
309 /* Match if the window is this frame's menubar. */
310 if (x->menubar_widget
311 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
312 return f;
313 #endif
314 }
315 return 0;
316 }
317
318 /* Return the frame whose principal (outermost) window is WDESC.
319 If WDESC is some other (smaller) window, we return 0. */
320
321 struct frame *
322 x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
323 {
324 Lisp_Object tail, frame;
325 struct frame *f;
326 struct x_output *x;
327
328 if (wdesc == None)
329 return NULL;
330
331 FOR_EACH_FRAME (tail, frame)
332 {
333 f = XFRAME (frame);
334 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
335 continue;
336 x = f->output_data.x;
337
338 if (x->widget)
339 {
340 /* This frame matches if the window is its topmost widget. */
341 #ifdef USE_GTK
342 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
343 if (gwdesc == x->widget)
344 return f;
345 #else
346 if (wdesc == XtWindow (x->widget))
347 return f;
348 #if 0 /* I don't know why it did this,
349 but it seems logically wrong,
350 and it causes trouble for MapNotify events. */
351 /* Match if the window is this frame's menubar. */
352 if (x->menubar_widget
353 && wdesc == XtWindow (x->menubar_widget))
354 return f;
355 #endif
356 #endif
357 }
358 else if (FRAME_X_WINDOW (f) == wdesc)
359 /* Tooltip frame. */
360 return f;
361 }
362 return 0;
363 }
364 #endif /* USE_X_TOOLKIT || USE_GTK */
365
366 \f
367
368 /* Store the screen positions of frame F into XPTR and YPTR.
369 These are the positions of the containing window manager window,
370 not Emacs's own window. */
371
372 void
373 x_real_positions (FRAME_PTR f, int *xptr, int *yptr)
374 {
375 int win_x, win_y, outer_x IF_LINT (= 0), outer_y IF_LINT (= 0);
376 int real_x = 0, real_y = 0;
377 int had_errors = 0;
378 Window win = f->output_data.x->parent_desc;
379 Atom actual_type;
380 unsigned long actual_size, bytes_remaining;
381 int rc, actual_format;
382 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
383 long max_len = 400;
384 Display *dpy = FRAME_X_DISPLAY (f);
385 unsigned char *tmp_data = NULL;
386 Atom target_type = XA_CARDINAL;
387
388 block_input ();
389
390 x_catch_errors (dpy);
391
392 if (win == dpyinfo->root_window)
393 win = FRAME_OUTER_WINDOW (f);
394
395 /* This loop traverses up the containment tree until we hit the root
396 window. Window managers may intersect many windows between our window
397 and the root window. The window we find just before the root window
398 should be the outer WM window. */
399 for (;;)
400 {
401 Window wm_window, rootw;
402 Window *tmp_children;
403 unsigned int tmp_nchildren;
404 int success;
405
406 success = XQueryTree (FRAME_X_DISPLAY (f), win, &rootw,
407 &wm_window, &tmp_children, &tmp_nchildren);
408
409 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
410
411 /* Don't free tmp_children if XQueryTree failed. */
412 if (! success)
413 break;
414
415 XFree (tmp_children);
416
417 if (wm_window == rootw || had_errors)
418 break;
419
420 win = wm_window;
421 }
422
423 if (! had_errors)
424 {
425 unsigned int ign;
426 Window child, rootw;
427
428 /* Get the real coordinates for the WM window upper left corner */
429 XGetGeometry (FRAME_X_DISPLAY (f), win,
430 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
431
432 /* Translate real coordinates to coordinates relative to our
433 window. For our window, the upper left corner is 0, 0.
434 Since the upper left corner of the WM window is outside
435 our window, win_x and win_y will be negative:
436
437 ------------------ ---> x
438 | title |
439 | ----------------- v y
440 | | our window
441 */
442 XTranslateCoordinates (FRAME_X_DISPLAY (f),
443
444 /* From-window, to-window. */
445 FRAME_X_DISPLAY_INFO (f)->root_window,
446 FRAME_X_WINDOW (f),
447
448 /* From-position, to-position. */
449 real_x, real_y, &win_x, &win_y,
450
451 /* Child of win. */
452 &child);
453
454 if (FRAME_X_WINDOW (f) == FRAME_OUTER_WINDOW (f))
455 {
456 outer_x = win_x;
457 outer_y = win_y;
458 }
459 else
460 {
461 XTranslateCoordinates (FRAME_X_DISPLAY (f),
462
463 /* From-window, to-window. */
464 FRAME_X_DISPLAY_INFO (f)->root_window,
465 FRAME_OUTER_WINDOW (f),
466
467 /* From-position, to-position. */
468 real_x, real_y, &outer_x, &outer_y,
469
470 /* Child of win. */
471 &child);
472 }
473
474 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
475 }
476
477
478 if (dpyinfo->root_window == f->output_data.x->parent_desc)
479 {
480 /* Try _NET_FRAME_EXTENTS if our parent is the root window. */
481 rc = XGetWindowProperty (dpy, win, dpyinfo->Xatom_net_frame_extents,
482 0, max_len, False, target_type,
483 &actual_type, &actual_format, &actual_size,
484 &bytes_remaining, &tmp_data);
485
486 if (rc == Success && actual_type == target_type && !x_had_errors_p (dpy)
487 && actual_size == 4 && actual_format == 32)
488 {
489 unsigned int ign;
490 Window rootw;
491 long *fe = (long *)tmp_data;
492
493 XGetGeometry (FRAME_X_DISPLAY (f), win,
494 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
495 outer_x = -fe[0];
496 outer_y = -fe[2];
497 real_x -= fe[0];
498 real_y -= fe[2];
499 }
500 }
501
502 if (tmp_data) XFree (tmp_data);
503
504 x_uncatch_errors ();
505
506 unblock_input ();
507
508 if (had_errors) return;
509
510 f->x_pixels_diff = -win_x;
511 f->y_pixels_diff = -win_y;
512
513 FRAME_X_OUTPUT (f)->x_pixels_outer_diff = -outer_x;
514 FRAME_X_OUTPUT (f)->y_pixels_outer_diff = -outer_y;
515
516 *xptr = real_x;
517 *yptr = real_y;
518 }
519
520 \f
521
522
523 /* Gamma-correct COLOR on frame F. */
524
525 void
526 gamma_correct (struct frame *f, XColor *color)
527 {
528 if (f->gamma)
529 {
530 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
531 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
532 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
533 }
534 }
535
536
537 /* Decide if color named COLOR_NAME is valid for use on frame F. If
538 so, return the RGB values in COLOR. If ALLOC_P,
539 allocate the color. Value is false if COLOR_NAME is invalid, or
540 no color could be allocated. */
541
542 bool
543 x_defined_color (struct frame *f, const char *color_name,
544 XColor *color, bool alloc_p)
545 {
546 bool success_p = 0;
547 Display *dpy = FRAME_X_DISPLAY (f);
548 Colormap cmap = FRAME_X_COLORMAP (f);
549
550 block_input ();
551 #ifdef USE_GTK
552 success_p = xg_check_special_colors (f, color_name, color);
553 #endif
554 if (!success_p)
555 success_p = XParseColor (dpy, cmap, color_name, color) != 0;
556 if (success_p && alloc_p)
557 success_p = x_alloc_nearest_color (f, cmap, color);
558 unblock_input ();
559
560 return success_p;
561 }
562
563
564 /* Return the pixel color value for color COLOR_NAME on frame F. If F
565 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
566 Signal an error if color can't be allocated. */
567
568 static int
569 x_decode_color (FRAME_PTR f, Lisp_Object color_name, int mono_color)
570 {
571 XColor cdef;
572
573 CHECK_STRING (color_name);
574
575 #if 0 /* Don't do this. It's wrong when we're not using the default
576 colormap, it makes freeing difficult, and it's probably not
577 an important optimization. */
578 if (strcmp (SDATA (color_name), "black") == 0)
579 return BLACK_PIX_DEFAULT (f);
580 else if (strcmp (SDATA (color_name), "white") == 0)
581 return WHITE_PIX_DEFAULT (f);
582 #endif
583
584 /* Return MONO_COLOR for monochrome frames. */
585 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
586 return mono_color;
587
588 /* x_defined_color is responsible for coping with failures
589 by looking for a near-miss. */
590 if (x_defined_color (f, SSDATA (color_name), &cdef, 1))
591 return cdef.pixel;
592
593 signal_error ("Undefined color", color_name);
594 }
595
596
597 \f
598 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
599 the previous value of that parameter, NEW_VALUE is the new value.
600 See also the comment of wait_for_wm in struct x_output. */
601
602 static void
603 x_set_wait_for_wm (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
604 {
605 f->output_data.x->wait_for_wm = !NILP (new_value);
606 }
607
608 static void
609 x_set_tool_bar_position (struct frame *f,
610 Lisp_Object new_value,
611 Lisp_Object old_value)
612 {
613 if (! EQ (new_value, Qleft) && ! EQ (new_value, Qright)
614 && ! EQ (new_value, Qbottom) && ! EQ (new_value, Qtop))
615 return;
616 if (EQ (new_value, old_value)) return;
617
618 #ifdef USE_GTK
619 xg_change_toolbar_position (f, new_value);
620 fset_tool_bar_position (f, new_value);
621 #endif
622 }
623
624 #ifdef USE_GTK
625
626 /* Set icon from FILE for frame F. By using GTK functions the icon
627 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
628
629 int
630 xg_set_icon (FRAME_PTR f, Lisp_Object file)
631 {
632 int result = 0;
633 Lisp_Object found;
634
635 found = x_find_image_file (file);
636
637 if (! NILP (found))
638 {
639 GdkPixbuf *pixbuf;
640 GError *err = NULL;
641 char *filename = SSDATA (found);
642 block_input ();
643
644 pixbuf = gdk_pixbuf_new_from_file (filename, &err);
645
646 if (pixbuf)
647 {
648 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
649 pixbuf);
650 g_object_unref (pixbuf);
651
652 result = 1;
653 }
654 else
655 g_error_free (err);
656
657 unblock_input ();
658 }
659
660 return result;
661 }
662
663 int
664 xg_set_icon_from_xpm_data (FRAME_PTR f, const char **data)
665 {
666 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_xpm_data (data);
667
668 if (!pixbuf)
669 return 0;
670
671 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), pixbuf);
672 g_object_unref (pixbuf);
673 return 1;
674 }
675 #endif /* USE_GTK */
676
677
678 /* Functions called only from `x_set_frame_param'
679 to set individual parameters.
680
681 If FRAME_X_WINDOW (f) is 0,
682 the frame is being created and its X-window does not exist yet.
683 In that case, just record the parameter's new value
684 in the standard place; do not attempt to change the window. */
685
686 static void
687 x_set_foreground_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
688 {
689 struct x_output *x = f->output_data.x;
690 unsigned long fg, old_fg;
691
692 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
693 old_fg = FRAME_FOREGROUND_PIXEL (f);
694 FRAME_FOREGROUND_PIXEL (f) = fg;
695
696 if (FRAME_X_WINDOW (f) != 0)
697 {
698 Display *dpy = FRAME_X_DISPLAY (f);
699
700 block_input ();
701 XSetForeground (dpy, x->normal_gc, fg);
702 XSetBackground (dpy, x->reverse_gc, fg);
703
704 if (x->cursor_pixel == old_fg)
705 {
706 unload_color (f, x->cursor_pixel);
707 x->cursor_pixel = x_copy_color (f, fg);
708 XSetBackground (dpy, x->cursor_gc, x->cursor_pixel);
709 }
710
711 unblock_input ();
712
713 update_face_from_frame_parameter (f, Qforeground_color, arg);
714
715 if (FRAME_VISIBLE_P (f))
716 redraw_frame (f);
717 }
718
719 unload_color (f, old_fg);
720 }
721
722 static void
723 x_set_background_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
724 {
725 struct x_output *x = f->output_data.x;
726 unsigned long bg;
727
728 bg = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
729 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
730 FRAME_BACKGROUND_PIXEL (f) = bg;
731
732 if (FRAME_X_WINDOW (f) != 0)
733 {
734 Display *dpy = FRAME_X_DISPLAY (f);
735
736 block_input ();
737 XSetBackground (dpy, x->normal_gc, bg);
738 XSetForeground (dpy, x->reverse_gc, bg);
739 XSetWindowBackground (dpy, FRAME_X_WINDOW (f), bg);
740 XSetForeground (dpy, x->cursor_gc, bg);
741
742 #ifdef USE_GTK
743 xg_set_background_color (f, bg);
744 #endif
745
746 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
747 toolkit scroll bars. */
748 {
749 Lisp_Object bar;
750 for (bar = FRAME_SCROLL_BARS (f);
751 !NILP (bar);
752 bar = XSCROLL_BAR (bar)->next)
753 {
754 Window window = XSCROLL_BAR (bar)->x_window;
755 XSetWindowBackground (dpy, window, bg);
756 }
757 }
758 #endif /* USE_TOOLKIT_SCROLL_BARS */
759
760 unblock_input ();
761 update_face_from_frame_parameter (f, Qbackground_color, arg);
762
763 if (FRAME_VISIBLE_P (f))
764 redraw_frame (f);
765 }
766 }
767
768 static Cursor
769 make_invisible_cursor (struct frame *f)
770 {
771 Display *dpy = FRAME_X_DISPLAY (f);
772 static char const no_data[] = { 0 };
773 Pixmap pix;
774 XColor col;
775 Cursor c = 0;
776
777 x_catch_errors (dpy);
778 pix = XCreateBitmapFromData (dpy, FRAME_X_DISPLAY_INFO (f)->root_window,
779 no_data, 1, 1);
780 if (! x_had_errors_p (dpy) && pix != None)
781 {
782 Cursor pixc;
783 col.pixel = 0;
784 col.red = col.green = col.blue = 0;
785 col.flags = DoRed | DoGreen | DoBlue;
786 pixc = XCreatePixmapCursor (dpy, pix, pix, &col, &col, 0, 0);
787 if (! x_had_errors_p (dpy) && pixc != None)
788 c = pixc;
789 XFreePixmap (dpy, pix);
790 }
791
792 x_uncatch_errors ();
793
794 return c;
795 }
796
797 static void
798 x_set_mouse_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
799 {
800 struct x_output *x = f->output_data.x;
801 Display *dpy = FRAME_X_DISPLAY (f);
802 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
803 Cursor hourglass_cursor, horizontal_drag_cursor;
804 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
805 unsigned long mask_color = FRAME_BACKGROUND_PIXEL (f);
806
807 /* Don't let pointers be invisible. */
808 if (mask_color == pixel)
809 {
810 x_free_colors (f, &pixel, 1);
811 pixel = x_copy_color (f, FRAME_FOREGROUND_PIXEL (f));
812 }
813
814 unload_color (f, x->mouse_pixel);
815 x->mouse_pixel = pixel;
816
817 block_input ();
818
819 /* It's not okay to crash if the user selects a screwy cursor. */
820 x_catch_errors (dpy);
821
822 if (!NILP (Vx_pointer_shape))
823 {
824 CHECK_NUMBER (Vx_pointer_shape);
825 cursor = XCreateFontCursor (dpy, XINT (Vx_pointer_shape));
826 }
827 else
828 cursor = XCreateFontCursor (dpy, XC_xterm);
829 x_check_errors (dpy, "bad text pointer cursor: %s");
830
831 if (!NILP (Vx_nontext_pointer_shape))
832 {
833 CHECK_NUMBER (Vx_nontext_pointer_shape);
834 nontext_cursor
835 = XCreateFontCursor (dpy, XINT (Vx_nontext_pointer_shape));
836 }
837 else
838 nontext_cursor = XCreateFontCursor (dpy, XC_left_ptr);
839 x_check_errors (dpy, "bad nontext pointer cursor: %s");
840
841 if (!NILP (Vx_hourglass_pointer_shape))
842 {
843 CHECK_NUMBER (Vx_hourglass_pointer_shape);
844 hourglass_cursor
845 = XCreateFontCursor (dpy, XINT (Vx_hourglass_pointer_shape));
846 }
847 else
848 hourglass_cursor = XCreateFontCursor (dpy, XC_watch);
849 x_check_errors (dpy, "bad hourglass pointer cursor: %s");
850
851 if (!NILP (Vx_mode_pointer_shape))
852 {
853 CHECK_NUMBER (Vx_mode_pointer_shape);
854 mode_cursor = XCreateFontCursor (dpy, XINT (Vx_mode_pointer_shape));
855 }
856 else
857 mode_cursor = XCreateFontCursor (dpy, XC_xterm);
858 x_check_errors (dpy, "bad modeline pointer cursor: %s");
859
860 if (!NILP (Vx_sensitive_text_pointer_shape))
861 {
862 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
863 hand_cursor
864 = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape));
865 }
866 else
867 hand_cursor = XCreateFontCursor (dpy, XC_hand2);
868
869 if (!NILP (Vx_window_horizontal_drag_shape))
870 {
871 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
872 horizontal_drag_cursor
873 = XCreateFontCursor (dpy, XINT (Vx_window_horizontal_drag_shape));
874 }
875 else
876 horizontal_drag_cursor
877 = XCreateFontCursor (dpy, XC_sb_h_double_arrow);
878
879 /* Check and report errors with the above calls. */
880 x_check_errors (dpy, "can't set cursor shape: %s");
881 x_uncatch_errors ();
882
883 {
884 XColor fore_color, back_color;
885
886 fore_color.pixel = x->mouse_pixel;
887 x_query_color (f, &fore_color);
888 back_color.pixel = mask_color;
889 x_query_color (f, &back_color);
890
891 XRecolorCursor (dpy, cursor, &fore_color, &back_color);
892 XRecolorCursor (dpy, nontext_cursor, &fore_color, &back_color);
893 XRecolorCursor (dpy, mode_cursor, &fore_color, &back_color);
894 XRecolorCursor (dpy, hand_cursor, &fore_color, &back_color);
895 XRecolorCursor (dpy, hourglass_cursor, &fore_color, &back_color);
896 XRecolorCursor (dpy, horizontal_drag_cursor, &fore_color, &back_color);
897 }
898
899 if (FRAME_X_WINDOW (f) != 0)
900 XDefineCursor (dpy, FRAME_X_WINDOW (f),
901 f->output_data.x->current_cursor = cursor);
902
903 if (FRAME_X_DISPLAY_INFO (f)->invisible_cursor == 0)
904 FRAME_X_DISPLAY_INFO (f)->invisible_cursor = make_invisible_cursor (f);
905
906 if (cursor != x->text_cursor
907 && x->text_cursor != 0)
908 XFreeCursor (dpy, x->text_cursor);
909 x->text_cursor = cursor;
910
911 if (nontext_cursor != x->nontext_cursor
912 && x->nontext_cursor != 0)
913 XFreeCursor (dpy, x->nontext_cursor);
914 x->nontext_cursor = nontext_cursor;
915
916 if (hourglass_cursor != x->hourglass_cursor
917 && x->hourglass_cursor != 0)
918 XFreeCursor (dpy, x->hourglass_cursor);
919 x->hourglass_cursor = hourglass_cursor;
920
921 if (mode_cursor != x->modeline_cursor
922 && x->modeline_cursor != 0)
923 XFreeCursor (dpy, f->output_data.x->modeline_cursor);
924 x->modeline_cursor = mode_cursor;
925
926 if (hand_cursor != x->hand_cursor
927 && x->hand_cursor != 0)
928 XFreeCursor (dpy, x->hand_cursor);
929 x->hand_cursor = hand_cursor;
930
931 if (horizontal_drag_cursor != x->horizontal_drag_cursor
932 && x->horizontal_drag_cursor != 0)
933 XFreeCursor (dpy, x->horizontal_drag_cursor);
934 x->horizontal_drag_cursor = horizontal_drag_cursor;
935
936 XFlush (dpy);
937 unblock_input ();
938
939 update_face_from_frame_parameter (f, Qmouse_color, arg);
940 }
941
942 static void
943 x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
944 {
945 unsigned long fore_pixel, pixel;
946 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
947 struct x_output *x = f->output_data.x;
948
949 if (!NILP (Vx_cursor_fore_pixel))
950 {
951 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
952 WHITE_PIX_DEFAULT (f));
953 fore_pixel_allocated_p = 1;
954 }
955 else
956 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
957
958 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
959 pixel_allocated_p = 1;
960
961 /* Make sure that the cursor color differs from the background color. */
962 if (pixel == FRAME_BACKGROUND_PIXEL (f))
963 {
964 if (pixel_allocated_p)
965 {
966 x_free_colors (f, &pixel, 1);
967 pixel_allocated_p = 0;
968 }
969
970 pixel = x->mouse_pixel;
971 if (pixel == fore_pixel)
972 {
973 if (fore_pixel_allocated_p)
974 {
975 x_free_colors (f, &fore_pixel, 1);
976 fore_pixel_allocated_p = 0;
977 }
978 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
979 }
980 }
981
982 unload_color (f, x->cursor_foreground_pixel);
983 if (!fore_pixel_allocated_p)
984 fore_pixel = x_copy_color (f, fore_pixel);
985 x->cursor_foreground_pixel = fore_pixel;
986
987 unload_color (f, x->cursor_pixel);
988 if (!pixel_allocated_p)
989 pixel = x_copy_color (f, pixel);
990 x->cursor_pixel = pixel;
991
992 if (FRAME_X_WINDOW (f) != 0)
993 {
994 block_input ();
995 XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel);
996 XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel);
997 unblock_input ();
998
999 if (FRAME_VISIBLE_P (f))
1000 {
1001 x_update_cursor (f, 0);
1002 x_update_cursor (f, 1);
1003 }
1004 }
1005
1006 update_face_from_frame_parameter (f, Qcursor_color, arg);
1007 }
1008 \f
1009 /* Set the border-color of frame F to pixel value PIX.
1010 Note that this does not fully take effect if done before
1011 F has an x-window. */
1012
1013 static void
1014 x_set_border_pixel (struct frame *f, int pix)
1015 {
1016 unload_color (f, f->output_data.x->border_pixel);
1017 f->output_data.x->border_pixel = pix;
1018
1019 if (FRAME_X_WINDOW (f) != 0 && f->border_width > 0)
1020 {
1021 block_input ();
1022 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), pix);
1023 unblock_input ();
1024
1025 if (FRAME_VISIBLE_P (f))
1026 redraw_frame (f);
1027 }
1028 }
1029
1030 /* Set the border-color of frame F to value described by ARG.
1031 ARG can be a string naming a color.
1032 The border-color is used for the border that is drawn by the X server.
1033 Note that this does not fully take effect if done before
1034 F has an x-window; it must be redone when the window is created.
1035
1036 Note: this is done in two routines because of the way X10 works.
1037
1038 Note: under X11, this is normally the province of the window manager,
1039 and so emacs' border colors may be overridden. */
1040
1041 static void
1042 x_set_border_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1043 {
1044 int pix;
1045
1046 CHECK_STRING (arg);
1047 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1048 x_set_border_pixel (f, pix);
1049 update_face_from_frame_parameter (f, Qborder_color, arg);
1050 }
1051
1052
1053 static void
1054 x_set_cursor_type (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
1055 {
1056 set_frame_cursor_types (f, arg);
1057
1058 /* Make sure the cursor gets redrawn. */
1059 cursor_type_changed = 1;
1060 }
1061 \f
1062 static void
1063 x_set_icon_type (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1064 {
1065 int result;
1066
1067 if (STRINGP (arg))
1068 {
1069 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1070 return;
1071 }
1072 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1073 return;
1074
1075 block_input ();
1076 if (NILP (arg))
1077 result = x_text_icon (f,
1078 SSDATA ((!NILP (f->icon_name)
1079 ? f->icon_name
1080 : f->name)));
1081 else
1082 result = x_bitmap_icon (f, arg);
1083
1084 if (result)
1085 {
1086 unblock_input ();
1087 error ("No icon window available");
1088 }
1089
1090 XFlush (FRAME_X_DISPLAY (f));
1091 unblock_input ();
1092 }
1093
1094 static void
1095 x_set_icon_name (struct frame *f, Lisp_Object arg, Lisp_Object oldval)
1096 {
1097 int result;
1098
1099 if (STRINGP (arg))
1100 {
1101 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1102 return;
1103 }
1104 else if (!NILP (arg) || NILP (oldval))
1105 return;
1106
1107 fset_icon_name (f, arg);
1108
1109 if (f->output_data.x->icon_bitmap != 0)
1110 return;
1111
1112 block_input ();
1113
1114 result = x_text_icon (f,
1115 SSDATA ((!NILP (f->icon_name)
1116 ? f->icon_name
1117 : !NILP (f->title)
1118 ? f->title
1119 : f->name)));
1120
1121 if (result)
1122 {
1123 unblock_input ();
1124 error ("No icon window available");
1125 }
1126
1127 XFlush (FRAME_X_DISPLAY (f));
1128 unblock_input ();
1129 }
1130
1131 \f
1132 void
1133 x_set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1134 {
1135 int nlines;
1136 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1137 int olines = FRAME_MENU_BAR_LINES (f);
1138 #endif
1139
1140 /* Right now, menu bars don't work properly in minibuf-only frames;
1141 most of the commands try to apply themselves to the minibuffer
1142 frame itself, and get an error because you can't switch buffers
1143 in or split the minibuffer window. */
1144 if (FRAME_MINIBUF_ONLY_P (f))
1145 return;
1146
1147 if (TYPE_RANGED_INTEGERP (int, value))
1148 nlines = XINT (value);
1149 else
1150 nlines = 0;
1151
1152 /* Make sure we redisplay all windows in this frame. */
1153 windows_or_buffers_changed++;
1154
1155 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1156 FRAME_MENU_BAR_LINES (f) = 0;
1157 if (nlines)
1158 {
1159 FRAME_EXTERNAL_MENU_BAR (f) = 1;
1160 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
1161 /* Make sure next redisplay shows the menu bar. */
1162 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = 1;
1163 }
1164 else
1165 {
1166 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1167 free_frame_menubar (f);
1168 FRAME_EXTERNAL_MENU_BAR (f) = 0;
1169 if (FRAME_X_P (f))
1170 f->output_data.x->menubar_widget = 0;
1171 }
1172 #else /* not USE_X_TOOLKIT && not USE_GTK */
1173 FRAME_MENU_BAR_LINES (f) = nlines;
1174 resize_frame_windows (f, FRAME_LINES (f), 0);
1175
1176 /* If the menu bar height gets changed, the internal border below
1177 the top margin has to be cleared. Also, if the menu bar gets
1178 larger, the area for the added lines has to be cleared except for
1179 the first menu bar line that is to be drawn later. */
1180 if (nlines != olines)
1181 {
1182 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1183 int width = FRAME_PIXEL_WIDTH (f);
1184 int y;
1185
1186 /* height can be zero here. */
1187 if (height > 0 && width > 0)
1188 {
1189 y = FRAME_TOP_MARGIN_HEIGHT (f);
1190
1191 block_input ();
1192 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1193 0, y, width, height, False);
1194 unblock_input ();
1195 }
1196
1197 if (nlines > 1 && nlines > olines)
1198 {
1199 y = (olines == 0 ? 1 : olines) * FRAME_LINE_HEIGHT (f);
1200 height = nlines * FRAME_LINE_HEIGHT (f) - y;
1201
1202 block_input ();
1203 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1204 0, y, width, height, False);
1205 unblock_input ();
1206 }
1207
1208 if (nlines == 0 && WINDOWP (f->menu_bar_window))
1209 clear_glyph_matrix (XWINDOW (f->menu_bar_window)->current_matrix);
1210 }
1211 #endif /* not USE_X_TOOLKIT && not USE_GTK */
1212 adjust_glyphs (f);
1213 run_window_configuration_change_hook (f);
1214 }
1215
1216
1217 /* Set the number of lines used for the tool bar of frame F to VALUE.
1218 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1219 is the old number of tool bar lines. This function changes the
1220 height of all windows on frame F to match the new tool bar height.
1221 The frame's height doesn't change. */
1222
1223 void
1224 x_set_tool_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1225 {
1226 int delta, nlines, root_height;
1227 Lisp_Object root_window;
1228
1229 /* Treat tool bars like menu bars. */
1230 if (FRAME_MINIBUF_ONLY_P (f))
1231 return;
1232
1233 /* Use VALUE only if an int >= 0. */
1234 if (RANGED_INTEGERP (0, value, INT_MAX))
1235 nlines = XFASTINT (value);
1236 else
1237 nlines = 0;
1238
1239 #ifdef USE_GTK
1240 FRAME_TOOL_BAR_LINES (f) = 0;
1241 if (nlines)
1242 {
1243 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
1244 if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
1245 /* Make sure next redisplay shows the tool bar. */
1246 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = 1;
1247 update_frame_tool_bar (f);
1248 }
1249 else
1250 {
1251 if (FRAME_EXTERNAL_TOOL_BAR (f))
1252 free_frame_tool_bar (f);
1253 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
1254 }
1255
1256 return;
1257 #endif
1258
1259 /* Make sure we redisplay all windows in this frame. */
1260 ++windows_or_buffers_changed;
1261
1262 delta = nlines - FRAME_TOOL_BAR_LINES (f);
1263
1264 /* Don't resize the tool-bar to more than we have room for. */
1265 root_window = FRAME_ROOT_WINDOW (f);
1266 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
1267 if (root_height - delta < 1)
1268 {
1269 delta = root_height - 1;
1270 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1271 }
1272
1273 FRAME_TOOL_BAR_LINES (f) = nlines;
1274 resize_frame_windows (f, FRAME_LINES (f), 0);
1275 adjust_glyphs (f);
1276
1277 /* We also have to make sure that the internal border at the top of
1278 the frame, below the menu bar or tool bar, is redrawn when the
1279 tool bar disappears. This is so because the internal border is
1280 below the tool bar if one is displayed, but is below the menu bar
1281 if there isn't a tool bar. The tool bar draws into the area
1282 below the menu bar. */
1283 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1284 {
1285 clear_frame (f);
1286 clear_current_matrices (f);
1287 }
1288
1289 /* If the tool bar gets smaller, the internal border below it
1290 has to be cleared. It was formerly part of the display
1291 of the larger tool bar, and updating windows won't clear it. */
1292 if (delta < 0)
1293 {
1294 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1295 int width = FRAME_PIXEL_WIDTH (f);
1296 int y = (FRAME_MENU_BAR_LINES (f) + nlines) * FRAME_LINE_HEIGHT (f);
1297
1298 /* height can be zero here. */
1299 if (height > 0 && width > 0)
1300 {
1301 block_input ();
1302 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1303 0, y, width, height, False);
1304 unblock_input ();
1305 }
1306
1307 if (WINDOWP (f->tool_bar_window))
1308 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
1309 }
1310
1311 run_window_configuration_change_hook (f);
1312
1313 }
1314
1315
1316 /* Set the foreground color for scroll bars on frame F to VALUE.
1317 VALUE should be a string, a color name. If it isn't a string or
1318 isn't a valid color name, do nothing. OLDVAL is the old value of
1319 the frame parameter. */
1320
1321 static void
1322 x_set_scroll_bar_foreground (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1323 {
1324 unsigned long pixel;
1325
1326 if (STRINGP (value))
1327 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
1328 else
1329 pixel = -1;
1330
1331 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
1332 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
1333
1334 f->output_data.x->scroll_bar_foreground_pixel = pixel;
1335 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1336 {
1337 /* Remove all scroll bars because they have wrong colors. */
1338 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
1339 (*FRAME_TERMINAL (f)->condemn_scroll_bars_hook) (f);
1340 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
1341 (*FRAME_TERMINAL (f)->judge_scroll_bars_hook) (f);
1342
1343 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
1344 redraw_frame (f);
1345 }
1346 }
1347
1348
1349 /* Set the background color for scroll bars on frame F to VALUE VALUE
1350 should be a string, a color name. If it isn't a string or isn't a
1351 valid color name, do nothing. OLDVAL is the old value of the frame
1352 parameter. */
1353
1354 static void
1355 x_set_scroll_bar_background (struct frame *f, Lisp_Object value, Lisp_Object oldval)
1356 {
1357 unsigned long pixel;
1358
1359 if (STRINGP (value))
1360 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
1361 else
1362 pixel = -1;
1363
1364 if (f->output_data.x->scroll_bar_background_pixel != -1)
1365 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
1366
1367 #ifdef USE_TOOLKIT_SCROLL_BARS
1368 /* Scrollbar shadow colors. */
1369 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
1370 {
1371 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
1372 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
1373 }
1374 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
1375 {
1376 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
1377 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
1378 }
1379 #endif /* USE_TOOLKIT_SCROLL_BARS */
1380
1381 f->output_data.x->scroll_bar_background_pixel = pixel;
1382 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1383 {
1384 /* Remove all scroll bars because they have wrong colors. */
1385 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
1386 (*FRAME_TERMINAL (f)->condemn_scroll_bars_hook) (f);
1387 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
1388 (*FRAME_TERMINAL (f)->judge_scroll_bars_hook) (f);
1389
1390 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
1391 redraw_frame (f);
1392 }
1393 }
1394
1395 \f
1396 /* Encode Lisp string STRING as a text in a format appropriate for
1397 XICCC (X Inter Client Communication Conventions).
1398
1399 This can call Lisp code, so callers must GCPRO.
1400
1401 If STRING contains only ASCII characters, do no conversion and
1402 return the string data of STRING. Otherwise, encode the text by
1403 CODING_SYSTEM, and return a newly allocated memory area which
1404 should be freed by `xfree' by a caller.
1405
1406 SELECTIONP non-zero means the string is being encoded for an X
1407 selection, so it is safe to run pre-write conversions (which
1408 may run Lisp code).
1409
1410 Store the byte length of resulting text in *TEXT_BYTES.
1411
1412 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1413 which means that the `encoding' of the result can be `STRING'.
1414 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1415 the result should be `COMPOUND_TEXT'. */
1416
1417 static unsigned char *
1418 x_encode_text (Lisp_Object string, Lisp_Object coding_system, int selectionp,
1419 ptrdiff_t *text_bytes, int *stringp, int *freep)
1420 {
1421 int result = string_xstring_p (string);
1422 struct coding_system coding;
1423
1424 if (result == 0)
1425 {
1426 /* No multibyte character in OBJ. We need not encode it. */
1427 *text_bytes = SBYTES (string);
1428 *stringp = 1;
1429 *freep = 0;
1430 return SDATA (string);
1431 }
1432
1433 setup_coding_system (coding_system, &coding);
1434 coding.mode |= (CODING_MODE_SAFE_ENCODING | CODING_MODE_LAST_BLOCK);
1435 /* We suppress producing escape sequences for composition. */
1436 coding.common_flags &= ~CODING_ANNOTATION_MASK;
1437 coding.destination = xnmalloc (SCHARS (string), 2);
1438 coding.dst_bytes = SCHARS (string) * 2;
1439 encode_coding_object (&coding, string, 0, 0,
1440 SCHARS (string), SBYTES (string), Qnil);
1441 *text_bytes = coding.produced;
1442 *stringp = (result == 1 || !EQ (coding_system, Qcompound_text));
1443 *freep = 1;
1444 return coding.destination;
1445 }
1446
1447 \f
1448 /* Set the WM name to NAME for frame F. Also set the icon name.
1449 If the frame already has an icon name, use that, otherwise set the
1450 icon name to NAME. */
1451
1452 static void
1453 x_set_name_internal (FRAME_PTR f, Lisp_Object name)
1454 {
1455 if (FRAME_X_WINDOW (f))
1456 {
1457 block_input ();
1458 {
1459 XTextProperty text, icon;
1460 ptrdiff_t bytes;
1461 int stringp;
1462 int do_free_icon_value = 0, do_free_text_value = 0;
1463 Lisp_Object coding_system;
1464 Lisp_Object encoded_name;
1465 Lisp_Object encoded_icon_name;
1466 struct gcpro gcpro1;
1467
1468 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1469 we use it before x_encode_text that may return string data. */
1470 GCPRO1 (name);
1471 encoded_name = ENCODE_UTF_8 (name);
1472 UNGCPRO;
1473
1474 coding_system = Qcompound_text;
1475 /* Note: Encoding strategy
1476
1477 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1478 text.encoding. But, there are non-internationalized window
1479 managers which don't support that encoding. So, if NAME
1480 contains only ASCII and 8859-1 characters, encode it by
1481 iso-latin-1, and use "STRING" in text.encoding hoping that
1482 such window managers at least analyze this format correctly,
1483 i.e. treat 8-bit bytes as 8859-1 characters.
1484
1485 We may also be able to use "UTF8_STRING" in text.encoding
1486 in the future which can encode all Unicode characters.
1487 But, for the moment, there's no way to know that the
1488 current window manager supports it or not.
1489
1490 Either way, we also set the _NET_WM_NAME and _NET_WM_ICON_NAME
1491 properties. Per the EWMH specification, those two properties
1492 are always UTF8_STRING. This matches what gtk_window_set_title()
1493 does in the USE_GTK case. */
1494 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp,
1495 &do_free_text_value);
1496 text.encoding = (stringp ? XA_STRING
1497 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1498 text.format = 8;
1499 text.nitems = bytes;
1500 if (text.nitems != bytes)
1501 error ("Window name too large");
1502
1503 if (!STRINGP (f->icon_name))
1504 {
1505 icon = text;
1506 encoded_icon_name = encoded_name;
1507 }
1508 else
1509 {
1510 /* See the above comment "Note: Encoding strategy". */
1511 icon.value = x_encode_text (f->icon_name, coding_system, 0,
1512 &bytes, &stringp, &do_free_icon_value);
1513 icon.encoding = (stringp ? XA_STRING
1514 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1515 icon.format = 8;
1516 icon.nitems = bytes;
1517 if (icon.nitems != bytes)
1518 error ("Icon name too large");
1519
1520 encoded_icon_name = ENCODE_UTF_8 (f->icon_name);
1521 }
1522
1523 #ifdef USE_GTK
1524 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1525 SSDATA (encoded_name));
1526 #else /* not USE_GTK */
1527 XSetWMName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
1528 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
1529 FRAME_X_DISPLAY_INFO (f)->Xatom_net_wm_name,
1530 FRAME_X_DISPLAY_INFO (f)->Xatom_UTF8_STRING,
1531 8, PropModeReplace,
1532 SDATA (encoded_name),
1533 SBYTES (encoded_name));
1534 #endif /* not USE_GTK */
1535
1536 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &icon);
1537 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
1538 FRAME_X_DISPLAY_INFO (f)->Xatom_net_wm_icon_name,
1539 FRAME_X_DISPLAY_INFO (f)->Xatom_UTF8_STRING,
1540 8, PropModeReplace,
1541 SDATA (encoded_icon_name),
1542 SBYTES (encoded_icon_name));
1543
1544 if (do_free_icon_value)
1545 xfree (icon.value);
1546 if (do_free_text_value)
1547 xfree (text.value);
1548 }
1549 unblock_input ();
1550 }
1551 }
1552
1553 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1554 x_id_name.
1555
1556 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1557 name; if NAME is a string, set F's name to NAME and set
1558 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1559
1560 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1561 suggesting a new name, which lisp code should override; if
1562 F->explicit_name is set, ignore the new name; otherwise, set it. */
1563
1564 static void
1565 x_set_name (struct frame *f, Lisp_Object name, int explicit)
1566 {
1567 /* Make sure that requests from lisp code override requests from
1568 Emacs redisplay code. */
1569 if (explicit)
1570 {
1571 /* If we're switching from explicit to implicit, we had better
1572 update the mode lines and thereby update the title. */
1573 if (f->explicit_name && NILP (name))
1574 update_mode_lines = 1;
1575
1576 f->explicit_name = ! NILP (name);
1577 }
1578 else if (f->explicit_name)
1579 return;
1580
1581 /* If NAME is nil, set the name to the x_id_name. */
1582 if (NILP (name))
1583 {
1584 /* Check for no change needed in this very common case
1585 before we do any consing. */
1586 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
1587 SSDATA (f->name)))
1588 return;
1589 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
1590 }
1591 else
1592 CHECK_STRING (name);
1593
1594 /* Don't change the name if it's already NAME. */
1595 if (! NILP (Fstring_equal (name, f->name)))
1596 return;
1597
1598 fset_name (f, name);
1599
1600 /* For setting the frame title, the title parameter should override
1601 the name parameter. */
1602 if (! NILP (f->title))
1603 name = f->title;
1604
1605 x_set_name_internal (f, name);
1606 }
1607
1608 /* This function should be called when the user's lisp code has
1609 specified a name for the frame; the name will override any set by the
1610 redisplay code. */
1611 static void
1612 x_explicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
1613 {
1614 x_set_name (f, arg, 1);
1615 }
1616
1617 /* This function should be called by Emacs redisplay code to set the
1618 name; names set this way will never override names set by the user's
1619 lisp code. */
1620 void
1621 x_implicitly_set_name (FRAME_PTR f, Lisp_Object arg, Lisp_Object oldval)
1622 {
1623 x_set_name (f, arg, 0);
1624 }
1625 \f
1626 /* Change the title of frame F to NAME.
1627 If NAME is nil, use the frame name as the title. */
1628
1629 static void
1630 x_set_title (struct frame *f, Lisp_Object name, Lisp_Object old_name)
1631 {
1632 /* Don't change the title if it's already NAME. */
1633 if (EQ (name, f->title))
1634 return;
1635
1636 update_mode_lines = 1;
1637
1638 fset_title (f, name);
1639
1640 if (NILP (name))
1641 name = f->name;
1642 else
1643 CHECK_STRING (name);
1644
1645 x_set_name_internal (f, name);
1646 }
1647
1648 void
1649 x_set_scroll_bar_default_width (struct frame *f)
1650 {
1651 int wid = FRAME_COLUMN_WIDTH (f);
1652 #ifdef USE_TOOLKIT_SCROLL_BARS
1653 #ifdef USE_GTK
1654 int minw = xg_get_default_scrollbar_width ();
1655 #else
1656 int minw = 16;
1657 #endif
1658 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1659 int width = minw + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
1660 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
1661 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = width;
1662 #else
1663 /* Make the actual width at least 14 pixels and a multiple of a
1664 character width. */
1665 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
1666
1667 /* Use all of that space (aside from required margins) for the
1668 scroll bar. */
1669 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 0;
1670 #endif
1671 }
1672
1673 \f
1674 /* Record in frame F the specified or default value according to ALIST
1675 of the parameter named PROP (a Lisp symbol). If no value is
1676 specified for PROP, look for an X default for XPROP on the frame
1677 named NAME. If that is not found either, use the value DEFLT. */
1678
1679 static Lisp_Object
1680 x_default_scroll_bar_color_parameter (struct frame *f,
1681 Lisp_Object alist, Lisp_Object prop,
1682 const char *xprop, const char *xclass,
1683 int foreground_p)
1684 {
1685 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1686 Lisp_Object tem;
1687
1688 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
1689 if (EQ (tem, Qunbound))
1690 {
1691 #ifdef USE_TOOLKIT_SCROLL_BARS
1692
1693 /* See if an X resource for the scroll bar color has been
1694 specified. */
1695 tem = display_x_get_resource (dpyinfo,
1696 build_string (foreground_p
1697 ? "foreground"
1698 : "background"),
1699 empty_unibyte_string,
1700 build_string ("verticalScrollBar"),
1701 empty_unibyte_string);
1702 if (!STRINGP (tem))
1703 {
1704 /* If nothing has been specified, scroll bars will use a
1705 toolkit-dependent default. Because these defaults are
1706 difficult to get at without actually creating a scroll
1707 bar, use nil to indicate that no color has been
1708 specified. */
1709 tem = Qnil;
1710 }
1711
1712 #else /* not USE_TOOLKIT_SCROLL_BARS */
1713
1714 tem = Qnil;
1715
1716 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1717 }
1718
1719 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
1720 return tem;
1721 }
1722
1723
1724
1725 \f
1726 #ifdef USE_X_TOOLKIT
1727
1728 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1729 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1730 already be present because of the toolkit (Motif adds some of them,
1731 for example, but Xt doesn't). */
1732
1733 static void
1734 hack_wm_protocols (FRAME_PTR f, Widget widget)
1735 {
1736 Display *dpy = XtDisplay (widget);
1737 Window w = XtWindow (widget);
1738 int need_delete = 1;
1739 int need_focus = 1;
1740 int need_save = 1;
1741
1742 block_input ();
1743 {
1744 Atom type;
1745 unsigned char *catoms;
1746 int format = 0;
1747 unsigned long nitems = 0;
1748 unsigned long bytes_after;
1749
1750 if ((XGetWindowProperty (dpy, w,
1751 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1752 (long)0, (long)100, False, XA_ATOM,
1753 &type, &format, &nitems, &bytes_after,
1754 &catoms)
1755 == Success)
1756 && format == 32 && type == XA_ATOM)
1757 {
1758 Atom *atoms = (Atom *) catoms;
1759 while (nitems > 0)
1760 {
1761 nitems--;
1762 if (atoms[nitems]
1763 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
1764 need_delete = 0;
1765 else if (atoms[nitems]
1766 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
1767 need_focus = 0;
1768 else if (atoms[nitems]
1769 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
1770 need_save = 0;
1771 }
1772 }
1773 if (catoms)
1774 XFree (catoms);
1775 }
1776 {
1777 Atom props [10];
1778 int count = 0;
1779 if (need_delete)
1780 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
1781 if (need_focus)
1782 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
1783 if (need_save)
1784 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
1785 if (count)
1786 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1787 XA_ATOM, 32, PropModeAppend,
1788 (unsigned char *) props, count);
1789 }
1790 unblock_input ();
1791 }
1792 #endif
1793
1794
1795 \f
1796 /* Support routines for XIC (X Input Context). */
1797
1798 #ifdef HAVE_X_I18N
1799
1800 static XFontSet xic_create_xfontset (struct frame *);
1801 static XIMStyle best_xim_style (XIMStyles *, XIMStyles *);
1802
1803
1804 /* Supported XIM styles, ordered by preference. */
1805
1806 static XIMStyle supported_xim_styles[] =
1807 {
1808 XIMPreeditPosition | XIMStatusArea,
1809 XIMPreeditPosition | XIMStatusNothing,
1810 XIMPreeditPosition | XIMStatusNone,
1811 XIMPreeditNothing | XIMStatusArea,
1812 XIMPreeditNothing | XIMStatusNothing,
1813 XIMPreeditNothing | XIMStatusNone,
1814 XIMPreeditNone | XIMStatusArea,
1815 XIMPreeditNone | XIMStatusNothing,
1816 XIMPreeditNone | XIMStatusNone,
1817 0,
1818 };
1819
1820
1821 #if defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
1822 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1823
1824 static const char xic_default_fontset[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1825
1826 /* Create an Xt fontset spec from the name of a base font.
1827 If `motif' is True use the Motif syntax. */
1828 char *
1829 xic_create_fontsetname (const char *base_fontname, int motif)
1830 {
1831 const char *sep = motif ? ";" : ",";
1832 char *fontsetname;
1833
1834 /* Make a fontset name from the base font name. */
1835 if (xic_default_fontset == base_fontname)
1836 {
1837 /* There is no base font name, use the default. */
1838 fontsetname = xmalloc (strlen (base_fontname) + 2);
1839 strcpy (fontsetname, base_fontname);
1840 }
1841 else
1842 {
1843 /* Make a fontset name from the base font name.
1844 The font set will be made of the following elements:
1845 - the base font.
1846 - the base font where the charset spec is replaced by -*-*.
1847 - the same but with the family also replaced with -*-*-. */
1848 const char *p = base_fontname;
1849 ptrdiff_t i;
1850
1851 for (i = 0; *p; p++)
1852 if (*p == '-') i++;
1853 if (i != 14)
1854 {
1855 /* As the font name doesn't conform to XLFD, we can't
1856 modify it to generalize it to allcs and allfamilies.
1857 Use the specified font plus the default. */
1858 fontsetname = xmalloc (strlen (base_fontname)
1859 + strlen (xic_default_fontset) + 3);
1860 strcpy (fontsetname, base_fontname);
1861 strcat (fontsetname, sep);
1862 strcat (fontsetname, xic_default_fontset);
1863 }
1864 else
1865 {
1866 ptrdiff_t len;
1867 const char *p1 = NULL, *p2 = NULL, *p3 = NULL;
1868 char *font_allcs = NULL;
1869 char *font_allfamilies = NULL;
1870 char *font_all = NULL;
1871 const char *allcs = "*-*-*-*-*-*-*";
1872 const char *allfamilies = "-*-*-";
1873 const char *all = "*-*-*-*-";
1874 char *base;
1875
1876 for (i = 0, p = base_fontname; i < 8; p++)
1877 {
1878 if (*p == '-')
1879 {
1880 i++;
1881 if (i == 3)
1882 p1 = p + 1;
1883 else if (i == 7)
1884 p2 = p + 1;
1885 else if (i == 6)
1886 p3 = p + 1;
1887 }
1888 }
1889 /* If base_fontname specifies ADSTYLE, make it a
1890 wildcard. */
1891 if (*p3 != '*')
1892 {
1893 ptrdiff_t diff = (p2 - p3) - 2;
1894
1895 base = alloca (strlen (base_fontname) + 1);
1896 memcpy (base, base_fontname, p3 - base_fontname);
1897 base[p3 - base_fontname] = '*';
1898 base[(p3 - base_fontname) + 1] = '-';
1899 strcpy (base + (p3 - base_fontname) + 2, p2);
1900 p = base + (p - base_fontname) - diff;
1901 p1 = base + (p1 - base_fontname);
1902 p2 = base + (p2 - base_fontname) - diff;
1903 base_fontname = base;
1904 }
1905
1906 /* Build the font spec that matches all charsets. */
1907 len = p - base_fontname + strlen (allcs) + 1;
1908 font_allcs = alloca (len);
1909 memcpy (font_allcs, base_fontname, p - base_fontname);
1910 strcat (font_allcs, allcs);
1911
1912 /* Build the font spec that matches all families and
1913 add-styles. */
1914 len = p - p1 + strlen (allcs) + strlen (allfamilies) + 1;
1915 font_allfamilies = alloca (len);
1916 strcpy (font_allfamilies, allfamilies);
1917 memcpy (font_allfamilies + strlen (allfamilies), p1, p - p1);
1918 strcat (font_allfamilies, allcs);
1919
1920 /* Build the font spec that matches all. */
1921 len = p - p2 + strlen (allcs) + strlen (all) + strlen (allfamilies) + 1;
1922 font_all = alloca (len);
1923 strcpy (font_all, allfamilies);
1924 strcat (font_all, all);
1925 memcpy (font_all + strlen (all) + strlen (allfamilies), p2, p - p2);
1926 strcat (font_all, allcs);
1927
1928 /* Build the actual font set name. */
1929 len = strlen (base_fontname) + strlen (font_allcs)
1930 + strlen (font_allfamilies) + strlen (font_all) + 5;
1931 fontsetname = xmalloc (len);
1932 strcpy (fontsetname, base_fontname);
1933 strcat (fontsetname, sep);
1934 strcat (fontsetname, font_allcs);
1935 strcat (fontsetname, sep);
1936 strcat (fontsetname, font_allfamilies);
1937 strcat (fontsetname, sep);
1938 strcat (fontsetname, font_all);
1939 }
1940 }
1941 if (motif)
1942 strcat (fontsetname, ":");
1943 return fontsetname;
1944 }
1945 #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */
1946
1947 #ifdef DEBUG_XIC_FONTSET
1948 static void
1949 print_fontset_result (XFontSet xfs, char *name, char **missing_list,
1950 int missing_count)
1951 {
1952 if (xfs)
1953 fprintf (stderr, "XIC Fontset created: %s\n", name);
1954 else
1955 {
1956 fprintf (stderr, "XIC Fontset failed: %s\n", name);
1957 while (missing_count-- > 0)
1958 {
1959 fprintf (stderr, " missing: %s\n", *missing_list);
1960 missing_list++;
1961 }
1962 }
1963
1964 }
1965 #endif
1966
1967 static XFontSet
1968 xic_create_xfontset (struct frame *f)
1969 {
1970 XFontSet xfs = NULL;
1971 struct font *font = FRAME_FONT (f);
1972 int pixel_size = font->pixel_size;
1973 Lisp_Object rest, frame;
1974
1975 /* See if there is another frame already using same fontset. */
1976 FOR_EACH_FRAME (rest, frame)
1977 {
1978 struct frame *cf = XFRAME (frame);
1979
1980 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
1981 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
1982 && FRAME_FONT (f)
1983 && FRAME_FONT (f)->pixel_size == pixel_size)
1984 {
1985 xfs = FRAME_XIC_FONTSET (cf);
1986 break;
1987 }
1988 }
1989
1990 if (! xfs)
1991 {
1992 char buf[256];
1993 char **missing_list;
1994 int missing_count;
1995 char *def_string;
1996 const char *xlfd_format = "-*-*-medium-r-normal--%d-*-*-*-*-*";
1997
1998 sprintf (buf, xlfd_format, pixel_size);
1999 missing_list = NULL;
2000 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), buf,
2001 &missing_list, &missing_count, &def_string);
2002 #ifdef DEBUG_XIC_FONTSET
2003 print_fontset_result (xfs, buf, missing_list, missing_count);
2004 #endif
2005 if (missing_list)
2006 XFreeStringList (missing_list);
2007 if (! xfs)
2008 {
2009 /* List of pixel sizes most likely available. Find one that
2010 is closest to pixel_size. */
2011 int sizes[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2012 int *smaller, *larger;
2013
2014 for (smaller = sizes; smaller[1]; smaller++)
2015 if (smaller[1] >= pixel_size)
2016 break;
2017 larger = smaller + 1;
2018 if (*larger == pixel_size)
2019 larger++;
2020 while (*smaller || *larger)
2021 {
2022 int this_size;
2023
2024 if (! *larger)
2025 this_size = *smaller--;
2026 else if (! *smaller)
2027 this_size = *larger++;
2028 else if (pixel_size - *smaller < *larger - pixel_size)
2029 this_size = *smaller--;
2030 else
2031 this_size = *larger++;
2032 sprintf (buf, xlfd_format, this_size);
2033 missing_list = NULL;
2034 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), buf,
2035 &missing_list, &missing_count, &def_string);
2036 #ifdef DEBUG_XIC_FONTSET
2037 print_fontset_result (xfs, buf, missing_list, missing_count);
2038 #endif
2039 if (missing_list)
2040 XFreeStringList (missing_list);
2041 if (xfs)
2042 break;
2043 }
2044 }
2045 if (! xfs)
2046 {
2047 const char *last_resort = "-*-*-*-r-normal--*-*-*-*-*-*";
2048
2049 missing_list = NULL;
2050 xfs = XCreateFontSet (FRAME_X_DISPLAY (f), last_resort,
2051 &missing_list, &missing_count, &def_string);
2052 #ifdef DEBUG_XIC_FONTSET
2053 print_fontset_result (xfs, last_resort, missing_list, missing_count);
2054 #endif
2055 if (missing_list)
2056 XFreeStringList (missing_list);
2057 }
2058
2059 }
2060
2061 return xfs;
2062 }
2063
2064 /* Free the X fontset of frame F if it is the last frame using it. */
2065
2066 void
2067 xic_free_xfontset (struct frame *f)
2068 {
2069 Lisp_Object rest, frame;
2070 int shared_p = 0;
2071
2072 if (!FRAME_XIC_FONTSET (f))
2073 return;
2074
2075 /* See if there is another frame sharing the same fontset. */
2076 FOR_EACH_FRAME (rest, frame)
2077 {
2078 struct frame *cf = XFRAME (frame);
2079 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2080 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
2081 && FRAME_XIC_FONTSET (cf) == FRAME_XIC_FONTSET (f))
2082 {
2083 shared_p = 1;
2084 break;
2085 }
2086 }
2087
2088 if (!shared_p)
2089 /* The fontset is not used anymore. It is safe to free it. */
2090 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
2091
2092 if (FRAME_XIC_BASE_FONTNAME (f))
2093 xfree (FRAME_XIC_BASE_FONTNAME (f));
2094 FRAME_XIC_BASE_FONTNAME (f) = NULL;
2095 FRAME_XIC_FONTSET (f) = NULL;
2096 }
2097
2098
2099 /* Value is the best input style, given user preferences USER (already
2100 checked to be supported by Emacs), and styles supported by the
2101 input method XIM. */
2102
2103 static XIMStyle
2104 best_xim_style (XIMStyles *user, XIMStyles *xim)
2105 {
2106 int i, j;
2107
2108 for (i = 0; i < user->count_styles; ++i)
2109 for (j = 0; j < xim->count_styles; ++j)
2110 if (user->supported_styles[i] == xim->supported_styles[j])
2111 return user->supported_styles[i];
2112
2113 /* Return the default style. */
2114 return XIMPreeditNothing | XIMStatusNothing;
2115 }
2116
2117 /* Create XIC for frame F. */
2118
2119 static XIMStyle xic_style;
2120
2121 void
2122 create_frame_xic (struct frame *f)
2123 {
2124 XIM xim;
2125 XIC xic = NULL;
2126 XFontSet xfs = NULL;
2127
2128 if (FRAME_XIC (f))
2129 return;
2130
2131 /* Create X fontset. */
2132 xfs = xic_create_xfontset (f);
2133 xim = FRAME_X_XIM (f);
2134 if (xim)
2135 {
2136 XRectangle s_area;
2137 XPoint spot;
2138 XVaNestedList preedit_attr;
2139 XVaNestedList status_attr;
2140
2141 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
2142 spot.x = 0; spot.y = 1;
2143
2144 /* Determine XIC style. */
2145 if (xic_style == 0)
2146 {
2147 XIMStyles supported_list;
2148 supported_list.count_styles = (sizeof supported_xim_styles
2149 / sizeof supported_xim_styles[0]);
2150 supported_list.supported_styles = supported_xim_styles;
2151 xic_style = best_xim_style (&supported_list,
2152 FRAME_X_XIM_STYLES (f));
2153 }
2154
2155 preedit_attr = XVaCreateNestedList (0,
2156 XNFontSet, xfs,
2157 XNForeground,
2158 FRAME_FOREGROUND_PIXEL (f),
2159 XNBackground,
2160 FRAME_BACKGROUND_PIXEL (f),
2161 (xic_style & XIMPreeditPosition
2162 ? XNSpotLocation
2163 : NULL),
2164 &spot,
2165 NULL);
2166 status_attr = XVaCreateNestedList (0,
2167 XNArea,
2168 &s_area,
2169 XNFontSet,
2170 xfs,
2171 XNForeground,
2172 FRAME_FOREGROUND_PIXEL (f),
2173 XNBackground,
2174 FRAME_BACKGROUND_PIXEL (f),
2175 NULL);
2176
2177 xic = XCreateIC (xim,
2178 XNInputStyle, xic_style,
2179 XNClientWindow, FRAME_X_WINDOW (f),
2180 XNFocusWindow, FRAME_X_WINDOW (f),
2181 XNStatusAttributes, status_attr,
2182 XNPreeditAttributes, preedit_attr,
2183 NULL);
2184 XFree (preedit_attr);
2185 XFree (status_attr);
2186 }
2187
2188 FRAME_XIC (f) = xic;
2189 FRAME_XIC_STYLE (f) = xic_style;
2190 FRAME_XIC_FONTSET (f) = xfs;
2191 }
2192
2193
2194 /* Destroy XIC and free XIC fontset of frame F, if any. */
2195
2196 void
2197 free_frame_xic (struct frame *f)
2198 {
2199 if (FRAME_XIC (f) == NULL)
2200 return;
2201
2202 XDestroyIC (FRAME_XIC (f));
2203 xic_free_xfontset (f);
2204
2205 FRAME_XIC (f) = NULL;
2206 }
2207
2208
2209 /* Place preedit area for XIC of window W's frame to specified
2210 pixel position X/Y. X and Y are relative to window W. */
2211
2212 void
2213 xic_set_preeditarea (struct window *w, int x, int y)
2214 {
2215 struct frame *f = XFRAME (w->frame);
2216 XVaNestedList attr;
2217 XPoint spot;
2218
2219 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w);
2220 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
2221 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
2222 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2223 XFree (attr);
2224 }
2225
2226
2227 /* Place status area for XIC in bottom right corner of frame F.. */
2228
2229 void
2230 xic_set_statusarea (struct frame *f)
2231 {
2232 XIC xic = FRAME_XIC (f);
2233 XVaNestedList attr;
2234 XRectangle area;
2235 XRectangle *needed;
2236
2237 /* Negotiate geometry of status area. If input method has existing
2238 status area, use its current size. */
2239 area.x = area.y = area.width = area.height = 0;
2240 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
2241 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2242 XFree (attr);
2243
2244 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
2245 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2246 XFree (attr);
2247
2248 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
2249 {
2250 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
2251 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2252 XFree (attr);
2253 }
2254
2255 area.width = needed->width;
2256 area.height = needed->height;
2257 area.x = FRAME_PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
2258 area.y = (FRAME_PIXEL_HEIGHT (f) - area.height
2259 - FRAME_MENUBAR_HEIGHT (f)
2260 - FRAME_TOOLBAR_TOP_HEIGHT (f)
2261 - FRAME_INTERNAL_BORDER_WIDTH (f));
2262 XFree (needed);
2263
2264 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
2265 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2266 XFree (attr);
2267 }
2268
2269
2270 /* Set X fontset for XIC of frame F, using base font name
2271 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2272
2273 void
2274 xic_set_xfontset (struct frame *f, const char *base_fontname)
2275 {
2276 XVaNestedList attr;
2277 XFontSet xfs;
2278
2279 xic_free_xfontset (f);
2280
2281 xfs = xic_create_xfontset (f);
2282
2283 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
2284 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
2285 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2286 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
2287 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
2288 XFree (attr);
2289
2290 FRAME_XIC_FONTSET (f) = xfs;
2291 }
2292
2293 #endif /* HAVE_X_I18N */
2294
2295
2296 \f
2297 #ifdef USE_X_TOOLKIT
2298
2299 /* Create and set up the X widget for frame F. */
2300
2301 static void
2302 x_window (struct frame *f, long window_prompting, int minibuffer_only)
2303 {
2304 XClassHint class_hints;
2305 XSetWindowAttributes attributes;
2306 unsigned long attribute_mask;
2307 Widget shell_widget;
2308 Widget pane_widget;
2309 Widget frame_widget;
2310 Arg al [25];
2311 int ac;
2312
2313 block_input ();
2314
2315 /* Use the resource name as the top-level widget name
2316 for looking up resources. Make a non-Lisp copy
2317 for the window manager, so GC relocation won't bother it.
2318
2319 Elsewhere we specify the window name for the window manager. */
2320
2321 {
2322 char *str = SSDATA (Vx_resource_name);
2323 f->namebuf = xmalloc (strlen (str) + 1);
2324 strcpy (f->namebuf, str);
2325 }
2326
2327 ac = 0;
2328 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
2329 XtSetArg (al[ac], XtNinput, 1); ac++;
2330 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2331 XtSetArg (al[ac], XtNborderWidth, f->border_width); ac++;
2332 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2333 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2334 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2335 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
2336 applicationShellWidgetClass,
2337 FRAME_X_DISPLAY (f), al, ac);
2338
2339 f->output_data.x->widget = shell_widget;
2340 /* maybe_set_screen_title_format (shell_widget); */
2341
2342 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
2343 (widget_value *) NULL,
2344 shell_widget, False,
2345 (lw_callback) NULL,
2346 (lw_callback) NULL,
2347 (lw_callback) NULL,
2348 (lw_callback) NULL);
2349
2350 ac = 0;
2351 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2352 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2353 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2354 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2355 XtSetValues (pane_widget, al, ac);
2356 f->output_data.x->column_widget = pane_widget;
2357
2358 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2359 the emacs screen when changing menubar. This reduces flickering. */
2360
2361 ac = 0;
2362 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2363 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
2364 XtSetArg (al[ac], XtNallowResize, 1); ac++;
2365 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
2366 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
2367 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2368 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2369 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2370 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2371 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
2372 al, ac);
2373
2374 f->output_data.x->edit_widget = frame_widget;
2375
2376 XtManageChild (frame_widget);
2377
2378 /* Do some needed geometry management. */
2379 {
2380 char *tem, shell_position[sizeof "=x++" + 4 * INT_STRLEN_BOUND (int)];
2381 Arg gal[10];
2382 int gac = 0;
2383 int extra_borders = 0;
2384 int menubar_size
2385 = (f->output_data.x->menubar_widget
2386 ? (f->output_data.x->menubar_widget->core.height
2387 + f->output_data.x->menubar_widget->core.border_width)
2388 : 0);
2389
2390 #if 0 /* Experimentally, we now get the right results
2391 for -geometry -0-0 without this. 24 Aug 96, rms. */
2392 if (FRAME_EXTERNAL_MENU_BAR (f))
2393 {
2394 Dimension ibw = 0;
2395 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
2396 menubar_size += ibw;
2397 }
2398 #endif
2399
2400 f->output_data.x->menubar_height = menubar_size;
2401
2402 #ifndef USE_LUCID
2403 /* Motif seems to need this amount added to the sizes
2404 specified for the shell widget. The Athena/Lucid widgets don't.
2405 Both conclusions reached experimentally. -- rms. */
2406 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
2407 &extra_borders, NULL);
2408 extra_borders *= 2;
2409 #endif
2410
2411 /* Convert our geometry parameters into a geometry string
2412 and specify it.
2413 Note that we do not specify here whether the position
2414 is a user-specified or program-specified one.
2415 We pass that information later, in x_wm_set_size_hints. */
2416 {
2417 int left = f->left_pos;
2418 int xneg = window_prompting & XNegative;
2419 int top = f->top_pos;
2420 int yneg = window_prompting & YNegative;
2421 if (xneg)
2422 left = -left;
2423 if (yneg)
2424 top = -top;
2425
2426 if (window_prompting & USPosition)
2427 sprintf (shell_position, "=%dx%d%c%d%c%d",
2428 FRAME_PIXEL_WIDTH (f) + extra_borders,
2429 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders,
2430 (xneg ? '-' : '+'), left,
2431 (yneg ? '-' : '+'), top);
2432 else
2433 {
2434 sprintf (shell_position, "=%dx%d",
2435 FRAME_PIXEL_WIDTH (f) + extra_borders,
2436 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders);
2437
2438 /* Setting x and y when the position is not specified in
2439 the geometry string will set program position in the WM hints.
2440 If Emacs had just one program position, we could set it in
2441 fallback resources, but since each make-frame call can specify
2442 different program positions, this is easier. */
2443 XtSetArg (gal[gac], XtNx, left); gac++;
2444 XtSetArg (gal[gac], XtNy, top); gac++;
2445 }
2446 }
2447
2448 /* We don't free this because we don't know whether
2449 it is safe to free it while the frame exists.
2450 It isn't worth the trouble of arranging to free it
2451 when the frame is deleted. */
2452 tem = xstrdup (shell_position);
2453 XtSetArg (gal[gac], XtNgeometry, tem); gac++;
2454 XtSetValues (shell_widget, gal, gac);
2455 }
2456
2457 XtManageChild (pane_widget);
2458 XtRealizeWidget (shell_widget);
2459
2460 if (FRAME_X_EMBEDDED_P (f))
2461 XReparentWindow (FRAME_X_DISPLAY (f), XtWindow (shell_widget),
2462 f->output_data.x->parent_desc, 0, 0);
2463
2464 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
2465
2466 validate_x_resource_name ();
2467
2468 class_hints.res_name = SSDATA (Vx_resource_name);
2469 class_hints.res_class = SSDATA (Vx_resource_class);
2470 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
2471
2472 #ifdef HAVE_X_I18N
2473 FRAME_XIC (f) = NULL;
2474 if (use_xim)
2475 create_frame_xic (f);
2476 #endif
2477
2478 f->output_data.x->wm_hints.input = True;
2479 f->output_data.x->wm_hints.flags |= InputHint;
2480 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2481 &f->output_data.x->wm_hints);
2482
2483 hack_wm_protocols (f, shell_widget);
2484
2485 #ifdef HACK_EDITRES
2486 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
2487 #endif
2488
2489 /* Do a stupid property change to force the server to generate a
2490 PropertyNotify event so that the event_stream server timestamp will
2491 be initialized to something relevant to the time we created the window.
2492 */
2493 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
2494 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2495 XA_ATOM, 32, PropModeAppend,
2496 (unsigned char*) NULL, 0);
2497
2498 /* Make all the standard events reach the Emacs frame. */
2499 attributes.event_mask = STANDARD_EVENT_SET;
2500
2501 #ifdef HAVE_X_I18N
2502 if (FRAME_XIC (f))
2503 {
2504 /* XIM server might require some X events. */
2505 unsigned long fevent = NoEventMask;
2506 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2507 attributes.event_mask |= fevent;
2508 }
2509 #endif /* HAVE_X_I18N */
2510
2511 attribute_mask = CWEventMask;
2512 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
2513 attribute_mask, &attributes);
2514
2515 XtMapWidget (frame_widget);
2516
2517 /* x_set_name normally ignores requests to set the name if the
2518 requested name is the same as the current name. This is the one
2519 place where that assumption isn't correct; f->name is set, but
2520 the X server hasn't been told. */
2521 {
2522 Lisp_Object name;
2523 int explicit = f->explicit_name;
2524
2525 f->explicit_name = 0;
2526 name = f->name;
2527 fset_name (f, Qnil);
2528 x_set_name (f, name, explicit);
2529 }
2530
2531 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2532 f->output_data.x->current_cursor
2533 = f->output_data.x->text_cursor);
2534
2535 unblock_input ();
2536
2537 /* This is a no-op, except under Motif. Make sure main areas are
2538 set to something reasonable, in case we get an error later. */
2539 lw_set_main_areas (pane_widget, 0, frame_widget);
2540 }
2541
2542 #else /* not USE_X_TOOLKIT */
2543 #ifdef USE_GTK
2544 static void
2545 x_window (FRAME_PTR f)
2546 {
2547 if (! xg_create_frame_widgets (f))
2548 error ("Unable to create window");
2549
2550 #ifdef HAVE_X_I18N
2551 FRAME_XIC (f) = NULL;
2552 if (use_xim)
2553 {
2554 block_input ();
2555 create_frame_xic (f);
2556 if (FRAME_XIC (f))
2557 {
2558 /* XIM server might require some X events. */
2559 unsigned long fevent = NoEventMask;
2560 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2561
2562 if (fevent != NoEventMask)
2563 {
2564 XSetWindowAttributes attributes;
2565 XWindowAttributes wattr;
2566 unsigned long attribute_mask;
2567
2568 XGetWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2569 &wattr);
2570 attributes.event_mask = wattr.your_event_mask | fevent;
2571 attribute_mask = CWEventMask;
2572 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2573 attribute_mask, &attributes);
2574 }
2575 }
2576 unblock_input ();
2577 }
2578 #endif
2579 }
2580
2581 #else /*! USE_GTK */
2582 /* Create and set up the X window for frame F. */
2583
2584 static void
2585 x_window (struct frame *f)
2586 {
2587 XClassHint class_hints;
2588 XSetWindowAttributes attributes;
2589 unsigned long attribute_mask;
2590
2591 attributes.background_pixel = FRAME_BACKGROUND_PIXEL (f);
2592 attributes.border_pixel = f->output_data.x->border_pixel;
2593 attributes.bit_gravity = StaticGravity;
2594 attributes.backing_store = NotUseful;
2595 attributes.save_under = True;
2596 attributes.event_mask = STANDARD_EVENT_SET;
2597 attributes.colormap = FRAME_X_COLORMAP (f);
2598 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
2599 | CWColormap);
2600
2601 block_input ();
2602 FRAME_X_WINDOW (f)
2603 = XCreateWindow (FRAME_X_DISPLAY (f),
2604 f->output_data.x->parent_desc,
2605 f->left_pos,
2606 f->top_pos,
2607 FRAME_PIXEL_WIDTH (f), FRAME_PIXEL_HEIGHT (f),
2608 f->border_width,
2609 CopyFromParent, /* depth */
2610 InputOutput, /* class */
2611 FRAME_X_VISUAL (f),
2612 attribute_mask, &attributes);
2613
2614 #ifdef HAVE_X_I18N
2615 if (use_xim)
2616 {
2617 create_frame_xic (f);
2618 if (FRAME_XIC (f))
2619 {
2620 /* XIM server might require some X events. */
2621 unsigned long fevent = NoEventMask;
2622 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2623 attributes.event_mask |= fevent;
2624 attribute_mask = CWEventMask;
2625 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2626 attribute_mask, &attributes);
2627 }
2628 }
2629 #endif /* HAVE_X_I18N */
2630
2631 validate_x_resource_name ();
2632
2633 class_hints.res_name = SSDATA (Vx_resource_name);
2634 class_hints.res_class = SSDATA (Vx_resource_class);
2635 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
2636
2637 /* The menubar is part of the ordinary display;
2638 it does not count in addition to the height of the window. */
2639 f->output_data.x->menubar_height = 0;
2640
2641 /* This indicates that we use the "Passive Input" input model.
2642 Unless we do this, we don't get the Focus{In,Out} events that we
2643 need to draw the cursor correctly. Accursed bureaucrats.
2644 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2645
2646 f->output_data.x->wm_hints.input = True;
2647 f->output_data.x->wm_hints.flags |= InputHint;
2648 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2649 &f->output_data.x->wm_hints);
2650 f->output_data.x->wm_hints.icon_pixmap = None;
2651
2652 /* Request "save yourself" and "delete window" commands from wm. */
2653 {
2654 Atom protocols[2];
2655 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
2656 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
2657 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
2658 }
2659
2660 /* x_set_name normally ignores requests to set the name if the
2661 requested name is the same as the current name. This is the one
2662 place where that assumption isn't correct; f->name is set, but
2663 the X server hasn't been told. */
2664 {
2665 Lisp_Object name;
2666 int explicit = f->explicit_name;
2667
2668 f->explicit_name = 0;
2669 name = f->name;
2670 fset_name (f, Qnil);
2671 x_set_name (f, name, explicit);
2672 }
2673
2674 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2675 f->output_data.x->current_cursor
2676 = f->output_data.x->text_cursor);
2677
2678 unblock_input ();
2679
2680 if (FRAME_X_WINDOW (f) == 0)
2681 error ("Unable to create window");
2682 }
2683
2684 #endif /* not USE_GTK */
2685 #endif /* not USE_X_TOOLKIT */
2686
2687 /* Verify that the icon position args for this window are valid. */
2688
2689 static void
2690 x_icon_verify (struct frame *f, Lisp_Object parms)
2691 {
2692 Lisp_Object icon_x, icon_y;
2693
2694 /* Set the position of the icon. Note that twm groups all
2695 icons in an icon window. */
2696 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2697 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2698 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2699 {
2700 CHECK_NUMBER (icon_x);
2701 CHECK_NUMBER (icon_y);
2702 }
2703 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2704 error ("Both left and top icon corners of icon must be specified");
2705 }
2706
2707 /* Handle the icon stuff for this window. Perhaps later we might
2708 want an x_set_icon_position which can be called interactively as
2709 well. */
2710
2711 static void
2712 x_icon (struct frame *f, Lisp_Object parms)
2713 {
2714 Lisp_Object icon_x, icon_y;
2715 #if 0
2716 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2717 #endif
2718
2719 /* Set the position of the icon. Note that twm groups all
2720 icons in an icon window. */
2721 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2722 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2723 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2724 {
2725 CHECK_TYPE_RANGED_INTEGER (int, icon_x);
2726 CHECK_TYPE_RANGED_INTEGER (int, icon_y);
2727 }
2728 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2729 error ("Both left and top icon corners of icon must be specified");
2730
2731 block_input ();
2732
2733 if (! EQ (icon_x, Qunbound))
2734 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
2735
2736 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2737 but x_create_frame still needs it. */
2738 /* Start up iconic or window? */
2739 x_wm_set_window_state
2740 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
2741 Qicon)
2742 ? IconicState
2743 : NormalState));
2744 #endif
2745
2746 x_text_icon (f, SSDATA ((!NILP (f->icon_name)
2747 ? f->icon_name
2748 : f->name)));
2749
2750 unblock_input ();
2751 }
2752
2753 /* Make the GCs needed for this window, setting the
2754 background, border and mouse colors; also create the
2755 mouse cursor and the gray border tile. */
2756
2757 static void
2758 x_make_gc (struct frame *f)
2759 {
2760 XGCValues gc_values;
2761
2762 block_input ();
2763
2764 /* Create the GCs of this frame.
2765 Note that many default values are used. */
2766
2767 gc_values.foreground = FRAME_FOREGROUND_PIXEL (f);
2768 gc_values.background = FRAME_BACKGROUND_PIXEL (f);
2769 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
2770 f->output_data.x->normal_gc
2771 = XCreateGC (FRAME_X_DISPLAY (f),
2772 FRAME_X_WINDOW (f),
2773 GCLineWidth | GCForeground | GCBackground,
2774 &gc_values);
2775
2776 /* Reverse video style. */
2777 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2778 gc_values.background = FRAME_FOREGROUND_PIXEL (f);
2779 f->output_data.x->reverse_gc
2780 = XCreateGC (FRAME_X_DISPLAY (f),
2781 FRAME_X_WINDOW (f),
2782 GCForeground | GCBackground | GCLineWidth,
2783 &gc_values);
2784
2785 /* Cursor has cursor-color background, background-color foreground. */
2786 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
2787 gc_values.background = f->output_data.x->cursor_pixel;
2788 gc_values.fill_style = FillOpaqueStippled;
2789 f->output_data.x->cursor_gc
2790 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2791 (GCForeground | GCBackground
2792 | GCFillStyle | GCLineWidth),
2793 &gc_values);
2794
2795 /* Reliefs. */
2796 f->output_data.x->white_relief.gc = 0;
2797 f->output_data.x->black_relief.gc = 0;
2798
2799 /* Create the gray border tile used when the pointer is not in
2800 the frame. Since this depends on the frame's pixel values,
2801 this must be done on a per-frame basis. */
2802 f->output_data.x->border_tile
2803 = (XCreatePixmapFromBitmapData
2804 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
2805 gray_bits, gray_width, gray_height,
2806 FRAME_FOREGROUND_PIXEL (f),
2807 FRAME_BACKGROUND_PIXEL (f),
2808 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
2809
2810 unblock_input ();
2811 }
2812
2813
2814 /* Free what was allocated in x_make_gc. */
2815
2816 void
2817 x_free_gcs (struct frame *f)
2818 {
2819 Display *dpy = FRAME_X_DISPLAY (f);
2820
2821 block_input ();
2822
2823 if (f->output_data.x->normal_gc)
2824 {
2825 XFreeGC (dpy, f->output_data.x->normal_gc);
2826 f->output_data.x->normal_gc = 0;
2827 }
2828
2829 if (f->output_data.x->reverse_gc)
2830 {
2831 XFreeGC (dpy, f->output_data.x->reverse_gc);
2832 f->output_data.x->reverse_gc = 0;
2833 }
2834
2835 if (f->output_data.x->cursor_gc)
2836 {
2837 XFreeGC (dpy, f->output_data.x->cursor_gc);
2838 f->output_data.x->cursor_gc = 0;
2839 }
2840
2841 if (f->output_data.x->border_tile)
2842 {
2843 XFreePixmap (dpy, f->output_data.x->border_tile);
2844 f->output_data.x->border_tile = 0;
2845 }
2846
2847 unblock_input ();
2848 }
2849
2850
2851 /* Handler for signals raised during x_create_frame and
2852 x_create_tip_frame. FRAME is the frame which is partially
2853 constructed. */
2854
2855 static Lisp_Object
2856 unwind_create_frame (Lisp_Object frame)
2857 {
2858 struct frame *f = XFRAME (frame);
2859
2860 /* If frame is already dead, nothing to do. This can happen if the
2861 display is disconnected after the frame has become official, but
2862 before x_create_frame removes the unwind protect. */
2863 if (!FRAME_LIVE_P (f))
2864 return Qnil;
2865
2866 /* If frame is ``official'', nothing to do. */
2867 if (NILP (Fmemq (frame, Vframe_list)))
2868 {
2869 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
2870 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2871 #endif
2872
2873 x_free_frame_resources (f);
2874 free_glyphs (f);
2875
2876 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
2877 /* Check that reference counts are indeed correct. */
2878 eassert (dpyinfo->reference_count == dpyinfo_refcount);
2879 eassert (dpyinfo->terminal->image_cache->refcount == image_cache_refcount);
2880 #endif
2881 return Qt;
2882 }
2883
2884 return Qnil;
2885 }
2886
2887 static Lisp_Object
2888 unwind_create_frame_1 (Lisp_Object val)
2889 {
2890 inhibit_lisp_code = val;
2891 return Qnil;
2892 }
2893
2894 static void
2895 x_default_font_parameter (struct frame *f, Lisp_Object parms)
2896 {
2897 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2898 Lisp_Object font_param = x_get_arg (dpyinfo, parms, Qfont, NULL, NULL,
2899 RES_TYPE_STRING);
2900 Lisp_Object font = Qnil;
2901 if (EQ (font_param, Qunbound))
2902 font_param = Qnil;
2903
2904 if (NILP (font_param))
2905 {
2906 /* System font should take precedence over X resources. We suggest this
2907 regardless of font-use-system-font because .emacs may not have been
2908 read yet. */
2909 const char *system_font = xsettings_get_system_font ();
2910 if (system_font)
2911 font = font_open_by_name (f, build_unibyte_string (system_font));
2912 }
2913
2914 if (NILP (font))
2915 font = !NILP (font_param) ? font_param
2916 : x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
2917
2918 if (! FONTP (font) && ! STRINGP (font))
2919 {
2920 const char *names[]
2921 = {
2922 #ifdef HAVE_XFT
2923 /* This will find the normal Xft font. */
2924 "monospace-10",
2925 #endif
2926 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
2927 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
2928 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
2929 /* This was formerly the first thing tried, but it finds
2930 too many fonts and takes too long. */
2931 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
2932 /* If those didn't work, look for something which will
2933 at least work. */
2934 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
2935 "fixed",
2936 NULL };
2937 int i;
2938
2939 for (i = 0; names[i]; i++)
2940 {
2941 font = font_open_by_name (f, build_unibyte_string (names[i]));
2942 if (! NILP (font))
2943 break;
2944 }
2945 if (NILP (font))
2946 error ("No suitable font was found");
2947 }
2948 else if (!NILP (font_param))
2949 {
2950 /* Remember the explicit font parameter, so we can re-apply it after
2951 we've applied the `default' face settings. */
2952 x_set_frame_parameters (f, Fcons (Fcons (Qfont_param, font_param), Qnil));
2953 }
2954
2955 /* This call will make X resources override any system font setting. */
2956 x_default_parameter (f, parms, Qfont, font, "font", "Font", RES_TYPE_STRING);
2957 }
2958
2959
2960 DEFUN ("x-wm-set-size-hint", Fx_wm_set_size_hint, Sx_wm_set_size_hint,
2961 0, 1, 0,
2962 doc: /* Send the size hints for frame FRAME to the window manager.
2963 If FRAME is omitted or nil, use the selected frame.
2964 Signal error if FRAME is not an X frame. */)
2965 (Lisp_Object frame)
2966 {
2967 struct frame *f = decode_window_system_frame (frame);
2968
2969 block_input ();
2970 x_wm_set_size_hint (f, 0, 0);
2971 unblock_input ();
2972 return Qnil;
2973 }
2974
2975 static void
2976 set_machine_and_pid_properties (struct frame *f)
2977 {
2978 long pid = (long) getpid ();
2979
2980 /* This will set WM_CLIENT_MACHINE and WM_LOCALE_NAME. */
2981 XSetWMProperties (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), NULL, NULL,
2982 NULL, 0, NULL, NULL, NULL);
2983 XChangeProperty (FRAME_X_DISPLAY (f),
2984 FRAME_OUTER_WINDOW (f),
2985 XInternAtom (FRAME_X_DISPLAY (f),
2986 "_NET_WM_PID",
2987 False),
2988 XA_CARDINAL, 32, PropModeReplace,
2989 (unsigned char *) &pid, 1);
2990 }
2991
2992 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
2993 1, 1, 0,
2994 doc: /* Make a new X window, which is called a "frame" in Emacs terms.
2995 Return an Emacs frame object.
2996 PARMS is an alist of frame parameters.
2997 If the parameters specify that the frame should not have a minibuffer,
2998 and do not specify a specific minibuffer window to use,
2999 then `default-minibuffer-frame' must be a frame whose minibuffer can
3000 be shared by the new frame.
3001
3002 This function is an internal primitive--use `make-frame' instead. */)
3003 (Lisp_Object parms)
3004 {
3005 struct frame *f;
3006 Lisp_Object frame, tem;
3007 Lisp_Object name;
3008 int minibuffer_only = 0;
3009 long window_prompting = 0;
3010 int width, height;
3011 ptrdiff_t count = SPECPDL_INDEX ();
3012 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3013 Lisp_Object display;
3014 struct x_display_info *dpyinfo = NULL;
3015 Lisp_Object parent;
3016 struct kboard *kb;
3017
3018 parms = Fcopy_alist (parms);
3019
3020 /* Use this general default value to start with
3021 until we know if this frame has a specified name. */
3022 Vx_resource_name = Vinvocation_name;
3023
3024 display = x_get_arg (dpyinfo, parms, Qterminal, 0, 0, RES_TYPE_NUMBER);
3025 if (EQ (display, Qunbound))
3026 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
3027 if (EQ (display, Qunbound))
3028 display = Qnil;
3029 dpyinfo = check_x_display_info (display);
3030 kb = dpyinfo->terminal->kboard;
3031
3032 if (!dpyinfo->terminal->name)
3033 error ("Terminal is not live, can't create new frames on it");
3034
3035 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
3036 if (!STRINGP (name)
3037 && ! EQ (name, Qunbound)
3038 && ! NILP (name))
3039 error ("Invalid frame name--not a string or nil");
3040
3041 if (STRINGP (name))
3042 Vx_resource_name = name;
3043
3044 /* See if parent window is specified. */
3045 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
3046 if (EQ (parent, Qunbound))
3047 parent = Qnil;
3048 if (! NILP (parent))
3049 CHECK_NUMBER (parent);
3050
3051 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3052 /* No need to protect DISPLAY because that's not used after passing
3053 it to make_frame_without_minibuffer. */
3054 frame = Qnil;
3055 GCPRO4 (parms, parent, name, frame);
3056 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
3057 RES_TYPE_SYMBOL);
3058 if (EQ (tem, Qnone) || NILP (tem))
3059 f = make_frame_without_minibuffer (Qnil, kb, display);
3060 else if (EQ (tem, Qonly))
3061 {
3062 f = make_minibuffer_frame ();
3063 minibuffer_only = 1;
3064 }
3065 else if (WINDOWP (tem))
3066 f = make_frame_without_minibuffer (tem, kb, display);
3067 else
3068 f = make_frame (1);
3069
3070 XSETFRAME (frame, f);
3071
3072 f->terminal = dpyinfo->terminal;
3073
3074 f->output_method = output_x_window;
3075 f->output_data.x = xzalloc (sizeof *f->output_data.x);
3076 f->output_data.x->icon_bitmap = -1;
3077 FRAME_FONTSET (f) = -1;
3078 f->output_data.x->scroll_bar_foreground_pixel = -1;
3079 f->output_data.x->scroll_bar_background_pixel = -1;
3080 #ifdef USE_TOOLKIT_SCROLL_BARS
3081 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
3082 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
3083 #endif /* USE_TOOLKIT_SCROLL_BARS */
3084
3085 fset_icon_name (f,
3086 x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
3087 RES_TYPE_STRING));
3088 if (! STRINGP (f->icon_name))
3089 fset_icon_name (f, Qnil);
3090
3091 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
3092
3093 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3094 record_unwind_protect (unwind_create_frame, frame);
3095
3096 /* These colors will be set anyway later, but it's important
3097 to get the color reference counts right, so initialize them! */
3098 {
3099 Lisp_Object black;
3100 struct gcpro gcpro1;
3101
3102 /* Function x_decode_color can signal an error. Make
3103 sure to initialize color slots so that we won't try
3104 to free colors we haven't allocated. */
3105 FRAME_FOREGROUND_PIXEL (f) = -1;
3106 FRAME_BACKGROUND_PIXEL (f) = -1;
3107 f->output_data.x->cursor_pixel = -1;
3108 f->output_data.x->cursor_foreground_pixel = -1;
3109 f->output_data.x->border_pixel = -1;
3110 f->output_data.x->mouse_pixel = -1;
3111
3112 black = build_string ("black");
3113 GCPRO1 (black);
3114 FRAME_FOREGROUND_PIXEL (f)
3115 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3116 FRAME_BACKGROUND_PIXEL (f)
3117 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3118 f->output_data.x->cursor_pixel
3119 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3120 f->output_data.x->cursor_foreground_pixel
3121 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3122 f->output_data.x->border_pixel
3123 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3124 f->output_data.x->mouse_pixel
3125 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3126 UNGCPRO;
3127 }
3128
3129 /* Specify the parent under which to make this X window. */
3130
3131 if (!NILP (parent))
3132 {
3133 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
3134 f->output_data.x->explicit_parent = 1;
3135 }
3136 else
3137 {
3138 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
3139 f->output_data.x->explicit_parent = 0;
3140 }
3141
3142 /* Set the name; the functions to which we pass f expect the name to
3143 be set. */
3144 if (EQ (name, Qunbound) || NILP (name))
3145 {
3146 fset_name (f, build_string (dpyinfo->x_id_name));
3147 f->explicit_name = 0;
3148 }
3149 else
3150 {
3151 fset_name (f, name);
3152 f->explicit_name = 1;
3153 /* use the frame's title when getting resources for this frame. */
3154 specbind (Qx_resource_name, name);
3155 }
3156
3157 #ifdef HAVE_FREETYPE
3158 #ifdef HAVE_XFT
3159 register_font_driver (&xftfont_driver, f);
3160 #else /* not HAVE_XFT */
3161 register_font_driver (&ftxfont_driver, f);
3162 #endif /* not HAVE_XFT */
3163 #endif /* HAVE_FREETYPE */
3164 register_font_driver (&xfont_driver, f);
3165
3166 x_default_parameter (f, parms, Qfont_backend, Qnil,
3167 "fontBackend", "FontBackend", RES_TYPE_STRING);
3168
3169 /* Extract the window parameters from the supplied values
3170 that are needed to determine window geometry. */
3171 x_default_font_parameter (f, parms);
3172 if (!FRAME_FONT (f))
3173 {
3174 delete_frame (frame, Qnoelisp);
3175 error ("Invalid frame font");
3176 }
3177
3178 /* Frame contents get displaced if an embedded X window has a border. */
3179 if (! FRAME_X_EMBEDDED_P (f))
3180 x_default_parameter (f, parms, Qborder_width, make_number (0),
3181 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
3182
3183 /* This defaults to 1 in order to match xterm. We recognize either
3184 internalBorderWidth or internalBorder (which is what xterm calls
3185 it). */
3186 if (NILP (Fassq (Qinternal_border_width, parms)))
3187 {
3188 Lisp_Object value;
3189
3190 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
3191 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
3192 if (! EQ (value, Qunbound))
3193 parms = Fcons (Fcons (Qinternal_border_width, value),
3194 parms);
3195 }
3196 x_default_parameter (f, parms, Qinternal_border_width,
3197 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3198 make_number (0),
3199 #else
3200 make_number (1),
3201 #endif
3202 "internalBorderWidth", "internalBorderWidth",
3203 RES_TYPE_NUMBER);
3204 x_default_parameter (f, parms, Qvertical_scroll_bars,
3205 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
3206 Qright,
3207 #else
3208 Qleft,
3209 #endif
3210 "verticalScrollBars", "ScrollBars",
3211 RES_TYPE_SYMBOL);
3212
3213 /* Also do the stuff which must be set before the window exists. */
3214 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
3215 "foreground", "Foreground", RES_TYPE_STRING);
3216 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
3217 "background", "Background", RES_TYPE_STRING);
3218 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
3219 "pointerColor", "Foreground", RES_TYPE_STRING);
3220 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
3221 "borderColor", "BorderColor", RES_TYPE_STRING);
3222 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
3223 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
3224 x_default_parameter (f, parms, Qline_spacing, Qnil,
3225 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
3226 x_default_parameter (f, parms, Qleft_fringe, Qnil,
3227 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
3228 x_default_parameter (f, parms, Qright_fringe, Qnil,
3229 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
3230
3231 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
3232 "scrollBarForeground",
3233 "ScrollBarForeground", 1);
3234 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
3235 "scrollBarBackground",
3236 "ScrollBarBackground", 0);
3237
3238 #ifdef GLYPH_DEBUG
3239 image_cache_refcount =
3240 FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
3241 dpyinfo_refcount = dpyinfo->reference_count;
3242 #endif /* GLYPH_DEBUG */
3243
3244 /* Init faces before x_default_parameter is called for scroll-bar
3245 parameters because that function calls x_set_scroll_bar_width,
3246 which calls change_frame_size, which calls Fset_window_buffer,
3247 which runs hooks, which call Fvertical_motion. At the end, we
3248 end up in init_iterator with a null face cache, which should not
3249 happen. */
3250 init_frame_faces (f);
3251
3252 /* Set the menu-bar-lines and tool-bar-lines parameters. We don't
3253 look up the X resources controlling the menu-bar and tool-bar
3254 here; they are processed specially at startup, and reflected in
3255 the values of the mode variables.
3256
3257 Avoid calling window-configuration-change-hook; otherwise we
3258 could get an infloop in next_frame since the frame is not yet in
3259 Vframe_list. */
3260 {
3261 ptrdiff_t count2 = SPECPDL_INDEX ();
3262 record_unwind_protect (unwind_create_frame_1, inhibit_lisp_code);
3263 inhibit_lisp_code = Qt;
3264
3265 x_default_parameter (f, parms, Qmenu_bar_lines,
3266 NILP (Vmenu_bar_mode)
3267 ? make_number (0) : make_number (1),
3268 NULL, NULL, RES_TYPE_NUMBER);
3269 x_default_parameter (f, parms, Qtool_bar_lines,
3270 NILP (Vtool_bar_mode)
3271 ? make_number (0) : make_number (1),
3272 NULL, NULL, RES_TYPE_NUMBER);
3273
3274 unbind_to (count2, Qnil);
3275 }
3276
3277 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
3278 "bufferPredicate", "BufferPredicate",
3279 RES_TYPE_SYMBOL);
3280 x_default_parameter (f, parms, Qtitle, Qnil,
3281 "title", "Title", RES_TYPE_STRING);
3282 x_default_parameter (f, parms, Qwait_for_wm, Qt,
3283 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN);
3284 x_default_parameter (f, parms, Qfullscreen, Qnil,
3285 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
3286 x_default_parameter (f, parms, Qtool_bar_position,
3287 f->tool_bar_position, 0, 0, RES_TYPE_SYMBOL);
3288
3289 /* Compute the size of the X window. */
3290 window_prompting = x_figure_window_size (f, parms, 1);
3291
3292 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
3293 f->no_split = minibuffer_only || EQ (tem, Qt);
3294
3295 x_icon_verify (f, parms);
3296
3297 /* Create the X widget or window. */
3298 #ifdef USE_X_TOOLKIT
3299 x_window (f, window_prompting, minibuffer_only);
3300 #else
3301 x_window (f);
3302 #endif
3303
3304 x_icon (f, parms);
3305 x_make_gc (f);
3306
3307 /* Now consider the frame official. */
3308 f->terminal->reference_count++;
3309 FRAME_X_DISPLAY_INFO (f)->reference_count++;
3310 Vframe_list = Fcons (frame, Vframe_list);
3311
3312 /* We need to do this after creating the X window, so that the
3313 icon-creation functions can say whose icon they're describing. */
3314 x_default_parameter (f, parms, Qicon_type, Qt,
3315 "bitmapIcon", "BitmapIcon", RES_TYPE_BOOLEAN);
3316
3317 x_default_parameter (f, parms, Qauto_raise, Qnil,
3318 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3319 x_default_parameter (f, parms, Qauto_lower, Qnil,
3320 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3321 x_default_parameter (f, parms, Qcursor_type, Qbox,
3322 "cursorType", "CursorType", RES_TYPE_SYMBOL);
3323 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
3324 "scrollBarWidth", "ScrollBarWidth",
3325 RES_TYPE_NUMBER);
3326 x_default_parameter (f, parms, Qalpha, Qnil,
3327 "alpha", "Alpha", RES_TYPE_NUMBER);
3328
3329 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3330 Change will not be effected unless different from the current
3331 FRAME_LINES (f). */
3332 width = FRAME_COLS (f);
3333 height = FRAME_LINES (f);
3334
3335 SET_FRAME_COLS (f, 0);
3336 FRAME_LINES (f) = 0;
3337 change_frame_size (f, height, width, 1, 0, 0);
3338
3339 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3340 /* Create the menu bar. */
3341 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
3342 {
3343 /* If this signals an error, we haven't set size hints for the
3344 frame and we didn't make it visible. */
3345 initialize_frame_menubar (f);
3346
3347 #ifndef USE_GTK
3348 /* This is a no-op, except under Motif where it arranges the
3349 main window for the widgets on it. */
3350 lw_set_main_areas (f->output_data.x->column_widget,
3351 f->output_data.x->menubar_widget,
3352 f->output_data.x->edit_widget);
3353 #endif /* not USE_GTK */
3354 }
3355 #endif /* USE_X_TOOLKIT || USE_GTK */
3356
3357 /* Tell the server what size and position, etc, we want, and how
3358 badly we want them. This should be done after we have the menu
3359 bar so that its size can be taken into account. */
3360 block_input ();
3361 x_wm_set_size_hint (f, window_prompting, 0);
3362 unblock_input ();
3363
3364 /* Make the window appear on the frame and enable display, unless
3365 the caller says not to. However, with explicit parent, Emacs
3366 cannot control visibility, so don't try. */
3367 if (! f->output_data.x->explicit_parent)
3368 {
3369 Lisp_Object visibility;
3370
3371 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
3372 RES_TYPE_SYMBOL);
3373 if (EQ (visibility, Qunbound))
3374 visibility = Qt;
3375
3376 if (EQ (visibility, Qicon))
3377 x_iconify_frame (f);
3378 else if (! NILP (visibility))
3379 x_make_frame_visible (f);
3380 else
3381 {
3382 /* Must have been Qnil. */
3383 }
3384 }
3385
3386 block_input ();
3387
3388 /* Set machine name and pid for the purpose of window managers. */
3389 set_machine_and_pid_properties (f);
3390
3391 /* Set the WM leader property. GTK does this itself, so this is not
3392 needed when using GTK. */
3393 if (dpyinfo->client_leader_window != 0)
3394 {
3395 XChangeProperty (FRAME_X_DISPLAY (f),
3396 FRAME_OUTER_WINDOW (f),
3397 dpyinfo->Xatom_wm_client_leader,
3398 XA_WINDOW, 32, PropModeReplace,
3399 (unsigned char *) &dpyinfo->client_leader_window, 1);
3400 }
3401
3402 unblock_input ();
3403
3404 /* Initialize `default-minibuffer-frame' in case this is the first
3405 frame on this terminal. */
3406 if (FRAME_HAS_MINIBUF_P (f)
3407 && (!FRAMEP (KVAR (kb, Vdefault_minibuffer_frame))
3408 || !FRAME_LIVE_P (XFRAME (KVAR (kb, Vdefault_minibuffer_frame)))))
3409 kset_default_minibuffer_frame (kb, frame);
3410
3411 /* All remaining specified parameters, which have not been "used"
3412 by x_get_arg and friends, now go in the misc. alist of the frame. */
3413 for (tem = parms; CONSP (tem); tem = XCDR (tem))
3414 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
3415 fset_param_alist (f, Fcons (XCAR (tem), f->param_alist));
3416
3417 UNGCPRO;
3418
3419 /* Make sure windows on this frame appear in calls to next-window
3420 and similar functions. */
3421 Vwindow_list = Qnil;
3422
3423 return unbind_to (count, frame);
3424 }
3425
3426
3427 /* FRAME is used only to get a handle on the X display. We don't pass the
3428 display info directly because we're called from frame.c, which doesn't
3429 know about that structure. */
3430
3431 Lisp_Object
3432 x_get_focus_frame (struct frame *frame)
3433 {
3434 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
3435 Lisp_Object xfocus;
3436 if (! dpyinfo->x_focus_frame)
3437 return Qnil;
3438
3439 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
3440 return xfocus;
3441 }
3442
3443
3444 /* In certain situations, when the window manager follows a
3445 click-to-focus policy, there seems to be no way around calling
3446 XSetInputFocus to give another frame the input focus .
3447
3448 In an ideal world, XSetInputFocus should generally be avoided so
3449 that applications don't interfere with the window manager's focus
3450 policy. But I think it's okay to use when it's clearly done
3451 following a user-command. */
3452
3453 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
3454 doc: /* Set the input focus to FRAME.
3455 FRAME nil means use the selected frame. */)
3456 (Lisp_Object frame)
3457 {
3458 struct frame *f = decode_window_system_frame (frame);
3459 Display *dpy = FRAME_X_DISPLAY (f);
3460
3461 block_input ();
3462 x_catch_errors (dpy);
3463
3464 if (FRAME_X_EMBEDDED_P (f))
3465 {
3466 /* For Xembedded frames, normally the embedder forwards key
3467 events. See XEmbed Protocol Specification at
3468 http://freedesktop.org/wiki/Specifications/xembed-spec */
3469 xembed_request_focus (f);
3470 }
3471 else
3472 {
3473 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3474 RevertToParent, CurrentTime);
3475 x_ewmh_activate_frame (f);
3476 }
3477
3478 x_uncatch_errors ();
3479 unblock_input ();
3480
3481 return Qnil;
3482 }
3483
3484 \f
3485 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
3486 doc: /* Internal function called by `color-defined-p', which see
3487 .\(Note that the Nextstep version of this function ignores FRAME.) */)
3488 (Lisp_Object color, Lisp_Object frame)
3489 {
3490 XColor foo;
3491 FRAME_PTR f = decode_window_system_frame (frame);
3492
3493 CHECK_STRING (color);
3494
3495 if (x_defined_color (f, SSDATA (color), &foo, 0))
3496 return Qt;
3497 else
3498 return Qnil;
3499 }
3500
3501 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
3502 doc: /* Internal function called by `color-values', which see. */)
3503 (Lisp_Object color, Lisp_Object frame)
3504 {
3505 XColor foo;
3506 FRAME_PTR f = decode_window_system_frame (frame);
3507
3508 CHECK_STRING (color);
3509
3510 if (x_defined_color (f, SSDATA (color), &foo, 0))
3511 return list3i (foo.red, foo.green, foo.blue);
3512 else
3513 return Qnil;
3514 }
3515
3516 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
3517 doc: /* Internal function called by `display-color-p', which see. */)
3518 (Lisp_Object terminal)
3519 {
3520 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3521
3522 if (dpyinfo->n_planes <= 2)
3523 return Qnil;
3524
3525 switch (dpyinfo->visual->class)
3526 {
3527 case StaticColor:
3528 case PseudoColor:
3529 case TrueColor:
3530 case DirectColor:
3531 return Qt;
3532
3533 default:
3534 return Qnil;
3535 }
3536 }
3537
3538 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
3539 0, 1, 0,
3540 doc: /* Return t if the X display supports shades of gray.
3541 Note that color displays do support shades of gray.
3542 The optional argument TERMINAL specifies which display to ask about.
3543 TERMINAL should be a terminal object, a frame or a display name (a string).
3544 If omitted or nil, that stands for the selected frame's display. */)
3545 (Lisp_Object terminal)
3546 {
3547 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3548
3549 if (dpyinfo->n_planes <= 1)
3550 return Qnil;
3551
3552 switch (dpyinfo->visual->class)
3553 {
3554 case StaticColor:
3555 case PseudoColor:
3556 case TrueColor:
3557 case DirectColor:
3558 case StaticGray:
3559 case GrayScale:
3560 return Qt;
3561
3562 default:
3563 return Qnil;
3564 }
3565 }
3566
3567 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
3568 0, 1, 0,
3569 doc: /* Return the width in pixels of the X display TERMINAL.
3570 The optional argument TERMINAL specifies which display to ask about.
3571 TERMINAL should be a terminal object, a frame or a display name (a string).
3572 If omitted or nil, that stands for the selected frame's display.
3573
3574 On \"multi-monitor\" setups this refers to the pixel width for all
3575 physical monitors associated with TERMINAL. To get information for
3576 each physical monitor, use `display-monitor-attributes-list'. */)
3577 (Lisp_Object terminal)
3578 {
3579 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3580
3581 return make_number (x_display_pixel_width (dpyinfo));
3582 }
3583
3584 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
3585 Sx_display_pixel_height, 0, 1, 0,
3586 doc: /* Return the height in pixels of the X display TERMINAL.
3587 The optional argument TERMINAL specifies which display to ask about.
3588 TERMINAL should be a terminal object, a frame or a display name (a string).
3589 If omitted or nil, that stands for the selected frame's display.
3590
3591 On \"multi-monitor\" setups this refers to the pixel height for all
3592 physical monitors associated with TERMINAL. To get information for
3593 each physical monitor, use `display-monitor-attributes-list'. */)
3594 (Lisp_Object terminal)
3595 {
3596 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3597
3598 return make_number (x_display_pixel_height (dpyinfo));
3599 }
3600
3601 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
3602 0, 1, 0,
3603 doc: /* Return the number of bitplanes of the X display TERMINAL.
3604 The optional argument TERMINAL specifies which display to ask about.
3605 TERMINAL should be a terminal object, a frame or a display name (a string).
3606 If omitted or nil, that stands for the selected frame's display. */)
3607 (Lisp_Object terminal)
3608 {
3609 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3610
3611 return make_number (dpyinfo->n_planes);
3612 }
3613
3614 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
3615 0, 1, 0,
3616 doc: /* Return the number of color cells of the X display TERMINAL.
3617 The optional argument TERMINAL specifies which display to ask about.
3618 TERMINAL should be a terminal object, a frame or a display name (a string).
3619 If omitted or nil, that stands for the selected frame's display. */)
3620 (Lisp_Object terminal)
3621 {
3622 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3623
3624 int nr_planes = DisplayPlanes (dpyinfo->display,
3625 XScreenNumberOfScreen (dpyinfo->screen));
3626
3627 /* Truncate nr_planes to 24 to avoid integer overflow.
3628 Some displays says 32, but only 24 bits are actually significant.
3629 There are only very few and rare video cards that have more than
3630 24 significant bits. Also 24 bits is more than 16 million colors,
3631 it "should be enough for everyone". */
3632 if (nr_planes > 24) nr_planes = 24;
3633
3634 return make_number (1 << nr_planes);
3635 }
3636
3637 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
3638 Sx_server_max_request_size,
3639 0, 1, 0,
3640 doc: /* Return the maximum request size of the X server of display TERMINAL.
3641 The optional argument TERMINAL specifies which display to ask about.
3642 TERMINAL should be a terminal object, a frame or a display name (a string).
3643 If omitted or nil, that stands for the selected frame's display. */)
3644 (Lisp_Object terminal)
3645 {
3646 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3647
3648 return make_number (MAXREQUEST (dpyinfo->display));
3649 }
3650
3651 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
3652 doc: /* Return the "vendor ID" string of the X server of display TERMINAL.
3653 \(Labeling every distributor as a "vendor" embodies the false assumption
3654 that operating systems cannot be developed and distributed noncommercially.)
3655 The optional argument TERMINAL specifies which display to ask about.
3656 TERMINAL should be a terminal object, a frame or a display name (a string).
3657 If omitted or nil, that stands for the selected frame's display. */)
3658 (Lisp_Object terminal)
3659 {
3660 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3661 const char *vendor = ServerVendor (dpyinfo->display);
3662
3663 if (! vendor) vendor = "";
3664 return build_string (vendor);
3665 }
3666
3667 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
3668 doc: /* Return the version numbers of the X server of display TERMINAL.
3669 The value is a list of three integers: the major and minor
3670 version numbers of the X Protocol in use, and the distributor-specific release
3671 number. See also the function `x-server-vendor'.
3672
3673 The optional argument TERMINAL specifies which display to ask about.
3674 TERMINAL should be a terminal object, a frame or a display name (a string).
3675 If omitted or nil, that stands for the selected frame's display. */)
3676 (Lisp_Object terminal)
3677 {
3678 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3679 Display *dpy = dpyinfo->display;
3680
3681 return list3i (ProtocolVersion (dpy), ProtocolRevision (dpy),
3682 VendorRelease (dpy));
3683 }
3684
3685 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
3686 doc: /* Return the number of screens on the X server of display TERMINAL.
3687 The optional argument TERMINAL specifies which display to ask about.
3688 TERMINAL should be a terminal object, a frame or a display name (a string).
3689 If omitted or nil, that stands for the selected frame's display. */)
3690 (Lisp_Object terminal)
3691 {
3692 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3693
3694 return make_number (ScreenCount (dpyinfo->display));
3695 }
3696
3697 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
3698 doc: /* Return the height in millimeters of the X display TERMINAL.
3699 The optional argument TERMINAL specifies which display to ask about.
3700 TERMINAL should be a terminal object, a frame or a display name (a string).
3701 If omitted or nil, that stands for the selected frame's display.
3702
3703 On \"multi-monitor\" setups this refers to the height in millimeters for
3704 all physical monitors associated with TERMINAL. To get information
3705 for each physical monitor, use `display-monitor-attributes-list'. */)
3706 (Lisp_Object terminal)
3707 {
3708 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3709
3710 return make_number (HeightMMOfScreen (dpyinfo->screen));
3711 }
3712
3713 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
3714 doc: /* Return the width in millimeters of the X display TERMINAL.
3715 The optional argument TERMINAL specifies which display to ask about.
3716 TERMINAL should be a terminal object, a frame or a display name (a string).
3717 If omitted or nil, that stands for the selected frame's display.
3718
3719 On \"multi-monitor\" setups this refers to the width in millimeters for
3720 all physical monitors associated with TERMINAL. To get information
3721 for each physical monitor, use `display-monitor-attributes-list'. */)
3722 (Lisp_Object terminal)
3723 {
3724 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3725
3726 return make_number (WidthMMOfScreen (dpyinfo->screen));
3727 }
3728
3729 DEFUN ("x-display-backing-store", Fx_display_backing_store,
3730 Sx_display_backing_store, 0, 1, 0,
3731 doc: /* Return an indication of whether X display TERMINAL does backing store.
3732 The value may be `always', `when-mapped', or `not-useful'.
3733 The optional argument TERMINAL specifies which display to ask about.
3734 TERMINAL should be a terminal object, a frame or a display name (a string).
3735 If omitted or nil, that stands for the selected frame's display. */)
3736 (Lisp_Object terminal)
3737 {
3738 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3739 Lisp_Object result;
3740
3741 switch (DoesBackingStore (dpyinfo->screen))
3742 {
3743 case Always:
3744 result = intern ("always");
3745 break;
3746
3747 case WhenMapped:
3748 result = intern ("when-mapped");
3749 break;
3750
3751 case NotUseful:
3752 result = intern ("not-useful");
3753 break;
3754
3755 default:
3756 error ("Strange value for BackingStore parameter of screen");
3757 }
3758
3759 return result;
3760 }
3761
3762 DEFUN ("x-display-visual-class", Fx_display_visual_class,
3763 Sx_display_visual_class, 0, 1, 0,
3764 doc: /* Return the visual class of the X display TERMINAL.
3765 The value is one of the symbols `static-gray', `gray-scale',
3766 `static-color', `pseudo-color', `true-color', or `direct-color'.
3767
3768 The optional argument TERMINAL specifies which display to ask about.
3769 TERMINAL should a terminal object, a frame or a display name (a string).
3770 If omitted or nil, that stands for the selected frame's display. */)
3771 (Lisp_Object terminal)
3772 {
3773 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3774 Lisp_Object result;
3775
3776 switch (dpyinfo->visual->class)
3777 {
3778 case StaticGray:
3779 result = intern ("static-gray");
3780 break;
3781 case GrayScale:
3782 result = intern ("gray-scale");
3783 break;
3784 case StaticColor:
3785 result = intern ("static-color");
3786 break;
3787 case PseudoColor:
3788 result = intern ("pseudo-color");
3789 break;
3790 case TrueColor:
3791 result = intern ("true-color");
3792 break;
3793 case DirectColor:
3794 result = intern ("direct-color");
3795 break;
3796 default:
3797 error ("Display has an unknown visual class");
3798 }
3799
3800 return result;
3801 }
3802
3803 DEFUN ("x-display-save-under", Fx_display_save_under,
3804 Sx_display_save_under, 0, 1, 0,
3805 doc: /* Return t if the X display TERMINAL supports the save-under feature.
3806 The optional argument TERMINAL specifies which display to ask about.
3807 TERMINAL should be a terminal object, a frame or a display name (a string).
3808 If omitted or nil, that stands for the selected frame's display. */)
3809 (Lisp_Object terminal)
3810 {
3811 struct x_display_info *dpyinfo = check_x_display_info (terminal);
3812
3813 if (DoesSaveUnders (dpyinfo->screen) == True)
3814 return Qt;
3815 else
3816 return Qnil;
3817 }
3818
3819 /* Store the geometry of the workarea on display DPYINFO into *RECT.
3820 Return false if and only if the workarea information cannot be
3821 obtained via the _NET_WORKAREA root window property. */
3822
3823 #if ! GTK_CHECK_VERSION (3, 4, 0)
3824 static bool
3825 x_get_net_workarea (struct x_display_info *dpyinfo, XRectangle *rect)
3826 {
3827 Display *dpy = dpyinfo->display;
3828 long offset, max_len;
3829 Atom target_type, actual_type;
3830 unsigned long actual_size, bytes_remaining;
3831 int rc, actual_format;
3832 unsigned char *tmp_data = NULL;
3833 bool result = false;
3834
3835 x_catch_errors (dpy);
3836 offset = 0;
3837 max_len = 1;
3838 target_type = XA_CARDINAL;
3839 rc = XGetWindowProperty (dpy, dpyinfo->root_window,
3840 dpyinfo->Xatom_net_current_desktop,
3841 offset, max_len, False, target_type,
3842 &actual_type, &actual_format, &actual_size,
3843 &bytes_remaining, &tmp_data);
3844 if (rc == Success && actual_type == target_type && !x_had_errors_p (dpy)
3845 && actual_format == 32 && actual_size == max_len)
3846 {
3847 long current_desktop = ((long *) tmp_data)[0];
3848
3849 XFree (tmp_data);
3850 tmp_data = NULL;
3851
3852 offset = 4 * current_desktop;
3853 max_len = 4;
3854 rc = XGetWindowProperty (dpy, dpyinfo->root_window,
3855 dpyinfo->Xatom_net_workarea,
3856 offset, max_len, False, target_type,
3857 &actual_type, &actual_format, &actual_size,
3858 &bytes_remaining, &tmp_data);
3859 if (rc == Success && actual_type == target_type && !x_had_errors_p (dpy)
3860 && actual_format == 32 && actual_size == max_len)
3861 {
3862 long *values = (long *) tmp_data;
3863
3864 rect->x = values[0];
3865 rect->y = values[1];
3866 rect->width = values[2];
3867 rect->height = values[3];
3868
3869 XFree (tmp_data);
3870 tmp_data = NULL;
3871
3872 result = true;
3873 }
3874 }
3875 if (tmp_data)
3876 XFree (tmp_data);
3877 x_uncatch_errors ();
3878
3879 return result;
3880 }
3881 #endif
3882
3883 #ifndef USE_GTK
3884
3885 struct MonitorInfo {
3886 XRectangle geom, work;
3887 int mm_width, mm_height;
3888 char *name;
3889 };
3890
3891 #if defined HAVE_XINERAMA || defined HAVE_XRANDR
3892 static void
3893 free_monitors (struct MonitorInfo *monitors, int n_monitors)
3894 {
3895 int i;
3896 for (i = 0; i < n_monitors; ++i)
3897 xfree (monitors[i].name);
3898 xfree (monitors);
3899 }
3900 #endif /* HAVE_XINERAMA || HAVE_XRANDR */
3901
3902
3903 /* Return monitor number where F is "most" or closest to. */
3904 static int
3905 x_get_monitor_for_frame (struct frame *f,
3906 struct MonitorInfo *monitors,
3907 int n_monitors)
3908 {
3909 XRectangle frect;
3910 int area = 0, dist = -1;
3911 int best_area = -1, best_dist = -1;
3912 int i;
3913
3914 if (n_monitors == 1) return 0;
3915 frect.x = f->left_pos;
3916 frect.y = f->top_pos;
3917 frect.width = FRAME_PIXEL_WIDTH (f);
3918 frect.height = FRAME_PIXEL_HEIGHT (f);
3919
3920 for (i = 0; i < n_monitors; ++i)
3921 {
3922 struct MonitorInfo *mi = &monitors[i];
3923 XRectangle res;
3924 int a = 0;
3925
3926 if (mi->geom.width == 0) continue;
3927
3928 if (x_intersect_rectangles (&mi->geom, &frect, &res))
3929 {
3930 a = res.width * res.height;
3931 if (a > area)
3932 {
3933 area = a;
3934 best_area = i;
3935 }
3936 }
3937
3938 if (a == 0 && area == 0)
3939 {
3940 int dx, dy, d;
3941 if (frect.x + frect.width < mi->geom.x)
3942 dx = mi->geom.x - frect.x + frect.width;
3943 else if (frect.x > mi->geom.x + mi->geom.width)
3944 dx = frect.x - mi->geom.x + mi->geom.width;
3945 else
3946 dx = 0;
3947 if (frect.y + frect.height < mi->geom.y)
3948 dy = mi->geom.y - frect.y + frect.height;
3949 else if (frect.y > mi->geom.y + mi->geom.height)
3950 dy = frect.y - mi->geom.y + mi->geom.height;
3951 else
3952 dy = 0;
3953
3954 d = dx*dx + dy*dy;
3955 if (dist == -1 || dist > d)
3956 {
3957 dist = d;
3958 best_dist = i;
3959 }
3960 }
3961 }
3962
3963 return best_area != -1 ? best_area : (best_dist != -1 ? best_dist : 0);
3964 }
3965
3966 static Lisp_Object
3967 x_make_monitor_attribute_list (struct MonitorInfo *monitors,
3968 int n_monitors,
3969 int primary_monitor,
3970 struct x_display_info *dpyinfo,
3971 const char *source)
3972 {
3973 Lisp_Object monitor_frames = Fmake_vector (make_number (n_monitors), Qnil);
3974 Lisp_Object frame, rest, attributes_list = Qnil;
3975 Lisp_Object primary_monitor_attributes = Qnil;
3976 int i;
3977
3978 FOR_EACH_FRAME (rest, frame)
3979 {
3980 struct frame *f = XFRAME (frame);
3981
3982 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo
3983 && !EQ (frame, tip_frame))
3984 {
3985 i = x_get_monitor_for_frame (f, monitors, n_monitors);
3986 ASET (monitor_frames, i, Fcons (frame, AREF (monitor_frames, i)));
3987 }
3988 }
3989
3990 for (i = 0; i < n_monitors; ++i)
3991 {
3992 Lisp_Object geometry, workarea, attributes = Qnil;
3993 struct MonitorInfo *mi = &monitors[i];
3994
3995 if (mi->geom.width == 0) continue;
3996
3997 workarea = list4i (mi->work.x, mi->work.y,
3998 mi->work.width, mi->work.height);
3999 geometry = list4i (mi->geom.x, mi->geom.y,
4000 mi->geom.width, mi->geom.height);
4001 attributes = Fcons (Fcons (Qsource,
4002 make_string (source, strlen (source))),
4003 attributes);
4004 attributes = Fcons (Fcons (Qframes, AREF (monitor_frames, i)),
4005 attributes);
4006 attributes = Fcons (Fcons (Qmm_size,
4007 list2i (mi->mm_width, mi->mm_height)),
4008 attributes);
4009 attributes = Fcons (Fcons (Qworkarea, workarea), attributes);
4010 attributes = Fcons (Fcons (Qgeometry, geometry), attributes);
4011 if (mi->name)
4012 attributes = Fcons (Fcons (Qname, make_string (mi->name,
4013 strlen (mi->name))),
4014 attributes);
4015
4016 if (i == primary_monitor)
4017 primary_monitor_attributes = attributes;
4018 else
4019 attributes_list = Fcons (attributes, attributes_list);
4020 }
4021
4022 if (!NILP (primary_monitor_attributes))
4023 attributes_list = Fcons (primary_monitor_attributes, attributes_list);
4024 return attributes_list;
4025 }
4026
4027 static Lisp_Object
4028 x_get_monitor_attributes_fallback (struct x_display_info *dpyinfo)
4029 {
4030 struct MonitorInfo monitor;
4031 XRectangle workarea_r;
4032
4033 /* Fallback: treat (possibly) multiple physical monitors as if they
4034 formed a single monitor as a whole. This should provide a
4035 consistent result at least on single monitor environments. */
4036 monitor.geom.x = monitor.geom.y = 0;
4037 monitor.geom.width = x_display_pixel_width (dpyinfo);
4038 monitor.geom.height = x_display_pixel_height (dpyinfo);
4039 monitor.mm_width = WidthMMOfScreen (dpyinfo->screen);
4040 monitor.mm_height = HeightMMOfScreen (dpyinfo->screen);
4041 monitor.name = xstrdup ("combined screen");
4042
4043 if (x_get_net_workarea (dpyinfo, &workarea_r))
4044 monitor.work = workarea_r;
4045 else
4046 monitor.work = monitor.geom;
4047 return x_make_monitor_attribute_list (&monitor, 1, 0, dpyinfo, "fallback");
4048 }
4049
4050
4051 #ifdef HAVE_XINERAMA
4052 static Lisp_Object
4053 x_get_monitor_attributes_xinerama (struct x_display_info *dpyinfo)
4054 {
4055 int n_monitors, i;
4056 Lisp_Object attributes_list = Qnil;
4057 Display *dpy = dpyinfo->display;
4058 XineramaScreenInfo *info = XineramaQueryScreens (dpy, &n_monitors);
4059 struct MonitorInfo *monitors;
4060 double mm_width_per_pixel, mm_height_per_pixel;
4061
4062 if (! info || n_monitors == 0)
4063 {
4064 if (info)
4065 XFree (info);
4066 return attributes_list;
4067 }
4068
4069 mm_width_per_pixel = ((double) WidthMMOfScreen (dpyinfo->screen)
4070 / x_display_pixel_width (dpyinfo));
4071 mm_height_per_pixel = ((double) HeightMMOfScreen (dpyinfo->screen)
4072 / x_display_pixel_height (dpyinfo));
4073 monitors = (struct MonitorInfo *) xzalloc (n_monitors * sizeof (*monitors));
4074 for (i = 0; i < n_monitors; ++i)
4075 {
4076 struct MonitorInfo *mi = &monitors[i];
4077 XRectangle workarea_r;
4078
4079 mi->geom.x = info[i].x_org;
4080 mi->geom.y = info[i].y_org;
4081 mi->geom.width = info[i].width;
4082 mi->geom.height = info[i].height;
4083 mi->mm_width = mi->geom.width * mm_width_per_pixel + 0.5;
4084 mi->mm_height = mi->geom.height * mm_height_per_pixel + 0.5;
4085 mi->name = 0;
4086
4087 /* Xinerama usually have primary monitor first, just use that. */
4088 if (i == 0 && x_get_net_workarea (dpyinfo, &workarea_r))
4089 {
4090 mi->work = workarea_r;
4091 if (! x_intersect_rectangles (&mi->geom, &mi->work, &mi->work))
4092 mi->work = mi->geom;
4093 }
4094 else
4095 mi->work = mi->geom;
4096 }
4097 XFree (info);
4098
4099 attributes_list = x_make_monitor_attribute_list (monitors,
4100 n_monitors,
4101 0,
4102 dpyinfo,
4103 "Xinerama");
4104 free_monitors (monitors, n_monitors);
4105 return attributes_list;
4106 }
4107 #endif /* HAVE_XINERAMA */
4108
4109
4110 #ifdef HAVE_XRANDR
4111 static Lisp_Object
4112 x_get_monitor_attributes_xrandr (struct x_display_info *dpyinfo)
4113 {
4114 Lisp_Object attributes_list = Qnil;
4115 XRRScreenResources *resources;
4116 Display *dpy = dpyinfo->display;
4117 int i, n_monitors, primary = -1;
4118 RROutput pxid = None;
4119 struct MonitorInfo *monitors;
4120
4121 #ifdef HAVE_XRRGETSCREENRESOURCESCURRENT
4122 resources = XRRGetScreenResourcesCurrent (dpy, dpyinfo->root_window);
4123 #else
4124 resources = XRRGetScreenResources (dpy, dpyinfo->root_window);
4125 #endif
4126 if (! resources || resources->noutput == 0)
4127 {
4128 if (resources)
4129 XRRFreeScreenResources (resources);
4130 return Qnil;
4131 }
4132 n_monitors = resources->noutput;
4133 monitors = (struct MonitorInfo *) xzalloc (n_monitors * sizeof (*monitors));
4134
4135 #ifdef HAVE_XRRGETOUTPUTPRIMARY
4136 pxid = XRRGetOutputPrimary (dpy, dpyinfo->root_window);
4137 #endif
4138
4139 for (i = 0; i < n_monitors; ++i)
4140 {
4141 XRROutputInfo *info = XRRGetOutputInfo (dpy, resources,
4142 resources->outputs[i]);
4143 Connection conn = info ? info->connection : RR_Disconnected;
4144 RRCrtc id = info ? info->crtc : None;
4145
4146 if (strcmp (info->name, "default") == 0)
4147 {
4148 /* Non XRandr 1.2 driver, does not give useful data. */
4149 XRRFreeOutputInfo (info);
4150 XRRFreeScreenResources (resources);
4151 free_monitors (monitors, n_monitors);
4152 return Qnil;
4153 }
4154
4155 if (conn != RR_Disconnected && id != None)
4156 {
4157 XRRCrtcInfo *crtc = XRRGetCrtcInfo (dpy, resources, id);
4158 struct MonitorInfo *mi = &monitors[i];
4159 XRectangle workarea_r;
4160
4161 if (! crtc)
4162 {
4163 XRRFreeOutputInfo (info);
4164 continue;
4165 }
4166
4167 mi->geom.x = crtc->x;
4168 mi->geom.y = crtc->y;
4169 mi->geom.width = crtc->width;
4170 mi->geom.height = crtc->height;
4171 mi->mm_width = info->mm_width;
4172 mi->mm_height = info->mm_height;
4173 mi->name = xstrdup (info->name);
4174
4175 if (pxid != None && pxid == resources->outputs[i])
4176 primary = i;
4177 else if (primary == -1 && strcmp (info->name, "LVDS") == 0)
4178 primary = i;
4179
4180 if (i == primary && x_get_net_workarea (dpyinfo, &workarea_r))
4181 {
4182 mi->work= workarea_r;
4183 if (! x_intersect_rectangles (&mi->geom, &mi->work, &mi->work))
4184 mi->work = mi->geom;
4185 }
4186 else
4187 mi->work = mi->geom;
4188
4189 XRRFreeCrtcInfo (crtc);
4190 }
4191 XRRFreeOutputInfo (info);
4192 }
4193 XRRFreeScreenResources (resources);
4194
4195 attributes_list = x_make_monitor_attribute_list (monitors,
4196 n_monitors,
4197 primary,
4198 dpyinfo,
4199 "XRandr");
4200 free_monitors (monitors, n_monitors);
4201 return attributes_list;
4202 }
4203 #endif /* HAVE_XRANDR */
4204
4205 static Lisp_Object
4206 x_get_monitor_attributes (struct x_display_info *dpyinfo)
4207 {
4208 Lisp_Object attributes_list = Qnil;
4209 Display *dpy = dpyinfo->display;
4210
4211 #ifdef HAVE_XRANDR
4212 int xrr_event_base, xrr_error_base;
4213 bool xrr_ok = false;
4214 xrr_ok = XRRQueryExtension (dpy, &xrr_event_base, &xrr_error_base);
4215 if (xrr_ok)
4216 {
4217 int xrr_major, xrr_minor;
4218 XRRQueryVersion (dpy, &xrr_major, &xrr_minor);
4219 xrr_ok = (xrr_major == 1 && xrr_minor >= 2) || xrr_major > 1;
4220 }
4221
4222 if (xrr_ok)
4223 attributes_list = x_get_monitor_attributes_xrandr (dpyinfo);
4224 #endif /* HAVE_XRANDR */
4225
4226 #ifdef HAVE_XINERAMA
4227 if (NILP (attributes_list))
4228 {
4229 int xin_event_base, xin_error_base;
4230 bool xin_ok = false;
4231 xin_ok = XineramaQueryExtension (dpy, &xin_event_base, &xin_error_base);
4232 if (xin_ok && XineramaIsActive (dpy))
4233 attributes_list = x_get_monitor_attributes_xinerama (dpyinfo);
4234 }
4235 #endif /* HAVE_XINERAMA */
4236
4237 if (NILP (attributes_list))
4238 attributes_list = x_get_monitor_attributes_fallback (dpyinfo);
4239
4240 return attributes_list;
4241 }
4242
4243 #endif /* !USE_GTK */
4244
4245 DEFUN ("x-display-monitor-attributes-list", Fx_display_monitor_attributes_list,
4246 Sx_display_monitor_attributes_list,
4247 0, 1, 0,
4248 doc: /* Return a list of physical monitor attributes on the X display TERMINAL.
4249
4250 The optional argument TERMINAL specifies which display to ask about.
4251 TERMINAL should be a terminal object, a frame or a display name (a string).
4252 If omitted or nil, that stands for the selected frame's display.
4253
4254 In addition to the standard attribute keys listed in
4255 `display-monitor-attributes-list', the following keys are contained in
4256 the attributes:
4257
4258 source -- String describing the source from which multi-monitor
4259 information is obtained, one of \"Gdk\", \"XRandr\",
4260 \"Xinerama\", or \"fallback\"
4261
4262 Internal use only, use `display-monitor-attributes-list' instead. */)
4263 (Lisp_Object terminal)
4264 {
4265 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4266 Lisp_Object attributes_list = Qnil;
4267
4268 #ifdef USE_GTK
4269 double mm_width_per_pixel, mm_height_per_pixel;
4270 GdkDisplay *gdpy;
4271 GdkScreen *gscreen;
4272 gint primary_monitor = 0, n_monitors, i;
4273 Lisp_Object primary_monitor_attributes = Qnil;
4274 Lisp_Object monitor_frames, rest, frame;
4275 static const char *source = "Gdk";
4276
4277 block_input ();
4278 mm_width_per_pixel = ((double) WidthMMOfScreen (dpyinfo->screen)
4279 / x_display_pixel_width (dpyinfo));
4280 mm_height_per_pixel = ((double) HeightMMOfScreen (dpyinfo->screen)
4281 / x_display_pixel_height (dpyinfo));
4282 gdpy = gdk_x11_lookup_xdisplay (dpyinfo->display);
4283 gscreen = gdk_display_get_default_screen (gdpy);
4284 #if GTK_CHECK_VERSION (2, 20, 0)
4285 primary_monitor = gdk_screen_get_primary_monitor (gscreen);
4286 #endif
4287 n_monitors = gdk_screen_get_n_monitors (gscreen);
4288 monitor_frames = Fmake_vector (make_number (n_monitors), Qnil);
4289 FOR_EACH_FRAME (rest, frame)
4290 {
4291 struct frame *f = XFRAME (frame);
4292
4293 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo
4294 && !EQ (frame, tip_frame))
4295 {
4296 GdkWindow *gwin = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
4297
4298 i = gdk_screen_get_monitor_at_window (gscreen, gwin);
4299 ASET (monitor_frames, i, Fcons (frame, AREF (monitor_frames, i)));
4300 }
4301 }
4302
4303 i = n_monitors;
4304 while (i-- > 0)
4305 {
4306 Lisp_Object geometry, workarea, attributes = Qnil;
4307 gint width_mm = -1, height_mm = -1;
4308 GdkRectangle rec;
4309
4310 attributes = Fcons (Fcons (Qsource,
4311 make_string (source, strlen (source))),
4312 attributes);
4313 attributes = Fcons (Fcons (Qframes, AREF (monitor_frames, i)),
4314 attributes);
4315
4316 gdk_screen_get_monitor_geometry (gscreen, i, &rec);
4317 geometry = list4i (rec.x, rec.y, rec.width, rec.height);
4318
4319 #if GTK_CHECK_VERSION (2, 14, 0)
4320 width_mm = gdk_screen_get_monitor_width_mm (gscreen, i);
4321 height_mm = gdk_screen_get_monitor_height_mm (gscreen, i);
4322 #endif
4323 if (width_mm < 0)
4324 width_mm = rec.width * mm_width_per_pixel + 0.5;
4325 if (height_mm < 0)
4326 height_mm = rec.height * mm_height_per_pixel + 0.5;
4327 attributes = Fcons (Fcons (Qmm_size,
4328 list2i (width_mm, height_mm)),
4329 attributes);
4330
4331 #if GTK_CHECK_VERSION (3, 4, 0)
4332 gdk_screen_get_monitor_workarea (gscreen, i, &rec);
4333 workarea = list4i (rec.x, rec.y, rec.width, rec.height);
4334 #else
4335 /* Emulate the behavior of GTK+ 3.4. */
4336 {
4337 XRectangle workarea_r;
4338
4339 workarea = Qnil;
4340 if (i == primary_monitor && x_get_net_workarea (dpyinfo, &workarea_r))
4341 {
4342 GdkRectangle work;
4343
4344 work.x = workarea_r.x;
4345 work.y = workarea_r.y;
4346 work.width = workarea_r.width;
4347 work.height = workarea_r.height;
4348 if (gdk_rectangle_intersect (&rec, &work, &work))
4349 workarea = list4i (work.x, work.y, work.width, work.height);
4350 }
4351 if (NILP (workarea))
4352 workarea = geometry;
4353 }
4354 #endif
4355 attributes = Fcons (Fcons (Qworkarea, workarea), attributes);
4356
4357 attributes = Fcons (Fcons (Qgeometry, geometry), attributes);
4358 #if GTK_CHECK_VERSION (2, 14, 0)
4359 {
4360 char *name = gdk_screen_get_monitor_plug_name (gscreen, i);
4361 if (name)
4362 attributes = Fcons (Fcons (Qname, make_string (name, strlen (name))),
4363 attributes);
4364 }
4365 #endif
4366
4367 if (i == primary_monitor)
4368 primary_monitor_attributes = attributes;
4369 else
4370 attributes_list = Fcons (attributes, attributes_list);
4371 }
4372
4373 if (!NILP (primary_monitor_attributes))
4374 attributes_list = Fcons (primary_monitor_attributes, attributes_list);
4375 unblock_input ();
4376 #else /* not USE_GTK */
4377
4378 block_input ();
4379 attributes_list = x_get_monitor_attributes (dpyinfo);
4380 unblock_input ();
4381
4382 #endif /* not USE_GTK */
4383
4384 return attributes_list;
4385 }
4386
4387 \f
4388 int
4389 x_pixel_width (register struct frame *f)
4390 {
4391 return FRAME_PIXEL_WIDTH (f);
4392 }
4393
4394 int
4395 x_pixel_height (register struct frame *f)
4396 {
4397 return FRAME_PIXEL_HEIGHT (f);
4398 }
4399
4400 /************************************************************************
4401 X Displays
4402 ************************************************************************/
4403
4404 \f
4405 /* Mapping visual names to visuals. */
4406
4407 static struct visual_class
4408 {
4409 const char *name;
4410 int class;
4411 }
4412 visual_classes[] =
4413 {
4414 {"StaticGray", StaticGray},
4415 {"GrayScale", GrayScale},
4416 {"StaticColor", StaticColor},
4417 {"PseudoColor", PseudoColor},
4418 {"TrueColor", TrueColor},
4419 {"DirectColor", DirectColor},
4420 {NULL, 0}
4421 };
4422
4423
4424 #ifndef HAVE_XSCREENNUMBEROFSCREEN
4425
4426 /* Value is the screen number of screen SCR. This is a substitute for
4427 the X function with the same name when that doesn't exist. */
4428
4429 int
4430 XScreenNumberOfScreen (scr)
4431 register Screen *scr;
4432 {
4433 Display *dpy = scr->display;
4434 int i;
4435
4436 for (i = 0; i < dpy->nscreens; ++i)
4437 if (scr == dpy->screens + i)
4438 break;
4439
4440 return i;
4441 }
4442
4443 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
4444
4445
4446 /* Select the visual that should be used on display DPYINFO. Set
4447 members of DPYINFO appropriately. Called from x_term_init. */
4448
4449 void
4450 select_visual (struct x_display_info *dpyinfo)
4451 {
4452 Display *dpy = dpyinfo->display;
4453 Screen *screen = dpyinfo->screen;
4454 Lisp_Object value;
4455
4456 /* See if a visual is specified. */
4457 value = display_x_get_resource (dpyinfo,
4458 build_string ("visualClass"),
4459 build_string ("VisualClass"),
4460 Qnil, Qnil);
4461 if (STRINGP (value))
4462 {
4463 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4464 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4465 depth, a decimal number. NAME is compared with case ignored. */
4466 char *s = alloca (SBYTES (value) + 1);
4467 char *dash;
4468 int i, class = -1;
4469 XVisualInfo vinfo;
4470
4471 strcpy (s, SSDATA (value));
4472 dash = strchr (s, '-');
4473 if (dash)
4474 {
4475 dpyinfo->n_planes = atoi (dash + 1);
4476 *dash = '\0';
4477 }
4478 else
4479 /* We won't find a matching visual with depth 0, so that
4480 an error will be printed below. */
4481 dpyinfo->n_planes = 0;
4482
4483 /* Determine the visual class. */
4484 for (i = 0; visual_classes[i].name; ++i)
4485 if (xstrcasecmp (s, visual_classes[i].name) == 0)
4486 {
4487 class = visual_classes[i].class;
4488 break;
4489 }
4490
4491 /* Look up a matching visual for the specified class. */
4492 if (class == -1
4493 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
4494 dpyinfo->n_planes, class, &vinfo))
4495 fatal ("Invalid visual specification `%s'", SDATA (value));
4496
4497 dpyinfo->visual = vinfo.visual;
4498 }
4499 else
4500 {
4501 int n_visuals;
4502 XVisualInfo *vinfo, vinfo_template;
4503
4504 dpyinfo->visual = DefaultVisualOfScreen (screen);
4505
4506 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
4507 vinfo_template.screen = XScreenNumberOfScreen (screen);
4508 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
4509 &vinfo_template, &n_visuals);
4510 if (n_visuals <= 0)
4511 fatal ("Can't get proper X visual info");
4512
4513 dpyinfo->n_planes = vinfo->depth;
4514 XFree (vinfo);
4515 }
4516 }
4517
4518
4519 /* Return the X display structure for the display named NAME.
4520 Open a new connection if necessary. */
4521
4522 static struct x_display_info *
4523 x_display_info_for_name (Lisp_Object name)
4524 {
4525 Lisp_Object names;
4526 struct x_display_info *dpyinfo;
4527
4528 CHECK_STRING (name);
4529
4530 #if 0
4531 if (! EQ (Vinitial_window_system, intern ("x")))
4532 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4533 #endif
4534
4535 for (dpyinfo = x_display_list, names = x_display_name_list;
4536 dpyinfo;
4537 dpyinfo = dpyinfo->next, names = XCDR (names))
4538 {
4539 Lisp_Object tem;
4540 tem = Fstring_equal (XCAR (XCAR (names)), name);
4541 if (!NILP (tem))
4542 return dpyinfo;
4543 }
4544
4545 /* Use this general default value to start with. */
4546 Vx_resource_name = Vinvocation_name;
4547
4548 validate_x_resource_name ();
4549
4550 dpyinfo = x_term_init (name, (char *)0,
4551 SSDATA (Vx_resource_name));
4552
4553 if (dpyinfo == 0)
4554 error ("Cannot connect to X server %s", SDATA (name));
4555
4556 XSETFASTINT (Vwindow_system_version, 11);
4557
4558 return dpyinfo;
4559 }
4560
4561
4562 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
4563 1, 3, 0,
4564 doc: /* Open a connection to a display server.
4565 DISPLAY is the name of the display to connect to.
4566 Optional second arg XRM-STRING is a string of resources in xrdb format.
4567 If the optional third arg MUST-SUCCEED is non-nil,
4568 terminate Emacs if we can't open the connection.
4569 \(In the Nextstep version, the last two arguments are currently ignored.) */)
4570 (Lisp_Object display, Lisp_Object xrm_string, Lisp_Object must_succeed)
4571 {
4572 char *xrm_option;
4573 struct x_display_info *dpyinfo;
4574
4575 CHECK_STRING (display);
4576 if (! NILP (xrm_string))
4577 CHECK_STRING (xrm_string);
4578
4579 #if 0
4580 if (! EQ (Vinitial_window_system, intern ("x")))
4581 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4582 #endif
4583
4584 if (! NILP (xrm_string))
4585 xrm_option = SSDATA (xrm_string);
4586 else
4587 xrm_option = (char *) 0;
4588
4589 validate_x_resource_name ();
4590
4591 /* This is what opens the connection and sets x_current_display.
4592 This also initializes many symbols, such as those used for input. */
4593 dpyinfo = x_term_init (display, xrm_option,
4594 SSDATA (Vx_resource_name));
4595
4596 if (dpyinfo == 0)
4597 {
4598 if (!NILP (must_succeed))
4599 fatal ("Cannot connect to X server %s.\n\
4600 Check the DISPLAY environment variable or use `-d'.\n\
4601 Also use the `xauth' program to verify that you have the proper\n\
4602 authorization information needed to connect the X server.\n\
4603 An insecure way to solve the problem may be to use `xhost'.\n",
4604 SDATA (display));
4605 else
4606 error ("Cannot connect to X server %s", SDATA (display));
4607 }
4608
4609 XSETFASTINT (Vwindow_system_version, 11);
4610 return Qnil;
4611 }
4612
4613 DEFUN ("x-close-connection", Fx_close_connection,
4614 Sx_close_connection, 1, 1, 0,
4615 doc: /* Close the connection to TERMINAL's X server.
4616 For TERMINAL, specify a terminal object, a frame or a display name (a
4617 string). If TERMINAL is nil, that stands for the selected frame's
4618 terminal. */)
4619 (Lisp_Object terminal)
4620 {
4621 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4622
4623 if (dpyinfo->reference_count > 0)
4624 error ("Display still has frames on it");
4625
4626 x_delete_terminal (dpyinfo->terminal);
4627
4628 return Qnil;
4629 }
4630
4631 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
4632 doc: /* Return the list of display names that Emacs has connections to. */)
4633 (void)
4634 {
4635 Lisp_Object tail, result;
4636
4637 result = Qnil;
4638 for (tail = x_display_name_list; CONSP (tail); tail = XCDR (tail))
4639 result = Fcons (XCAR (XCAR (tail)), result);
4640
4641 return result;
4642 }
4643
4644 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
4645 doc: /* If ON is non-nil, report X errors as soon as the erring request is made.
4646 This function only has an effect on X Windows. With MS Windows, it is
4647 defined but does nothing.
4648
4649 If ON is nil, allow buffering of requests.
4650 Turning on synchronization prohibits the Xlib routines from buffering
4651 requests and seriously degrades performance, but makes debugging much
4652 easier.
4653 The optional second argument TERMINAL specifies which display to act on.
4654 TERMINAL should be a terminal object, a frame or a display name (a string).
4655 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4656 (Lisp_Object on, Lisp_Object terminal)
4657 {
4658 struct x_display_info *dpyinfo = check_x_display_info (terminal);
4659
4660 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
4661
4662 return Qnil;
4663 }
4664
4665 /* Wait for responses to all X commands issued so far for frame F. */
4666
4667 void
4668 x_sync (FRAME_PTR f)
4669 {
4670 block_input ();
4671 XSync (FRAME_X_DISPLAY (f), False);
4672 unblock_input ();
4673 }
4674
4675 \f
4676 /***********************************************************************
4677 Window properties
4678 ***********************************************************************/
4679
4680 DEFUN ("x-change-window-property", Fx_change_window_property,
4681 Sx_change_window_property, 2, 6, 0,
4682 doc: /* Change window property PROP to VALUE on the X window of FRAME.
4683 PROP must be a string. VALUE may be a string or a list of conses,
4684 numbers and/or strings. If an element in the list is a string, it is
4685 converted to an atom and the value of the atom is used. If an element
4686 is a cons, it is converted to a 32 bit number where the car is the 16
4687 top bits and the cdr is the lower 16 bits.
4688
4689 FRAME nil or omitted means use the selected frame.
4690 If TYPE is given and non-nil, it is the name of the type of VALUE.
4691 If TYPE is not given or nil, the type is STRING.
4692 FORMAT gives the size in bits of each element if VALUE is a list.
4693 It must be one of 8, 16 or 32.
4694 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4695 If OUTER-P is non-nil, the property is changed for the outer X window of
4696 FRAME. Default is to change on the edit X window. */)
4697 (Lisp_Object prop, Lisp_Object value, Lisp_Object frame,
4698 Lisp_Object type, Lisp_Object format, Lisp_Object outer_p)
4699 {
4700 struct frame *f = decode_window_system_frame (frame);
4701 Atom prop_atom;
4702 Atom target_type = XA_STRING;
4703 int element_format = 8;
4704 unsigned char *data;
4705 int nelements;
4706 Window w;
4707
4708 CHECK_STRING (prop);
4709
4710 if (! NILP (format))
4711 {
4712 CHECK_NUMBER (format);
4713
4714 if (XINT (format) != 8 && XINT (format) != 16
4715 && XINT (format) != 32)
4716 error ("FORMAT must be one of 8, 16 or 32");
4717 element_format = XINT (format);
4718 }
4719
4720 if (CONSP (value))
4721 {
4722 ptrdiff_t elsize;
4723
4724 nelements = x_check_property_data (value);
4725 if (nelements == -1)
4726 error ("Bad data in VALUE, must be number, string or cons");
4727
4728 /* The man page for XChangeProperty:
4729 "If the specified format is 32, the property data must be a
4730 long array."
4731 This applies even if long is more than 32 bits. The X library
4732 converts to 32 bits before sending to the X server. */
4733 elsize = element_format == 32 ? sizeof (long) : element_format >> 3;
4734 data = xnmalloc (nelements, elsize);
4735
4736 x_fill_property_data (FRAME_X_DISPLAY (f), value, data, element_format);
4737 }
4738 else
4739 {
4740 CHECK_STRING (value);
4741 data = SDATA (value);
4742 if (INT_MAX < SBYTES (value))
4743 error ("VALUE too long");
4744 nelements = SBYTES (value);
4745 }
4746
4747 block_input ();
4748 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (prop), False);
4749 if (! NILP (type))
4750 {
4751 CHECK_STRING (type);
4752 target_type = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (type), False);
4753 }
4754
4755 if (! NILP (outer_p)) w = FRAME_OUTER_WINDOW (f);
4756 else w = FRAME_X_WINDOW (f);
4757
4758 XChangeProperty (FRAME_X_DISPLAY (f), w,
4759 prop_atom, target_type, element_format, PropModeReplace,
4760 data, nelements);
4761
4762 if (CONSP (value)) xfree (data);
4763
4764 /* Make sure the property is set when we return. */
4765 XFlush (FRAME_X_DISPLAY (f));
4766 unblock_input ();
4767
4768 return value;
4769 }
4770
4771
4772 DEFUN ("x-delete-window-property", Fx_delete_window_property,
4773 Sx_delete_window_property, 1, 2, 0,
4774 doc: /* Remove window property PROP from X window of FRAME.
4775 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4776 (Lisp_Object prop, Lisp_Object frame)
4777 {
4778 struct frame *f = decode_window_system_frame (frame);
4779 Atom prop_atom;
4780
4781 CHECK_STRING (prop);
4782 block_input ();
4783 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (prop), False);
4784 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
4785
4786 /* Make sure the property is removed when we return. */
4787 XFlush (FRAME_X_DISPLAY (f));
4788 unblock_input ();
4789
4790 return prop;
4791 }
4792
4793
4794 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
4795 1, 6, 0,
4796 doc: /* Value is the value of window property PROP on FRAME.
4797 If FRAME is nil or omitted, use the selected frame.
4798
4799 On X Windows, the following optional arguments are also accepted:
4800 If TYPE is nil or omitted, get the property as a string.
4801 Otherwise TYPE is the name of the atom that denotes the type expected.
4802 If SOURCE is non-nil, get the property on that window instead of from
4803 FRAME. The number 0 denotes the root window.
4804 If DELETE-P is non-nil, delete the property after retrieving it.
4805 If VECTOR-RET-P is non-nil, don't return a string but a vector of values.
4806
4807 On MS Windows, this function accepts but ignores those optional arguments.
4808
4809 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4810 no value of TYPE (always string in the MS Windows case). */)
4811 (Lisp_Object prop, Lisp_Object frame, Lisp_Object type,
4812 Lisp_Object source, Lisp_Object delete_p, Lisp_Object vector_ret_p)
4813 {
4814 struct frame *f = decode_window_system_frame (frame);
4815 Atom prop_atom;
4816 int rc;
4817 Lisp_Object prop_value = Qnil;
4818 unsigned char *tmp_data = NULL;
4819 Atom actual_type;
4820 Atom target_type = XA_STRING;
4821 int actual_format;
4822 unsigned long actual_size, bytes_remaining;
4823 Window target_window = FRAME_X_WINDOW (f);
4824 struct gcpro gcpro1;
4825
4826 GCPRO1 (prop_value);
4827 CHECK_STRING (prop);
4828
4829 if (! NILP (source))
4830 {
4831 CONS_TO_INTEGER (source, Window, target_window);
4832 if (! target_window)
4833 target_window = FRAME_X_DISPLAY_INFO (f)->root_window;
4834 }
4835
4836 block_input ();
4837 if (STRINGP (type))
4838 {
4839 if (strcmp ("AnyPropertyType", SSDATA (type)) == 0)
4840 target_type = AnyPropertyType;
4841 else
4842 target_type = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (type), False);
4843 }
4844
4845 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (prop), False);
4846 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4847 prop_atom, 0, 0, False, target_type,
4848 &actual_type, &actual_format, &actual_size,
4849 &bytes_remaining, &tmp_data);
4850 if (rc == Success)
4851 {
4852 int size = bytes_remaining;
4853
4854 XFree (tmp_data);
4855 tmp_data = NULL;
4856
4857 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4858 prop_atom, 0, bytes_remaining,
4859 ! NILP (delete_p), target_type,
4860 &actual_type, &actual_format,
4861 &actual_size, &bytes_remaining,
4862 &tmp_data);
4863 if (rc == Success && tmp_data)
4864 {
4865 /* The man page for XGetWindowProperty says:
4866 "If the returned format is 32, the returned data is represented
4867 as a long array and should be cast to that type to obtain the
4868 elements."
4869 This applies even if long is more than 32 bits, the X library
4870 converts from 32 bit elements received from the X server to long
4871 and passes the long array to us. Thus, for that case memcpy can not
4872 be used. We convert to a 32 bit type here, because so much code
4873 assume on that.
4874
4875 The bytes and offsets passed to XGetWindowProperty refers to the
4876 property and those are indeed in 32 bit quantities if format is
4877 32. */
4878
4879 if (BITS_PER_LONG > 32 && actual_format == 32)
4880 {
4881 unsigned long i;
4882 int *idata = (int *) tmp_data;
4883 long *ldata = (long *) tmp_data;
4884
4885 for (i = 0; i < actual_size; ++i)
4886 idata[i] = (int) ldata[i];
4887 }
4888
4889 if (NILP (vector_ret_p))
4890 prop_value = make_string ((char *) tmp_data, size);
4891 else
4892 prop_value = x_property_data_to_lisp (f,
4893 tmp_data,
4894 actual_type,
4895 actual_format,
4896 actual_size);
4897 }
4898
4899 if (tmp_data) XFree (tmp_data);
4900 }
4901
4902 unblock_input ();
4903 UNGCPRO;
4904 return prop_value;
4905 }
4906
4907
4908 \f
4909 /***********************************************************************
4910 Busy cursor
4911 ***********************************************************************/
4912
4913 /* Timer function of hourglass_atimer. TIMER is equal to
4914 hourglass_atimer.
4915
4916 Display an hourglass pointer on all frames by mapping the frames'
4917 hourglass_window. Set the hourglass_p flag in the frames'
4918 output_data.x structure to indicate that an hourglass cursor is
4919 shown on the frames. */
4920
4921 void
4922 show_hourglass (struct atimer *timer)
4923 {
4924 /* The timer implementation will cancel this timer automatically
4925 after this function has run. Set hourglass_atimer to null
4926 so that we know the timer doesn't have to be canceled. */
4927 hourglass_atimer = NULL;
4928
4929 if (!hourglass_shown_p)
4930 {
4931 Lisp_Object rest, frame;
4932
4933 block_input ();
4934
4935 FOR_EACH_FRAME (rest, frame)
4936 {
4937 struct frame *f = XFRAME (frame);
4938
4939 if (FRAME_LIVE_P (f) && FRAME_X_P (f) && FRAME_X_DISPLAY (f))
4940 {
4941 Display *dpy = FRAME_X_DISPLAY (f);
4942
4943 #ifdef USE_X_TOOLKIT
4944 if (f->output_data.x->widget)
4945 #else
4946 if (FRAME_OUTER_WINDOW (f))
4947 #endif
4948 {
4949 f->output_data.x->hourglass_p = 1;
4950
4951 if (!f->output_data.x->hourglass_window)
4952 {
4953 unsigned long mask = CWCursor;
4954 XSetWindowAttributes attrs;
4955 #ifdef USE_GTK
4956 Window parent = FRAME_X_WINDOW (f);
4957 #else
4958 Window parent = FRAME_OUTER_WINDOW (f);
4959 #endif
4960 attrs.cursor = f->output_data.x->hourglass_cursor;
4961
4962 f->output_data.x->hourglass_window
4963 = XCreateWindow (dpy, parent,
4964 0, 0, 32000, 32000, 0, 0,
4965 InputOnly,
4966 CopyFromParent,
4967 mask, &attrs);
4968 }
4969
4970 XMapRaised (dpy, f->output_data.x->hourglass_window);
4971 XFlush (dpy);
4972 }
4973 }
4974 }
4975
4976 hourglass_shown_p = 1;
4977 unblock_input ();
4978 }
4979 }
4980
4981
4982 /* Hide the hourglass pointer on all frames, if it is currently
4983 shown. */
4984
4985 void
4986 hide_hourglass (void)
4987 {
4988 if (hourglass_shown_p)
4989 {
4990 Lisp_Object rest, frame;
4991
4992 block_input ();
4993 FOR_EACH_FRAME (rest, frame)
4994 {
4995 struct frame *f = XFRAME (frame);
4996
4997 if (FRAME_X_P (f)
4998 /* Watch out for newly created frames. */
4999 && f->output_data.x->hourglass_window)
5000 {
5001 XUnmapWindow (FRAME_X_DISPLAY (f),
5002 f->output_data.x->hourglass_window);
5003 /* Sync here because XTread_socket looks at the
5004 hourglass_p flag that is reset to zero below. */
5005 XSync (FRAME_X_DISPLAY (f), False);
5006 f->output_data.x->hourglass_p = 0;
5007 }
5008 }
5009
5010 hourglass_shown_p = 0;
5011 unblock_input ();
5012 }
5013 }
5014
5015
5016 \f
5017 /***********************************************************************
5018 Tool tips
5019 ***********************************************************************/
5020
5021 static Lisp_Object x_create_tip_frame (struct x_display_info *,
5022 Lisp_Object, Lisp_Object);
5023 static void compute_tip_xy (struct frame *, Lisp_Object, Lisp_Object,
5024 Lisp_Object, int, int, int *, int *);
5025
5026 /* The frame of a currently visible tooltip. */
5027
5028 Lisp_Object tip_frame;
5029
5030 /* If non-nil, a timer started that hides the last tooltip when it
5031 fires. */
5032
5033 static Lisp_Object tip_timer;
5034 Window tip_window;
5035
5036 /* If non-nil, a vector of 3 elements containing the last args
5037 with which x-show-tip was called. See there. */
5038
5039 static Lisp_Object last_show_tip_args;
5040
5041
5042 static Lisp_Object
5043 unwind_create_tip_frame (Lisp_Object frame)
5044 {
5045 Lisp_Object deleted;
5046
5047 deleted = unwind_create_frame (frame);
5048 if (EQ (deleted, Qt))
5049 {
5050 tip_window = None;
5051 tip_frame = Qnil;
5052 }
5053
5054 return deleted;
5055 }
5056
5057
5058 /* Create a frame for a tooltip on the display described by DPYINFO.
5059 PARMS is a list of frame parameters. TEXT is the string to
5060 display in the tip frame. Value is the frame.
5061
5062 Note that functions called here, esp. x_default_parameter can
5063 signal errors, for instance when a specified color name is
5064 undefined. We have to make sure that we're in a consistent state
5065 when this happens. */
5066
5067 static Lisp_Object
5068 x_create_tip_frame (struct x_display_info *dpyinfo,
5069 Lisp_Object parms,
5070 Lisp_Object text)
5071 {
5072 struct frame *f;
5073 Lisp_Object frame;
5074 Lisp_Object name;
5075 int width, height;
5076 ptrdiff_t count = SPECPDL_INDEX ();
5077 struct gcpro gcpro1, gcpro2, gcpro3;
5078 int face_change_count_before = face_change_count;
5079 Lisp_Object buffer;
5080 struct buffer *old_buffer;
5081
5082 if (!dpyinfo->terminal->name)
5083 error ("Terminal is not live, can't create new frames on it");
5084
5085 parms = Fcopy_alist (parms);
5086
5087 /* Get the name of the frame to use for resource lookup. */
5088 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
5089 if (!STRINGP (name)
5090 && !EQ (name, Qunbound)
5091 && !NILP (name))
5092 error ("Invalid frame name--not a string or nil");
5093
5094 frame = Qnil;
5095 GCPRO3 (parms, name, frame);
5096 f = make_frame (1);
5097 XSETFRAME (frame, f);
5098
5099 buffer = Fget_buffer_create (build_string (" *tip*"));
5100 /* Use set_window_buffer instead of Fset_window_buffer (see
5101 discussion of bug#11984, bug#12025, bug#12026). */
5102 set_window_buffer (FRAME_ROOT_WINDOW (f), buffer, 0, 0);
5103 old_buffer = current_buffer;
5104 set_buffer_internal_1 (XBUFFER (buffer));
5105 bset_truncate_lines (current_buffer, Qnil);
5106 specbind (Qinhibit_read_only, Qt);
5107 specbind (Qinhibit_modification_hooks, Qt);
5108 Ferase_buffer ();
5109 Finsert (1, &text);
5110 set_buffer_internal_1 (old_buffer);
5111
5112 record_unwind_protect (unwind_create_tip_frame, frame);
5113
5114 f->terminal = dpyinfo->terminal;
5115
5116 /* By setting the output method, we're essentially saying that
5117 the frame is live, as per FRAME_LIVE_P. If we get a signal
5118 from this point on, x_destroy_window might screw up reference
5119 counts etc. */
5120 f->output_method = output_x_window;
5121 f->output_data.x = xzalloc (sizeof *f->output_data.x);
5122 f->output_data.x->icon_bitmap = -1;
5123 FRAME_FONTSET (f) = -1;
5124 f->output_data.x->scroll_bar_foreground_pixel = -1;
5125 f->output_data.x->scroll_bar_background_pixel = -1;
5126 #ifdef USE_TOOLKIT_SCROLL_BARS
5127 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
5128 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
5129 #endif /* USE_TOOLKIT_SCROLL_BARS */
5130 fset_icon_name (f, Qnil);
5131 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
5132 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
5133 f->output_data.x->explicit_parent = 0;
5134
5135 /* These colors will be set anyway later, but it's important
5136 to get the color reference counts right, so initialize them! */
5137 {
5138 Lisp_Object black;
5139 struct gcpro gcpro1;
5140
5141 /* Function x_decode_color can signal an error. Make
5142 sure to initialize color slots so that we won't try
5143 to free colors we haven't allocated. */
5144 FRAME_FOREGROUND_PIXEL (f) = -1;
5145 FRAME_BACKGROUND_PIXEL (f) = -1;
5146 f->output_data.x->cursor_pixel = -1;
5147 f->output_data.x->cursor_foreground_pixel = -1;
5148 f->output_data.x->border_pixel = -1;
5149 f->output_data.x->mouse_pixel = -1;
5150
5151 black = build_string ("black");
5152 GCPRO1 (black);
5153 FRAME_FOREGROUND_PIXEL (f)
5154 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
5155 FRAME_BACKGROUND_PIXEL (f)
5156 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
5157 f->output_data.x->cursor_pixel
5158 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
5159 f->output_data.x->cursor_foreground_pixel
5160 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
5161 f->output_data.x->border_pixel
5162 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
5163 f->output_data.x->mouse_pixel
5164 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
5165 UNGCPRO;
5166 }
5167
5168 /* Set the name; the functions to which we pass f expect the name to
5169 be set. */
5170 if (EQ (name, Qunbound) || NILP (name))
5171 {
5172 fset_name (f, build_string (dpyinfo->x_id_name));
5173 f->explicit_name = 0;
5174 }
5175 else
5176 {
5177 fset_name (f, name);
5178 f->explicit_name = 1;
5179 /* use the frame's title when getting resources for this frame. */
5180 specbind (Qx_resource_name, name);
5181 }
5182
5183 register_font_driver (&xfont_driver, f);
5184 #ifdef HAVE_FREETYPE
5185 #ifdef HAVE_XFT
5186 register_font_driver (&xftfont_driver, f);
5187 #else /* not HAVE_XFT */
5188 register_font_driver (&ftxfont_driver, f);
5189 #endif /* not HAVE_XFT */
5190 #endif /* HAVE_FREETYPE */
5191
5192 x_default_parameter (f, parms, Qfont_backend, Qnil,
5193 "fontBackend", "FontBackend", RES_TYPE_STRING);
5194
5195 /* Extract the window parameters from the supplied values that are
5196 needed to determine window geometry. */
5197 x_default_font_parameter (f, parms);
5198
5199 x_default_parameter (f, parms, Qborder_width, make_number (0),
5200 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
5201
5202 /* This defaults to 2 in order to match xterm. We recognize either
5203 internalBorderWidth or internalBorder (which is what xterm calls
5204 it). */
5205 if (NILP (Fassq (Qinternal_border_width, parms)))
5206 {
5207 Lisp_Object value;
5208
5209 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
5210 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
5211 if (! EQ (value, Qunbound))
5212 parms = Fcons (Fcons (Qinternal_border_width, value),
5213 parms);
5214 }
5215
5216 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
5217 "internalBorderWidth", "internalBorderWidth",
5218 RES_TYPE_NUMBER);
5219
5220 /* Also do the stuff which must be set before the window exists. */
5221 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
5222 "foreground", "Foreground", RES_TYPE_STRING);
5223 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
5224 "background", "Background", RES_TYPE_STRING);
5225 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
5226 "pointerColor", "Foreground", RES_TYPE_STRING);
5227 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
5228 "cursorColor", "Foreground", RES_TYPE_STRING);
5229 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
5230 "borderColor", "BorderColor", RES_TYPE_STRING);
5231
5232 #ifdef GLYPH_DEBUG
5233 image_cache_refcount =
5234 FRAME_IMAGE_CACHE (f) ? FRAME_IMAGE_CACHE (f)->refcount : 0;
5235 dpyinfo_refcount = dpyinfo->reference_count;
5236 #endif /* GLYPH_DEBUG */
5237
5238 /* Init faces before x_default_parameter is called for scroll-bar
5239 parameters because that function calls x_set_scroll_bar_width,
5240 which calls change_frame_size, which calls Fset_window_buffer,
5241 which runs hooks, which call Fvertical_motion. At the end, we
5242 end up in init_iterator with a null face cache, which should not
5243 happen. */
5244 init_frame_faces (f);
5245
5246 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
5247
5248 x_figure_window_size (f, parms, 0);
5249
5250 {
5251 XSetWindowAttributes attrs;
5252 unsigned long mask;
5253 Atom type = FRAME_X_DISPLAY_INFO (f)->Xatom_net_window_type_tooltip;
5254
5255 block_input ();
5256 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
5257 if (DoesSaveUnders (dpyinfo->screen))
5258 mask |= CWSaveUnder;
5259
5260 /* Window managers look at the override-redirect flag to determine
5261 whether or net to give windows a decoration (Xlib spec, chapter
5262 3.2.8). */
5263 attrs.override_redirect = True;
5264 attrs.save_under = True;
5265 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
5266 /* Arrange for getting MapNotify and UnmapNotify events. */
5267 attrs.event_mask = StructureNotifyMask;
5268 tip_window
5269 = FRAME_X_WINDOW (f)
5270 = XCreateWindow (FRAME_X_DISPLAY (f),
5271 FRAME_X_DISPLAY_INFO (f)->root_window,
5272 /* x, y, width, height */
5273 0, 0, 1, 1,
5274 /* Border. */
5275 f->border_width,
5276 CopyFromParent, InputOutput, CopyFromParent,
5277 mask, &attrs);
5278 XChangeProperty (FRAME_X_DISPLAY (f), tip_window,
5279 FRAME_X_DISPLAY_INFO (f)->Xatom_net_window_type,
5280 XA_ATOM, 32, PropModeReplace,
5281 (unsigned char *)&type, 1);
5282 unblock_input ();
5283 }
5284
5285 x_make_gc (f);
5286
5287 x_default_parameter (f, parms, Qauto_raise, Qnil,
5288 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5289 x_default_parameter (f, parms, Qauto_lower, Qnil,
5290 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5291 x_default_parameter (f, parms, Qcursor_type, Qbox,
5292 "cursorType", "CursorType", RES_TYPE_SYMBOL);
5293
5294 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
5295 Change will not be effected unless different from the current
5296 FRAME_LINES (f). */
5297 width = FRAME_COLS (f);
5298 height = FRAME_LINES (f);
5299 SET_FRAME_COLS (f, 0);
5300 FRAME_LINES (f) = 0;
5301 change_frame_size (f, height, width, 1, 0, 0);
5302
5303 /* Add `tooltip' frame parameter's default value. */
5304 if (NILP (Fframe_parameter (frame, Qtooltip)))
5305 Fmodify_frame_parameters (frame, Fcons (Fcons (Qtooltip, Qt), Qnil));
5306
5307 /* FIXME - can this be done in a similar way to normal frames?
5308 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
5309
5310 /* Set the `display-type' frame parameter before setting up faces. */
5311 {
5312 Lisp_Object disptype;
5313
5314 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
5315 disptype = intern ("mono");
5316 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale
5317 || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
5318 disptype = intern ("grayscale");
5319 else
5320 disptype = intern ("color");
5321
5322 if (NILP (Fframe_parameter (frame, Qdisplay_type)))
5323 Fmodify_frame_parameters (frame, Fcons (Fcons (Qdisplay_type, disptype),
5324 Qnil));
5325 }
5326
5327 /* Set up faces after all frame parameters are known. This call
5328 also merges in face attributes specified for new frames.
5329
5330 Frame parameters may be changed if .Xdefaults contains
5331 specifications for the default font. For example, if there is an
5332 `Emacs.default.attributeBackground: pink', the `background-color'
5333 attribute of the frame get's set, which let's the internal border
5334 of the tooltip frame appear in pink. Prevent this. */
5335 {
5336 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
5337
5338 /* Set tip_frame here, so that */
5339 tip_frame = frame;
5340 call2 (Qface_set_after_frame_default, frame, Qnil);
5341
5342 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
5343 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
5344 Qnil));
5345 }
5346
5347 f->no_split = 1;
5348
5349 UNGCPRO;
5350
5351 /* Now that the frame will be official, it counts as a reference to
5352 its display and terminal. */
5353 FRAME_X_DISPLAY_INFO (f)->reference_count++;
5354 f->terminal->reference_count++;
5355
5356 /* It is now ok to make the frame official even if we get an error
5357 below. And the frame needs to be on Vframe_list or making it
5358 visible won't work. */
5359 Vframe_list = Fcons (frame, Vframe_list);
5360
5361
5362 /* Setting attributes of faces of the tooltip frame from resources
5363 and similar will increment face_change_count, which leads to the
5364 clearing of all current matrices. Since this isn't necessary
5365 here, avoid it by resetting face_change_count to the value it
5366 had before we created the tip frame. */
5367 face_change_count = face_change_count_before;
5368
5369 /* Discard the unwind_protect. */
5370 return unbind_to (count, frame);
5371 }
5372
5373
5374 /* Compute where to display tip frame F. PARMS is the list of frame
5375 parameters for F. DX and DY are specified offsets from the current
5376 location of the mouse. WIDTH and HEIGHT are the width and height
5377 of the tooltip. Return coordinates relative to the root window of
5378 the display in *ROOT_X, and *ROOT_Y. */
5379
5380 static void
5381 compute_tip_xy (struct frame *f, Lisp_Object parms, Lisp_Object dx, Lisp_Object dy, int width, int height, int *root_x, int *root_y)
5382 {
5383 Lisp_Object left, top;
5384 int win_x, win_y;
5385 Window root, child;
5386 unsigned pmask;
5387
5388 /* User-specified position? */
5389 left = Fcdr (Fassq (Qleft, parms));
5390 top = Fcdr (Fassq (Qtop, parms));
5391
5392 /* Move the tooltip window where the mouse pointer is. Resize and
5393 show it. */
5394 if (!INTEGERP (left) || !INTEGERP (top))
5395 {
5396 block_input ();
5397 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
5398 &root, &child, root_x, root_y, &win_x, &win_y, &pmask);
5399 unblock_input ();
5400 }
5401
5402 if (INTEGERP (top))
5403 *root_y = XINT (top);
5404 else if (*root_y + XINT (dy) <= 0)
5405 *root_y = 0; /* Can happen for negative dy */
5406 else if (*root_y + XINT (dy) + height
5407 <= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f)))
5408 /* It fits below the pointer */
5409 *root_y += XINT (dy);
5410 else if (height + XINT (dy) <= *root_y)
5411 /* It fits above the pointer. */
5412 *root_y -= height + XINT (dy);
5413 else
5414 /* Put it on the top. */
5415 *root_y = 0;
5416
5417 if (INTEGERP (left))
5418 *root_x = XINT (left);
5419 else if (*root_x + XINT (dx) <= 0)
5420 *root_x = 0; /* Can happen for negative dx */
5421 else if (*root_x + XINT (dx) + width
5422 <= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f)))
5423 /* It fits to the right of the pointer. */
5424 *root_x += XINT (dx);
5425 else if (width + XINT (dx) <= *root_x)
5426 /* It fits to the left of the pointer. */
5427 *root_x -= width + XINT (dx);
5428 else
5429 /* Put it left-justified on the screen--it ought to fit that way. */
5430 *root_x = 0;
5431 }
5432
5433
5434 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
5435 doc: /* Show STRING in a "tooltip" window on frame FRAME.
5436 A tooltip window is a small X window displaying a string.
5437
5438 This is an internal function; Lisp code should call `tooltip-show'.
5439
5440 FRAME nil or omitted means use the selected frame.
5441
5442 PARMS is an optional list of frame parameters which can be used to
5443 change the tooltip's appearance.
5444
5445 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
5446 means use the default timeout of 5 seconds.
5447
5448 If the list of frame parameters PARMS contains a `left' parameters,
5449 the tooltip is displayed at that x-position. Otherwise it is
5450 displayed at the mouse position, with offset DX added (default is 5 if
5451 DX isn't specified). Likewise for the y-position; if a `top' frame
5452 parameter is specified, it determines the y-position of the tooltip
5453 window, otherwise it is displayed at the mouse position, with offset
5454 DY added (default is -10).
5455
5456 A tooltip's maximum size is specified by `x-max-tooltip-size'.
5457 Text larger than the specified size is clipped. */)
5458 (Lisp_Object string, Lisp_Object frame, Lisp_Object parms, Lisp_Object timeout, Lisp_Object dx, Lisp_Object dy)
5459 {
5460 struct frame *f;
5461 struct window *w;
5462 int root_x, root_y;
5463 struct buffer *old_buffer;
5464 struct text_pos pos;
5465 int i, width, height, seen_reversed_p;
5466 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5467 int old_windows_or_buffers_changed = windows_or_buffers_changed;
5468 ptrdiff_t count = SPECPDL_INDEX ();
5469
5470 specbind (Qinhibit_redisplay, Qt);
5471
5472 GCPRO4 (string, parms, frame, timeout);
5473
5474 CHECK_STRING (string);
5475 if (SCHARS (string) == 0)
5476 string = make_unibyte_string (" ", 1);
5477
5478 f = decode_window_system_frame (frame);
5479 if (NILP (timeout))
5480 timeout = make_number (5);
5481 else
5482 CHECK_NATNUM (timeout);
5483
5484 if (NILP (dx))
5485 dx = make_number (5);
5486 else
5487 CHECK_NUMBER (dx);
5488
5489 if (NILP (dy))
5490 dy = make_number (-10);
5491 else
5492 CHECK_NUMBER (dy);
5493
5494 #ifdef USE_GTK
5495 if (x_gtk_use_system_tooltips)
5496 {
5497 bool ok;
5498
5499 /* Hide a previous tip, if any. */
5500 Fx_hide_tip ();
5501
5502 block_input ();
5503 ok = xg_prepare_tooltip (f, string, &width, &height);
5504 if (ok)
5505 {
5506 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
5507 xg_show_tooltip (f, root_x, root_y);
5508 /* This is used in Fx_hide_tip. */
5509 XSETFRAME (tip_frame, f);
5510 }
5511 unblock_input ();
5512 if (ok) goto start_timer;
5513 }
5514 #endif /* USE_GTK */
5515
5516 if (NILP (last_show_tip_args))
5517 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
5518
5519 if (!NILP (tip_frame))
5520 {
5521 Lisp_Object last_string = AREF (last_show_tip_args, 0);
5522 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
5523 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
5524
5525 if (EQ (frame, last_frame)
5526 && !NILP (Fequal (last_string, string))
5527 && !NILP (Fequal (last_parms, parms)))
5528 {
5529 struct frame *tip_f = XFRAME (tip_frame);
5530
5531 /* Only DX and DY have changed. */
5532 if (!NILP (tip_timer))
5533 {
5534 Lisp_Object timer = tip_timer;
5535 tip_timer = Qnil;
5536 call1 (Qcancel_timer, timer);
5537 }
5538
5539 block_input ();
5540 compute_tip_xy (tip_f, parms, dx, dy, FRAME_PIXEL_WIDTH (tip_f),
5541 FRAME_PIXEL_HEIGHT (tip_f), &root_x, &root_y);
5542 XMoveWindow (FRAME_X_DISPLAY (tip_f), FRAME_X_WINDOW (tip_f),
5543 root_x, root_y);
5544 unblock_input ();
5545 goto start_timer;
5546 }
5547 }
5548
5549 /* Hide a previous tip, if any. */
5550 Fx_hide_tip ();
5551
5552 ASET (last_show_tip_args, 0, string);
5553 ASET (last_show_tip_args, 1, frame);
5554 ASET (last_show_tip_args, 2, parms);
5555
5556 /* Add default values to frame parameters. */
5557 if (NILP (Fassq (Qname, parms)))
5558 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
5559 if (NILP (Fassq (Qinternal_border_width, parms)))
5560 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
5561 if (NILP (Fassq (Qborder_width, parms)))
5562 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
5563 if (NILP (Fassq (Qborder_color, parms)))
5564 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
5565 if (NILP (Fassq (Qbackground_color, parms)))
5566 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
5567 parms);
5568
5569 /* Create a frame for the tooltip, and record it in the global
5570 variable tip_frame. */
5571 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms, string);
5572 f = XFRAME (frame);
5573
5574 /* Set up the frame's root window. */
5575 w = XWINDOW (FRAME_ROOT_WINDOW (f));
5576 w->left_col = 0;
5577 w->top_line = 0;
5578
5579 if (CONSP (Vx_max_tooltip_size)
5580 && RANGED_INTEGERP (1, XCAR (Vx_max_tooltip_size), INT_MAX)
5581 && RANGED_INTEGERP (1, XCDR (Vx_max_tooltip_size), INT_MAX))
5582 {
5583 w->total_cols = XFASTINT (XCAR (Vx_max_tooltip_size));
5584 w->total_lines = XFASTINT (XCDR (Vx_max_tooltip_size));
5585 }
5586 else
5587 {
5588 w->total_cols = 80;
5589 w->total_lines = 40;
5590 }
5591
5592 FRAME_TOTAL_COLS (f) = w->total_cols;
5593 adjust_glyphs (f);
5594 w->pseudo_window_p = 1;
5595
5596 /* Display the tooltip text in a temporary buffer. */
5597 old_buffer = current_buffer;
5598 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->contents));
5599 bset_truncate_lines (current_buffer, Qnil);
5600 clear_glyph_matrix (w->desired_matrix);
5601 clear_glyph_matrix (w->current_matrix);
5602 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
5603 try_window (FRAME_ROOT_WINDOW (f), pos, TRY_WINDOW_IGNORE_FONTS_CHANGE);
5604
5605 /* Compute width and height of the tooltip. */
5606 width = height = seen_reversed_p = 0;
5607 for (i = 0; i < w->desired_matrix->nrows; ++i)
5608 {
5609 struct glyph_row *row = &w->desired_matrix->rows[i];
5610 struct glyph *last;
5611 int row_width;
5612
5613 /* Stop at the first empty row at the end. */
5614 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
5615 break;
5616
5617 /* Let the row go over the full width of the frame. */
5618 row->full_width_p = 1;
5619
5620 row_width = row->pixel_width;
5621 if (row->used[TEXT_AREA])
5622 {
5623 /* There's a glyph at the end of rows that is used to place
5624 the cursor there. Don't include the width of this glyph. */
5625 if (!row->reversed_p)
5626 {
5627 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
5628 if (INTEGERP (last->object))
5629 row_width -= last->pixel_width;
5630 }
5631 else
5632 {
5633 /* There could be a stretch glyph at the beginning of R2L
5634 rows that is produced by extend_face_to_end_of_line.
5635 Don't count that glyph. */
5636 struct glyph *g = row->glyphs[TEXT_AREA];
5637
5638 if (g->type == STRETCH_GLYPH && INTEGERP (g->object))
5639 {
5640 row_width -= g->pixel_width;
5641 seen_reversed_p = 1;
5642 }
5643 }
5644 }
5645
5646 height += row->height;
5647 width = max (width, row_width);
5648 }
5649
5650 /* If we've seen partial-length R2L rows, we need to re-adjust the
5651 tool-tip frame width and redisplay it again, to avoid over-wide
5652 tips due to the stretch glyph that extends R2L lines to full
5653 width of the frame. */
5654 if (seen_reversed_p)
5655 {
5656 /* w->total_cols and FRAME_TOTAL_COLS want the width in columns,
5657 not in pixels. */
5658 width /= WINDOW_FRAME_COLUMN_WIDTH (w);
5659 w->total_cols = width;
5660 FRAME_TOTAL_COLS (f) = width;
5661 adjust_glyphs (f);
5662 clear_glyph_matrix (w->desired_matrix);
5663 clear_glyph_matrix (w->current_matrix);
5664 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
5665 width = height = 0;
5666 /* Recompute width and height of the tooltip. */
5667 for (i = 0; i < w->desired_matrix->nrows; ++i)
5668 {
5669 struct glyph_row *row = &w->desired_matrix->rows[i];
5670 struct glyph *last;
5671 int row_width;
5672
5673 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
5674 break;
5675 row->full_width_p = 1;
5676 row_width = row->pixel_width;
5677 if (row->used[TEXT_AREA] && !row->reversed_p)
5678 {
5679 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
5680 if (INTEGERP (last->object))
5681 row_width -= last->pixel_width;
5682 }
5683
5684 height += row->height;
5685 width = max (width, row_width);
5686 }
5687 }
5688
5689 /* Add the frame's internal border to the width and height the X
5690 window should have. */
5691 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5692 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5693
5694 /* Move the tooltip window where the mouse pointer is. Resize and
5695 show it. */
5696 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
5697
5698 block_input ();
5699 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5700 root_x, root_y, width, height);
5701 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5702 unblock_input ();
5703
5704 /* Draw into the window. */
5705 w->must_be_updated_p = 1;
5706 update_single_window (w, 1);
5707
5708 /* Restore original current buffer. */
5709 set_buffer_internal_1 (old_buffer);
5710 windows_or_buffers_changed = old_windows_or_buffers_changed;
5711
5712 start_timer:
5713 /* Let the tip disappear after timeout seconds. */
5714 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
5715 intern ("x-hide-tip"));
5716
5717 UNGCPRO;
5718 return unbind_to (count, Qnil);
5719 }
5720
5721
5722 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
5723 doc: /* Hide the current tooltip window, if there is any.
5724 Value is t if tooltip was open, nil otherwise. */)
5725 (void)
5726 {
5727 ptrdiff_t count;
5728 Lisp_Object deleted, frame, timer;
5729 struct gcpro gcpro1, gcpro2;
5730
5731 /* Return quickly if nothing to do. */
5732 if (NILP (tip_timer) && NILP (tip_frame))
5733 return Qnil;
5734
5735 frame = tip_frame;
5736 timer = tip_timer;
5737 GCPRO2 (frame, timer);
5738 tip_frame = tip_timer = deleted = Qnil;
5739
5740 count = SPECPDL_INDEX ();
5741 specbind (Qinhibit_redisplay, Qt);
5742 specbind (Qinhibit_quit, Qt);
5743
5744 if (!NILP (timer))
5745 call1 (Qcancel_timer, timer);
5746
5747 #ifdef USE_GTK
5748 {
5749 /* When using system tooltip, tip_frame is the Emacs frame on which
5750 the tip is shown. */
5751 struct frame *f = XFRAME (frame);
5752 if (FRAME_LIVE_P (f) && xg_hide_tooltip (f))
5753 frame = Qnil;
5754 }
5755 #endif
5756
5757 if (FRAMEP (frame))
5758 {
5759 delete_frame (frame, Qnil);
5760 deleted = Qt;
5761
5762 #ifdef USE_LUCID
5763 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5764 redisplay procedure is not called when a tip frame over menu
5765 items is unmapped. Redisplay the menu manually... */
5766 {
5767 Widget w;
5768 struct frame *f = SELECTED_FRAME ();
5769 w = f->output_data.x->menubar_widget;
5770
5771 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
5772 && w != NULL)
5773 {
5774 block_input ();
5775 xlwmenu_redisplay (w);
5776 unblock_input ();
5777 }
5778 }
5779 #endif /* USE_LUCID */
5780 }
5781
5782 UNGCPRO;
5783 return unbind_to (count, deleted);
5784 }
5785
5786
5787 \f
5788 /***********************************************************************
5789 File selection dialog
5790 ***********************************************************************/
5791
5792 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog,
5793 Sx_uses_old_gtk_dialog,
5794 0, 0, 0,
5795 doc: /* Return t if the old Gtk+ file selection dialog is used. */)
5796 (void)
5797 {
5798 #ifdef USE_GTK
5799 if (use_dialog_box
5800 && use_file_dialog
5801 && window_system_available (SELECTED_FRAME ())
5802 && xg_uses_old_file_dialog ())
5803 return Qt;
5804 #endif
5805 return Qnil;
5806 }
5807
5808
5809 #ifdef USE_MOTIF
5810 /* Callback for "OK" and "Cancel" on file selection dialog. */
5811
5812 static void
5813 file_dialog_cb (Widget widget, XtPointer client_data, XtPointer call_data)
5814 {
5815 int *result = (int *) client_data;
5816 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
5817 *result = cb->reason;
5818 }
5819
5820
5821 /* Callback for unmapping a file selection dialog. This is used to
5822 capture the case where a dialog is closed via a window manager's
5823 closer button, for example. Using a XmNdestroyCallback didn't work
5824 in this case. */
5825
5826 static void
5827 file_dialog_unmap_cb (Widget widget, XtPointer client_data, XtPointer call_data)
5828 {
5829 int *result = (int *) client_data;
5830 *result = XmCR_CANCEL;
5831 }
5832
5833 static Lisp_Object
5834 clean_up_file_dialog (Lisp_Object arg)
5835 {
5836 Widget dialog = XSAVE_POINTER (arg, 0);
5837
5838 /* Clean up. */
5839 block_input ();
5840 XtUnmanageChild (dialog);
5841 XtDestroyWidget (dialog);
5842 x_menu_set_in_use (0);
5843 unblock_input ();
5844
5845 return Qnil;
5846 }
5847
5848
5849 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5850 doc: /* Read file name, prompting with PROMPT in directory DIR.
5851 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5852 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5853 or directory must exist.
5854
5855 This function is only defined on NS, MS Windows, and X Windows with the
5856 Motif or Gtk toolkits. With the Motif toolkit, ONLY-DIR-P is ignored.
5857 Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories. */)
5858 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object only_dir_p)
5859 {
5860 int result;
5861 struct frame *f = SELECTED_FRAME ();
5862 Lisp_Object file = Qnil;
5863 Lisp_Object decoded_file;
5864 Widget dialog, text, help;
5865 Arg al[10];
5866 int ac = 0;
5867 XmString dir_xmstring, pattern_xmstring;
5868 ptrdiff_t count = SPECPDL_INDEX ();
5869 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
5870
5871 check_window_system (f);
5872
5873 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
5874
5875 if (popup_activated ())
5876 error ("Trying to use a menu from within a menu-entry");
5877
5878 CHECK_STRING (prompt);
5879 CHECK_STRING (dir);
5880
5881 /* Prevent redisplay. */
5882 specbind (Qinhibit_redisplay, Qt);
5883
5884 block_input ();
5885
5886 /* Create the dialog with PROMPT as title, using DIR as initial
5887 directory and using "*" as pattern. */
5888 dir = Fexpand_file_name (dir, Qnil);
5889 dir_xmstring = XmStringCreateLocalized (SSDATA (dir));
5890 pattern_xmstring = XmStringCreateLocalized ("*");
5891
5892 XtSetArg (al[ac], XmNtitle, SDATA (prompt)); ++ac;
5893 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
5894 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
5895 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
5896 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
5897 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
5898 "fsb", al, ac);
5899 XmStringFree (dir_xmstring);
5900 XmStringFree (pattern_xmstring);
5901
5902 /* Add callbacks for OK and Cancel. */
5903 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
5904 (XtPointer) &result);
5905 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
5906 (XtPointer) &result);
5907 XtAddCallback (dialog, XmNunmapCallback, file_dialog_unmap_cb,
5908 (XtPointer) &result);
5909
5910 /* Remove the help button since we can't display help. */
5911 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
5912 XtUnmanageChild (help);
5913
5914 /* Mark OK button as default. */
5915 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
5916 XmNshowAsDefault, True, NULL);
5917
5918 /* If MUSTMATCH is non-nil, disable the file entry field of the
5919 dialog, so that the user must select a file from the files list
5920 box. We can't remove it because we wouldn't have a way to get at
5921 the result file name, then. */
5922 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5923 if (!NILP (mustmatch))
5924 {
5925 Widget label;
5926 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
5927 XtSetSensitive (text, False);
5928 XtSetSensitive (label, False);
5929 }
5930
5931 /* Manage the dialog, so that list boxes get filled. */
5932 XtManageChild (dialog);
5933
5934 if (STRINGP (default_filename))
5935 {
5936 XmString default_xmstring;
5937 Widget wtext = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5938 Widget list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
5939
5940 XmTextPosition last_pos = XmTextFieldGetLastPosition (wtext);
5941 XmTextFieldReplace (wtext, 0, last_pos,
5942 (SSDATA (Ffile_name_nondirectory (default_filename))));
5943
5944 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5945 must include the path for this to work. */
5946
5947 default_xmstring = XmStringCreateLocalized (SSDATA (default_filename));
5948
5949 if (XmListItemExists (list, default_xmstring))
5950 {
5951 int item_pos = XmListItemPos (list, default_xmstring);
5952 /* Select the item and scroll it into view. */
5953 XmListSelectPos (list, item_pos, True);
5954 XmListSetPos (list, item_pos);
5955 }
5956
5957 XmStringFree (default_xmstring);
5958 }
5959
5960 record_unwind_protect (clean_up_file_dialog, make_save_pointer (dialog));
5961
5962 /* Process events until the user presses Cancel or OK. */
5963 x_menu_set_in_use (1);
5964 result = 0;
5965 while (result == 0)
5966 {
5967 XEvent event;
5968 x_menu_wait_for_event (0);
5969 XtAppNextEvent (Xt_app_con, &event);
5970 if (event.type == KeyPress
5971 && FRAME_X_DISPLAY (f) == event.xkey.display)
5972 {
5973 KeySym keysym = XLookupKeysym (&event.xkey, 0);
5974
5975 /* Pop down on C-g. */
5976 if (keysym == XK_g && (event.xkey.state & ControlMask) != 0)
5977 XtUnmanageChild (dialog);
5978 }
5979
5980 (void) x_dispatch_event (&event, FRAME_X_DISPLAY (f));
5981 }
5982
5983 /* Get the result. */
5984 if (result == XmCR_OK)
5985 {
5986 XmString text_string;
5987 String data;
5988
5989 XtVaGetValues (dialog, XmNtextString, &text_string, NULL);
5990 XmStringGetLtoR (text_string, XmFONTLIST_DEFAULT_TAG, &data);
5991 XmStringFree (text_string);
5992 file = build_string (data);
5993 XtFree (data);
5994 }
5995 else
5996 file = Qnil;
5997
5998 unblock_input ();
5999 UNGCPRO;
6000
6001 /* Make "Cancel" equivalent to C-g. */
6002 if (NILP (file))
6003 Fsignal (Qquit, Qnil);
6004
6005 decoded_file = DECODE_FILE (file);
6006
6007 return unbind_to (count, decoded_file);
6008 }
6009
6010 #endif /* USE_MOTIF */
6011
6012 #ifdef USE_GTK
6013
6014 static Lisp_Object
6015 clean_up_dialog (Lisp_Object arg)
6016 {
6017 x_menu_set_in_use (0);
6018
6019 return Qnil;
6020 }
6021
6022 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
6023 doc: /* Read file name, prompting with PROMPT in directory DIR.
6024 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
6025 selection box, if specified. If MUSTMATCH is non-nil, the returned file
6026 or directory must exist.
6027
6028 This function is only defined on NS, MS Windows, and X Windows with the
6029 Motif or Gtk toolkits. With the Motif toolkit, ONLY-DIR-P is ignored.
6030 Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories. */)
6031 (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object only_dir_p)
6032 {
6033 FRAME_PTR f = SELECTED_FRAME ();
6034 char *fn;
6035 Lisp_Object file = Qnil;
6036 Lisp_Object decoded_file;
6037 ptrdiff_t count = SPECPDL_INDEX ();
6038 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
6039 char *cdef_file;
6040
6041 check_window_system (f);
6042
6043 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
6044
6045 if (popup_activated ())
6046 error ("Trying to use a menu from within a menu-entry");
6047
6048 CHECK_STRING (prompt);
6049 CHECK_STRING (dir);
6050
6051 /* Prevent redisplay. */
6052 specbind (Qinhibit_redisplay, Qt);
6053 record_unwind_protect (clean_up_dialog, Qnil);
6054
6055 block_input ();
6056
6057 if (STRINGP (default_filename))
6058 cdef_file = SSDATA (default_filename);
6059 else
6060 cdef_file = SSDATA (dir);
6061
6062 fn = xg_get_file_name (f, SSDATA (prompt), cdef_file,
6063 ! NILP (mustmatch),
6064 ! NILP (only_dir_p));
6065
6066 if (fn)
6067 {
6068 file = build_string (fn);
6069 xfree (fn);
6070 }
6071
6072 unblock_input ();
6073 UNGCPRO;
6074
6075 /* Make "Cancel" equivalent to C-g. */
6076 if (NILP (file))
6077 Fsignal (Qquit, Qnil);
6078
6079 decoded_file = DECODE_FILE (file);
6080
6081 return unbind_to (count, decoded_file);
6082 }
6083
6084
6085 #ifdef HAVE_FREETYPE
6086
6087 DEFUN ("x-select-font", Fx_select_font, Sx_select_font, 0, 2, 0,
6088 doc: /* Read a font using a GTK dialog.
6089 Return either a font spec (for GTK versions >= 3.2) or a string
6090 containing a GTK-style font name.
6091
6092 FRAME is the frame on which to pop up the font chooser. If omitted or
6093 nil, it defaults to the selected frame. */)
6094 (Lisp_Object frame, Lisp_Object ignored)
6095 {
6096 FRAME_PTR f = decode_window_system_frame (frame);
6097 Lisp_Object font;
6098 Lisp_Object font_param;
6099 char *default_name = NULL;
6100 struct gcpro gcpro1, gcpro2;
6101 ptrdiff_t count = SPECPDL_INDEX ();
6102
6103 if (popup_activated ())
6104 error ("Trying to use a menu from within a menu-entry");
6105
6106 /* Prevent redisplay. */
6107 specbind (Qinhibit_redisplay, Qt);
6108 record_unwind_protect (clean_up_dialog, Qnil);
6109
6110 block_input ();
6111
6112 GCPRO2 (font_param, font);
6113
6114 XSETFONT (font, FRAME_FONT (f));
6115 font_param = Ffont_get (font, intern (":name"));
6116 if (STRINGP (font_param))
6117 default_name = xstrdup (SSDATA (font_param));
6118 else
6119 {
6120 font_param = Fframe_parameter (frame, Qfont_param);
6121 if (STRINGP (font_param))
6122 default_name = xstrdup (SSDATA (font_param));
6123 }
6124
6125 font = xg_get_font (f, default_name);
6126 xfree (default_name);
6127
6128 unblock_input ();
6129
6130 if (NILP (font))
6131 Fsignal (Qquit, Qnil);
6132
6133 return unbind_to (count, font);
6134 }
6135 #endif /* HAVE_FREETYPE */
6136
6137 #endif /* USE_GTK */
6138
6139 \f
6140 /***********************************************************************
6141 Keyboard
6142 ***********************************************************************/
6143
6144 #ifdef HAVE_XKB
6145 #include <X11/XKBlib.h>
6146 #include <X11/keysym.h>
6147 #endif
6148
6149 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p,
6150 Sx_backspace_delete_keys_p, 0, 1, 0,
6151 doc: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
6152 FRAME nil means use the selected frame.
6153 Value is t if we know that both keys are present, and are mapped to the
6154 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
6155 present and mapped to the usual X keysyms. */)
6156 (Lisp_Object frame)
6157 {
6158 #ifndef HAVE_XKB
6159 return Qlambda;
6160 #else
6161 XkbDescPtr kb;
6162 struct frame *f = decode_window_system_frame (frame);
6163 Display *dpy = FRAME_X_DISPLAY (f);
6164 Lisp_Object have_keys;
6165 int major, minor, op, event, error_code;
6166
6167 block_input ();
6168
6169 /* Check library version in case we're dynamically linked. */
6170 major = XkbMajorVersion;
6171 minor = XkbMinorVersion;
6172 if (!XkbLibraryVersion (&major, &minor))
6173 {
6174 unblock_input ();
6175 return Qlambda;
6176 }
6177
6178 /* Check that the server supports XKB. */
6179 major = XkbMajorVersion;
6180 minor = XkbMinorVersion;
6181 if (!XkbQueryExtension (dpy, &op, &event, &error_code, &major, &minor))
6182 {
6183 unblock_input ();
6184 return Qlambda;
6185 }
6186
6187 /* In this code we check that the keyboard has physical keys with names
6188 that start with BKSP (Backspace) and DELE (Delete), and that they
6189 generate keysym XK_BackSpace and XK_Delete respectively.
6190 This function is used to test if normal-erase-is-backspace should be
6191 turned on.
6192 An alternative approach would be to just check if XK_BackSpace and
6193 XK_Delete are mapped to any key. But if any of those are mapped to
6194 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
6195 user doesn't know about it, it is better to return false here.
6196 It is more obvious to the user what to do if she/he has two keys
6197 clearly marked with names/symbols and one key does something not
6198 expected (i.e. she/he then tries the other).
6199 The cases where Backspace/Delete is mapped to some other key combination
6200 are rare, and in those cases, normal-erase-is-backspace can be turned on
6201 manually. */
6202
6203 have_keys = Qnil;
6204 kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
6205 if (kb)
6206 {
6207 int delete_keycode = 0, backspace_keycode = 0, i;
6208
6209 if (XkbGetNames (dpy, XkbAllNamesMask, kb) == Success)
6210 {
6211 for (i = kb->min_key_code;
6212 (i < kb->max_key_code
6213 && (delete_keycode == 0 || backspace_keycode == 0));
6214 ++i)
6215 {
6216 /* The XKB symbolic key names can be seen most easily in
6217 the PS file generated by `xkbprint -label name
6218 $DISPLAY'. */
6219 if (memcmp ("DELE", kb->names->keys[i].name, 4) == 0)
6220 delete_keycode = i;
6221 else if (memcmp ("BKSP", kb->names->keys[i].name, 4) == 0)
6222 backspace_keycode = i;
6223 }
6224
6225 XkbFreeNames (kb, 0, True);
6226 }
6227
6228 XkbFreeClientMap (kb, 0, True);
6229
6230 if (delete_keycode
6231 && backspace_keycode
6232 && XKeysymToKeycode (dpy, XK_Delete) == delete_keycode
6233 && XKeysymToKeycode (dpy, XK_BackSpace) == backspace_keycode)
6234 have_keys = Qt;
6235 }
6236 unblock_input ();
6237 return have_keys;
6238 #endif
6239 }
6240
6241
6242 \f
6243 /***********************************************************************
6244 Initialization
6245 ***********************************************************************/
6246
6247 /* Keep this list in the same order as frame_parms in frame.c.
6248 Use 0 for unsupported frame parameters. */
6249
6250 frame_parm_handler x_frame_parm_handlers[] =
6251 {
6252 x_set_autoraise,
6253 x_set_autolower,
6254 x_set_background_color,
6255 x_set_border_color,
6256 x_set_border_width,
6257 x_set_cursor_color,
6258 x_set_cursor_type,
6259 x_set_font,
6260 x_set_foreground_color,
6261 x_set_icon_name,
6262 x_set_icon_type,
6263 x_set_internal_border_width,
6264 x_set_menu_bar_lines,
6265 x_set_mouse_color,
6266 x_explicitly_set_name,
6267 x_set_scroll_bar_width,
6268 x_set_title,
6269 x_set_unsplittable,
6270 x_set_vertical_scroll_bars,
6271 x_set_visibility,
6272 x_set_tool_bar_lines,
6273 x_set_scroll_bar_foreground,
6274 x_set_scroll_bar_background,
6275 x_set_screen_gamma,
6276 x_set_line_spacing,
6277 x_set_fringe_width,
6278 x_set_fringe_width,
6279 x_set_wait_for_wm,
6280 x_set_fullscreen,
6281 x_set_font_backend,
6282 x_set_alpha,
6283 x_set_sticky,
6284 x_set_tool_bar_position,
6285 };
6286
6287 void
6288 syms_of_xfns (void)
6289 {
6290 /* The section below is built by the lisp expression at the top of the file,
6291 just above where these variables are declared. */
6292 /*&&& init symbols here &&&*/
6293 DEFSYM (Qsuppress_icon, "suppress-icon");
6294 DEFSYM (Qundefined_color, "undefined-color");
6295 DEFSYM (Qcompound_text, "compound-text");
6296 DEFSYM (Qcancel_timer, "cancel-timer");
6297 DEFSYM (Qgeometry, "geometry");
6298 DEFSYM (Qworkarea, "workarea");
6299 DEFSYM (Qmm_size, "mm-size");
6300 DEFSYM (Qframes, "frames");
6301 DEFSYM (Qsource, "source");
6302 DEFSYM (Qfont_param, "font-parameter");
6303 /* This is the end of symbol initialization. */
6304
6305 Fput (Qundefined_color, Qerror_conditions,
6306 listn (CONSTYPE_PURE, 2, Qundefined_color, Qerror));
6307 Fput (Qundefined_color, Qerror_message,
6308 build_pure_c_string ("Undefined color"));
6309
6310 DEFVAR_LISP ("x-pointer-shape", Vx_pointer_shape,
6311 doc: /* The shape of the pointer when over text.
6312 Changing the value does not affect existing frames
6313 unless you set the mouse color. */);
6314 Vx_pointer_shape = Qnil;
6315
6316 #if 0 /* This doesn't really do anything. */
6317 DEFVAR_LISP ("x-nontext-pointer-shape", Vx_nontext_pointer_shape,
6318 doc: /* The shape of the pointer when not over text.
6319 This variable takes effect when you create a new frame
6320 or when you set the mouse color. */);
6321 #endif
6322 Vx_nontext_pointer_shape = Qnil;
6323
6324 DEFVAR_LISP ("x-hourglass-pointer-shape", Vx_hourglass_pointer_shape,
6325 doc: /* The shape of the pointer when Emacs is busy.
6326 This variable takes effect when you create a new frame
6327 or when you set the mouse color. */);
6328 Vx_hourglass_pointer_shape = Qnil;
6329
6330 #if 0 /* This doesn't really do anything. */
6331 DEFVAR_LISP ("x-mode-pointer-shape", Vx_mode_pointer_shape,
6332 doc: /* The shape of the pointer when over the mode line.
6333 This variable takes effect when you create a new frame
6334 or when you set the mouse color. */);
6335 #endif
6336 Vx_mode_pointer_shape = Qnil;
6337
6338 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
6339 Vx_sensitive_text_pointer_shape,
6340 doc: /* The shape of the pointer when over mouse-sensitive text.
6341 This variable takes effect when you create a new frame
6342 or when you set the mouse color. */);
6343 Vx_sensitive_text_pointer_shape = Qnil;
6344
6345 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
6346 Vx_window_horizontal_drag_shape,
6347 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
6348 This variable takes effect when you create a new frame
6349 or when you set the mouse color. */);
6350 Vx_window_horizontal_drag_shape = Qnil;
6351
6352 DEFVAR_LISP ("x-cursor-fore-pixel", Vx_cursor_fore_pixel,
6353 doc: /* A string indicating the foreground color of the cursor box. */);
6354 Vx_cursor_fore_pixel = Qnil;
6355
6356 DEFVAR_LISP ("x-max-tooltip-size", Vx_max_tooltip_size,
6357 doc: /* Maximum size for tooltips.
6358 Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
6359 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
6360
6361 DEFVAR_LISP ("x-no-window-manager", Vx_no_window_manager,
6362 doc: /* Non-nil if no X window manager is in use.
6363 Emacs doesn't try to figure this out; this is always nil
6364 unless you set it to something else. */);
6365 /* We don't have any way to find this out, so set it to nil
6366 and maybe the user would like to set it to t. */
6367 Vx_no_window_manager = Qnil;
6368
6369 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
6370 Vx_pixel_size_width_font_regexp,
6371 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
6372
6373 Since Emacs gets width of a font matching with this regexp from
6374 PIXEL_SIZE field of the name, font finding mechanism gets faster for
6375 such a font. This is especially effective for such large fonts as
6376 Chinese, Japanese, and Korean. */);
6377 Vx_pixel_size_width_font_regexp = Qnil;
6378
6379 /* This is not ifdef:ed, so other builds than GTK can customize it. */
6380 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", x_gtk_use_old_file_dialog,
6381 doc: /* Non-nil means prompt with the old GTK file selection dialog.
6382 If nil or if the file selection dialog is not available, the new GTK file
6383 chooser is used instead. To turn off all file dialogs set the
6384 variable `use-file-dialog'. */);
6385 x_gtk_use_old_file_dialog = 0;
6386
6387 DEFVAR_BOOL ("x-gtk-show-hidden-files", x_gtk_show_hidden_files,
6388 doc: /* If non-nil, the GTK file chooser will by default show hidden files.
6389 Note that this is just the default, there is a toggle button on the file
6390 chooser to show or not show hidden files on a case by case basis. */);
6391 x_gtk_show_hidden_files = 0;
6392
6393 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", x_gtk_file_dialog_help_text,
6394 doc: /* If non-nil, the GTK file chooser will show additional help text.
6395 If more space for files in the file chooser dialog is wanted, set this to nil
6396 to turn the additional text off. */);
6397 x_gtk_file_dialog_help_text = 1;
6398
6399 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", x_gtk_whole_detached_tool_bar,
6400 doc: /* If non-nil, a detached tool bar is shown in full.
6401 The default is to just show an arrow and pressing on that arrow shows
6402 the tool bar buttons. */);
6403 x_gtk_whole_detached_tool_bar = 0;
6404
6405 DEFVAR_BOOL ("x-gtk-use-system-tooltips", x_gtk_use_system_tooltips,
6406 doc: /* If non-nil with a Gtk+ built Emacs, the Gtk+ tooltip is used.
6407 Otherwise use Emacs own tooltip implementation.
6408 When using Gtk+ tooltips, the tooltip face is not used. */);
6409 x_gtk_use_system_tooltips = 1;
6410
6411 Fprovide (intern_c_string ("x"), Qnil);
6412
6413 #ifdef USE_X_TOOLKIT
6414 Fprovide (intern_c_string ("x-toolkit"), Qnil);
6415 #ifdef USE_MOTIF
6416 Fprovide (intern_c_string ("motif"), Qnil);
6417
6418 DEFVAR_LISP ("motif-version-string", Vmotif_version_string,
6419 doc: /* Version info for LessTif/Motif. */);
6420 Vmotif_version_string = build_string (XmVERSION_STRING);
6421 #endif /* USE_MOTIF */
6422 #endif /* USE_X_TOOLKIT */
6423
6424 #ifdef USE_GTK
6425 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
6426 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
6427 But for a user it is a toolkit for X, and indeed, configure
6428 accepts --with-x-toolkit=gtk. */
6429 Fprovide (intern_c_string ("x-toolkit"), Qnil);
6430 Fprovide (intern_c_string ("gtk"), Qnil);
6431 Fprovide (intern_c_string ("move-toolbar"), Qnil);
6432
6433 DEFVAR_LISP ("gtk-version-string", Vgtk_version_string,
6434 doc: /* Version info for GTK+. */);
6435 {
6436 char gtk_version[sizeof ".." + 3 * INT_STRLEN_BOUND (int)];
6437 int len = sprintf (gtk_version, "%d.%d.%d",
6438 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
6439 Vgtk_version_string = make_pure_string (gtk_version, len, len, 0);
6440 }
6441 #endif /* USE_GTK */
6442
6443 /* X window properties. */
6444 defsubr (&Sx_change_window_property);
6445 defsubr (&Sx_delete_window_property);
6446 defsubr (&Sx_window_property);
6447
6448 defsubr (&Sxw_display_color_p);
6449 defsubr (&Sx_display_grayscale_p);
6450 defsubr (&Sxw_color_defined_p);
6451 defsubr (&Sxw_color_values);
6452 defsubr (&Sx_server_max_request_size);
6453 defsubr (&Sx_server_vendor);
6454 defsubr (&Sx_server_version);
6455 defsubr (&Sx_display_pixel_width);
6456 defsubr (&Sx_display_pixel_height);
6457 defsubr (&Sx_display_mm_width);
6458 defsubr (&Sx_display_mm_height);
6459 defsubr (&Sx_display_screens);
6460 defsubr (&Sx_display_planes);
6461 defsubr (&Sx_display_color_cells);
6462 defsubr (&Sx_display_visual_class);
6463 defsubr (&Sx_display_backing_store);
6464 defsubr (&Sx_display_save_under);
6465 defsubr (&Sx_display_monitor_attributes_list);
6466 defsubr (&Sx_wm_set_size_hint);
6467 defsubr (&Sx_create_frame);
6468 defsubr (&Sx_open_connection);
6469 defsubr (&Sx_close_connection);
6470 defsubr (&Sx_display_list);
6471 defsubr (&Sx_synchronize);
6472 defsubr (&Sx_focus_frame);
6473 defsubr (&Sx_backspace_delete_keys_p);
6474
6475 defsubr (&Sx_show_tip);
6476 defsubr (&Sx_hide_tip);
6477 tip_timer = Qnil;
6478 staticpro (&tip_timer);
6479 tip_frame = Qnil;
6480 staticpro (&tip_frame);
6481
6482 last_show_tip_args = Qnil;
6483 staticpro (&last_show_tip_args);
6484
6485 defsubr (&Sx_uses_old_gtk_dialog);
6486 #if defined (USE_MOTIF) || defined (USE_GTK)
6487 defsubr (&Sx_file_dialog);
6488 #endif
6489
6490 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
6491 defsubr (&Sx_select_font);
6492 #endif
6493 }
6494
6495 #endif /* HAVE_X_WINDOWS */