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