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