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