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