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