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