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