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