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