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