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