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