* ibuffer.el (ibuffer-window-list): Remove.
[emacs.git] / src / xfns.c
blob1b9b629b36638046ec9600c5b645b15704899346
1 /* Functions for the X window system.
2 Copyright (C) 1989, 92, 93, 94, 95, 96, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <math.h>
27 #ifdef HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
31 /* This makes the fields of a Display accessible, in Xlib header files. */
33 #define XLIB_ILLEGAL_ACCESS
35 #include "lisp.h"
36 #include "xterm.h"
37 #include "frame.h"
38 #include "window.h"
39 #include "buffer.h"
40 #include "intervals.h"
41 #include "dispextern.h"
42 #include "keyboard.h"
43 #include "blockinput.h"
44 #include <epaths.h>
45 #include "charset.h"
46 #include "coding.h"
47 #include "fontset.h"
48 #include "systime.h"
49 #include "termhooks.h"
50 #include "atimer.h"
52 #ifdef HAVE_X_WINDOWS
54 #include <ctype.h>
55 #include <sys/types.h>
56 #include <sys/stat.h>
58 #ifndef VMS
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 #else
65 #include "[.bitmaps]gray.xbm"
66 #endif
68 #ifdef USE_GTK
69 #include "gtkutil.h"
70 #endif
72 #ifdef USE_X_TOOLKIT
73 #include <X11/Shell.h>
75 #ifndef USE_MOTIF
76 #include <X11/Xaw/Paned.h>
77 #include <X11/Xaw/Label.h>
78 #endif /* USE_MOTIF */
80 #ifdef USG
81 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
82 #include <X11/Xos.h>
83 #define USG
84 #else
85 #include <X11/Xos.h>
86 #endif
88 #include "widget.h"
90 #include "../lwlib/lwlib.h"
92 #ifdef USE_MOTIF
93 #include <Xm/Xm.h>
94 #include <Xm/DialogS.h>
95 #include <Xm/FileSB.h>
96 #endif
98 /* Do the EDITRES protocol if running X11R5
99 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
101 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
102 #define HACK_EDITRES
103 extern void _XEditResCheckMessages ();
104 #endif /* R5 + Athena */
106 /* Unique id counter for widgets created by the Lucid Widget Library. */
108 extern LWLIB_ID widget_id_tick;
110 #ifdef USE_LUCID
111 /* This is part of a kludge--see lwlib/xlwmenu.c. */
112 extern XFontStruct *xlwmenu_default_font;
113 #endif
115 extern void free_frame_menubar ();
116 extern double atof ();
118 #ifdef USE_MOTIF
120 /* LessTif/Motif version info. */
122 static Lisp_Object Vmotif_version_string;
124 #endif /* USE_MOTIF */
126 #endif /* USE_X_TOOLKIT */
128 #ifdef HAVE_X11R4
129 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
130 #else
131 #define MAXREQUEST(dpy) ((dpy)->max_request_size)
132 #endif
134 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
135 it, and including `bitmaps/gray' more than once is a problem when
136 config.h defines `static' as an empty replacement string. */
138 int gray_bitmap_width = gray_width;
139 int gray_bitmap_height = gray_height;
140 char *gray_bitmap_bits = gray_bits;
142 /* The name we're using in resource queries. Most often "emacs". */
144 Lisp_Object Vx_resource_name;
146 /* The application class we're using in resource queries.
147 Normally "Emacs". */
149 Lisp_Object Vx_resource_class;
151 /* Non-zero means we're allowed to display an hourglass cursor. */
153 int display_hourglass_p;
155 /* The background and shape of the mouse pointer, and shape when not
156 over text or in the modeline. */
158 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
159 Lisp_Object Vx_hourglass_pointer_shape;
161 /* The shape when over mouse-sensitive text. */
163 Lisp_Object Vx_sensitive_text_pointer_shape;
165 /* If non-nil, the pointer shape to indicate that windows can be
166 dragged horizontally. */
168 Lisp_Object Vx_window_horizontal_drag_shape;
170 /* Color of chars displayed in cursor box. */
172 Lisp_Object Vx_cursor_fore_pixel;
174 /* Nonzero if using X. */
176 static int x_in_use;
178 /* Non nil if no window manager is in use. */
180 Lisp_Object Vx_no_window_manager;
182 /* Search path for bitmap files. */
184 Lisp_Object Vx_bitmap_file_path;
186 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
188 Lisp_Object Vx_pixel_size_width_font_regexp;
190 Lisp_Object Qauto_raise;
191 Lisp_Object Qauto_lower;
192 Lisp_Object Qborder_color;
193 Lisp_Object Qborder_width;
194 extern Lisp_Object Qbox;
195 Lisp_Object Qcursor_color;
196 Lisp_Object Qcursor_type;
197 Lisp_Object Qgeometry;
198 Lisp_Object Qicon_left;
199 Lisp_Object Qicon_top;
200 Lisp_Object Qicon_type;
201 Lisp_Object Qicon_name;
202 Lisp_Object Qinternal_border_width;
203 Lisp_Object Qleft;
204 Lisp_Object Qright;
205 Lisp_Object Qmouse_color;
206 Lisp_Object Qnone;
207 Lisp_Object Qouter_window_id;
208 Lisp_Object Qparent_id;
209 Lisp_Object Qscroll_bar_width;
210 Lisp_Object Qsuppress_icon;
211 extern Lisp_Object Qtop;
212 Lisp_Object Qundefined_color;
213 Lisp_Object Qvertical_scroll_bars;
214 Lisp_Object Qvisibility;
215 Lisp_Object Qwindow_id;
216 Lisp_Object Qx_frame_parameter;
217 Lisp_Object Qx_resource_name;
218 Lisp_Object Quser_position;
219 Lisp_Object Quser_size;
220 extern Lisp_Object Qdisplay;
221 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
222 Lisp_Object Qscreen_gamma, Qline_spacing, Qcenter;
223 Lisp_Object Qcompound_text, Qcancel_timer;
224 Lisp_Object Qwait_for_wm;
225 Lisp_Object Qfullscreen;
226 Lisp_Object Qfullwidth;
227 Lisp_Object Qfullheight;
228 Lisp_Object Qfullboth;
230 /* The below are defined in frame.c. */
232 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
233 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
234 extern Lisp_Object Qtool_bar_lines;
236 extern Lisp_Object Vwindow_system_version;
238 Lisp_Object Qface_set_after_frame_default;
240 #if GLYPH_DEBUG
241 int image_cache_refcount, dpyinfo_refcount;
242 #endif
246 /* Error if we are not connected to X. */
248 void
249 check_x ()
251 if (! x_in_use)
252 error ("X windows are not in use or not initialized");
255 /* Nonzero if we can use mouse menus.
256 You should not call this unless HAVE_MENUS is defined. */
259 have_menus_p ()
261 return x_in_use;
264 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
265 and checking validity for X. */
267 FRAME_PTR
268 check_x_frame (frame)
269 Lisp_Object frame;
271 FRAME_PTR f;
273 if (NILP (frame))
274 frame = selected_frame;
275 CHECK_LIVE_FRAME (frame);
276 f = XFRAME (frame);
277 if (! FRAME_X_P (f))
278 error ("Non-X frame used");
279 return f;
282 /* Let the user specify an X display with a frame.
283 nil stands for the selected frame--or, if that is not an X frame,
284 the first X display on the list. */
286 static struct x_display_info *
287 check_x_display_info (frame)
288 Lisp_Object frame;
290 struct x_display_info *dpyinfo = NULL;
292 if (NILP (frame))
294 struct frame *sf = XFRAME (selected_frame);
296 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
297 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
298 else if (x_display_list != 0)
299 dpyinfo = x_display_list;
300 else
301 error ("X windows are not in use or not initialized");
303 else if (STRINGP (frame))
304 dpyinfo = x_display_info_for_name (frame);
305 else
307 FRAME_PTR f = check_x_frame (frame);
308 dpyinfo = FRAME_X_DISPLAY_INFO (f);
311 return dpyinfo;
315 /* Return the Emacs frame-object corresponding to an X window.
316 It could be the frame's main window or an icon window. */
318 /* This function can be called during GC, so use GC_xxx type test macros. */
320 struct frame *
321 x_window_to_frame (dpyinfo, wdesc)
322 struct x_display_info *dpyinfo;
323 int wdesc;
325 Lisp_Object tail, frame;
326 struct frame *f;
328 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
330 frame = XCAR (tail);
331 if (!GC_FRAMEP (frame))
332 continue;
333 f = XFRAME (frame);
334 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
335 continue;
336 if (f->output_data.x->hourglass_window == wdesc)
337 return f;
338 #ifdef USE_X_TOOLKIT
339 if ((f->output_data.x->edit_widget
340 && XtWindow (f->output_data.x->edit_widget) == wdesc)
341 /* A tooltip frame? */
342 || (!f->output_data.x->edit_widget
343 && FRAME_X_WINDOW (f) == wdesc)
344 || f->output_data.x->icon_desc == wdesc)
345 return f;
346 #else /* not USE_X_TOOLKIT */
347 #ifdef USE_GTK
348 if (f->output_data.x->edit_widget)
350 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
351 struct x_output *x = f->output_data.x;
352 if (gwdesc != 0 && gwdesc == x->edit_widget)
353 return f;
355 #endif /* USE_GTK */
356 if (FRAME_X_WINDOW (f) == wdesc
357 || f->output_data.x->icon_desc == wdesc)
358 return f;
359 #endif /* not USE_X_TOOLKIT */
361 return 0;
364 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
365 /* Like x_window_to_frame but also compares the window with the widget's
366 windows. */
368 struct frame *
369 x_any_window_to_frame (dpyinfo, wdesc)
370 struct x_display_info *dpyinfo;
371 int wdesc;
373 Lisp_Object tail, frame;
374 struct frame *f, *found;
375 struct x_output *x;
377 found = NULL;
378 for (tail = Vframe_list; GC_CONSP (tail) && !found; tail = XCDR (tail))
380 frame = XCAR (tail);
381 if (!GC_FRAMEP (frame))
382 continue;
384 f = XFRAME (frame);
385 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
387 /* This frame matches if the window is any of its widgets. */
388 x = f->output_data.x;
389 if (x->hourglass_window == wdesc)
390 found = f;
391 else if (x->widget)
393 #ifdef USE_GTK
394 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
395 if (gwdesc != 0
396 && (gwdesc == x->widget
397 || gwdesc == x->edit_widget
398 || gwdesc == x->vbox_widget
399 || gwdesc == x->menubar_widget))
400 found = f;
401 #else
402 if (wdesc == XtWindow (x->widget)
403 || wdesc == XtWindow (x->column_widget)
404 || wdesc == XtWindow (x->edit_widget))
405 found = f;
406 /* Match if the window is this frame's menubar. */
407 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
408 found = f;
409 #endif
411 else if (FRAME_X_WINDOW (f) == wdesc)
412 /* A tooltip frame. */
413 found = f;
417 return found;
420 /* Likewise, but exclude the menu bar widget. */
422 struct frame *
423 x_non_menubar_window_to_frame (dpyinfo, wdesc)
424 struct x_display_info *dpyinfo;
425 int wdesc;
427 Lisp_Object tail, frame;
428 struct frame *f;
429 struct x_output *x;
431 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
433 frame = XCAR (tail);
434 if (!GC_FRAMEP (frame))
435 continue;
436 f = XFRAME (frame);
437 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
438 continue;
439 x = f->output_data.x;
440 /* This frame matches if the window is any of its widgets. */
441 if (x->hourglass_window == wdesc)
442 return f;
443 else if (x->widget)
445 #ifdef USE_GTK
446 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
447 if (gwdesc != 0
448 && (gwdesc == x->widget
449 || gwdesc == x->edit_widget
450 || gwdesc == x->vbox_widget))
451 return f;
452 #else
453 if (wdesc == XtWindow (x->widget)
454 || wdesc == XtWindow (x->column_widget)
455 || wdesc == XtWindow (x->edit_widget))
456 return f;
457 #endif
459 else if (FRAME_X_WINDOW (f) == wdesc)
460 /* A tooltip frame. */
461 return f;
463 return 0;
466 /* Likewise, but consider only the menu bar widget. */
468 struct frame *
469 x_menubar_window_to_frame (dpyinfo, wdesc)
470 struct x_display_info *dpyinfo;
471 int wdesc;
473 Lisp_Object tail, frame;
474 struct frame *f;
475 struct x_output *x;
477 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
479 frame = XCAR (tail);
480 if (!GC_FRAMEP (frame))
481 continue;
482 f = XFRAME (frame);
483 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
484 continue;
485 x = f->output_data.x;
486 /* Match if the window is this frame's menubar. */
487 #ifdef USE_GTK
488 if (x->menubar_widget)
490 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
491 int found = 0;
493 BLOCK_INPUT;
494 if (gwdesc != 0
495 && (gwdesc == x->menubar_widget
496 || gtk_widget_get_parent (gwdesc) == x->menubar_widget))
497 found = 1;
498 UNBLOCK_INPUT;
499 if (found) return f;
501 #else
502 if (x->menubar_widget
503 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
504 return f;
505 #endif
507 return 0;
510 /* Return the frame whose principal (outermost) window is WDESC.
511 If WDESC is some other (smaller) window, we return 0. */
513 struct frame *
514 x_top_window_to_frame (dpyinfo, wdesc)
515 struct x_display_info *dpyinfo;
516 int wdesc;
518 Lisp_Object tail, frame;
519 struct frame *f;
520 struct x_output *x;
522 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
524 frame = XCAR (tail);
525 if (!GC_FRAMEP (frame))
526 continue;
527 f = XFRAME (frame);
528 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
529 continue;
530 x = f->output_data.x;
532 if (x->widget)
534 /* This frame matches if the window is its topmost widget. */
535 #ifdef USE_GTK
536 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
537 if (gwdesc == x->widget)
538 return f;
539 #else
540 if (wdesc == XtWindow (x->widget))
541 return f;
542 #if 0 /* I don't know why it did this,
543 but it seems logically wrong,
544 and it causes trouble for MapNotify events. */
545 /* Match if the window is this frame's menubar. */
546 if (x->menubar_widget
547 && wdesc == XtWindow (x->menubar_widget))
548 return f;
549 #endif
550 #endif
552 else if (FRAME_X_WINDOW (f) == wdesc)
553 /* Tooltip frame. */
554 return f;
556 return 0;
558 #endif /* USE_X_TOOLKIT || USE_GTK */
562 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
563 id, which is just an int that this section returns. Bitmaps are
564 reference counted so they can be shared among frames.
566 Bitmap indices are guaranteed to be > 0, so a negative number can
567 be used to indicate no bitmap.
569 If you use x_create_bitmap_from_data, then you must keep track of
570 the bitmaps yourself. That is, creating a bitmap from the same
571 data more than once will not be caught. */
574 /* Functions to access the contents of a bitmap, given an id. */
577 x_bitmap_height (f, id)
578 FRAME_PTR f;
579 int id;
581 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].height;
585 x_bitmap_width (f, id)
586 FRAME_PTR f;
587 int id;
589 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].width;
593 x_bitmap_pixmap (f, id)
594 FRAME_PTR f;
595 int id;
597 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
601 /* Allocate a new bitmap record. Returns index of new record. */
603 static int
604 x_allocate_bitmap_record (f)
605 FRAME_PTR f;
607 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
608 int i;
610 if (dpyinfo->bitmaps == NULL)
612 dpyinfo->bitmaps_size = 10;
613 dpyinfo->bitmaps
614 = (struct x_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct x_bitmap_record));
615 dpyinfo->bitmaps_last = 1;
616 return 1;
619 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
620 return ++dpyinfo->bitmaps_last;
622 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
623 if (dpyinfo->bitmaps[i].refcount == 0)
624 return i + 1;
626 dpyinfo->bitmaps_size *= 2;
627 dpyinfo->bitmaps
628 = (struct x_bitmap_record *) xrealloc (dpyinfo->bitmaps,
629 dpyinfo->bitmaps_size * sizeof (struct x_bitmap_record));
630 return ++dpyinfo->bitmaps_last;
633 /* Add one reference to the reference count of the bitmap with id ID. */
635 void
636 x_reference_bitmap (f, id)
637 FRAME_PTR f;
638 int id;
640 ++FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
643 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
646 x_create_bitmap_from_data (f, bits, width, height)
647 struct frame *f;
648 char *bits;
649 unsigned int width, height;
651 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
652 Pixmap bitmap;
653 int id;
655 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
656 bits, width, height);
658 if (! bitmap)
659 return -1;
661 id = x_allocate_bitmap_record (f);
662 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
663 dpyinfo->bitmaps[id - 1].file = NULL;
664 dpyinfo->bitmaps[id - 1].refcount = 1;
665 dpyinfo->bitmaps[id - 1].depth = 1;
666 dpyinfo->bitmaps[id - 1].height = height;
667 dpyinfo->bitmaps[id - 1].width = width;
669 return id;
672 /* Create bitmap from file FILE for frame F. */
675 x_create_bitmap_from_file (f, file)
676 struct frame *f;
677 Lisp_Object file;
679 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
680 unsigned int width, height;
681 Pixmap bitmap;
682 int xhot, yhot, result, id;
683 Lisp_Object found;
684 int fd;
685 char *filename;
687 /* Look for an existing bitmap with the same name. */
688 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
690 if (dpyinfo->bitmaps[id].refcount
691 && dpyinfo->bitmaps[id].file
692 && !strcmp (dpyinfo->bitmaps[id].file, (char *) SDATA (file)))
694 ++dpyinfo->bitmaps[id].refcount;
695 return id + 1;
699 /* Search bitmap-file-path for the file, if appropriate. */
700 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
701 if (fd < 0)
702 return -1;
703 emacs_close (fd);
705 filename = (char *) SDATA (found);
707 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
708 filename, &width, &height, &bitmap, &xhot, &yhot);
709 if (result != BitmapSuccess)
710 return -1;
712 id = x_allocate_bitmap_record (f);
713 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
714 dpyinfo->bitmaps[id - 1].refcount = 1;
715 dpyinfo->bitmaps[id - 1].file
716 = (char *) xmalloc (SBYTES (file) + 1);
717 dpyinfo->bitmaps[id - 1].depth = 1;
718 dpyinfo->bitmaps[id - 1].height = height;
719 dpyinfo->bitmaps[id - 1].width = width;
720 strcpy (dpyinfo->bitmaps[id - 1].file, SDATA (file));
722 return id;
725 /* Remove reference to bitmap with id number ID. */
727 void
728 x_destroy_bitmap (f, id)
729 FRAME_PTR f;
730 int id;
732 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
734 if (id > 0)
736 --dpyinfo->bitmaps[id - 1].refcount;
737 if (dpyinfo->bitmaps[id - 1].refcount == 0)
739 BLOCK_INPUT;
740 XFreePixmap (FRAME_X_DISPLAY (f), dpyinfo->bitmaps[id - 1].pixmap);
741 if (dpyinfo->bitmaps[id - 1].file)
743 xfree (dpyinfo->bitmaps[id - 1].file);
744 dpyinfo->bitmaps[id - 1].file = NULL;
746 UNBLOCK_INPUT;
751 /* Free all the bitmaps for the display specified by DPYINFO. */
753 static void
754 x_destroy_all_bitmaps (dpyinfo)
755 struct x_display_info *dpyinfo;
757 int i;
758 for (i = 0; i < dpyinfo->bitmaps_last; i++)
759 if (dpyinfo->bitmaps[i].refcount > 0)
761 XFreePixmap (dpyinfo->display, dpyinfo->bitmaps[i].pixmap);
762 if (dpyinfo->bitmaps[i].file)
763 xfree (dpyinfo->bitmaps[i].file);
765 dpyinfo->bitmaps_last = 0;
768 /* Connect the frame-parameter names for X frames
769 to the ways of passing the parameter values to the window system.
771 The name of a parameter, as a Lisp symbol,
772 has an `x-frame-parameter' property which is an integer in Lisp
773 that is an index in this table. */
775 struct x_frame_parm_table
777 char *name;
778 void (*setter) P_ ((struct frame *, Lisp_Object, Lisp_Object));
781 static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
782 static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
783 static void x_change_window_heights P_ ((Lisp_Object, int));
784 static void x_disable_image P_ ((struct frame *, struct image *));
785 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
786 static void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
787 static void x_set_wait_for_wm P_ ((struct frame *, Lisp_Object, Lisp_Object));
788 static void x_set_fullscreen P_ ((struct frame *, Lisp_Object, Lisp_Object));
789 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
790 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
791 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
792 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
793 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
794 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
795 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
796 static void x_set_fringe_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
797 void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object));
798 void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
799 void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
800 Lisp_Object));
801 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
802 void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
803 void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
804 void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
805 Lisp_Object));
806 void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
807 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
808 void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
809 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
810 void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
811 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
812 void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object,
813 Lisp_Object));
814 void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object,
815 Lisp_Object));
816 static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *,
817 Lisp_Object,
818 Lisp_Object,
819 char *, char *,
820 int));
821 static void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
822 static void x_edge_detection P_ ((struct frame *, struct image *, Lisp_Object,
823 Lisp_Object));
824 static void init_color_table P_ ((void));
825 static void free_color_table P_ ((void));
826 static unsigned long *colors_in_color_table P_ ((int *n));
827 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
828 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
832 static struct x_frame_parm_table x_frame_parms[] =
834 {"auto-raise", x_set_autoraise},
835 {"auto-lower", x_set_autolower},
836 {"background-color", x_set_background_color},
837 {"border-color", x_set_border_color},
838 {"border-width", x_set_border_width},
839 {"cursor-color", x_set_cursor_color},
840 {"cursor-type", x_set_cursor_type},
841 {"font", x_set_font},
842 {"foreground-color", x_set_foreground_color},
843 {"icon-name", x_set_icon_name},
844 {"icon-type", x_set_icon_type},
845 {"internal-border-width", x_set_internal_border_width},
846 {"menu-bar-lines", x_set_menu_bar_lines},
847 {"mouse-color", x_set_mouse_color},
848 {"name", x_explicitly_set_name},
849 {"scroll-bar-width", x_set_scroll_bar_width},
850 {"title", x_set_title},
851 {"unsplittable", x_set_unsplittable},
852 {"vertical-scroll-bars", x_set_vertical_scroll_bars},
853 {"visibility", x_set_visibility},
854 {"tool-bar-lines", x_set_tool_bar_lines},
855 {"scroll-bar-foreground", x_set_scroll_bar_foreground},
856 {"scroll-bar-background", x_set_scroll_bar_background},
857 {"screen-gamma", x_set_screen_gamma},
858 {"line-spacing", x_set_line_spacing},
859 {"left-fringe", x_set_fringe_width},
860 {"right-fringe", x_set_fringe_width},
861 {"wait-for-wm", x_set_wait_for_wm},
862 {"fullscreen", x_set_fullscreen},
866 /* Attach the `x-frame-parameter' properties to
867 the Lisp symbol names of parameters relevant to X. */
869 void
870 init_x_parm_symbols ()
872 int i;
874 for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++)
875 Fput (intern (x_frame_parms[i].name), Qx_frame_parameter,
876 make_number (i));
880 /* Really try to move where we want to be in case of fullscreen. Some WMs
881 moves the window where we tell them. Some (mwm, twm) moves the outer
882 window manager window there instead.
883 Try to compensate for those WM here. */
884 static void
885 x_fullscreen_move (f, new_top, new_left)
886 struct frame *f;
887 int new_top;
888 int new_left;
890 if (new_top != f->output_data.x->top_pos
891 || new_left != f->output_data.x->left_pos)
893 int move_x = new_left + f->output_data.x->x_pixels_outer_diff;
894 int move_y = new_top + f->output_data.x->y_pixels_outer_diff;
896 f->output_data.x->want_fullscreen |= FULLSCREEN_MOVE_WAIT;
897 x_set_offset (f, move_x, move_y, 1);
901 /* Change the parameters of frame F as specified by ALIST.
902 If a parameter is not specially recognized, do nothing special;
903 otherwise call the `x_set_...' function for that parameter.
904 Except for certain geometry properties, always call store_frame_param
905 to store the new value in the parameter alist. */
907 void
908 x_set_frame_parameters (f, alist)
909 FRAME_PTR f;
910 Lisp_Object alist;
912 Lisp_Object tail;
914 /* If both of these parameters are present, it's more efficient to
915 set them both at once. So we wait until we've looked at the
916 entire list before we set them. */
917 int width, height;
919 /* Same here. */
920 Lisp_Object left, top;
922 /* Same with these. */
923 Lisp_Object icon_left, icon_top;
925 /* Record in these vectors all the parms specified. */
926 Lisp_Object *parms;
927 Lisp_Object *values;
928 int i, p;
929 int left_no_change = 0, top_no_change = 0;
930 int icon_left_no_change = 0, icon_top_no_change = 0;
931 int fullscreen_is_being_set = 0;
933 struct gcpro gcpro1, gcpro2;
935 i = 0;
936 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
937 i++;
939 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
940 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
942 /* Extract parm names and values into those vectors. */
944 i = 0;
945 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
947 Lisp_Object elt;
949 elt = Fcar (tail);
950 parms[i] = Fcar (elt);
951 values[i] = Fcdr (elt);
952 i++;
954 /* TAIL and ALIST are not used again below here. */
955 alist = tail = Qnil;
957 GCPRO2 (*parms, *values);
958 gcpro1.nvars = i;
959 gcpro2.nvars = i;
961 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
962 because their values appear in VALUES and strings are not valid. */
963 top = left = Qunbound;
964 icon_left = icon_top = Qunbound;
966 /* Provide default values for HEIGHT and WIDTH. */
967 if (FRAME_NEW_WIDTH (f))
968 width = FRAME_NEW_WIDTH (f);
969 else
970 width = FRAME_WIDTH (f);
972 if (FRAME_NEW_HEIGHT (f))
973 height = FRAME_NEW_HEIGHT (f);
974 else
975 height = FRAME_HEIGHT (f);
977 /* Process foreground_color and background_color before anything else.
978 They are independent of other properties, but other properties (e.g.,
979 cursor_color) are dependent upon them. */
980 /* Process default font as well, since fringe widths depends on it. */
981 /* Also, process fullscreen, width and height depend upon that */
982 for (p = 0; p < i; p++)
984 Lisp_Object prop, val;
986 prop = parms[p];
987 val = values[p];
988 if (EQ (prop, Qforeground_color)
989 || EQ (prop, Qbackground_color)
990 || EQ (prop, Qfont)
991 || EQ (prop, Qfullscreen))
993 register Lisp_Object param_index, old_value;
995 old_value = get_frame_param (f, prop);
996 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
998 if (NILP (Fequal (val, old_value)))
1000 store_frame_param (f, prop, val);
1002 param_index = Fget (prop, Qx_frame_parameter);
1003 if (NATNUMP (param_index)
1004 && (XFASTINT (param_index)
1005 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
1006 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
1011 /* Now process them in reverse of specified order. */
1012 for (i--; i >= 0; i--)
1014 Lisp_Object prop, val;
1016 prop = parms[i];
1017 val = values[i];
1019 if (EQ (prop, Qwidth) && NUMBERP (val))
1020 width = XFASTINT (val);
1021 else if (EQ (prop, Qheight) && NUMBERP (val))
1022 height = XFASTINT (val);
1023 else if (EQ (prop, Qtop))
1024 top = val;
1025 else if (EQ (prop, Qleft))
1026 left = val;
1027 else if (EQ (prop, Qicon_top))
1028 icon_top = val;
1029 else if (EQ (prop, Qicon_left))
1030 icon_left = val;
1031 else if (EQ (prop, Qforeground_color)
1032 || EQ (prop, Qbackground_color)
1033 || EQ (prop, Qfont)
1034 || EQ (prop, Qfullscreen))
1035 /* Processed above. */
1036 continue;
1037 else
1039 register Lisp_Object param_index, old_value;
1041 old_value = get_frame_param (f, prop);
1043 store_frame_param (f, prop, val);
1045 param_index = Fget (prop, Qx_frame_parameter);
1046 if (NATNUMP (param_index)
1047 && (XFASTINT (param_index)
1048 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
1049 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
1053 /* Don't die if just one of these was set. */
1054 if (EQ (left, Qunbound))
1056 left_no_change = 1;
1057 if (f->output_data.x->left_pos < 0)
1058 left = Fcons (Qplus, Fcons (make_number (f->output_data.x->left_pos), Qnil));
1059 else
1060 XSETINT (left, f->output_data.x->left_pos);
1062 if (EQ (top, Qunbound))
1064 top_no_change = 1;
1065 if (f->output_data.x->top_pos < 0)
1066 top = Fcons (Qplus, Fcons (make_number (f->output_data.x->top_pos), Qnil));
1067 else
1068 XSETINT (top, f->output_data.x->top_pos);
1071 /* If one of the icon positions was not set, preserve or default it. */
1072 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
1074 icon_left_no_change = 1;
1075 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
1076 if (NILP (icon_left))
1077 XSETINT (icon_left, 0);
1079 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
1081 icon_top_no_change = 1;
1082 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
1083 if (NILP (icon_top))
1084 XSETINT (icon_top, 0);
1087 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
1089 /* If the frame is visible already and the fullscreen parameter is
1090 being set, it is too late to set WM manager hints to specify
1091 size and position.
1092 Here we first get the width, height and position that applies to
1093 fullscreen. We then move the frame to the appropriate
1094 position. Resize of the frame is taken care of in the code after
1095 this if-statement. */
1096 int new_left, new_top;
1098 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
1099 x_fullscreen_move (f, new_top, new_left);
1102 /* Don't set these parameters unless they've been explicitly
1103 specified. The window might be mapped or resized while we're in
1104 this function, and we don't want to override that unless the lisp
1105 code has asked for it.
1107 Don't set these parameters unless they actually differ from the
1108 window's current parameters; the window may not actually exist
1109 yet. */
1111 Lisp_Object frame;
1113 check_frame_size (f, &height, &width);
1115 XSETFRAME (frame, f);
1117 if (width != FRAME_WIDTH (f)
1118 || height != FRAME_HEIGHT (f)
1119 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
1120 Fset_frame_size (frame, make_number (width), make_number (height));
1122 if ((!NILP (left) || !NILP (top))
1123 && ! (left_no_change && top_no_change)
1124 && ! (NUMBERP (left) && XINT (left) == f->output_data.x->left_pos
1125 && NUMBERP (top) && XINT (top) == f->output_data.x->top_pos))
1127 int leftpos = 0;
1128 int toppos = 0;
1130 /* Record the signs. */
1131 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
1132 if (EQ (left, Qminus))
1133 f->output_data.x->size_hint_flags |= XNegative;
1134 else if (INTEGERP (left))
1136 leftpos = XINT (left);
1137 if (leftpos < 0)
1138 f->output_data.x->size_hint_flags |= XNegative;
1140 else if (CONSP (left) && EQ (XCAR (left), Qminus)
1141 && CONSP (XCDR (left))
1142 && INTEGERP (XCAR (XCDR (left))))
1144 leftpos = - XINT (XCAR (XCDR (left)));
1145 f->output_data.x->size_hint_flags |= XNegative;
1147 else if (CONSP (left) && EQ (XCAR (left), Qplus)
1148 && CONSP (XCDR (left))
1149 && INTEGERP (XCAR (XCDR (left))))
1151 leftpos = XINT (XCAR (XCDR (left)));
1154 if (EQ (top, Qminus))
1155 f->output_data.x->size_hint_flags |= YNegative;
1156 else if (INTEGERP (top))
1158 toppos = XINT (top);
1159 if (toppos < 0)
1160 f->output_data.x->size_hint_flags |= YNegative;
1162 else if (CONSP (top) && EQ (XCAR (top), Qminus)
1163 && CONSP (XCDR (top))
1164 && INTEGERP (XCAR (XCDR (top))))
1166 toppos = - XINT (XCAR (XCDR (top)));
1167 f->output_data.x->size_hint_flags |= YNegative;
1169 else if (CONSP (top) && EQ (XCAR (top), Qplus)
1170 && CONSP (XCDR (top))
1171 && INTEGERP (XCAR (XCDR (top))))
1173 toppos = XINT (XCAR (XCDR (top)));
1177 /* Store the numeric value of the position. */
1178 f->output_data.x->top_pos = toppos;
1179 f->output_data.x->left_pos = leftpos;
1181 f->output_data.x->win_gravity = NorthWestGravity;
1183 /* Actually set that position, and convert to absolute. */
1184 x_set_offset (f, leftpos, toppos, -1);
1187 if ((!NILP (icon_left) || !NILP (icon_top))
1188 && ! (icon_left_no_change && icon_top_no_change))
1189 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
1192 UNGCPRO;
1195 /* Store the screen positions of frame F into XPTR and YPTR.
1196 These are the positions of the containing window manager window,
1197 not Emacs's own window. */
1199 void
1200 x_real_positions (f, xptr, yptr)
1201 FRAME_PTR f;
1202 int *xptr, *yptr;
1204 int win_x, win_y, outer_x, outer_y;
1205 int real_x = 0, real_y = 0;
1206 int had_errors = 0;
1207 Window win = f->output_data.x->parent_desc;
1209 int count;
1211 BLOCK_INPUT;
1213 count = x_catch_errors (FRAME_X_DISPLAY (f));
1215 if (win == FRAME_X_DISPLAY_INFO (f)->root_window)
1216 win = FRAME_OUTER_WINDOW (f);
1218 /* This loop traverses up the containment tree until we hit the root
1219 window. Window managers may intersect many windows between our window
1220 and the root window. The window we find just before the root window
1221 should be the outer WM window. */
1222 for (;;)
1224 Window wm_window, rootw;
1225 Window *tmp_children;
1226 unsigned int tmp_nchildren;
1227 int success;
1229 success = XQueryTree (FRAME_X_DISPLAY (f), win, &rootw,
1230 &wm_window, &tmp_children, &tmp_nchildren);
1232 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
1234 /* Don't free tmp_children if XQueryTree failed. */
1235 if (! success)
1236 break;
1238 XFree ((char *) tmp_children);
1240 if (wm_window == rootw || had_errors)
1241 break;
1243 win = wm_window;
1246 if (! had_errors)
1248 int ign;
1249 Window child, rootw;
1251 /* Get the real coordinates for the WM window upper left corner */
1252 XGetGeometry (FRAME_X_DISPLAY (f), win,
1253 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
1255 /* Translate real coordinates to coordinates relative to our
1256 window. For our window, the upper left corner is 0, 0.
1257 Since the upper left corner of the WM window is outside
1258 our window, win_x and win_y will be negative:
1260 ------------------ ---> x
1261 | title |
1262 | ----------------- v y
1263 | | our window
1265 XTranslateCoordinates (FRAME_X_DISPLAY (f),
1267 /* From-window, to-window. */
1268 FRAME_X_DISPLAY_INFO (f)->root_window,
1269 FRAME_X_WINDOW (f),
1271 /* From-position, to-position. */
1272 real_x, real_y, &win_x, &win_y,
1274 /* Child of win. */
1275 &child);
1277 if (FRAME_X_WINDOW (f) == FRAME_OUTER_WINDOW (f))
1279 outer_x = win_x;
1280 outer_y = win_y;
1282 else
1284 XTranslateCoordinates (FRAME_X_DISPLAY (f),
1286 /* From-window, to-window. */
1287 FRAME_X_DISPLAY_INFO (f)->root_window,
1288 FRAME_OUTER_WINDOW (f),
1290 /* From-position, to-position. */
1291 real_x, real_y, &outer_x, &outer_y,
1293 /* Child of win. */
1294 &child);
1297 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
1300 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
1302 UNBLOCK_INPUT;
1304 if (had_errors) return;
1306 f->output_data.x->x_pixels_diff = -win_x;
1307 f->output_data.x->y_pixels_diff = -win_y;
1308 f->output_data.x->x_pixels_outer_diff = -outer_x;
1309 f->output_data.x->y_pixels_outer_diff = -outer_y;
1311 *xptr = real_x;
1312 *yptr = real_y;
1315 /* Insert a description of internally-recorded parameters of frame X
1316 into the parameter alist *ALISTPTR that is to be given to the user.
1317 Only parameters that are specific to the X window system
1318 and whose values are not correctly recorded in the frame's
1319 param_alist need to be considered here. */
1321 void
1322 x_report_frame_params (f, alistptr)
1323 struct frame *f;
1324 Lisp_Object *alistptr;
1326 char buf[16];
1327 Lisp_Object tem;
1329 /* Represent negative positions (off the top or left screen edge)
1330 in a way that Fmodify_frame_parameters will understand correctly. */
1331 XSETINT (tem, f->output_data.x->left_pos);
1332 if (f->output_data.x->left_pos >= 0)
1333 store_in_alist (alistptr, Qleft, tem);
1334 else
1335 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
1337 XSETINT (tem, f->output_data.x->top_pos);
1338 if (f->output_data.x->top_pos >= 0)
1339 store_in_alist (alistptr, Qtop, tem);
1340 else
1341 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
1343 store_in_alist (alistptr, Qborder_width,
1344 make_number (f->output_data.x->border_width));
1345 store_in_alist (alistptr, Qinternal_border_width,
1346 make_number (f->output_data.x->internal_border_width));
1347 store_in_alist (alistptr, Qleft_fringe,
1348 make_number (f->output_data.x->left_fringe_width));
1349 store_in_alist (alistptr, Qright_fringe,
1350 make_number (f->output_data.x->right_fringe_width));
1351 store_in_alist (alistptr, Qscroll_bar_width,
1352 (! FRAME_HAS_VERTICAL_SCROLL_BARS (f)
1353 ? make_number (0)
1354 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
1355 ? make_number (FRAME_SCROLL_BAR_PIXEL_WIDTH (f))
1356 /* nil means "use default width"
1357 for non-toolkit scroll bar.
1358 ruler-mode.el depends on this. */
1359 : Qnil));
1360 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
1361 store_in_alist (alistptr, Qwindow_id,
1362 build_string (buf));
1363 #ifdef USE_X_TOOLKIT
1364 /* Tooltip frame may not have this widget. */
1365 if (f->output_data.x->widget)
1366 #endif
1367 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
1368 store_in_alist (alistptr, Qouter_window_id,
1369 build_string (buf));
1370 store_in_alist (alistptr, Qicon_name, f->icon_name);
1371 FRAME_SAMPLE_VISIBILITY (f);
1372 store_in_alist (alistptr, Qvisibility,
1373 (FRAME_VISIBLE_P (f) ? Qt
1374 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
1375 store_in_alist (alistptr, Qdisplay,
1376 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
1378 if (f->output_data.x->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
1379 tem = Qnil;
1380 else
1381 XSETFASTINT (tem, f->output_data.x->parent_desc);
1382 store_in_alist (alistptr, Qparent_id, tem);
1387 /* Gamma-correct COLOR on frame F. */
1389 void
1390 gamma_correct (f, color)
1391 struct frame *f;
1392 XColor *color;
1394 if (f->gamma)
1396 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
1397 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
1398 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
1403 /* Decide if color named COLOR_NAME is valid for use on frame F. If
1404 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
1405 allocate the color. Value is zero if COLOR_NAME is invalid, or
1406 no color could be allocated. */
1409 x_defined_color (f, color_name, color, alloc_p)
1410 struct frame *f;
1411 char *color_name;
1412 XColor *color;
1413 int alloc_p;
1415 int success_p;
1416 Display *dpy = FRAME_X_DISPLAY (f);
1417 Colormap cmap = FRAME_X_COLORMAP (f);
1419 BLOCK_INPUT;
1420 success_p = XParseColor (dpy, cmap, color_name, color);
1421 if (success_p && alloc_p)
1422 success_p = x_alloc_nearest_color (f, cmap, color);
1423 UNBLOCK_INPUT;
1425 return success_p;
1429 /* Return the pixel color value for color COLOR_NAME on frame F. If F
1430 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
1431 Signal an error if color can't be allocated. */
1434 x_decode_color (f, color_name, mono_color)
1435 FRAME_PTR f;
1436 Lisp_Object color_name;
1437 int mono_color;
1439 XColor cdef;
1441 CHECK_STRING (color_name);
1443 #if 0 /* Don't do this. It's wrong when we're not using the default
1444 colormap, it makes freeing difficult, and it's probably not
1445 an important optimization. */
1446 if (strcmp (SDATA (color_name), "black") == 0)
1447 return BLACK_PIX_DEFAULT (f);
1448 else if (strcmp (SDATA (color_name), "white") == 0)
1449 return WHITE_PIX_DEFAULT (f);
1450 #endif
1452 /* Return MONO_COLOR for monochrome frames. */
1453 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
1454 return mono_color;
1456 /* x_defined_color is responsible for coping with failures
1457 by looking for a near-miss. */
1458 if (x_defined_color (f, SDATA (color_name), &cdef, 1))
1459 return cdef.pixel;
1461 Fsignal (Qerror, Fcons (build_string ("Undefined color"),
1462 Fcons (color_name, Qnil)));
1463 return 0;
1468 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
1469 the previous value of that parameter, NEW_VALUE is the new value. */
1471 static void
1472 x_set_line_spacing (f, new_value, old_value)
1473 struct frame *f;
1474 Lisp_Object new_value, old_value;
1476 if (NILP (new_value))
1477 f->extra_line_spacing = 0;
1478 else if (NATNUMP (new_value))
1479 f->extra_line_spacing = XFASTINT (new_value);
1480 else
1481 Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
1482 Fcons (new_value, Qnil)));
1483 if (FRAME_VISIBLE_P (f))
1484 redraw_frame (f);
1488 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
1489 the previous value of that parameter, NEW_VALUE is the new value.
1490 See also the comment of wait_for_wm in struct x_output. */
1492 static void
1493 x_set_wait_for_wm (f, new_value, old_value)
1494 struct frame *f;
1495 Lisp_Object new_value, old_value;
1497 f->output_data.x->wait_for_wm = !NILP (new_value);
1501 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
1502 the previous value of that parameter, NEW_VALUE is the new value. */
1504 static void
1505 x_set_fullscreen (f, new_value, old_value)
1506 struct frame *f;
1507 Lisp_Object new_value, old_value;
1509 if (NILP (new_value))
1510 f->output_data.x->want_fullscreen = FULLSCREEN_NONE;
1511 else if (EQ (new_value, Qfullboth))
1512 f->output_data.x->want_fullscreen = FULLSCREEN_BOTH;
1513 else if (EQ (new_value, Qfullwidth))
1514 f->output_data.x->want_fullscreen = FULLSCREEN_WIDTH;
1515 else if (EQ (new_value, Qfullheight))
1516 f->output_data.x->want_fullscreen = FULLSCREEN_HEIGHT;
1520 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
1521 the previous value of that parameter, NEW_VALUE is the new
1522 value. */
1524 static void
1525 x_set_screen_gamma (f, new_value, old_value)
1526 struct frame *f;
1527 Lisp_Object new_value, old_value;
1529 if (NILP (new_value))
1530 f->gamma = 0;
1531 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
1532 /* The value 0.4545 is the normal viewing gamma. */
1533 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
1534 else
1535 Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
1536 Fcons (new_value, Qnil)));
1538 clear_face_cache (0);
1542 /* Functions called only from `x_set_frame_param'
1543 to set individual parameters.
1545 If FRAME_X_WINDOW (f) is 0,
1546 the frame is being created and its X-window does not exist yet.
1547 In that case, just record the parameter's new value
1548 in the standard place; do not attempt to change the window. */
1550 void
1551 x_set_foreground_color (f, arg, oldval)
1552 struct frame *f;
1553 Lisp_Object arg, oldval;
1555 struct x_output *x = f->output_data.x;
1556 unsigned long fg, old_fg;
1558 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1559 old_fg = x->foreground_pixel;
1560 x->foreground_pixel = fg;
1562 if (FRAME_X_WINDOW (f) != 0)
1564 Display *dpy = FRAME_X_DISPLAY (f);
1566 BLOCK_INPUT;
1567 XSetForeground (dpy, x->normal_gc, fg);
1568 XSetBackground (dpy, x->reverse_gc, fg);
1570 if (x->cursor_pixel == old_fg)
1572 unload_color (f, x->cursor_pixel);
1573 x->cursor_pixel = x_copy_color (f, fg);
1574 XSetBackground (dpy, x->cursor_gc, x->cursor_pixel);
1577 UNBLOCK_INPUT;
1579 update_face_from_frame_parameter (f, Qforeground_color, arg);
1581 if (FRAME_VISIBLE_P (f))
1582 redraw_frame (f);
1585 unload_color (f, old_fg);
1588 void
1589 x_set_background_color (f, arg, oldval)
1590 struct frame *f;
1591 Lisp_Object arg, oldval;
1593 struct x_output *x = f->output_data.x;
1594 unsigned long bg;
1596 bg = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
1597 unload_color (f, x->background_pixel);
1598 x->background_pixel = bg;
1600 if (FRAME_X_WINDOW (f) != 0)
1602 Display *dpy = FRAME_X_DISPLAY (f);
1604 BLOCK_INPUT;
1605 XSetBackground (dpy, x->normal_gc, bg);
1606 XSetForeground (dpy, x->reverse_gc, bg);
1607 XSetWindowBackground (dpy, FRAME_X_WINDOW (f), bg);
1608 XSetForeground (dpy, x->cursor_gc, bg);
1610 #ifdef USE_GTK
1611 xg_set_background_color (f, bg);
1612 #endif
1614 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
1615 toolkit scroll bars. */
1617 Lisp_Object bar;
1618 for (bar = FRAME_SCROLL_BARS (f);
1619 !NILP (bar);
1620 bar = XSCROLL_BAR (bar)->next)
1622 Window window = SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar));
1623 XSetWindowBackground (dpy, window, bg);
1626 #endif /* USE_TOOLKIT_SCROLL_BARS */
1628 UNBLOCK_INPUT;
1629 update_face_from_frame_parameter (f, Qbackground_color, arg);
1631 if (FRAME_VISIBLE_P (f))
1632 redraw_frame (f);
1636 void
1637 x_set_mouse_color (f, arg, oldval)
1638 struct frame *f;
1639 Lisp_Object arg, oldval;
1641 struct x_output *x = f->output_data.x;
1642 Display *dpy = FRAME_X_DISPLAY (f);
1643 Cursor cursor, nontext_cursor, mode_cursor, cross_cursor;
1644 Cursor hourglass_cursor, horizontal_drag_cursor;
1645 int count;
1646 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1647 unsigned long mask_color = x->background_pixel;
1649 /* Don't let pointers be invisible. */
1650 if (mask_color == pixel)
1652 x_free_colors (f, &pixel, 1);
1653 pixel = x_copy_color (f, x->foreground_pixel);
1656 unload_color (f, x->mouse_pixel);
1657 x->mouse_pixel = pixel;
1659 BLOCK_INPUT;
1661 /* It's not okay to crash if the user selects a screwy cursor. */
1662 count = x_catch_errors (dpy);
1664 if (!NILP (Vx_pointer_shape))
1666 CHECK_NUMBER (Vx_pointer_shape);
1667 cursor = XCreateFontCursor (dpy, XINT (Vx_pointer_shape));
1669 else
1670 cursor = XCreateFontCursor (dpy, XC_xterm);
1671 x_check_errors (dpy, "bad text pointer cursor: %s");
1673 if (!NILP (Vx_nontext_pointer_shape))
1675 CHECK_NUMBER (Vx_nontext_pointer_shape);
1676 nontext_cursor
1677 = XCreateFontCursor (dpy, XINT (Vx_nontext_pointer_shape));
1679 else
1680 nontext_cursor = XCreateFontCursor (dpy, XC_left_ptr);
1681 x_check_errors (dpy, "bad nontext pointer cursor: %s");
1683 if (!NILP (Vx_hourglass_pointer_shape))
1685 CHECK_NUMBER (Vx_hourglass_pointer_shape);
1686 hourglass_cursor
1687 = XCreateFontCursor (dpy, XINT (Vx_hourglass_pointer_shape));
1689 else
1690 hourglass_cursor = XCreateFontCursor (dpy, XC_watch);
1691 x_check_errors (dpy, "bad hourglass pointer cursor: %s");
1693 x_check_errors (dpy, "bad nontext pointer cursor: %s");
1694 if (!NILP (Vx_mode_pointer_shape))
1696 CHECK_NUMBER (Vx_mode_pointer_shape);
1697 mode_cursor = XCreateFontCursor (dpy, XINT (Vx_mode_pointer_shape));
1699 else
1700 mode_cursor = XCreateFontCursor (dpy, XC_xterm);
1701 x_check_errors (dpy, "bad modeline pointer cursor: %s");
1703 if (!NILP (Vx_sensitive_text_pointer_shape))
1705 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
1706 cross_cursor
1707 = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape));
1709 else
1710 cross_cursor = XCreateFontCursor (dpy, XC_hand2);
1712 if (!NILP (Vx_window_horizontal_drag_shape))
1714 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
1715 horizontal_drag_cursor
1716 = XCreateFontCursor (dpy, XINT (Vx_window_horizontal_drag_shape));
1718 else
1719 horizontal_drag_cursor
1720 = XCreateFontCursor (dpy, XC_sb_h_double_arrow);
1722 /* Check and report errors with the above calls. */
1723 x_check_errors (dpy, "can't set cursor shape: %s");
1724 x_uncatch_errors (dpy, count);
1727 XColor fore_color, back_color;
1729 fore_color.pixel = x->mouse_pixel;
1730 x_query_color (f, &fore_color);
1731 back_color.pixel = mask_color;
1732 x_query_color (f, &back_color);
1734 XRecolorCursor (dpy, cursor, &fore_color, &back_color);
1735 XRecolorCursor (dpy, nontext_cursor, &fore_color, &back_color);
1736 XRecolorCursor (dpy, mode_cursor, &fore_color, &back_color);
1737 XRecolorCursor (dpy, cross_cursor, &fore_color, &back_color);
1738 XRecolorCursor (dpy, hourglass_cursor, &fore_color, &back_color);
1739 XRecolorCursor (dpy, horizontal_drag_cursor, &fore_color, &back_color);
1742 if (FRAME_X_WINDOW (f) != 0)
1743 XDefineCursor (dpy, FRAME_X_WINDOW (f), cursor);
1745 if (cursor != x->text_cursor
1746 && x->text_cursor != 0)
1747 XFreeCursor (dpy, x->text_cursor);
1748 x->text_cursor = cursor;
1750 if (nontext_cursor != x->nontext_cursor
1751 && x->nontext_cursor != 0)
1752 XFreeCursor (dpy, x->nontext_cursor);
1753 x->nontext_cursor = nontext_cursor;
1755 if (hourglass_cursor != x->hourglass_cursor
1756 && x->hourglass_cursor != 0)
1757 XFreeCursor (dpy, x->hourglass_cursor);
1758 x->hourglass_cursor = hourglass_cursor;
1760 if (mode_cursor != x->modeline_cursor
1761 && x->modeline_cursor != 0)
1762 XFreeCursor (dpy, f->output_data.x->modeline_cursor);
1763 x->modeline_cursor = mode_cursor;
1765 if (cross_cursor != x->cross_cursor
1766 && x->cross_cursor != 0)
1767 XFreeCursor (dpy, x->cross_cursor);
1768 x->cross_cursor = cross_cursor;
1770 if (horizontal_drag_cursor != x->horizontal_drag_cursor
1771 && x->horizontal_drag_cursor != 0)
1772 XFreeCursor (dpy, x->horizontal_drag_cursor);
1773 x->horizontal_drag_cursor = horizontal_drag_cursor;
1775 XFlush (dpy);
1776 UNBLOCK_INPUT;
1778 update_face_from_frame_parameter (f, Qmouse_color, arg);
1781 void
1782 x_set_cursor_color (f, arg, oldval)
1783 struct frame *f;
1784 Lisp_Object arg, oldval;
1786 unsigned long fore_pixel, pixel;
1787 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
1788 struct x_output *x = f->output_data.x;
1790 if (!NILP (Vx_cursor_fore_pixel))
1792 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1793 WHITE_PIX_DEFAULT (f));
1794 fore_pixel_allocated_p = 1;
1796 else
1797 fore_pixel = x->background_pixel;
1799 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1800 pixel_allocated_p = 1;
1802 /* Make sure that the cursor color differs from the background color. */
1803 if (pixel == x->background_pixel)
1805 if (pixel_allocated_p)
1807 x_free_colors (f, &pixel, 1);
1808 pixel_allocated_p = 0;
1811 pixel = x->mouse_pixel;
1812 if (pixel == fore_pixel)
1814 if (fore_pixel_allocated_p)
1816 x_free_colors (f, &fore_pixel, 1);
1817 fore_pixel_allocated_p = 0;
1819 fore_pixel = x->background_pixel;
1823 unload_color (f, x->cursor_foreground_pixel);
1824 if (!fore_pixel_allocated_p)
1825 fore_pixel = x_copy_color (f, fore_pixel);
1826 x->cursor_foreground_pixel = fore_pixel;
1828 unload_color (f, x->cursor_pixel);
1829 if (!pixel_allocated_p)
1830 pixel = x_copy_color (f, pixel);
1831 x->cursor_pixel = pixel;
1833 if (FRAME_X_WINDOW (f) != 0)
1835 BLOCK_INPUT;
1836 XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel);
1837 XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel);
1838 UNBLOCK_INPUT;
1840 if (FRAME_VISIBLE_P (f))
1842 x_update_cursor (f, 0);
1843 x_update_cursor (f, 1);
1847 update_face_from_frame_parameter (f, Qcursor_color, arg);
1850 /* Set the border-color of frame F to value described by ARG.
1851 ARG can be a string naming a color.
1852 The border-color is used for the border that is drawn by the X server.
1853 Note that this does not fully take effect if done before
1854 F has an x-window; it must be redone when the window is created.
1856 Note: this is done in two routines because of the way X10 works.
1858 Note: under X11, this is normally the province of the window manager,
1859 and so emacs' border colors may be overridden. */
1861 void
1862 x_set_border_color (f, arg, oldval)
1863 struct frame *f;
1864 Lisp_Object arg, oldval;
1866 int pix;
1868 CHECK_STRING (arg);
1869 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1870 x_set_border_pixel (f, pix);
1871 update_face_from_frame_parameter (f, Qborder_color, arg);
1874 /* Set the border-color of frame F to pixel value PIX.
1875 Note that this does not fully take effect if done before
1876 F has an x-window. */
1878 void
1879 x_set_border_pixel (f, pix)
1880 struct frame *f;
1881 int pix;
1883 unload_color (f, f->output_data.x->border_pixel);
1884 f->output_data.x->border_pixel = pix;
1886 if (FRAME_X_WINDOW (f) != 0 && f->output_data.x->border_width > 0)
1888 BLOCK_INPUT;
1889 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1890 (unsigned long)pix);
1891 UNBLOCK_INPUT;
1893 if (FRAME_VISIBLE_P (f))
1894 redraw_frame (f);
1900 void
1901 x_set_cursor_type (f, arg, oldval)
1902 FRAME_PTR f;
1903 Lisp_Object arg, oldval;
1905 set_frame_cursor_types (f, arg);
1907 /* Make sure the cursor gets redrawn. */
1908 cursor_type_changed = 1;
1911 void
1912 x_set_icon_type (f, arg, oldval)
1913 struct frame *f;
1914 Lisp_Object arg, oldval;
1916 int result;
1918 if (STRINGP (arg))
1920 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1921 return;
1923 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1924 return;
1926 BLOCK_INPUT;
1927 if (NILP (arg))
1928 result = x_text_icon (f,
1929 (char *) SDATA ((!NILP (f->icon_name)
1930 ? f->icon_name
1931 : f->name)));
1932 else
1933 result = x_bitmap_icon (f, arg);
1935 if (result)
1937 UNBLOCK_INPUT;
1938 error ("No icon window available");
1941 XFlush (FRAME_X_DISPLAY (f));
1942 UNBLOCK_INPUT;
1945 /* Return non-nil if frame F wants a bitmap icon. */
1947 Lisp_Object
1948 x_icon_type (f)
1949 FRAME_PTR f;
1951 Lisp_Object tem;
1953 tem = assq_no_quit (Qicon_type, f->param_alist);
1954 if (CONSP (tem))
1955 return XCDR (tem);
1956 else
1957 return Qnil;
1960 void
1961 x_set_icon_name (f, arg, oldval)
1962 struct frame *f;
1963 Lisp_Object arg, oldval;
1965 int result;
1967 if (STRINGP (arg))
1969 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1970 return;
1972 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1973 return;
1975 f->icon_name = arg;
1977 if (f->output_data.x->icon_bitmap != 0)
1978 return;
1980 BLOCK_INPUT;
1982 result = x_text_icon (f,
1983 (char *) SDATA ((!NILP (f->icon_name)
1984 ? f->icon_name
1985 : !NILP (f->title)
1986 ? f->title
1987 : f->name)));
1989 if (result)
1991 UNBLOCK_INPUT;
1992 error ("No icon window available");
1995 XFlush (FRAME_X_DISPLAY (f));
1996 UNBLOCK_INPUT;
1999 void
2000 x_set_font (f, arg, oldval)
2001 struct frame *f;
2002 Lisp_Object arg, oldval;
2004 Lisp_Object result;
2005 Lisp_Object fontset_name;
2006 Lisp_Object frame;
2007 int old_fontset = f->output_data.x->fontset;
2009 CHECK_STRING (arg);
2011 fontset_name = Fquery_fontset (arg, Qnil);
2013 BLOCK_INPUT;
2014 result = (STRINGP (fontset_name)
2015 ? x_new_fontset (f, SDATA (fontset_name))
2016 : x_new_font (f, SDATA (arg)));
2017 UNBLOCK_INPUT;
2019 if (EQ (result, Qnil))
2020 error ("Font `%s' is not defined", SDATA (arg));
2021 else if (EQ (result, Qt))
2022 error ("The characters of the given font have varying widths");
2023 else if (STRINGP (result))
2025 if (STRINGP (fontset_name))
2027 /* Fontset names are built from ASCII font names, so the
2028 names may be equal despite there was a change. */
2029 if (old_fontset == f->output_data.x->fontset)
2030 return;
2032 else if (!NILP (Fequal (result, oldval)))
2033 return;
2035 store_frame_param (f, Qfont, result);
2036 recompute_basic_faces (f);
2038 else
2039 abort ();
2041 do_pending_window_change (0);
2043 /* Don't call `face-set-after-frame-default' when faces haven't been
2044 initialized yet. This is the case when called from
2045 Fx_create_frame. In that case, the X widget or window doesn't
2046 exist either, and we can end up in x_report_frame_params with a
2047 null widget which gives a segfault. */
2048 if (FRAME_FACE_CACHE (f))
2050 XSETFRAME (frame, f);
2051 call1 (Qface_set_after_frame_default, frame);
2055 static void
2056 x_set_fringe_width (f, new_value, old_value)
2057 struct frame *f;
2058 Lisp_Object new_value, old_value;
2060 x_compute_fringe_widths (f, 1);
2063 void
2064 x_set_border_width (f, arg, oldval)
2065 struct frame *f;
2066 Lisp_Object arg, oldval;
2068 CHECK_NUMBER (arg);
2070 if (XINT (arg) == f->output_data.x->border_width)
2071 return;
2073 if (FRAME_X_WINDOW (f) != 0)
2074 error ("Cannot change the border width of a window");
2076 f->output_data.x->border_width = XINT (arg);
2079 void
2080 x_set_internal_border_width (f, arg, oldval)
2081 struct frame *f;
2082 Lisp_Object arg, oldval;
2084 int old = f->output_data.x->internal_border_width;
2086 CHECK_NUMBER (arg);
2087 f->output_data.x->internal_border_width = XINT (arg);
2088 if (f->output_data.x->internal_border_width < 0)
2089 f->output_data.x->internal_border_width = 0;
2091 #ifdef USE_X_TOOLKIT
2092 if (f->output_data.x->edit_widget)
2093 widget_store_internal_border (f->output_data.x->edit_widget);
2094 #endif
2096 if (f->output_data.x->internal_border_width == old)
2097 return;
2099 if (FRAME_X_WINDOW (f) != 0)
2101 x_set_window_size (f, 0, f->width, f->height);
2102 SET_FRAME_GARBAGED (f);
2103 do_pending_window_change (0);
2105 else
2106 SET_FRAME_GARBAGED (f);
2109 void
2110 x_set_visibility (f, value, oldval)
2111 struct frame *f;
2112 Lisp_Object value, oldval;
2114 Lisp_Object frame;
2115 XSETFRAME (frame, f);
2117 if (NILP (value))
2118 Fmake_frame_invisible (frame, Qt);
2119 else if (EQ (value, Qicon))
2120 Ficonify_frame (frame);
2121 else
2122 Fmake_frame_visible (frame);
2126 /* Change window heights in windows rooted in WINDOW by N lines. */
2128 static void
2129 x_change_window_heights (window, n)
2130 Lisp_Object window;
2131 int n;
2133 struct window *w = XWINDOW (window);
2135 XSETFASTINT (w->top, XFASTINT (w->top) + n);
2136 XSETFASTINT (w->height, XFASTINT (w->height) - n);
2138 if (INTEGERP (w->orig_top))
2139 XSETFASTINT (w->orig_top, XFASTINT (w->orig_top) + n);
2140 if (INTEGERP (w->orig_height))
2141 XSETFASTINT (w->orig_height, XFASTINT (w->orig_height) - n);
2143 /* Handle just the top child in a vertical split. */
2144 if (!NILP (w->vchild))
2145 x_change_window_heights (w->vchild, n);
2147 /* Adjust all children in a horizontal split. */
2148 for (window = w->hchild; !NILP (window); window = w->next)
2150 w = XWINDOW (window);
2151 x_change_window_heights (window, n);
2155 void
2156 x_set_menu_bar_lines (f, value, oldval)
2157 struct frame *f;
2158 Lisp_Object value, oldval;
2160 int nlines;
2161 #ifndef USE_X_TOOLKIT
2162 int olines = FRAME_MENU_BAR_LINES (f);
2163 #endif
2165 /* Right now, menu bars don't work properly in minibuf-only frames;
2166 most of the commands try to apply themselves to the minibuffer
2167 frame itself, and get an error because you can't switch buffers
2168 in or split the minibuffer window. */
2169 if (FRAME_MINIBUF_ONLY_P (f))
2170 return;
2172 if (INTEGERP (value))
2173 nlines = XINT (value);
2174 else
2175 nlines = 0;
2177 /* Make sure we redisplay all windows in this frame. */
2178 windows_or_buffers_changed++;
2180 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2181 FRAME_MENU_BAR_LINES (f) = 0;
2182 if (nlines)
2184 FRAME_EXTERNAL_MENU_BAR (f) = 1;
2185 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
2186 /* Make sure next redisplay shows the menu bar. */
2187 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
2189 else
2191 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
2192 free_frame_menubar (f);
2193 FRAME_EXTERNAL_MENU_BAR (f) = 0;
2194 if (FRAME_X_P (f))
2195 f->output_data.x->menubar_widget = 0;
2197 #else /* not USE_X_TOOLKIT && not USE_GTK */
2198 FRAME_MENU_BAR_LINES (f) = nlines;
2199 x_change_window_heights (f->root_window, nlines - olines);
2200 #endif /* not USE_X_TOOLKIT */
2201 adjust_glyphs (f);
2205 /* Set the number of lines used for the tool bar of frame F to VALUE.
2206 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
2207 is the old number of tool bar lines. This function changes the
2208 height of all windows on frame F to match the new tool bar height.
2209 The frame's height doesn't change. */
2211 void
2212 x_set_tool_bar_lines (f, value, oldval)
2213 struct frame *f;
2214 Lisp_Object value, oldval;
2216 int delta, nlines, root_height;
2217 Lisp_Object root_window;
2219 /* Treat tool bars like menu bars. */
2220 if (FRAME_MINIBUF_ONLY_P (f))
2221 return;
2223 /* Use VALUE only if an integer >= 0. */
2224 if (INTEGERP (value) && XINT (value) >= 0)
2225 nlines = XFASTINT (value);
2226 else
2227 nlines = 0;
2229 #ifdef USE_GTK
2230 FRAME_TOOL_BAR_LINES (f) = 0;
2231 if (nlines)
2233 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
2234 if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
2235 /* Make sure next redisplay shows the tool bar. */
2236 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
2237 update_frame_tool_bar (f);
2239 else
2241 if (FRAME_EXTERNAL_TOOL_BAR (f))
2242 free_frame_tool_bar (f);
2243 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
2246 return;
2247 #endif
2249 /* Make sure we redisplay all windows in this frame. */
2250 ++windows_or_buffers_changed;
2252 delta = nlines - FRAME_TOOL_BAR_LINES (f);
2254 /* Don't resize the tool-bar to more than we have room for. */
2255 root_window = FRAME_ROOT_WINDOW (f);
2256 root_height = XINT (XWINDOW (root_window)->height);
2257 if (root_height - delta < 1)
2259 delta = root_height - 1;
2260 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
2263 FRAME_TOOL_BAR_LINES (f) = nlines;
2264 x_change_window_heights (root_window, delta);
2265 adjust_glyphs (f);
2267 /* We also have to make sure that the internal border at the top of
2268 the frame, below the menu bar or tool bar, is redrawn when the
2269 tool bar disappears. This is so because the internal border is
2270 below the tool bar if one is displayed, but is below the menu bar
2271 if there isn't a tool bar. The tool bar draws into the area
2272 below the menu bar. */
2273 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
2275 updating_frame = f;
2276 clear_frame ();
2277 clear_current_matrices (f);
2278 updating_frame = NULL;
2281 /* If the tool bar gets smaller, the internal border below it
2282 has to be cleared. It was formerly part of the display
2283 of the larger tool bar, and updating windows won't clear it. */
2284 if (delta < 0)
2286 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
2287 int width = PIXEL_WIDTH (f);
2288 int y = nlines * CANON_Y_UNIT (f);
2290 BLOCK_INPUT;
2291 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2292 0, y, width, height, False);
2293 UNBLOCK_INPUT;
2295 if (WINDOWP (f->tool_bar_window))
2296 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
2301 /* Set the foreground color for scroll bars on frame F to VALUE.
2302 VALUE should be a string, a color name. If it isn't a string or
2303 isn't a valid color name, do nothing. OLDVAL is the old value of
2304 the frame parameter. */
2306 void
2307 x_set_scroll_bar_foreground (f, value, oldval)
2308 struct frame *f;
2309 Lisp_Object value, oldval;
2311 unsigned long pixel;
2313 if (STRINGP (value))
2314 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
2315 else
2316 pixel = -1;
2318 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
2319 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
2321 f->output_data.x->scroll_bar_foreground_pixel = pixel;
2322 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
2324 /* Remove all scroll bars because they have wrong colors. */
2325 if (condemn_scroll_bars_hook)
2326 (*condemn_scroll_bars_hook) (f);
2327 if (judge_scroll_bars_hook)
2328 (*judge_scroll_bars_hook) (f);
2330 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
2331 redraw_frame (f);
2336 /* Set the background color for scroll bars on frame F to VALUE VALUE
2337 should be a string, a color name. If it isn't a string or isn't a
2338 valid color name, do nothing. OLDVAL is the old value of the frame
2339 parameter. */
2341 void
2342 x_set_scroll_bar_background (f, value, oldval)
2343 struct frame *f;
2344 Lisp_Object value, oldval;
2346 unsigned long pixel;
2348 if (STRINGP (value))
2349 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
2350 else
2351 pixel = -1;
2353 if (f->output_data.x->scroll_bar_background_pixel != -1)
2354 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
2356 #ifdef USE_TOOLKIT_SCROLL_BARS
2357 /* Scrollbar shadow colors. */
2358 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
2360 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
2361 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
2363 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
2365 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
2366 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
2368 #endif /* USE_TOOLKIT_SCROLL_BARS */
2370 f->output_data.x->scroll_bar_background_pixel = pixel;
2371 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
2373 /* Remove all scroll bars because they have wrong colors. */
2374 if (condemn_scroll_bars_hook)
2375 (*condemn_scroll_bars_hook) (f);
2376 if (judge_scroll_bars_hook)
2377 (*judge_scroll_bars_hook) (f);
2379 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
2380 redraw_frame (f);
2385 /* Encode Lisp string STRING as a text in a format appropriate for
2386 XICCC (X Inter Client Communication Conventions).
2388 If STRING contains only ASCII characters, do no conversion and
2389 return the string data of STRING. Otherwise, encode the text by
2390 CODING_SYSTEM, and return a newly allocated memory area which
2391 should be freed by `xfree' by a caller.
2393 SELECTIONP non-zero means the string is being encoded for an X
2394 selection, so it is safe to run pre-write conversions (which
2395 may run Lisp code).
2397 Store the byte length of resulting text in *TEXT_BYTES.
2399 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
2400 which means that the `encoding' of the result can be `STRING'.
2401 Otherwise store 0 in *STRINGP, which means that the `encoding' of
2402 the result should be `COMPOUND_TEXT'. */
2404 unsigned char *
2405 x_encode_text (string, coding_system, selectionp, text_bytes, stringp)
2406 Lisp_Object string, coding_system;
2407 int *text_bytes, *stringp;
2408 int selectionp;
2410 unsigned char *str = SDATA (string);
2411 int chars = SCHARS (string);
2412 int bytes = SBYTES (string);
2413 int charset_info;
2414 int bufsize;
2415 unsigned char *buf;
2416 struct coding_system coding;
2417 extern Lisp_Object Qcompound_text_with_extensions;
2419 charset_info = find_charset_in_text (str, chars, bytes, NULL, Qnil);
2420 if (charset_info == 0)
2422 /* No multibyte character in OBJ. We need not encode it. */
2423 *text_bytes = bytes;
2424 *stringp = 1;
2425 return str;
2428 setup_coding_system (coding_system, &coding);
2429 if (selectionp
2430 && SYMBOLP (coding.pre_write_conversion)
2431 && !NILP (Ffboundp (coding.pre_write_conversion)))
2433 string = run_pre_post_conversion_on_str (string, &coding, 1);
2434 str = SDATA (string);
2435 chars = SCHARS (string);
2436 bytes = SBYTES (string);
2438 coding.src_multibyte = 1;
2439 coding.dst_multibyte = 0;
2440 coding.mode |= CODING_MODE_LAST_BLOCK;
2441 if (coding.type == coding_type_iso2022)
2442 coding.flags |= CODING_FLAG_ISO_SAFE;
2443 /* We suppress producing escape sequences for composition. */
2444 coding.composing = COMPOSITION_DISABLED;
2445 bufsize = encoding_buffer_size (&coding, bytes);
2446 buf = (unsigned char *) xmalloc (bufsize);
2447 encode_coding (&coding, str, buf, bytes, bufsize);
2448 *text_bytes = coding.produced;
2449 *stringp = (charset_info == 1
2450 || (!EQ (coding_system, Qcompound_text)
2451 && !EQ (coding_system, Qcompound_text_with_extensions)));
2452 return buf;
2456 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2457 x_id_name.
2459 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2460 name; if NAME is a string, set F's name to NAME and set
2461 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2463 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2464 suggesting a new name, which lisp code should override; if
2465 F->explicit_name is set, ignore the new name; otherwise, set it. */
2467 void
2468 x_set_name (f, name, explicit)
2469 struct frame *f;
2470 Lisp_Object name;
2471 int explicit;
2473 /* Make sure that requests from lisp code override requests from
2474 Emacs redisplay code. */
2475 if (explicit)
2477 /* If we're switching from explicit to implicit, we had better
2478 update the mode lines and thereby update the title. */
2479 if (f->explicit_name && NILP (name))
2480 update_mode_lines = 1;
2482 f->explicit_name = ! NILP (name);
2484 else if (f->explicit_name)
2485 return;
2487 /* If NAME is nil, set the name to the x_id_name. */
2488 if (NILP (name))
2490 /* Check for no change needed in this very common case
2491 before we do any consing. */
2492 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
2493 SDATA (f->name)))
2494 return;
2495 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
2497 else
2498 CHECK_STRING (name);
2500 /* Don't change the name if it's already NAME. */
2501 if (! NILP (Fstring_equal (name, f->name)))
2502 return;
2504 f->name = name;
2506 /* For setting the frame title, the title parameter should override
2507 the name parameter. */
2508 if (! NILP (f->title))
2509 name = f->title;
2511 if (FRAME_X_WINDOW (f))
2513 BLOCK_INPUT;
2514 #ifdef HAVE_X11R4
2516 XTextProperty text, icon;
2517 int bytes, stringp;
2518 Lisp_Object coding_system;
2520 coding_system = Qcompound_text;
2521 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp);
2522 text.encoding = (stringp ? XA_STRING
2523 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2524 text.format = 8;
2525 text.nitems = bytes;
2527 if (NILP (f->icon_name))
2529 icon = text;
2531 else
2533 icon.value = x_encode_text (f->icon_name, coding_system, 0,
2534 &bytes, &stringp);
2535 icon.encoding = (stringp ? XA_STRING
2536 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2537 icon.format = 8;
2538 icon.nitems = bytes;
2540 #ifdef USE_X_TOOLKIT
2541 XSetWMName (FRAME_X_DISPLAY (f),
2542 XtWindow (f->output_data.x->widget), &text);
2543 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
2544 &icon);
2545 #else /* not USE_X_TOOLKIT */
2546 #ifdef USE_GTK
2547 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
2548 SDATA (name));
2549 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
2550 &icon);
2551 #else /* not USE_GTK */
2552 XSetWMName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
2553 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &icon);
2554 #endif /* not USE_GTK */
2555 #endif /* not USE_X_TOOLKIT */
2556 if (!NILP (f->icon_name)
2557 && icon.value != (unsigned char *) SDATA (f->icon_name))
2558 xfree (icon.value);
2559 if (text.value != (unsigned char *) SDATA (name))
2560 xfree (text.value);
2562 #else /* not HAVE_X11R4 */
2563 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2564 SDATA (name));
2565 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2566 SDATA (name));
2567 #endif /* not HAVE_X11R4 */
2568 UNBLOCK_INPUT;
2572 /* This function should be called when the user's lisp code has
2573 specified a name for the frame; the name will override any set by the
2574 redisplay code. */
2575 void
2576 x_explicitly_set_name (f, arg, oldval)
2577 FRAME_PTR f;
2578 Lisp_Object arg, oldval;
2580 x_set_name (f, arg, 1);
2583 /* This function should be called by Emacs redisplay code to set the
2584 name; names set this way will never override names set by the user's
2585 lisp code. */
2586 void
2587 x_implicitly_set_name (f, arg, oldval)
2588 FRAME_PTR f;
2589 Lisp_Object arg, oldval;
2591 x_set_name (f, arg, 0);
2594 /* Change the title of frame F to NAME.
2595 If NAME is nil, use the frame name as the title.
2597 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2598 name; if NAME is a string, set F's name to NAME and set
2599 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2601 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2602 suggesting a new name, which lisp code should override; if
2603 F->explicit_name is set, ignore the new name; otherwise, set it. */
2605 void
2606 x_set_title (f, name, old_name)
2607 struct frame *f;
2608 Lisp_Object name, old_name;
2610 /* Don't change the title if it's already NAME. */
2611 if (EQ (name, f->title))
2612 return;
2614 update_mode_lines = 1;
2616 f->title = name;
2618 if (NILP (name))
2619 name = f->name;
2620 else
2621 CHECK_STRING (name);
2623 if (FRAME_X_WINDOW (f))
2625 BLOCK_INPUT;
2626 #ifdef HAVE_X11R4
2628 XTextProperty text, icon;
2629 int bytes, stringp;
2630 Lisp_Object coding_system;
2632 coding_system = Qcompound_text;
2633 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp);
2634 text.encoding = (stringp ? XA_STRING
2635 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2636 text.format = 8;
2637 text.nitems = bytes;
2639 if (NILP (f->icon_name))
2641 icon = text;
2643 else
2645 icon.value = x_encode_text (f->icon_name, coding_system, 0,
2646 &bytes, &stringp);
2647 icon.encoding = (stringp ? XA_STRING
2648 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2649 icon.format = 8;
2650 icon.nitems = bytes;
2652 #ifdef USE_X_TOOLKIT
2653 XSetWMName (FRAME_X_DISPLAY (f),
2654 XtWindow (f->output_data.x->widget), &text);
2655 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
2656 &icon);
2657 #else /* not USE_X_TOOLKIT */
2658 #ifdef USE_GTK
2659 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
2660 SDATA (name));
2661 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
2662 &icon);
2663 #else /* not USE_GTK */
2664 XSetWMName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
2665 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &icon);
2666 #endif /* not USE_GTK */
2667 #endif /* not USE_X_TOOLKIT */
2668 if (!NILP (f->icon_name)
2669 && icon.value != (unsigned char *) SDATA (f->icon_name))
2670 xfree (icon.value);
2671 if (text.value != (unsigned char *) SDATA (name))
2672 xfree (text.value);
2674 #else /* not HAVE_X11R4 */
2675 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2676 SDATA (name));
2677 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2678 SDATA (name));
2679 #endif /* not HAVE_X11R4 */
2680 UNBLOCK_INPUT;
2684 void
2685 x_set_autoraise (f, arg, oldval)
2686 struct frame *f;
2687 Lisp_Object arg, oldval;
2689 f->auto_raise = !EQ (Qnil, arg);
2692 void
2693 x_set_autolower (f, arg, oldval)
2694 struct frame *f;
2695 Lisp_Object arg, oldval;
2697 f->auto_lower = !EQ (Qnil, arg);
2700 void
2701 x_set_unsplittable (f, arg, oldval)
2702 struct frame *f;
2703 Lisp_Object arg, oldval;
2705 f->no_split = !NILP (arg);
2708 void
2709 x_set_vertical_scroll_bars (f, arg, oldval)
2710 struct frame *f;
2711 Lisp_Object arg, oldval;
2713 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
2714 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
2715 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2716 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
2718 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
2719 = (NILP (arg)
2720 ? vertical_scroll_bar_none
2721 : EQ (Qright, arg)
2722 ? vertical_scroll_bar_right
2723 : vertical_scroll_bar_left);
2725 /* We set this parameter before creating the X window for the
2726 frame, so we can get the geometry right from the start.
2727 However, if the window hasn't been created yet, we shouldn't
2728 call x_set_window_size. */
2729 if (FRAME_X_WINDOW (f))
2730 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2731 do_pending_window_change (0);
2735 void
2736 x_set_scroll_bar_width (f, arg, oldval)
2737 struct frame *f;
2738 Lisp_Object arg, oldval;
2740 int wid = FONT_WIDTH (f->output_data.x->font);
2742 if (NILP (arg))
2744 #ifdef USE_TOOLKIT_SCROLL_BARS
2745 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
2746 int width = 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
2747 FRAME_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
2748 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = width;
2749 #else
2750 /* Make the actual width at least 14 pixels and a multiple of a
2751 character width. */
2752 FRAME_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
2754 /* Use all of that space (aside from required margins) for the
2755 scroll bar. */
2756 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = 0;
2757 #endif
2759 if (FRAME_X_WINDOW (f))
2760 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2761 do_pending_window_change (0);
2763 else if (INTEGERP (arg) && XINT (arg) > 0
2764 && XFASTINT (arg) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f))
2766 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
2767 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
2769 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = XFASTINT (arg);
2770 FRAME_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
2771 if (FRAME_X_WINDOW (f))
2772 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2775 change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
2776 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
2777 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
2782 /* Subroutines of creating an X frame. */
2784 /* Make sure that Vx_resource_name is set to a reasonable value.
2785 Fix it up, or set it to `emacs' if it is too hopeless. */
2787 static void
2788 validate_x_resource_name ()
2790 int len = 0;
2791 /* Number of valid characters in the resource name. */
2792 int good_count = 0;
2793 /* Number of invalid characters in the resource name. */
2794 int bad_count = 0;
2795 Lisp_Object new;
2796 int i;
2798 if (!STRINGP (Vx_resource_class))
2799 Vx_resource_class = build_string (EMACS_CLASS);
2801 if (STRINGP (Vx_resource_name))
2803 unsigned char *p = SDATA (Vx_resource_name);
2804 int i;
2806 len = SBYTES (Vx_resource_name);
2808 /* Only letters, digits, - and _ are valid in resource names.
2809 Count the valid characters and count the invalid ones. */
2810 for (i = 0; i < len; i++)
2812 int c = p[i];
2813 if (! ((c >= 'a' && c <= 'z')
2814 || (c >= 'A' && c <= 'Z')
2815 || (c >= '0' && c <= '9')
2816 || c == '-' || c == '_'))
2817 bad_count++;
2818 else
2819 good_count++;
2822 else
2823 /* Not a string => completely invalid. */
2824 bad_count = 5, good_count = 0;
2826 /* If name is valid already, return. */
2827 if (bad_count == 0)
2828 return;
2830 /* If name is entirely invalid, or nearly so, use `emacs'. */
2831 if (good_count == 0
2832 || (good_count == 1 && bad_count > 0))
2834 Vx_resource_name = build_string ("emacs");
2835 return;
2838 /* Name is partly valid. Copy it and replace the invalid characters
2839 with underscores. */
2841 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
2843 for (i = 0; i < len; i++)
2845 int c = SREF (new, i);
2846 if (! ((c >= 'a' && c <= 'z')
2847 || (c >= 'A' && c <= 'Z')
2848 || (c >= '0' && c <= '9')
2849 || c == '-' || c == '_'))
2850 SSET (new, i, '_');
2855 extern char *x_get_string_resource ();
2857 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
2858 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
2859 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
2860 class, where INSTANCE is the name under which Emacs was invoked, or
2861 the name specified by the `-name' or `-rn' command-line arguments.
2863 The optional arguments COMPONENT and SUBCLASS add to the key and the
2864 class, respectively. You must specify both of them or neither.
2865 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
2866 and the class is `Emacs.CLASS.SUBCLASS'. */)
2867 (attribute, class, component, subclass)
2868 Lisp_Object attribute, class, component, subclass;
2870 register char *value;
2871 char *name_key;
2872 char *class_key;
2874 check_x ();
2876 CHECK_STRING (attribute);
2877 CHECK_STRING (class);
2879 if (!NILP (component))
2880 CHECK_STRING (component);
2881 if (!NILP (subclass))
2882 CHECK_STRING (subclass);
2883 if (NILP (component) != NILP (subclass))
2884 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2886 validate_x_resource_name ();
2888 /* Allocate space for the components, the dots which separate them,
2889 and the final '\0'. Make them big enough for the worst case. */
2890 name_key = (char *) alloca (SBYTES (Vx_resource_name)
2891 + (STRINGP (component)
2892 ? SBYTES (component) : 0)
2893 + SBYTES (attribute)
2894 + 3);
2896 class_key = (char *) alloca (SBYTES (Vx_resource_class)
2897 + SBYTES (class)
2898 + (STRINGP (subclass)
2899 ? SBYTES (subclass) : 0)
2900 + 3);
2902 /* Start with emacs.FRAMENAME for the name (the specific one)
2903 and with `Emacs' for the class key (the general one). */
2904 strcpy (name_key, SDATA (Vx_resource_name));
2905 strcpy (class_key, SDATA (Vx_resource_class));
2907 strcat (class_key, ".");
2908 strcat (class_key, SDATA (class));
2910 if (!NILP (component))
2912 strcat (class_key, ".");
2913 strcat (class_key, SDATA (subclass));
2915 strcat (name_key, ".");
2916 strcat (name_key, SDATA (component));
2919 strcat (name_key, ".");
2920 strcat (name_key, SDATA (attribute));
2922 value = x_get_string_resource (check_x_display_info (Qnil)->xrdb,
2923 name_key, class_key);
2925 if (value != (char *) 0)
2926 return build_string (value);
2927 else
2928 return Qnil;
2931 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
2933 Lisp_Object
2934 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
2935 struct x_display_info *dpyinfo;
2936 Lisp_Object attribute, class, component, subclass;
2938 register char *value;
2939 char *name_key;
2940 char *class_key;
2942 CHECK_STRING (attribute);
2943 CHECK_STRING (class);
2945 if (!NILP (component))
2946 CHECK_STRING (component);
2947 if (!NILP (subclass))
2948 CHECK_STRING (subclass);
2949 if (NILP (component) != NILP (subclass))
2950 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2952 validate_x_resource_name ();
2954 /* Allocate space for the components, the dots which separate them,
2955 and the final '\0'. Make them big enough for the worst case. */
2956 name_key = (char *) alloca (SBYTES (Vx_resource_name)
2957 + (STRINGP (component)
2958 ? SBYTES (component) : 0)
2959 + SBYTES (attribute)
2960 + 3);
2962 class_key = (char *) alloca (SBYTES (Vx_resource_class)
2963 + SBYTES (class)
2964 + (STRINGP (subclass)
2965 ? SBYTES (subclass) : 0)
2966 + 3);
2968 /* Start with emacs.FRAMENAME for the name (the specific one)
2969 and with `Emacs' for the class key (the general one). */
2970 strcpy (name_key, SDATA (Vx_resource_name));
2971 strcpy (class_key, SDATA (Vx_resource_class));
2973 strcat (class_key, ".");
2974 strcat (class_key, SDATA (class));
2976 if (!NILP (component))
2978 strcat (class_key, ".");
2979 strcat (class_key, SDATA (subclass));
2981 strcat (name_key, ".");
2982 strcat (name_key, SDATA (component));
2985 strcat (name_key, ".");
2986 strcat (name_key, SDATA (attribute));
2988 value = x_get_string_resource (dpyinfo->xrdb, name_key, class_key);
2990 if (value != (char *) 0)
2991 return build_string (value);
2992 else
2993 return Qnil;
2996 /* Used when C code wants a resource value. */
2998 char *
2999 x_get_resource_string (attribute, class)
3000 char *attribute, *class;
3002 char *name_key;
3003 char *class_key;
3004 struct frame *sf = SELECTED_FRAME ();
3006 /* Allocate space for the components, the dots which separate them,
3007 and the final '\0'. */
3008 name_key = (char *) alloca (SBYTES (Vinvocation_name)
3009 + strlen (attribute) + 2);
3010 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3011 + strlen (class) + 2);
3013 sprintf (name_key, "%s.%s",
3014 SDATA (Vinvocation_name),
3015 attribute);
3016 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3018 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
3019 name_key, class_key);
3022 /* Types we might convert a resource string into. */
3023 enum resource_types
3025 RES_TYPE_NUMBER,
3026 RES_TYPE_FLOAT,
3027 RES_TYPE_BOOLEAN,
3028 RES_TYPE_STRING,
3029 RES_TYPE_SYMBOL
3032 /* Return the value of parameter PARAM.
3034 First search ALIST, then Vdefault_frame_alist, then the X defaults
3035 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3037 Convert the resource to the type specified by desired_type.
3039 If no default is specified, return Qunbound. If you call
3040 x_get_arg, make sure you deal with Qunbound in a reasonable way,
3041 and don't let it get stored in any Lisp-visible variables! */
3043 static Lisp_Object
3044 x_get_arg (dpyinfo, alist, param, attribute, class, type)
3045 struct x_display_info *dpyinfo;
3046 Lisp_Object alist, param;
3047 char *attribute;
3048 char *class;
3049 enum resource_types type;
3051 register Lisp_Object tem;
3053 tem = Fassq (param, alist);
3054 if (EQ (tem, Qnil))
3055 tem = Fassq (param, Vdefault_frame_alist);
3056 if (EQ (tem, Qnil))
3059 if (attribute)
3061 tem = display_x_get_resource (dpyinfo,
3062 build_string (attribute),
3063 build_string (class),
3064 Qnil, Qnil);
3066 if (NILP (tem))
3067 return Qunbound;
3069 switch (type)
3071 case RES_TYPE_NUMBER:
3072 return make_number (atoi (SDATA (tem)));
3074 case RES_TYPE_FLOAT:
3075 return make_float (atof (SDATA (tem)));
3077 case RES_TYPE_BOOLEAN:
3078 tem = Fdowncase (tem);
3079 if (!strcmp (SDATA (tem), "on")
3080 || !strcmp (SDATA (tem), "true"))
3081 return Qt;
3082 else
3083 return Qnil;
3085 case RES_TYPE_STRING:
3086 return tem;
3088 case RES_TYPE_SYMBOL:
3089 /* As a special case, we map the values `true' and `on'
3090 to Qt, and `false' and `off' to Qnil. */
3092 Lisp_Object lower;
3093 lower = Fdowncase (tem);
3094 if (!strcmp (SDATA (lower), "on")
3095 || !strcmp (SDATA (lower), "true"))
3096 return Qt;
3097 else if (!strcmp (SDATA (lower), "off")
3098 || !strcmp (SDATA (lower), "false"))
3099 return Qnil;
3100 else
3101 return Fintern (tem, Qnil);
3104 default:
3105 abort ();
3108 else
3109 return Qunbound;
3111 return Fcdr (tem);
3114 /* Like x_get_arg, but also record the value in f->param_alist. */
3116 static Lisp_Object
3117 x_get_and_record_arg (f, alist, param, attribute, class, type)
3118 struct frame *f;
3119 Lisp_Object alist, param;
3120 char *attribute;
3121 char *class;
3122 enum resource_types type;
3124 Lisp_Object value;
3126 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
3127 attribute, class, type);
3128 if (! NILP (value))
3129 store_frame_param (f, param, value);
3131 return value;
3134 /* Record in frame F the specified or default value according to ALIST
3135 of the parameter named PROP (a Lisp symbol).
3136 If no value is specified for PROP, look for an X default for XPROP
3137 on the frame named NAME.
3138 If that is not found either, use the value DEFLT. */
3140 static Lisp_Object
3141 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3142 struct frame *f;
3143 Lisp_Object alist;
3144 Lisp_Object prop;
3145 Lisp_Object deflt;
3146 char *xprop;
3147 char *xclass;
3148 enum resource_types type;
3150 Lisp_Object tem;
3152 tem = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, prop, xprop, xclass, type);
3153 if (EQ (tem, Qunbound))
3154 tem = deflt;
3155 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3156 return tem;
3160 /* Record in frame F the specified or default value according to ALIST
3161 of the parameter named PROP (a Lisp symbol). If no value is
3162 specified for PROP, look for an X default for XPROP on the frame
3163 named NAME. If that is not found either, use the value DEFLT. */
3165 static Lisp_Object
3166 x_default_scroll_bar_color_parameter (f, alist, prop, xprop, xclass,
3167 foreground_p)
3168 struct frame *f;
3169 Lisp_Object alist;
3170 Lisp_Object prop;
3171 char *xprop;
3172 char *xclass;
3173 int foreground_p;
3175 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3176 Lisp_Object tem;
3178 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
3179 if (EQ (tem, Qunbound))
3181 #ifdef USE_TOOLKIT_SCROLL_BARS
3183 /* See if an X resource for the scroll bar color has been
3184 specified. */
3185 tem = display_x_get_resource (dpyinfo,
3186 build_string (foreground_p
3187 ? "foreground"
3188 : "background"),
3189 empty_string,
3190 build_string ("verticalScrollBar"),
3191 empty_string);
3192 if (!STRINGP (tem))
3194 /* If nothing has been specified, scroll bars will use a
3195 toolkit-dependent default. Because these defaults are
3196 difficult to get at without actually creating a scroll
3197 bar, use nil to indicate that no color has been
3198 specified. */
3199 tem = Qnil;
3202 #else /* not USE_TOOLKIT_SCROLL_BARS */
3204 tem = Qnil;
3206 #endif /* not USE_TOOLKIT_SCROLL_BARS */
3209 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3210 return tem;
3215 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3216 doc: /* Parse an X-style geometry string STRING.
3217 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
3218 The properties returned may include `top', `left', `height', and `width'.
3219 The value of `left' or `top' may be an integer,
3220 or a list (+ N) meaning N pixels relative to top/left corner,
3221 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
3222 (string)
3223 Lisp_Object string;
3225 int geometry, x, y;
3226 unsigned int width, height;
3227 Lisp_Object result;
3229 CHECK_STRING (string);
3231 geometry = XParseGeometry ((char *) SDATA (string),
3232 &x, &y, &width, &height);
3234 #if 0
3235 if (!!(geometry & XValue) != !!(geometry & YValue))
3236 error ("Must specify both x and y position, or neither");
3237 #endif
3239 result = Qnil;
3240 if (geometry & XValue)
3242 Lisp_Object element;
3244 if (x >= 0 && (geometry & XNegative))
3245 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3246 else if (x < 0 && ! (geometry & XNegative))
3247 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3248 else
3249 element = Fcons (Qleft, make_number (x));
3250 result = Fcons (element, result);
3253 if (geometry & YValue)
3255 Lisp_Object element;
3257 if (y >= 0 && (geometry & YNegative))
3258 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3259 else if (y < 0 && ! (geometry & YNegative))
3260 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3261 else
3262 element = Fcons (Qtop, make_number (y));
3263 result = Fcons (element, result);
3266 if (geometry & WidthValue)
3267 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3268 if (geometry & HeightValue)
3269 result = Fcons (Fcons (Qheight, make_number (height)), result);
3271 return result;
3274 /* Calculate the desired size and position of this window,
3275 and return the flags saying which aspects were specified.
3277 This function does not make the coordinates positive. */
3279 #define DEFAULT_ROWS 40
3280 #define DEFAULT_COLS 80
3282 static int
3283 x_figure_window_size (f, parms)
3284 struct frame *f;
3285 Lisp_Object parms;
3287 register Lisp_Object tem0, tem1, tem2;
3288 long window_prompting = 0;
3289 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3291 /* Default values if we fall through.
3292 Actually, if that happens we should get
3293 window manager prompting. */
3294 SET_FRAME_WIDTH (f, DEFAULT_COLS);
3295 f->height = DEFAULT_ROWS;
3296 /* Window managers expect that if program-specified
3297 positions are not (0,0), they're intentional, not defaults. */
3298 f->output_data.x->top_pos = 0;
3299 f->output_data.x->left_pos = 0;
3301 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3302 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3303 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3304 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3306 if (!EQ (tem0, Qunbound))
3308 CHECK_NUMBER (tem0);
3309 f->height = XINT (tem0);
3311 if (!EQ (tem1, Qunbound))
3313 CHECK_NUMBER (tem1);
3314 SET_FRAME_WIDTH (f, XINT (tem1));
3316 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3317 window_prompting |= USSize;
3318 else
3319 window_prompting |= PSize;
3322 f->output_data.x->vertical_scroll_bar_extra
3323 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3325 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
3327 x_compute_fringe_widths (f, 0);
3329 f->output_data.x->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3330 f->output_data.x->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3332 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3333 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3334 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3335 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3337 if (EQ (tem0, Qminus))
3339 f->output_data.x->top_pos = 0;
3340 window_prompting |= YNegative;
3342 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3343 && CONSP (XCDR (tem0))
3344 && INTEGERP (XCAR (XCDR (tem0))))
3346 f->output_data.x->top_pos = - XINT (XCAR (XCDR (tem0)));
3347 window_prompting |= YNegative;
3349 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3350 && CONSP (XCDR (tem0))
3351 && INTEGERP (XCAR (XCDR (tem0))))
3353 f->output_data.x->top_pos = XINT (XCAR (XCDR (tem0)));
3355 else if (EQ (tem0, Qunbound))
3356 f->output_data.x->top_pos = 0;
3357 else
3359 CHECK_NUMBER (tem0);
3360 f->output_data.x->top_pos = XINT (tem0);
3361 if (f->output_data.x->top_pos < 0)
3362 window_prompting |= YNegative;
3365 if (EQ (tem1, Qminus))
3367 f->output_data.x->left_pos = 0;
3368 window_prompting |= XNegative;
3370 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3371 && CONSP (XCDR (tem1))
3372 && INTEGERP (XCAR (XCDR (tem1))))
3374 f->output_data.x->left_pos = - XINT (XCAR (XCDR (tem1)));
3375 window_prompting |= XNegative;
3377 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3378 && CONSP (XCDR (tem1))
3379 && INTEGERP (XCAR (XCDR (tem1))))
3381 f->output_data.x->left_pos = XINT (XCAR (XCDR (tem1)));
3383 else if (EQ (tem1, Qunbound))
3384 f->output_data.x->left_pos = 0;
3385 else
3387 CHECK_NUMBER (tem1);
3388 f->output_data.x->left_pos = XINT (tem1);
3389 if (f->output_data.x->left_pos < 0)
3390 window_prompting |= XNegative;
3393 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3394 window_prompting |= USPosition;
3395 else
3396 window_prompting |= PPosition;
3399 if (f->output_data.x->want_fullscreen != FULLSCREEN_NONE)
3401 int left, top;
3402 int width, height;
3404 /* It takes both for some WM:s to place it where we want */
3405 window_prompting = USPosition | PPosition;
3406 x_fullscreen_adjust (f, &width, &height, &top, &left);
3407 f->width = width;
3408 f->height = height;
3409 f->output_data.x->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3410 f->output_data.x->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3411 f->output_data.x->left_pos = left;
3412 f->output_data.x->top_pos = top;
3415 return window_prompting;
3418 #if !defined (HAVE_X11R4) && !defined (HAVE_XSETWMPROTOCOLS)
3420 Status
3421 XSetWMProtocols (dpy, w, protocols, count)
3422 Display *dpy;
3423 Window w;
3424 Atom *protocols;
3425 int count;
3427 Atom prop;
3428 prop = XInternAtom (dpy, "WM_PROTOCOLS", False);
3429 if (prop == None) return False;
3430 XChangeProperty (dpy, w, prop, XA_ATOM, 32, PropModeReplace,
3431 (unsigned char *) protocols, count);
3432 return True;
3434 #endif /* not HAVE_X11R4 && not HAVE_XSETWMPROTOCOLS */
3436 #ifdef USE_X_TOOLKIT
3438 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
3439 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
3440 already be present because of the toolkit (Motif adds some of them,
3441 for example, but Xt doesn't). */
3443 static void
3444 hack_wm_protocols (f, widget)
3445 FRAME_PTR f;
3446 Widget widget;
3448 Display *dpy = XtDisplay (widget);
3449 Window w = XtWindow (widget);
3450 int need_delete = 1;
3451 int need_focus = 1;
3452 int need_save = 1;
3454 BLOCK_INPUT;
3456 Atom type, *atoms = 0;
3457 int format = 0;
3458 unsigned long nitems = 0;
3459 unsigned long bytes_after;
3461 if ((XGetWindowProperty (dpy, w,
3462 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
3463 (long)0, (long)100, False, XA_ATOM,
3464 &type, &format, &nitems, &bytes_after,
3465 (unsigned char **) &atoms)
3466 == Success)
3467 && format == 32 && type == XA_ATOM)
3468 while (nitems > 0)
3470 nitems--;
3471 if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
3472 need_delete = 0;
3473 else if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
3474 need_focus = 0;
3475 else if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
3476 need_save = 0;
3478 if (atoms) XFree ((char *) atoms);
3481 Atom props [10];
3482 int count = 0;
3483 if (need_delete)
3484 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
3485 if (need_focus)
3486 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
3487 if (need_save)
3488 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
3489 if (count)
3490 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
3491 XA_ATOM, 32, PropModeAppend,
3492 (unsigned char *) props, count);
3494 UNBLOCK_INPUT;
3496 #endif
3500 /* Support routines for XIC (X Input Context). */
3502 #ifdef HAVE_X_I18N
3504 static XFontSet xic_create_xfontset P_ ((struct frame *, char *));
3505 static XIMStyle best_xim_style P_ ((XIMStyles *, XIMStyles *));
3508 /* Supported XIM styles, ordered by preferenc. */
3510 static XIMStyle supported_xim_styles[] =
3512 XIMPreeditPosition | XIMStatusArea,
3513 XIMPreeditPosition | XIMStatusNothing,
3514 XIMPreeditPosition | XIMStatusNone,
3515 XIMPreeditNothing | XIMStatusArea,
3516 XIMPreeditNothing | XIMStatusNothing,
3517 XIMPreeditNothing | XIMStatusNone,
3518 XIMPreeditNone | XIMStatusArea,
3519 XIMPreeditNone | XIMStatusNothing,
3520 XIMPreeditNone | XIMStatusNone,
3525 /* Create an X fontset on frame F with base font name
3526 BASE_FONTNAME.. */
3528 static XFontSet
3529 xic_create_xfontset (f, base_fontname)
3530 struct frame *f;
3531 char *base_fontname;
3533 XFontSet xfs;
3534 char **missing_list;
3535 int missing_count;
3536 char *def_string;
3538 xfs = XCreateFontSet (FRAME_X_DISPLAY (f),
3539 base_fontname, &missing_list,
3540 &missing_count, &def_string);
3541 if (missing_list)
3542 XFreeStringList (missing_list);
3544 /* No need to free def_string. */
3545 return xfs;
3549 /* Value is the best input style, given user preferences USER (already
3550 checked to be supported by Emacs), and styles supported by the
3551 input method XIM. */
3553 static XIMStyle
3554 best_xim_style (user, xim)
3555 XIMStyles *user;
3556 XIMStyles *xim;
3558 int i, j;
3560 for (i = 0; i < user->count_styles; ++i)
3561 for (j = 0; j < xim->count_styles; ++j)
3562 if (user->supported_styles[i] == xim->supported_styles[j])
3563 return user->supported_styles[i];
3565 /* Return the default style. */
3566 return XIMPreeditNothing | XIMStatusNothing;
3569 /* Create XIC for frame F. */
3571 static XIMStyle xic_style;
3573 void
3574 create_frame_xic (f)
3575 struct frame *f;
3577 XIM xim;
3578 XIC xic = NULL;
3579 XFontSet xfs = NULL;
3581 if (FRAME_XIC (f))
3582 return;
3584 xim = FRAME_X_XIM (f);
3585 if (xim)
3587 XRectangle s_area;
3588 XPoint spot;
3589 XVaNestedList preedit_attr;
3590 XVaNestedList status_attr;
3591 char *base_fontname;
3592 int fontset;
3594 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
3595 spot.x = 0; spot.y = 1;
3596 /* Create X fontset. */
3597 fontset = FRAME_FONTSET (f);
3598 if (fontset < 0)
3599 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
3600 else
3602 /* Determine the base fontname from the ASCII font name of
3603 FONTSET. */
3604 char *ascii_font = (char *) SDATA (fontset_ascii (fontset));
3605 char *p = ascii_font;
3606 int i;
3608 for (i = 0; *p; p++)
3609 if (*p == '-') i++;
3610 if (i != 14)
3611 /* As the font name doesn't conform to XLFD, we can't
3612 modify it to get a suitable base fontname for the
3613 frame. */
3614 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
3615 else
3617 int len = strlen (ascii_font) + 1;
3618 char *p1 = NULL;
3620 for (i = 0, p = ascii_font; i < 8; p++)
3622 if (*p == '-')
3624 i++;
3625 if (i == 3)
3626 p1 = p + 1;
3629 base_fontname = (char *) alloca (len);
3630 bzero (base_fontname, len);
3631 strcpy (base_fontname, "-*-*-");
3632 bcopy (p1, base_fontname + 5, p - p1);
3633 strcat (base_fontname, "*-*-*-*-*-*-*");
3636 xfs = xic_create_xfontset (f, base_fontname);
3638 /* Determine XIC style. */
3639 if (xic_style == 0)
3641 XIMStyles supported_list;
3642 supported_list.count_styles = (sizeof supported_xim_styles
3643 / sizeof supported_xim_styles[0]);
3644 supported_list.supported_styles = supported_xim_styles;
3645 xic_style = best_xim_style (&supported_list,
3646 FRAME_X_XIM_STYLES (f));
3649 preedit_attr = XVaCreateNestedList (0,
3650 XNFontSet, xfs,
3651 XNForeground,
3652 FRAME_FOREGROUND_PIXEL (f),
3653 XNBackground,
3654 FRAME_BACKGROUND_PIXEL (f),
3655 (xic_style & XIMPreeditPosition
3656 ? XNSpotLocation
3657 : NULL),
3658 &spot,
3659 NULL);
3660 status_attr = XVaCreateNestedList (0,
3661 XNArea,
3662 &s_area,
3663 XNFontSet,
3664 xfs,
3665 XNForeground,
3666 FRAME_FOREGROUND_PIXEL (f),
3667 XNBackground,
3668 FRAME_BACKGROUND_PIXEL (f),
3669 NULL);
3671 xic = XCreateIC (xim,
3672 XNInputStyle, xic_style,
3673 XNClientWindow, FRAME_X_WINDOW(f),
3674 XNFocusWindow, FRAME_X_WINDOW(f),
3675 XNStatusAttributes, status_attr,
3676 XNPreeditAttributes, preedit_attr,
3677 NULL);
3678 XFree (preedit_attr);
3679 XFree (status_attr);
3682 FRAME_XIC (f) = xic;
3683 FRAME_XIC_STYLE (f) = xic_style;
3684 FRAME_XIC_FONTSET (f) = xfs;
3688 /* Destroy XIC and free XIC fontset of frame F, if any. */
3690 void
3691 free_frame_xic (f)
3692 struct frame *f;
3694 if (FRAME_XIC (f) == NULL)
3695 return;
3697 XDestroyIC (FRAME_XIC (f));
3698 if (FRAME_XIC_FONTSET (f))
3699 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
3701 FRAME_XIC (f) = NULL;
3702 FRAME_XIC_FONTSET (f) = NULL;
3706 /* Place preedit area for XIC of window W's frame to specified
3707 pixel position X/Y. X and Y are relative to window W. */
3709 void
3710 xic_set_preeditarea (w, x, y)
3711 struct window *w;
3712 int x, y;
3714 struct frame *f = XFRAME (w->frame);
3715 XVaNestedList attr;
3716 XPoint spot;
3718 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x);
3719 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
3720 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
3721 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
3722 XFree (attr);
3726 /* Place status area for XIC in bottom right corner of frame F.. */
3728 void
3729 xic_set_statusarea (f)
3730 struct frame *f;
3732 XIC xic = FRAME_XIC (f);
3733 XVaNestedList attr;
3734 XRectangle area;
3735 XRectangle *needed;
3737 /* Negotiate geometry of status area. If input method has existing
3738 status area, use its current size. */
3739 area.x = area.y = area.width = area.height = 0;
3740 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
3741 XSetICValues (xic, XNStatusAttributes, attr, NULL);
3742 XFree (attr);
3744 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
3745 XGetICValues (xic, XNStatusAttributes, attr, NULL);
3746 XFree (attr);
3748 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
3750 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
3751 XGetICValues (xic, XNStatusAttributes, attr, NULL);
3752 XFree (attr);
3755 area.width = needed->width;
3756 area.height = needed->height;
3757 area.x = PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
3758 area.y = (PIXEL_HEIGHT (f) - area.height
3759 - FRAME_MENUBAR_HEIGHT (f)
3760 - FRAME_TOOLBAR_HEIGHT (f)
3761 - FRAME_INTERNAL_BORDER_WIDTH (f));
3762 XFree (needed);
3764 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
3765 XSetICValues(xic, XNStatusAttributes, attr, NULL);
3766 XFree (attr);
3770 /* Set X fontset for XIC of frame F, using base font name
3771 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
3773 void
3774 xic_set_xfontset (f, base_fontname)
3775 struct frame *f;
3776 char *base_fontname;
3778 XVaNestedList attr;
3779 XFontSet xfs;
3781 xfs = xic_create_xfontset (f, base_fontname);
3783 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
3784 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
3785 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
3786 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
3787 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
3788 XFree (attr);
3790 if (FRAME_XIC_FONTSET (f))
3791 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
3792 FRAME_XIC_FONTSET (f) = xfs;
3795 #endif /* HAVE_X_I18N */
3799 #ifdef USE_X_TOOLKIT
3801 /* Create and set up the X widget for frame F. */
3803 static void
3804 x_window (f, window_prompting, minibuffer_only)
3805 struct frame *f;
3806 long window_prompting;
3807 int minibuffer_only;
3809 XClassHint class_hints;
3810 XSetWindowAttributes attributes;
3811 unsigned long attribute_mask;
3812 Widget shell_widget;
3813 Widget pane_widget;
3814 Widget frame_widget;
3815 Arg al [25];
3816 int ac;
3818 BLOCK_INPUT;
3820 /* Use the resource name as the top-level widget name
3821 for looking up resources. Make a non-Lisp copy
3822 for the window manager, so GC relocation won't bother it.
3824 Elsewhere we specify the window name for the window manager. */
3827 char *str = (char *) SDATA (Vx_resource_name);
3828 f->namebuf = (char *) xmalloc (strlen (str) + 1);
3829 strcpy (f->namebuf, str);
3832 ac = 0;
3833 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
3834 XtSetArg (al[ac], XtNinput, 1); ac++;
3835 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
3836 XtSetArg (al[ac], XtNborderWidth, f->output_data.x->border_width); ac++;
3837 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
3838 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
3839 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
3840 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
3841 applicationShellWidgetClass,
3842 FRAME_X_DISPLAY (f), al, ac);
3844 f->output_data.x->widget = shell_widget;
3845 /* maybe_set_screen_title_format (shell_widget); */
3847 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
3848 (widget_value *) NULL,
3849 shell_widget, False,
3850 (lw_callback) NULL,
3851 (lw_callback) NULL,
3852 (lw_callback) NULL,
3853 (lw_callback) NULL);
3855 ac = 0;
3856 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
3857 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
3858 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
3859 XtSetValues (pane_widget, al, ac);
3860 f->output_data.x->column_widget = pane_widget;
3862 /* mappedWhenManaged to false tells to the paned window to not map/unmap
3863 the emacs screen when changing menubar. This reduces flickering. */
3865 ac = 0;
3866 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
3867 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
3868 XtSetArg (al[ac], XtNallowResize, 1); ac++;
3869 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
3870 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
3871 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
3872 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
3873 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
3874 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
3875 al, ac);
3877 f->output_data.x->edit_widget = frame_widget;
3879 XtManageChild (frame_widget);
3881 /* Do some needed geometry management. */
3883 int len;
3884 char *tem, shell_position[32];
3885 Arg al[2];
3886 int ac = 0;
3887 int extra_borders = 0;
3888 int menubar_size
3889 = (f->output_data.x->menubar_widget
3890 ? (f->output_data.x->menubar_widget->core.height
3891 + f->output_data.x->menubar_widget->core.border_width)
3892 : 0);
3894 #if 0 /* Experimentally, we now get the right results
3895 for -geometry -0-0 without this. 24 Aug 96, rms. */
3896 if (FRAME_EXTERNAL_MENU_BAR (f))
3898 Dimension ibw = 0;
3899 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
3900 menubar_size += ibw;
3902 #endif
3904 f->output_data.x->menubar_height = menubar_size;
3906 #ifndef USE_LUCID
3907 /* Motif seems to need this amount added to the sizes
3908 specified for the shell widget. The Athena/Lucid widgets don't.
3909 Both conclusions reached experimentally. -- rms. */
3910 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
3911 &extra_borders, NULL);
3912 extra_borders *= 2;
3913 #endif
3915 /* Convert our geometry parameters into a geometry string
3916 and specify it.
3917 Note that we do not specify here whether the position
3918 is a user-specified or program-specified one.
3919 We pass that information later, in x_wm_set_size_hints. */
3921 int left = f->output_data.x->left_pos;
3922 int xneg = window_prompting & XNegative;
3923 int top = f->output_data.x->top_pos;
3924 int yneg = window_prompting & YNegative;
3925 if (xneg)
3926 left = -left;
3927 if (yneg)
3928 top = -top;
3930 if (window_prompting & USPosition)
3931 sprintf (shell_position, "=%dx%d%c%d%c%d",
3932 PIXEL_WIDTH (f) + extra_borders,
3933 PIXEL_HEIGHT (f) + menubar_size + extra_borders,
3934 (xneg ? '-' : '+'), left,
3935 (yneg ? '-' : '+'), top);
3936 else
3937 sprintf (shell_position, "=%dx%d",
3938 PIXEL_WIDTH (f) + extra_borders,
3939 PIXEL_HEIGHT (f) + menubar_size + extra_borders);
3942 len = strlen (shell_position) + 1;
3943 /* We don't free this because we don't know whether
3944 it is safe to free it while the frame exists.
3945 It isn't worth the trouble of arranging to free it
3946 when the frame is deleted. */
3947 tem = (char *) xmalloc (len);
3948 strncpy (tem, shell_position, len);
3949 XtSetArg (al[ac], XtNgeometry, tem); ac++;
3950 XtSetValues (shell_widget, al, ac);
3953 XtManageChild (pane_widget);
3954 XtRealizeWidget (shell_widget);
3956 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
3958 validate_x_resource_name ();
3960 class_hints.res_name = (char *) SDATA (Vx_resource_name);
3961 class_hints.res_class = (char *) SDATA (Vx_resource_class);
3962 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
3964 #ifdef HAVE_X_I18N
3965 FRAME_XIC (f) = NULL;
3966 #ifdef USE_XIM
3967 create_frame_xic (f);
3968 #endif
3969 #endif
3971 f->output_data.x->wm_hints.input = True;
3972 f->output_data.x->wm_hints.flags |= InputHint;
3973 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3974 &f->output_data.x->wm_hints);
3976 hack_wm_protocols (f, shell_widget);
3978 #ifdef HACK_EDITRES
3979 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
3980 #endif
3982 /* Do a stupid property change to force the server to generate a
3983 PropertyNotify event so that the event_stream server timestamp will
3984 be initialized to something relevant to the time we created the window.
3986 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
3987 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
3988 XA_ATOM, 32, PropModeAppend,
3989 (unsigned char*) NULL, 0);
3991 /* Make all the standard events reach the Emacs frame. */
3992 attributes.event_mask = STANDARD_EVENT_SET;
3994 #ifdef HAVE_X_I18N
3995 if (FRAME_XIC (f))
3997 /* XIM server might require some X events. */
3998 unsigned long fevent = NoEventMask;
3999 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
4000 attributes.event_mask |= fevent;
4002 #endif /* HAVE_X_I18N */
4004 attribute_mask = CWEventMask;
4005 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
4006 attribute_mask, &attributes);
4008 XtMapWidget (frame_widget);
4010 /* x_set_name normally ignores requests to set the name if the
4011 requested name is the same as the current name. This is the one
4012 place where that assumption isn't correct; f->name is set, but
4013 the X server hasn't been told. */
4015 Lisp_Object name;
4016 int explicit = f->explicit_name;
4018 f->explicit_name = 0;
4019 name = f->name;
4020 f->name = Qnil;
4021 x_set_name (f, name, explicit);
4024 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4025 f->output_data.x->text_cursor);
4027 UNBLOCK_INPUT;
4029 /* This is a no-op, except under Motif. Make sure main areas are
4030 set to something reasonable, in case we get an error later. */
4031 lw_set_main_areas (pane_widget, 0, frame_widget);
4034 #else /* not USE_X_TOOLKIT */
4035 #ifdef USE_GTK
4036 void
4037 x_window (f)
4038 FRAME_PTR f;
4040 if (! xg_create_frame_widgets (f))
4041 error ("Unable to create window");
4044 #else /*! USE_GTK */
4045 /* Create and set up the X window for frame F. */
4047 void
4048 x_window (f)
4049 struct frame *f;
4052 XClassHint class_hints;
4053 XSetWindowAttributes attributes;
4054 unsigned long attribute_mask;
4056 attributes.background_pixel = f->output_data.x->background_pixel;
4057 attributes.border_pixel = f->output_data.x->border_pixel;
4058 attributes.bit_gravity = StaticGravity;
4059 attributes.backing_store = NotUseful;
4060 attributes.save_under = True;
4061 attributes.event_mask = STANDARD_EVENT_SET;
4062 attributes.colormap = FRAME_X_COLORMAP (f);
4063 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
4064 | CWColormap);
4066 BLOCK_INPUT;
4067 FRAME_X_WINDOW (f)
4068 = XCreateWindow (FRAME_X_DISPLAY (f),
4069 f->output_data.x->parent_desc,
4070 f->output_data.x->left_pos,
4071 f->output_data.x->top_pos,
4072 PIXEL_WIDTH (f), PIXEL_HEIGHT (f),
4073 f->output_data.x->border_width,
4074 CopyFromParent, /* depth */
4075 InputOutput, /* class */
4076 FRAME_X_VISUAL (f),
4077 attribute_mask, &attributes);
4079 #ifdef HAVE_X_I18N
4080 #ifdef USE_XIM
4081 create_frame_xic (f);
4082 if (FRAME_XIC (f))
4084 /* XIM server might require some X events. */
4085 unsigned long fevent = NoEventMask;
4086 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
4087 attributes.event_mask |= fevent;
4088 attribute_mask = CWEventMask;
4089 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4090 attribute_mask, &attributes);
4092 #endif
4093 #endif /* HAVE_X_I18N */
4095 validate_x_resource_name ();
4097 class_hints.res_name = (char *) SDATA (Vx_resource_name);
4098 class_hints.res_class = (char *) SDATA (Vx_resource_class);
4099 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
4101 /* The menubar is part of the ordinary display;
4102 it does not count in addition to the height of the window. */
4103 f->output_data.x->menubar_height = 0;
4105 /* This indicates that we use the "Passive Input" input model.
4106 Unless we do this, we don't get the Focus{In,Out} events that we
4107 need to draw the cursor correctly. Accursed bureaucrats.
4108 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
4110 f->output_data.x->wm_hints.input = True;
4111 f->output_data.x->wm_hints.flags |= InputHint;
4112 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4113 &f->output_data.x->wm_hints);
4114 f->output_data.x->wm_hints.icon_pixmap = None;
4116 /* Request "save yourself" and "delete window" commands from wm. */
4118 Atom protocols[2];
4119 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
4120 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
4121 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
4124 /* x_set_name normally ignores requests to set the name if the
4125 requested name is the same as the current name. This is the one
4126 place where that assumption isn't correct; f->name is set, but
4127 the X server hasn't been told. */
4129 Lisp_Object name;
4130 int explicit = f->explicit_name;
4132 f->explicit_name = 0;
4133 name = f->name;
4134 f->name = Qnil;
4135 x_set_name (f, name, explicit);
4138 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4139 f->output_data.x->text_cursor);
4141 UNBLOCK_INPUT;
4143 if (FRAME_X_WINDOW (f) == 0)
4144 error ("Unable to create window");
4147 #endif /* not USE_GTK */
4148 #endif /* not USE_X_TOOLKIT */
4150 /* Handle the icon stuff for this window. Perhaps later we might
4151 want an x_set_icon_position which can be called interactively as
4152 well. */
4154 static void
4155 x_icon (f, parms)
4156 struct frame *f;
4157 Lisp_Object parms;
4159 Lisp_Object icon_x, icon_y;
4160 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4162 /* Set the position of the icon. Note that twm groups all
4163 icons in an icon window. */
4164 icon_x = x_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
4165 icon_y = x_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
4166 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
4168 CHECK_NUMBER (icon_x);
4169 CHECK_NUMBER (icon_y);
4171 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
4172 error ("Both left and top icon corners of icon must be specified");
4174 BLOCK_INPUT;
4176 if (! EQ (icon_x, Qunbound))
4177 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
4179 /* Start up iconic or window? */
4180 x_wm_set_window_state
4181 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
4182 Qicon)
4183 ? IconicState
4184 : NormalState));
4186 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
4187 ? f->icon_name
4188 : f->name)));
4190 UNBLOCK_INPUT;
4193 /* Make the GCs needed for this window, setting the
4194 background, border and mouse colors; also create the
4195 mouse cursor and the gray border tile. */
4197 static char cursor_bits[] =
4199 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4200 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4201 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4202 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
4205 static void
4206 x_make_gc (f)
4207 struct frame *f;
4209 XGCValues gc_values;
4211 BLOCK_INPUT;
4213 /* Create the GCs of this frame.
4214 Note that many default values are used. */
4216 /* Normal video */
4217 gc_values.font = f->output_data.x->font->fid;
4218 gc_values.foreground = f->output_data.x->foreground_pixel;
4219 gc_values.background = f->output_data.x->background_pixel;
4220 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
4221 f->output_data.x->normal_gc
4222 = XCreateGC (FRAME_X_DISPLAY (f),
4223 FRAME_X_WINDOW (f),
4224 GCLineWidth | GCFont | GCForeground | GCBackground,
4225 &gc_values);
4227 /* Reverse video style. */
4228 gc_values.foreground = f->output_data.x->background_pixel;
4229 gc_values.background = f->output_data.x->foreground_pixel;
4230 f->output_data.x->reverse_gc
4231 = XCreateGC (FRAME_X_DISPLAY (f),
4232 FRAME_X_WINDOW (f),
4233 GCFont | GCForeground | GCBackground | GCLineWidth,
4234 &gc_values);
4236 /* Cursor has cursor-color background, background-color foreground. */
4237 gc_values.foreground = f->output_data.x->background_pixel;
4238 gc_values.background = f->output_data.x->cursor_pixel;
4239 gc_values.fill_style = FillOpaqueStippled;
4240 gc_values.stipple
4241 = XCreateBitmapFromData (FRAME_X_DISPLAY (f),
4242 FRAME_X_DISPLAY_INFO (f)->root_window,
4243 cursor_bits, 16, 16);
4244 f->output_data.x->cursor_gc
4245 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4246 (GCFont | GCForeground | GCBackground
4247 | GCFillStyle /* | GCStipple */ | GCLineWidth),
4248 &gc_values);
4250 /* Reliefs. */
4251 f->output_data.x->white_relief.gc = 0;
4252 f->output_data.x->black_relief.gc = 0;
4254 /* Create the gray border tile used when the pointer is not in
4255 the frame. Since this depends on the frame's pixel values,
4256 this must be done on a per-frame basis. */
4257 f->output_data.x->border_tile
4258 = (XCreatePixmapFromBitmapData
4259 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
4260 gray_bits, gray_width, gray_height,
4261 f->output_data.x->foreground_pixel,
4262 f->output_data.x->background_pixel,
4263 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
4265 UNBLOCK_INPUT;
4269 /* Free what was was allocated in x_make_gc. */
4271 void
4272 x_free_gcs (f)
4273 struct frame *f;
4275 Display *dpy = FRAME_X_DISPLAY (f);
4277 BLOCK_INPUT;
4279 if (f->output_data.x->normal_gc)
4281 XFreeGC (dpy, f->output_data.x->normal_gc);
4282 f->output_data.x->normal_gc = 0;
4285 if (f->output_data.x->reverse_gc)
4287 XFreeGC (dpy, f->output_data.x->reverse_gc);
4288 f->output_data.x->reverse_gc = 0;
4291 if (f->output_data.x->cursor_gc)
4293 XFreeGC (dpy, f->output_data.x->cursor_gc);
4294 f->output_data.x->cursor_gc = 0;
4297 if (f->output_data.x->border_tile)
4299 XFreePixmap (dpy, f->output_data.x->border_tile);
4300 f->output_data.x->border_tile = 0;
4303 UNBLOCK_INPUT;
4307 /* Handler for signals raised during x_create_frame and
4308 x_create_top_frame. FRAME is the frame which is partially
4309 constructed. */
4311 static Lisp_Object
4312 unwind_create_frame (frame)
4313 Lisp_Object frame;
4315 struct frame *f = XFRAME (frame);
4317 /* If frame is ``official'', nothing to do. */
4318 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
4320 #if GLYPH_DEBUG
4321 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4322 #endif
4324 x_free_frame_resources (f);
4326 /* Check that reference counts are indeed correct. */
4327 xassert (dpyinfo->reference_count == dpyinfo_refcount);
4328 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
4329 return Qt;
4332 return Qnil;
4336 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
4337 1, 1, 0,
4338 doc: /* Make a new X window, which is called a "frame" in Emacs terms.
4339 Returns an Emacs frame object.
4340 ALIST is an alist of frame parameters.
4341 If the parameters specify that the frame should not have a minibuffer,
4342 and do not specify a specific minibuffer window to use,
4343 then `default-minibuffer-frame' must be a frame whose minibuffer can
4344 be shared by the new frame.
4346 This function is an internal primitive--use `make-frame' instead. */)
4347 (parms)
4348 Lisp_Object parms;
4350 struct frame *f;
4351 Lisp_Object frame, tem;
4352 Lisp_Object name;
4353 int minibuffer_only = 0;
4354 long window_prompting = 0;
4355 int width, height;
4356 int count = SPECPDL_INDEX ();
4357 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4358 Lisp_Object display;
4359 struct x_display_info *dpyinfo = NULL;
4360 Lisp_Object parent;
4361 struct kboard *kb;
4363 check_x ();
4365 /* Use this general default value to start with
4366 until we know if this frame has a specified name. */
4367 Vx_resource_name = Vinvocation_name;
4369 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
4370 if (EQ (display, Qunbound))
4371 display = Qnil;
4372 dpyinfo = check_x_display_info (display);
4373 #ifdef MULTI_KBOARD
4374 kb = dpyinfo->kboard;
4375 #else
4376 kb = &the_only_kboard;
4377 #endif
4379 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
4380 if (!STRINGP (name)
4381 && ! EQ (name, Qunbound)
4382 && ! NILP (name))
4383 error ("Invalid frame name--not a string or nil");
4385 if (STRINGP (name))
4386 Vx_resource_name = name;
4388 /* See if parent window is specified. */
4389 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
4390 if (EQ (parent, Qunbound))
4391 parent = Qnil;
4392 if (! NILP (parent))
4393 CHECK_NUMBER (parent);
4395 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
4396 /* No need to protect DISPLAY because that's not used after passing
4397 it to make_frame_without_minibuffer. */
4398 frame = Qnil;
4399 GCPRO4 (parms, parent, name, frame);
4400 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
4401 RES_TYPE_SYMBOL);
4402 if (EQ (tem, Qnone) || NILP (tem))
4403 f = make_frame_without_minibuffer (Qnil, kb, display);
4404 else if (EQ (tem, Qonly))
4406 f = make_minibuffer_frame ();
4407 minibuffer_only = 1;
4409 else if (WINDOWP (tem))
4410 f = make_frame_without_minibuffer (tem, kb, display);
4411 else
4412 f = make_frame (1);
4414 XSETFRAME (frame, f);
4416 /* Note that X Windows does support scroll bars. */
4417 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
4419 f->output_method = output_x_window;
4420 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
4421 bzero (f->output_data.x, sizeof (struct x_output));
4422 f->output_data.x->icon_bitmap = -1;
4423 f->output_data.x->fontset = -1;
4424 f->output_data.x->scroll_bar_foreground_pixel = -1;
4425 f->output_data.x->scroll_bar_background_pixel = -1;
4426 #ifdef USE_TOOLKIT_SCROLL_BARS
4427 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
4428 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
4429 #endif /* USE_TOOLKIT_SCROLL_BARS */
4430 record_unwind_protect (unwind_create_frame, frame);
4432 f->icon_name
4433 = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
4434 RES_TYPE_STRING);
4435 if (! STRINGP (f->icon_name))
4436 f->icon_name = Qnil;
4438 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
4439 #if GLYPH_DEBUG
4440 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
4441 dpyinfo_refcount = dpyinfo->reference_count;
4442 #endif /* GLYPH_DEBUG */
4443 #ifdef MULTI_KBOARD
4444 FRAME_KBOARD (f) = kb;
4445 #endif
4447 /* These colors will be set anyway later, but it's important
4448 to get the color reference counts right, so initialize them! */
4450 Lisp_Object black;
4451 struct gcpro gcpro1;
4453 /* Function x_decode_color can signal an error. Make
4454 sure to initialize color slots so that we won't try
4455 to free colors we haven't allocated. */
4456 f->output_data.x->foreground_pixel = -1;
4457 f->output_data.x->background_pixel = -1;
4458 f->output_data.x->cursor_pixel = -1;
4459 f->output_data.x->cursor_foreground_pixel = -1;
4460 f->output_data.x->border_pixel = -1;
4461 f->output_data.x->mouse_pixel = -1;
4463 black = build_string ("black");
4464 GCPRO1 (black);
4465 f->output_data.x->foreground_pixel
4466 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4467 f->output_data.x->background_pixel
4468 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4469 f->output_data.x->cursor_pixel
4470 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4471 f->output_data.x->cursor_foreground_pixel
4472 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4473 f->output_data.x->border_pixel
4474 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4475 f->output_data.x->mouse_pixel
4476 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4477 UNGCPRO;
4480 /* Specify the parent under which to make this X window. */
4482 if (!NILP (parent))
4484 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
4485 f->output_data.x->explicit_parent = 1;
4487 else
4489 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4490 f->output_data.x->explicit_parent = 0;
4493 /* Set the name; the functions to which we pass f expect the name to
4494 be set. */
4495 if (EQ (name, Qunbound) || NILP (name))
4497 f->name = build_string (dpyinfo->x_id_name);
4498 f->explicit_name = 0;
4500 else
4502 f->name = name;
4503 f->explicit_name = 1;
4504 /* use the frame's title when getting resources for this frame. */
4505 specbind (Qx_resource_name, name);
4508 /* Extract the window parameters from the supplied values
4509 that are needed to determine window geometry. */
4511 Lisp_Object font;
4513 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
4515 BLOCK_INPUT;
4516 /* First, try whatever font the caller has specified. */
4517 if (STRINGP (font))
4519 tem = Fquery_fontset (font, Qnil);
4520 if (STRINGP (tem))
4521 font = x_new_fontset (f, SDATA (tem));
4522 else
4523 font = x_new_font (f, SDATA (font));
4526 /* Try out a font which we hope has bold and italic variations. */
4527 if (!STRINGP (font))
4528 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
4529 if (!STRINGP (font))
4530 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4531 if (! STRINGP (font))
4532 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4533 if (! STRINGP (font))
4534 /* This was formerly the first thing tried, but it finds too many fonts
4535 and takes too long. */
4536 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
4537 /* If those didn't work, look for something which will at least work. */
4538 if (! STRINGP (font))
4539 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
4540 UNBLOCK_INPUT;
4541 if (! STRINGP (font))
4542 font = build_string ("fixed");
4544 x_default_parameter (f, parms, Qfont, font,
4545 "font", "Font", RES_TYPE_STRING);
4548 #ifdef USE_LUCID
4549 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
4550 whereby it fails to get any font. */
4551 xlwmenu_default_font = f->output_data.x->font;
4552 #endif
4554 x_default_parameter (f, parms, Qborder_width, make_number (2),
4555 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
4557 /* This defaults to 1 in order to match xterm. We recognize either
4558 internalBorderWidth or internalBorder (which is what xterm calls
4559 it). */
4560 if (NILP (Fassq (Qinternal_border_width, parms)))
4562 Lisp_Object value;
4564 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
4565 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
4566 if (! EQ (value, Qunbound))
4567 parms = Fcons (Fcons (Qinternal_border_width, value),
4568 parms);
4570 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
4571 "internalBorderWidth", "internalBorderWidth",
4572 RES_TYPE_NUMBER);
4573 x_default_parameter (f, parms, Qvertical_scroll_bars, Qleft,
4574 "verticalScrollBars", "ScrollBars",
4575 RES_TYPE_SYMBOL);
4577 /* Also do the stuff which must be set before the window exists. */
4578 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
4579 "foreground", "Foreground", RES_TYPE_STRING);
4580 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
4581 "background", "Background", RES_TYPE_STRING);
4582 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
4583 "pointerColor", "Foreground", RES_TYPE_STRING);
4584 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
4585 "cursorColor", "Foreground", RES_TYPE_STRING);
4586 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
4587 "borderColor", "BorderColor", RES_TYPE_STRING);
4588 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
4589 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
4590 x_default_parameter (f, parms, Qline_spacing, Qnil,
4591 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
4592 x_default_parameter (f, parms, Qleft_fringe, Qnil,
4593 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
4594 x_default_parameter (f, parms, Qright_fringe, Qnil,
4595 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
4597 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
4598 "scrollBarForeground",
4599 "ScrollBarForeground", 1);
4600 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
4601 "scrollBarBackground",
4602 "ScrollBarBackground", 0);
4604 /* Init faces before x_default_parameter is called for scroll-bar
4605 parameters because that function calls x_set_scroll_bar_width,
4606 which calls change_frame_size, which calls Fset_window_buffer,
4607 which runs hooks, which call Fvertical_motion. At the end, we
4608 end up in init_iterator with a null face cache, which should not
4609 happen. */
4610 init_frame_faces (f);
4612 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
4613 "menuBar", "MenuBar", RES_TYPE_NUMBER);
4614 x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
4615 "toolBar", "ToolBar", RES_TYPE_NUMBER);
4616 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
4617 "bufferPredicate", "BufferPredicate",
4618 RES_TYPE_SYMBOL);
4619 x_default_parameter (f, parms, Qtitle, Qnil,
4620 "title", "Title", RES_TYPE_STRING);
4621 x_default_parameter (f, parms, Qwait_for_wm, Qt,
4622 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN);
4623 x_default_parameter (f, parms, Qfullscreen, Qnil,
4624 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
4626 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4628 /* Add the tool-bar height to the initial frame height so that the
4629 user gets a text display area of the size he specified with -g or
4630 via .Xdefaults. Later changes of the tool-bar height don't
4631 change the frame size. This is done so that users can create
4632 tall Emacs frames without having to guess how tall the tool-bar
4633 will get. */
4634 if (FRAME_TOOL_BAR_LINES (f))
4636 int margin, relief, bar_height;
4638 relief = (tool_bar_button_relief >= 0
4639 ? tool_bar_button_relief
4640 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
4642 if (INTEGERP (Vtool_bar_button_margin)
4643 && XINT (Vtool_bar_button_margin) > 0)
4644 margin = XFASTINT (Vtool_bar_button_margin);
4645 else if (CONSP (Vtool_bar_button_margin)
4646 && INTEGERP (XCDR (Vtool_bar_button_margin))
4647 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4648 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
4649 else
4650 margin = 0;
4652 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
4653 f->height += (bar_height + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
4656 /* Compute the size of the X window. */
4657 window_prompting = x_figure_window_size (f, parms);
4659 if (window_prompting & XNegative)
4661 if (window_prompting & YNegative)
4662 f->output_data.x->win_gravity = SouthEastGravity;
4663 else
4664 f->output_data.x->win_gravity = NorthEastGravity;
4666 else
4668 if (window_prompting & YNegative)
4669 f->output_data.x->win_gravity = SouthWestGravity;
4670 else
4671 f->output_data.x->win_gravity = NorthWestGravity;
4674 f->output_data.x->size_hint_flags = window_prompting;
4676 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
4677 f->no_split = minibuffer_only || EQ (tem, Qt);
4679 /* Create the X widget or window. */
4680 #ifdef USE_X_TOOLKIT
4681 x_window (f, window_prompting, minibuffer_only);
4682 #else
4683 x_window (f);
4684 #endif
4686 x_icon (f, parms);
4687 x_make_gc (f);
4689 /* Now consider the frame official. */
4690 FRAME_X_DISPLAY_INFO (f)->reference_count++;
4691 Vframe_list = Fcons (frame, Vframe_list);
4693 /* We need to do this after creating the X window, so that the
4694 icon-creation functions can say whose icon they're describing. */
4695 x_default_parameter (f, parms, Qicon_type, Qnil,
4696 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
4698 x_default_parameter (f, parms, Qauto_raise, Qnil,
4699 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4700 x_default_parameter (f, parms, Qauto_lower, Qnil,
4701 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4702 x_default_parameter (f, parms, Qcursor_type, Qbox,
4703 "cursorType", "CursorType", RES_TYPE_SYMBOL);
4704 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
4705 "scrollBarWidth", "ScrollBarWidth",
4706 RES_TYPE_NUMBER);
4708 /* Dimensions, especially f->height, must be done via change_frame_size.
4709 Change will not be effected unless different from the current
4710 f->height. */
4711 width = f->width;
4712 height = f->height;
4714 f->height = 0;
4715 SET_FRAME_WIDTH (f, 0);
4716 change_frame_size (f, height, width, 1, 0, 0);
4718 /* Set up faces after all frame parameters are known. This call
4719 also merges in face attributes specified for new frames. If we
4720 don't do this, the `menu' face for instance won't have the right
4721 colors, and the menu bar won't appear in the specified colors for
4722 new frames. */
4723 call1 (Qface_set_after_frame_default, frame);
4725 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
4726 /* Create the menu bar. */
4727 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
4729 /* If this signals an error, we haven't set size hints for the
4730 frame and we didn't make it visible. */
4731 initialize_frame_menubar (f);
4733 #ifndef USE_GTK
4734 /* This is a no-op, except under Motif where it arranges the
4735 main window for the widgets on it. */
4736 lw_set_main_areas (f->output_data.x->column_widget,
4737 f->output_data.x->menubar_widget,
4738 f->output_data.x->edit_widget);
4739 #endif /* not USE_GTK */
4741 #endif /* USE_X_TOOLKIT || USE_GTK */
4743 /* Tell the server what size and position, etc, we want, and how
4744 badly we want them. This should be done after we have the menu
4745 bar so that its size can be taken into account. */
4746 BLOCK_INPUT;
4747 x_wm_set_size_hint (f, window_prompting, 0);
4748 UNBLOCK_INPUT;
4750 /* Make the window appear on the frame and enable display, unless
4751 the caller says not to. However, with explicit parent, Emacs
4752 cannot control visibility, so don't try. */
4753 if (! f->output_data.x->explicit_parent)
4755 Lisp_Object visibility;
4757 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
4758 RES_TYPE_SYMBOL);
4759 if (EQ (visibility, Qunbound))
4760 visibility = Qt;
4762 if (EQ (visibility, Qicon))
4763 x_iconify_frame (f);
4764 else if (! NILP (visibility))
4765 x_make_frame_visible (f);
4766 else
4767 /* Must have been Qnil. */
4771 UNGCPRO;
4773 /* Make sure windows on this frame appear in calls to next-window
4774 and similar functions. */
4775 Vwindow_list = Qnil;
4777 return unbind_to (count, frame);
4781 /* FRAME is used only to get a handle on the X display. We don't pass the
4782 display info directly because we're called from frame.c, which doesn't
4783 know about that structure. */
4785 Lisp_Object
4786 x_get_focus_frame (frame)
4787 struct frame *frame;
4789 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
4790 Lisp_Object xfocus;
4791 if (! dpyinfo->x_focus_frame)
4792 return Qnil;
4794 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
4795 return xfocus;
4799 /* In certain situations, when the window manager follows a
4800 click-to-focus policy, there seems to be no way around calling
4801 XSetInputFocus to give another frame the input focus .
4803 In an ideal world, XSetInputFocus should generally be avoided so
4804 that applications don't interfere with the window manager's focus
4805 policy. But I think it's okay to use when it's clearly done
4806 following a user-command. */
4808 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
4809 doc: /* Set the input focus to FRAME.
4810 FRAME nil means use the selected frame. */)
4811 (frame)
4812 Lisp_Object frame;
4814 struct frame *f = check_x_frame (frame);
4815 Display *dpy = FRAME_X_DISPLAY (f);
4816 int count;
4818 BLOCK_INPUT;
4819 count = x_catch_errors (dpy);
4820 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4821 RevertToParent, CurrentTime);
4822 x_uncatch_errors (dpy, count);
4823 UNBLOCK_INPUT;
4825 return Qnil;
4829 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
4830 doc: /* Internal function called by `color-defined-p', which see. */)
4831 (color, frame)
4832 Lisp_Object color, frame;
4834 XColor foo;
4835 FRAME_PTR f = check_x_frame (frame);
4837 CHECK_STRING (color);
4839 if (x_defined_color (f, SDATA (color), &foo, 0))
4840 return Qt;
4841 else
4842 return Qnil;
4845 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
4846 doc: /* Internal function called by `color-values', which see. */)
4847 (color, frame)
4848 Lisp_Object color, frame;
4850 XColor foo;
4851 FRAME_PTR f = check_x_frame (frame);
4853 CHECK_STRING (color);
4855 if (x_defined_color (f, SDATA (color), &foo, 0))
4857 Lisp_Object rgb[3];
4859 rgb[0] = make_number (foo.red);
4860 rgb[1] = make_number (foo.green);
4861 rgb[2] = make_number (foo.blue);
4862 return Flist (3, rgb);
4864 else
4865 return Qnil;
4868 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
4869 doc: /* Internal function called by `display-color-p', which see. */)
4870 (display)
4871 Lisp_Object display;
4873 struct x_display_info *dpyinfo = check_x_display_info (display);
4875 if (dpyinfo->n_planes <= 2)
4876 return Qnil;
4878 switch (dpyinfo->visual->class)
4880 case StaticColor:
4881 case PseudoColor:
4882 case TrueColor:
4883 case DirectColor:
4884 return Qt;
4886 default:
4887 return Qnil;
4891 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
4892 0, 1, 0,
4893 doc: /* Return t if the X display supports shades of gray.
4894 Note that color displays do support shades of gray.
4895 The optional argument DISPLAY specifies which display to ask about.
4896 DISPLAY should be either a frame or a display name (a string).
4897 If omitted or nil, that stands for the selected frame's display. */)
4898 (display)
4899 Lisp_Object display;
4901 struct x_display_info *dpyinfo = check_x_display_info (display);
4903 if (dpyinfo->n_planes <= 1)
4904 return Qnil;
4906 switch (dpyinfo->visual->class)
4908 case StaticColor:
4909 case PseudoColor:
4910 case TrueColor:
4911 case DirectColor:
4912 case StaticGray:
4913 case GrayScale:
4914 return Qt;
4916 default:
4917 return Qnil;
4921 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
4922 0, 1, 0,
4923 doc: /* Returns the width in pixels of the X display DISPLAY.
4924 The optional argument DISPLAY specifies which display to ask about.
4925 DISPLAY should be either a frame or a display name (a string).
4926 If omitted or nil, that stands for the selected frame's display. */)
4927 (display)
4928 Lisp_Object display;
4930 struct x_display_info *dpyinfo = check_x_display_info (display);
4932 return make_number (dpyinfo->width);
4935 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
4936 Sx_display_pixel_height, 0, 1, 0,
4937 doc: /* Returns the height in pixels of the X display DISPLAY.
4938 The optional argument DISPLAY specifies which display to ask about.
4939 DISPLAY should be either a frame or a display name (a string).
4940 If omitted or nil, that stands for the selected frame's display. */)
4941 (display)
4942 Lisp_Object display;
4944 struct x_display_info *dpyinfo = check_x_display_info (display);
4946 return make_number (dpyinfo->height);
4949 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
4950 0, 1, 0,
4951 doc: /* Returns the number of bitplanes of the X display DISPLAY.
4952 The optional argument DISPLAY specifies which display to ask about.
4953 DISPLAY should be either a frame or a display name (a string).
4954 If omitted or nil, that stands for the selected frame's display. */)
4955 (display)
4956 Lisp_Object display;
4958 struct x_display_info *dpyinfo = check_x_display_info (display);
4960 return make_number (dpyinfo->n_planes);
4963 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
4964 0, 1, 0,
4965 doc: /* Returns the number of color cells of the X display DISPLAY.
4966 The optional argument DISPLAY specifies which display to ask about.
4967 DISPLAY should be either a frame or a display name (a string).
4968 If omitted or nil, that stands for the selected frame's display. */)
4969 (display)
4970 Lisp_Object display;
4972 struct x_display_info *dpyinfo = check_x_display_info (display);
4974 return make_number (DisplayCells (dpyinfo->display,
4975 XScreenNumberOfScreen (dpyinfo->screen)));
4978 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
4979 Sx_server_max_request_size,
4980 0, 1, 0,
4981 doc: /* Returns the maximum request size of the X server of display DISPLAY.
4982 The optional argument DISPLAY specifies which display to ask about.
4983 DISPLAY should be either a frame or a display name (a string).
4984 If omitted or nil, that stands for the selected frame's display. */)
4985 (display)
4986 Lisp_Object display;
4988 struct x_display_info *dpyinfo = check_x_display_info (display);
4990 return make_number (MAXREQUEST (dpyinfo->display));
4993 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
4994 doc: /* Returns the vendor ID string of the X server of display DISPLAY.
4995 The optional argument DISPLAY specifies which display to ask about.
4996 DISPLAY should be either a frame or a display name (a string).
4997 If omitted or nil, that stands for the selected frame's display. */)
4998 (display)
4999 Lisp_Object display;
5001 struct x_display_info *dpyinfo = check_x_display_info (display);
5002 char *vendor = ServerVendor (dpyinfo->display);
5004 if (! vendor) vendor = "";
5005 return build_string (vendor);
5008 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
5009 doc: /* Returns the version numbers of the X server of display DISPLAY.
5010 The value is a list of three integers: the major and minor
5011 version numbers of the X Protocol in use, and the vendor-specific release
5012 number. See also the function `x-server-vendor'.
5014 The optional argument DISPLAY specifies which display to ask about.
5015 DISPLAY should be either a frame or a display name (a string).
5016 If omitted or nil, that stands for the selected frame's display. */)
5017 (display)
5018 Lisp_Object display;
5020 struct x_display_info *dpyinfo = check_x_display_info (display);
5021 Display *dpy = dpyinfo->display;
5023 return Fcons (make_number (ProtocolVersion (dpy)),
5024 Fcons (make_number (ProtocolRevision (dpy)),
5025 Fcons (make_number (VendorRelease (dpy)), Qnil)));
5028 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
5029 doc: /* Return the number of screens on the X server of display DISPLAY.
5030 The optional argument DISPLAY specifies which display to ask about.
5031 DISPLAY should be either a frame or a display name (a string).
5032 If omitted or nil, that stands for the selected frame's display. */)
5033 (display)
5034 Lisp_Object display;
5036 struct x_display_info *dpyinfo = check_x_display_info (display);
5038 return make_number (ScreenCount (dpyinfo->display));
5041 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
5042 doc: /* Return the height in millimeters of the X display DISPLAY.
5043 The optional argument DISPLAY specifies which display to ask about.
5044 DISPLAY should be either a frame or a display name (a string).
5045 If omitted or nil, that stands for the selected frame's display. */)
5046 (display)
5047 Lisp_Object display;
5049 struct x_display_info *dpyinfo = check_x_display_info (display);
5051 return make_number (HeightMMOfScreen (dpyinfo->screen));
5054 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
5055 doc: /* Return the width in millimeters of the X display DISPLAY.
5056 The optional argument DISPLAY specifies which display to ask about.
5057 DISPLAY should be either a frame or a display name (a string).
5058 If omitted or nil, that stands for the selected frame's display. */)
5059 (display)
5060 Lisp_Object display;
5062 struct x_display_info *dpyinfo = check_x_display_info (display);
5064 return make_number (WidthMMOfScreen (dpyinfo->screen));
5067 DEFUN ("x-display-backing-store", Fx_display_backing_store,
5068 Sx_display_backing_store, 0, 1, 0,
5069 doc: /* Returns an indication of whether X display DISPLAY does backing store.
5070 The value may be `always', `when-mapped', or `not-useful'.
5071 The optional argument DISPLAY specifies which display to ask about.
5072 DISPLAY should be either a frame or a display name (a string).
5073 If omitted or nil, that stands for the selected frame's display. */)
5074 (display)
5075 Lisp_Object display;
5077 struct x_display_info *dpyinfo = check_x_display_info (display);
5078 Lisp_Object result;
5080 switch (DoesBackingStore (dpyinfo->screen))
5082 case Always:
5083 result = intern ("always");
5084 break;
5086 case WhenMapped:
5087 result = intern ("when-mapped");
5088 break;
5090 case NotUseful:
5091 result = intern ("not-useful");
5092 break;
5094 default:
5095 error ("Strange value for BackingStore parameter of screen");
5096 result = Qnil;
5099 return result;
5102 DEFUN ("x-display-visual-class", Fx_display_visual_class,
5103 Sx_display_visual_class, 0, 1, 0,
5104 doc: /* Return the visual class of the X display DISPLAY.
5105 The value is one of the symbols `static-gray', `gray-scale',
5106 `static-color', `pseudo-color', `true-color', or `direct-color'.
5108 The optional argument DISPLAY specifies which display to ask about.
5109 DISPLAY should be either a frame or a display name (a string).
5110 If omitted or nil, that stands for the selected frame's display. */)
5111 (display)
5112 Lisp_Object display;
5114 struct x_display_info *dpyinfo = check_x_display_info (display);
5115 Lisp_Object result;
5117 switch (dpyinfo->visual->class)
5119 case StaticGray:
5120 result = intern ("static-gray");
5121 break;
5122 case GrayScale:
5123 result = intern ("gray-scale");
5124 break;
5125 case StaticColor:
5126 result = intern ("static-color");
5127 break;
5128 case PseudoColor:
5129 result = intern ("pseudo-color");
5130 break;
5131 case TrueColor:
5132 result = intern ("true-color");
5133 break;
5134 case DirectColor:
5135 result = intern ("direct-color");
5136 break;
5137 default:
5138 error ("Display has an unknown visual class");
5139 result = Qnil;
5142 return result;
5145 DEFUN ("x-display-save-under", Fx_display_save_under,
5146 Sx_display_save_under, 0, 1, 0,
5147 doc: /* Returns t if the X display DISPLAY supports the save-under feature.
5148 The optional argument DISPLAY specifies which display to ask about.
5149 DISPLAY should be either a frame or a display name (a string).
5150 If omitted or nil, that stands for the selected frame's display. */)
5151 (display)
5152 Lisp_Object display;
5154 struct x_display_info *dpyinfo = check_x_display_info (display);
5156 if (DoesSaveUnders (dpyinfo->screen) == True)
5157 return Qt;
5158 else
5159 return Qnil;
5163 x_pixel_width (f)
5164 register struct frame *f;
5166 return PIXEL_WIDTH (f);
5170 x_pixel_height (f)
5171 register struct frame *f;
5173 return PIXEL_HEIGHT (f);
5177 x_char_width (f)
5178 register struct frame *f;
5180 return FONT_WIDTH (f->output_data.x->font);
5184 x_char_height (f)
5185 register struct frame *f;
5187 return f->output_data.x->line_height;
5191 x_screen_planes (f)
5192 register struct frame *f;
5194 return FRAME_X_DISPLAY_INFO (f)->n_planes;
5199 /************************************************************************
5200 X Displays
5201 ************************************************************************/
5204 /* Mapping visual names to visuals. */
5206 static struct visual_class
5208 char *name;
5209 int class;
5211 visual_classes[] =
5213 {"StaticGray", StaticGray},
5214 {"GrayScale", GrayScale},
5215 {"StaticColor", StaticColor},
5216 {"PseudoColor", PseudoColor},
5217 {"TrueColor", TrueColor},
5218 {"DirectColor", DirectColor},
5219 {NULL, 0}
5223 #ifndef HAVE_XSCREENNUMBEROFSCREEN
5225 /* Value is the screen number of screen SCR. This is a substitute for
5226 the X function with the same name when that doesn't exist. */
5229 XScreenNumberOfScreen (scr)
5230 register Screen *scr;
5232 Display *dpy = scr->display;
5233 int i;
5235 for (i = 0; i < dpy->nscreens; ++i)
5236 if (scr == dpy->screens + i)
5237 break;
5239 return i;
5242 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
5245 /* Select the visual that should be used on display DPYINFO. Set
5246 members of DPYINFO appropriately. Called from x_term_init. */
5248 void
5249 select_visual (dpyinfo)
5250 struct x_display_info *dpyinfo;
5252 Display *dpy = dpyinfo->display;
5253 Screen *screen = dpyinfo->screen;
5254 Lisp_Object value;
5256 /* See if a visual is specified. */
5257 value = display_x_get_resource (dpyinfo,
5258 build_string ("visualClass"),
5259 build_string ("VisualClass"),
5260 Qnil, Qnil);
5261 if (STRINGP (value))
5263 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
5264 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
5265 depth, a decimal number. NAME is compared with case ignored. */
5266 char *s = (char *) alloca (SBYTES (value) + 1);
5267 char *dash;
5268 int i, class = -1;
5269 XVisualInfo vinfo;
5271 strcpy (s, SDATA (value));
5272 dash = index (s, '-');
5273 if (dash)
5275 dpyinfo->n_planes = atoi (dash + 1);
5276 *dash = '\0';
5278 else
5279 /* We won't find a matching visual with depth 0, so that
5280 an error will be printed below. */
5281 dpyinfo->n_planes = 0;
5283 /* Determine the visual class. */
5284 for (i = 0; visual_classes[i].name; ++i)
5285 if (xstricmp (s, visual_classes[i].name) == 0)
5287 class = visual_classes[i].class;
5288 break;
5291 /* Look up a matching visual for the specified class. */
5292 if (class == -1
5293 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
5294 dpyinfo->n_planes, class, &vinfo))
5295 fatal ("Invalid visual specification `%s'", SDATA (value));
5297 dpyinfo->visual = vinfo.visual;
5299 else
5301 int n_visuals;
5302 XVisualInfo *vinfo, vinfo_template;
5304 dpyinfo->visual = DefaultVisualOfScreen (screen);
5306 #ifdef HAVE_X11R4
5307 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
5308 #else
5309 vinfo_template.visualid = dpyinfo->visual->visualid;
5310 #endif
5311 vinfo_template.screen = XScreenNumberOfScreen (screen);
5312 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
5313 &vinfo_template, &n_visuals);
5314 if (n_visuals != 1)
5315 fatal ("Can't get proper X visual info");
5317 dpyinfo->n_planes = vinfo->depth;
5318 XFree ((char *) vinfo);
5323 /* Return the X display structure for the display named NAME.
5324 Open a new connection if necessary. */
5326 struct x_display_info *
5327 x_display_info_for_name (name)
5328 Lisp_Object name;
5330 Lisp_Object names;
5331 struct x_display_info *dpyinfo;
5333 CHECK_STRING (name);
5335 if (! EQ (Vwindow_system, intern ("x")))
5336 error ("Not using X Windows");
5338 for (dpyinfo = x_display_list, names = x_display_name_list;
5339 dpyinfo;
5340 dpyinfo = dpyinfo->next, names = XCDR (names))
5342 Lisp_Object tem;
5343 tem = Fstring_equal (XCAR (XCAR (names)), name);
5344 if (!NILP (tem))
5345 return dpyinfo;
5348 /* Use this general default value to start with. */
5349 Vx_resource_name = Vinvocation_name;
5351 validate_x_resource_name ();
5353 dpyinfo = x_term_init (name, (char *)0,
5354 (char *) SDATA (Vx_resource_name));
5356 if (dpyinfo == 0)
5357 error ("Cannot connect to X server %s", SDATA (name));
5359 x_in_use = 1;
5360 XSETFASTINT (Vwindow_system_version, 11);
5362 return dpyinfo;
5366 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
5367 1, 3, 0,
5368 doc: /* Open a connection to an X server.
5369 DISPLAY is the name of the display to connect to.
5370 Optional second arg XRM-STRING is a string of resources in xrdb format.
5371 If the optional third arg MUST-SUCCEED is non-nil,
5372 terminate Emacs if we can't open the connection. */)
5373 (display, xrm_string, must_succeed)
5374 Lisp_Object display, xrm_string, must_succeed;
5376 unsigned char *xrm_option;
5377 struct x_display_info *dpyinfo;
5379 CHECK_STRING (display);
5380 if (! NILP (xrm_string))
5381 CHECK_STRING (xrm_string);
5383 if (! EQ (Vwindow_system, intern ("x")))
5384 error ("Not using X Windows");
5386 if (! NILP (xrm_string))
5387 xrm_option = (unsigned char *) SDATA (xrm_string);
5388 else
5389 xrm_option = (unsigned char *) 0;
5391 validate_x_resource_name ();
5393 /* This is what opens the connection and sets x_current_display.
5394 This also initializes many symbols, such as those used for input. */
5395 dpyinfo = x_term_init (display, xrm_option,
5396 (char *) SDATA (Vx_resource_name));
5398 if (dpyinfo == 0)
5400 if (!NILP (must_succeed))
5401 fatal ("Cannot connect to X server %s.\n\
5402 Check the DISPLAY environment variable or use `-d'.\n\
5403 Also use the `xauth' program to verify that you have the proper\n\
5404 authorization information needed to connect the X server.\n\
5405 An insecure way to solve the problem may be to use `xhost'.\n",
5406 SDATA (display));
5407 else
5408 error ("Cannot connect to X server %s", SDATA (display));
5411 x_in_use = 1;
5413 XSETFASTINT (Vwindow_system_version, 11);
5414 return Qnil;
5417 DEFUN ("x-close-connection", Fx_close_connection,
5418 Sx_close_connection, 1, 1, 0,
5419 doc: /* Close the connection to DISPLAY's X server.
5420 For DISPLAY, specify either a frame or a display name (a string).
5421 If DISPLAY is nil, that stands for the selected frame's display. */)
5422 (display)
5423 Lisp_Object display;
5425 struct x_display_info *dpyinfo = check_x_display_info (display);
5426 int i;
5428 if (dpyinfo->reference_count > 0)
5429 error ("Display still has frames on it");
5431 BLOCK_INPUT;
5432 /* Free the fonts in the font table. */
5433 for (i = 0; i < dpyinfo->n_fonts; i++)
5434 if (dpyinfo->font_table[i].name)
5436 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
5437 xfree (dpyinfo->font_table[i].full_name);
5438 xfree (dpyinfo->font_table[i].name);
5439 XFreeFont (dpyinfo->display, dpyinfo->font_table[i].font);
5442 x_destroy_all_bitmaps (dpyinfo);
5443 XSetCloseDownMode (dpyinfo->display, DestroyAll);
5445 #ifdef USE_X_TOOLKIT
5446 XtCloseDisplay (dpyinfo->display);
5447 #else
5448 XCloseDisplay (dpyinfo->display);
5449 #endif
5451 x_delete_display (dpyinfo);
5452 UNBLOCK_INPUT;
5454 return Qnil;
5457 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
5458 doc: /* Return the list of display names that Emacs has connections to. */)
5461 Lisp_Object tail, result;
5463 result = Qnil;
5464 for (tail = x_display_name_list; ! NILP (tail); tail = XCDR (tail))
5465 result = Fcons (XCAR (XCAR (tail)), result);
5467 return result;
5470 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
5471 doc: /* If ON is non-nil, report X errors as soon as the erring request is made.
5472 If ON is nil, allow buffering of requests.
5473 Turning on synchronization prohibits the Xlib routines from buffering
5474 requests and seriously degrades performance, but makes debugging much
5475 easier.
5476 The optional second argument DISPLAY specifies which display to act on.
5477 DISPLAY should be either a frame or a display name (a string).
5478 If DISPLAY is omitted or nil, that stands for the selected frame's display. */)
5479 (on, display)
5480 Lisp_Object display, on;
5482 struct x_display_info *dpyinfo = check_x_display_info (display);
5484 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
5486 return Qnil;
5489 /* Wait for responses to all X commands issued so far for frame F. */
5491 void
5492 x_sync (f)
5493 FRAME_PTR f;
5495 BLOCK_INPUT;
5496 XSync (FRAME_X_DISPLAY (f), False);
5497 UNBLOCK_INPUT;
5501 /***********************************************************************
5502 Image types
5503 ***********************************************************************/
5505 /* Value is the number of elements of vector VECTOR. */
5507 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
5509 /* List of supported image types. Use define_image_type to add new
5510 types. Use lookup_image_type to find a type for a given symbol. */
5512 static struct image_type *image_types;
5514 /* The symbol `image' which is the car of the lists used to represent
5515 images in Lisp. */
5517 extern Lisp_Object Qimage;
5519 /* The symbol `xbm' which is used as the type symbol for XBM images. */
5521 Lisp_Object Qxbm;
5523 /* Keywords. */
5525 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
5526 extern Lisp_Object QCdata, QCtype;
5527 Lisp_Object QCascent, QCmargin, QCrelief;
5528 Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
5529 Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
5531 /* Other symbols. */
5533 Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
5535 /* Time in seconds after which images should be removed from the cache
5536 if not displayed. */
5538 Lisp_Object Vimage_cache_eviction_delay;
5540 /* Function prototypes. */
5542 static void define_image_type P_ ((struct image_type *type));
5543 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
5544 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
5545 static void x_laplace P_ ((struct frame *, struct image *));
5546 static void x_emboss P_ ((struct frame *, struct image *));
5547 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
5548 Lisp_Object));
5551 /* Define a new image type from TYPE. This adds a copy of TYPE to
5552 image_types and adds the symbol *TYPE->type to Vimage_types. */
5554 static void
5555 define_image_type (type)
5556 struct image_type *type;
5558 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
5559 The initialized data segment is read-only. */
5560 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
5561 bcopy (type, p, sizeof *p);
5562 p->next = image_types;
5563 image_types = p;
5564 Vimage_types = Fcons (*p->type, Vimage_types);
5568 /* Look up image type SYMBOL, and return a pointer to its image_type
5569 structure. Value is null if SYMBOL is not a known image type. */
5571 static INLINE struct image_type *
5572 lookup_image_type (symbol)
5573 Lisp_Object symbol;
5575 struct image_type *type;
5577 for (type = image_types; type; type = type->next)
5578 if (EQ (symbol, *type->type))
5579 break;
5581 return type;
5585 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
5586 valid image specification is a list whose car is the symbol
5587 `image', and whose rest is a property list. The property list must
5588 contain a value for key `:type'. That value must be the name of a
5589 supported image type. The rest of the property list depends on the
5590 image type. */
5593 valid_image_p (object)
5594 Lisp_Object object;
5596 int valid_p = 0;
5598 if (CONSP (object) && EQ (XCAR (object), Qimage))
5600 Lisp_Object tem;
5602 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
5603 if (EQ (XCAR (tem), QCtype))
5605 tem = XCDR (tem);
5606 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
5608 struct image_type *type;
5609 type = lookup_image_type (XCAR (tem));
5610 if (type)
5611 valid_p = type->valid_p (object);
5614 break;
5618 return valid_p;
5622 /* Log error message with format string FORMAT and argument ARG.
5623 Signaling an error, e.g. when an image cannot be loaded, is not a
5624 good idea because this would interrupt redisplay, and the error
5625 message display would lead to another redisplay. This function
5626 therefore simply displays a message. */
5628 static void
5629 image_error (format, arg1, arg2)
5630 char *format;
5631 Lisp_Object arg1, arg2;
5633 add_to_log (format, arg1, arg2);
5638 /***********************************************************************
5639 Image specifications
5640 ***********************************************************************/
5642 enum image_value_type
5644 IMAGE_DONT_CHECK_VALUE_TYPE,
5645 IMAGE_STRING_VALUE,
5646 IMAGE_STRING_OR_NIL_VALUE,
5647 IMAGE_SYMBOL_VALUE,
5648 IMAGE_POSITIVE_INTEGER_VALUE,
5649 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
5650 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
5651 IMAGE_ASCENT_VALUE,
5652 IMAGE_INTEGER_VALUE,
5653 IMAGE_FUNCTION_VALUE,
5654 IMAGE_NUMBER_VALUE,
5655 IMAGE_BOOL_VALUE
5658 /* Structure used when parsing image specifications. */
5660 struct image_keyword
5662 /* Name of keyword. */
5663 char *name;
5665 /* The type of value allowed. */
5666 enum image_value_type type;
5668 /* Non-zero means key must be present. */
5669 int mandatory_p;
5671 /* Used to recognize duplicate keywords in a property list. */
5672 int count;
5674 /* The value that was found. */
5675 Lisp_Object value;
5679 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
5680 int, Lisp_Object));
5681 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
5684 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
5685 has the format (image KEYWORD VALUE ...). One of the keyword/
5686 value pairs must be `:type TYPE'. KEYWORDS is a vector of
5687 image_keywords structures of size NKEYWORDS describing other
5688 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
5690 static int
5691 parse_image_spec (spec, keywords, nkeywords, type)
5692 Lisp_Object spec;
5693 struct image_keyword *keywords;
5694 int nkeywords;
5695 Lisp_Object type;
5697 int i;
5698 Lisp_Object plist;
5700 if (!CONSP (spec) || !EQ (XCAR (spec), Qimage))
5701 return 0;
5703 plist = XCDR (spec);
5704 while (CONSP (plist))
5706 Lisp_Object key, value;
5708 /* First element of a pair must be a symbol. */
5709 key = XCAR (plist);
5710 plist = XCDR (plist);
5711 if (!SYMBOLP (key))
5712 return 0;
5714 /* There must follow a value. */
5715 if (!CONSP (plist))
5716 return 0;
5717 value = XCAR (plist);
5718 plist = XCDR (plist);
5720 /* Find key in KEYWORDS. Error if not found. */
5721 for (i = 0; i < nkeywords; ++i)
5722 if (strcmp (keywords[i].name, SDATA (SYMBOL_NAME (key))) == 0)
5723 break;
5725 if (i == nkeywords)
5726 continue;
5728 /* Record that we recognized the keyword. If a keywords
5729 was found more than once, it's an error. */
5730 keywords[i].value = value;
5731 ++keywords[i].count;
5733 if (keywords[i].count > 1)
5734 return 0;
5736 /* Check type of value against allowed type. */
5737 switch (keywords[i].type)
5739 case IMAGE_STRING_VALUE:
5740 if (!STRINGP (value))
5741 return 0;
5742 break;
5744 case IMAGE_STRING_OR_NIL_VALUE:
5745 if (!STRINGP (value) && !NILP (value))
5746 return 0;
5747 break;
5749 case IMAGE_SYMBOL_VALUE:
5750 if (!SYMBOLP (value))
5751 return 0;
5752 break;
5754 case IMAGE_POSITIVE_INTEGER_VALUE:
5755 if (!INTEGERP (value) || XINT (value) <= 0)
5756 return 0;
5757 break;
5759 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR:
5760 if (INTEGERP (value) && XINT (value) >= 0)
5761 break;
5762 if (CONSP (value)
5763 && INTEGERP (XCAR (value)) && INTEGERP (XCDR (value))
5764 && XINT (XCAR (value)) >= 0 && XINT (XCDR (value)) >= 0)
5765 break;
5766 return 0;
5768 case IMAGE_ASCENT_VALUE:
5769 if (SYMBOLP (value) && EQ (value, Qcenter))
5770 break;
5771 else if (INTEGERP (value)
5772 && XINT (value) >= 0
5773 && XINT (value) <= 100)
5774 break;
5775 return 0;
5777 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
5778 if (!INTEGERP (value) || XINT (value) < 0)
5779 return 0;
5780 break;
5782 case IMAGE_DONT_CHECK_VALUE_TYPE:
5783 break;
5785 case IMAGE_FUNCTION_VALUE:
5786 value = indirect_function (value);
5787 if (SUBRP (value)
5788 || COMPILEDP (value)
5789 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
5790 break;
5791 return 0;
5793 case IMAGE_NUMBER_VALUE:
5794 if (!INTEGERP (value) && !FLOATP (value))
5795 return 0;
5796 break;
5798 case IMAGE_INTEGER_VALUE:
5799 if (!INTEGERP (value))
5800 return 0;
5801 break;
5803 case IMAGE_BOOL_VALUE:
5804 if (!NILP (value) && !EQ (value, Qt))
5805 return 0;
5806 break;
5808 default:
5809 abort ();
5810 break;
5813 if (EQ (key, QCtype) && !EQ (type, value))
5814 return 0;
5817 /* Check that all mandatory fields are present. */
5818 for (i = 0; i < nkeywords; ++i)
5819 if (keywords[i].mandatory_p && keywords[i].count == 0)
5820 return 0;
5822 return NILP (plist);
5826 /* Return the value of KEY in image specification SPEC. Value is nil
5827 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
5828 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
5830 static Lisp_Object
5831 image_spec_value (spec, key, found)
5832 Lisp_Object spec, key;
5833 int *found;
5835 Lisp_Object tail;
5837 xassert (valid_image_p (spec));
5839 for (tail = XCDR (spec);
5840 CONSP (tail) && CONSP (XCDR (tail));
5841 tail = XCDR (XCDR (tail)))
5843 if (EQ (XCAR (tail), key))
5845 if (found)
5846 *found = 1;
5847 return XCAR (XCDR (tail));
5851 if (found)
5852 *found = 0;
5853 return Qnil;
5857 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
5858 doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
5859 PIXELS non-nil means return the size in pixels, otherwise return the
5860 size in canonical character units.
5861 FRAME is the frame on which the image will be displayed. FRAME nil
5862 or omitted means use the selected frame. */)
5863 (spec, pixels, frame)
5864 Lisp_Object spec, pixels, frame;
5866 Lisp_Object size;
5868 size = Qnil;
5869 if (valid_image_p (spec))
5871 struct frame *f = check_x_frame (frame);
5872 int id = lookup_image (f, spec);
5873 struct image *img = IMAGE_FROM_ID (f, id);
5874 int width = img->width + 2 * img->hmargin;
5875 int height = img->height + 2 * img->vmargin;
5877 if (NILP (pixels))
5878 size = Fcons (make_float ((double) width / CANON_X_UNIT (f)),
5879 make_float ((double) height / CANON_Y_UNIT (f)));
5880 else
5881 size = Fcons (make_number (width), make_number (height));
5883 else
5884 error ("Invalid image specification");
5886 return size;
5890 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
5891 doc: /* Return t if image SPEC has a mask bitmap.
5892 FRAME is the frame on which the image will be displayed. FRAME nil
5893 or omitted means use the selected frame. */)
5894 (spec, frame)
5895 Lisp_Object spec, frame;
5897 Lisp_Object mask;
5899 mask = Qnil;
5900 if (valid_image_p (spec))
5902 struct frame *f = check_x_frame (frame);
5903 int id = lookup_image (f, spec);
5904 struct image *img = IMAGE_FROM_ID (f, id);
5905 if (img->mask)
5906 mask = Qt;
5908 else
5909 error ("Invalid image specification");
5911 return mask;
5916 /***********************************************************************
5917 Image type independent image structures
5918 ***********************************************************************/
5920 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
5921 static void free_image P_ ((struct frame *f, struct image *img));
5924 /* Allocate and return a new image structure for image specification
5925 SPEC. SPEC has a hash value of HASH. */
5927 static struct image *
5928 make_image (spec, hash)
5929 Lisp_Object spec;
5930 unsigned hash;
5932 struct image *img = (struct image *) xmalloc (sizeof *img);
5934 xassert (valid_image_p (spec));
5935 bzero (img, sizeof *img);
5936 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
5937 xassert (img->type != NULL);
5938 img->spec = spec;
5939 img->data.lisp_val = Qnil;
5940 img->ascent = DEFAULT_IMAGE_ASCENT;
5941 img->hash = hash;
5942 return img;
5946 /* Free image IMG which was used on frame F, including its resources. */
5948 static void
5949 free_image (f, img)
5950 struct frame *f;
5951 struct image *img;
5953 if (img)
5955 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5957 /* Remove IMG from the hash table of its cache. */
5958 if (img->prev)
5959 img->prev->next = img->next;
5960 else
5961 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
5963 if (img->next)
5964 img->next->prev = img->prev;
5966 c->images[img->id] = NULL;
5968 /* Free resources, then free IMG. */
5969 img->type->free (f, img);
5970 xfree (img);
5975 /* Prepare image IMG for display on frame F. Must be called before
5976 drawing an image. */
5978 void
5979 prepare_image_for_display (f, img)
5980 struct frame *f;
5981 struct image *img;
5983 EMACS_TIME t;
5985 /* We're about to display IMG, so set its timestamp to `now'. */
5986 EMACS_GET_TIME (t);
5987 img->timestamp = EMACS_SECS (t);
5989 /* If IMG doesn't have a pixmap yet, load it now, using the image
5990 type dependent loader function. */
5991 if (img->pixmap == None && !img->load_failed_p)
5992 img->load_failed_p = img->type->load (f, img) == 0;
5996 /* Value is the number of pixels for the ascent of image IMG when
5997 drawn in face FACE. */
6000 image_ascent (img, face)
6001 struct image *img;
6002 struct face *face;
6004 int height = img->height + img->vmargin;
6005 int ascent;
6007 if (img->ascent == CENTERED_IMAGE_ASCENT)
6009 if (face->font)
6010 /* This expression is arranged so that if the image can't be
6011 exactly centered, it will be moved slightly up. This is
6012 because a typical font is `top-heavy' (due to the presence
6013 uppercase letters), so the image placement should err towards
6014 being top-heavy too. It also just generally looks better. */
6015 ascent = (height + face->font->ascent - face->font->descent + 1) / 2;
6016 else
6017 ascent = height / 2;
6019 else
6020 ascent = height * img->ascent / 100.0;
6022 return ascent;
6026 /* Image background colors. */
6028 static unsigned long
6029 four_corners_best (ximg, width, height)
6030 XImage *ximg;
6031 unsigned long width, height;
6033 unsigned long corners[4], best;
6034 int i, best_count;
6036 /* Get the colors at the corners of ximg. */
6037 corners[0] = XGetPixel (ximg, 0, 0);
6038 corners[1] = XGetPixel (ximg, width - 1, 0);
6039 corners[2] = XGetPixel (ximg, width - 1, height - 1);
6040 corners[3] = XGetPixel (ximg, 0, height - 1);
6042 /* Choose the most frequently found color as background. */
6043 for (i = best_count = 0; i < 4; ++i)
6045 int j, n;
6047 for (j = n = 0; j < 4; ++j)
6048 if (corners[i] == corners[j])
6049 ++n;
6051 if (n > best_count)
6052 best = corners[i], best_count = n;
6055 return best;
6058 /* Return the `background' field of IMG. If IMG doesn't have one yet,
6059 it is guessed heuristically. If non-zero, XIMG is an existing XImage
6060 object to use for the heuristic. */
6062 unsigned long
6063 image_background (img, f, ximg)
6064 struct image *img;
6065 struct frame *f;
6066 XImage *ximg;
6068 if (! img->background_valid)
6069 /* IMG doesn't have a background yet, try to guess a reasonable value. */
6071 int free_ximg = !ximg;
6073 if (! ximg)
6074 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
6075 0, 0, img->width, img->height, ~0, ZPixmap);
6077 img->background = four_corners_best (ximg, img->width, img->height);
6079 if (free_ximg)
6080 XDestroyImage (ximg);
6082 img->background_valid = 1;
6085 return img->background;
6088 /* Return the `background_transparent' field of IMG. If IMG doesn't
6089 have one yet, it is guessed heuristically. If non-zero, MASK is an
6090 existing XImage object to use for the heuristic. */
6093 image_background_transparent (img, f, mask)
6094 struct image *img;
6095 struct frame *f;
6096 XImage *mask;
6098 if (! img->background_transparent_valid)
6099 /* IMG doesn't have a background yet, try to guess a reasonable value. */
6101 if (img->mask)
6103 int free_mask = !mask;
6105 if (! mask)
6106 mask = XGetImage (FRAME_X_DISPLAY (f), img->mask,
6107 0, 0, img->width, img->height, ~0, ZPixmap);
6109 img->background_transparent
6110 = !four_corners_best (mask, img->width, img->height);
6112 if (free_mask)
6113 XDestroyImage (mask);
6115 else
6116 img->background_transparent = 0;
6118 img->background_transparent_valid = 1;
6121 return img->background_transparent;
6125 /***********************************************************************
6126 Helper functions for X image types
6127 ***********************************************************************/
6129 static void x_clear_image_1 P_ ((struct frame *, struct image *, int,
6130 int, int));
6131 static void x_clear_image P_ ((struct frame *f, struct image *img));
6132 static unsigned long x_alloc_image_color P_ ((struct frame *f,
6133 struct image *img,
6134 Lisp_Object color_name,
6135 unsigned long dflt));
6138 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
6139 free the pixmap if any. MASK_P non-zero means clear the mask
6140 pixmap if any. COLORS_P non-zero means free colors allocated for
6141 the image, if any. */
6143 static void
6144 x_clear_image_1 (f, img, pixmap_p, mask_p, colors_p)
6145 struct frame *f;
6146 struct image *img;
6147 int pixmap_p, mask_p, colors_p;
6149 if (pixmap_p && img->pixmap)
6151 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
6152 img->pixmap = None;
6153 img->background_valid = 0;
6156 if (mask_p && img->mask)
6158 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
6159 img->mask = None;
6160 img->background_transparent_valid = 0;
6163 if (colors_p && img->ncolors)
6165 x_free_colors (f, img->colors, img->ncolors);
6166 xfree (img->colors);
6167 img->colors = NULL;
6168 img->ncolors = 0;
6172 /* Free X resources of image IMG which is used on frame F. */
6174 static void
6175 x_clear_image (f, img)
6176 struct frame *f;
6177 struct image *img;
6179 BLOCK_INPUT;
6180 x_clear_image_1 (f, img, 1, 1, 1);
6181 UNBLOCK_INPUT;
6185 /* Allocate color COLOR_NAME for image IMG on frame F. If color
6186 cannot be allocated, use DFLT. Add a newly allocated color to
6187 IMG->colors, so that it can be freed again. Value is the pixel
6188 color. */
6190 static unsigned long
6191 x_alloc_image_color (f, img, color_name, dflt)
6192 struct frame *f;
6193 struct image *img;
6194 Lisp_Object color_name;
6195 unsigned long dflt;
6197 XColor color;
6198 unsigned long result;
6200 xassert (STRINGP (color_name));
6202 if (x_defined_color (f, SDATA (color_name), &color, 1))
6204 /* This isn't called frequently so we get away with simply
6205 reallocating the color vector to the needed size, here. */
6206 ++img->ncolors;
6207 img->colors =
6208 (unsigned long *) xrealloc (img->colors,
6209 img->ncolors * sizeof *img->colors);
6210 img->colors[img->ncolors - 1] = color.pixel;
6211 result = color.pixel;
6213 else
6214 result = dflt;
6216 return result;
6221 /***********************************************************************
6222 Image Cache
6223 ***********************************************************************/
6225 static void cache_image P_ ((struct frame *f, struct image *img));
6226 static void postprocess_image P_ ((struct frame *, struct image *));
6229 /* Return a new, initialized image cache that is allocated from the
6230 heap. Call free_image_cache to free an image cache. */
6232 struct image_cache *
6233 make_image_cache ()
6235 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
6236 int size;
6238 bzero (c, sizeof *c);
6239 c->size = 50;
6240 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
6241 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
6242 c->buckets = (struct image **) xmalloc (size);
6243 bzero (c->buckets, size);
6244 return c;
6248 /* Free image cache of frame F. Be aware that X frames share images
6249 caches. */
6251 void
6252 free_image_cache (f)
6253 struct frame *f;
6255 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
6256 if (c)
6258 int i;
6260 /* Cache should not be referenced by any frame when freed. */
6261 xassert (c->refcount == 0);
6263 for (i = 0; i < c->used; ++i)
6264 free_image (f, c->images[i]);
6265 xfree (c->images);
6266 xfree (c->buckets);
6267 xfree (c);
6268 FRAME_X_IMAGE_CACHE (f) = NULL;
6273 /* Clear image cache of frame F. FORCE_P non-zero means free all
6274 images. FORCE_P zero means clear only images that haven't been
6275 displayed for some time. Should be called from time to time to
6276 reduce the number of loaded images. If image-eviction-seconds is
6277 non-nil, this frees images in the cache which weren't displayed for
6278 at least that many seconds. */
6280 void
6281 clear_image_cache (f, force_p)
6282 struct frame *f;
6283 int force_p;
6285 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
6287 if (c && INTEGERP (Vimage_cache_eviction_delay))
6289 EMACS_TIME t;
6290 unsigned long old;
6291 int i, nfreed;
6293 EMACS_GET_TIME (t);
6294 old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
6296 /* Block input so that we won't be interrupted by a SIGIO
6297 while being in an inconsistent state. */
6298 BLOCK_INPUT;
6300 for (i = nfreed = 0; i < c->used; ++i)
6302 struct image *img = c->images[i];
6303 if (img != NULL
6304 && (force_p || img->timestamp < old))
6306 free_image (f, img);
6307 ++nfreed;
6311 /* We may be clearing the image cache because, for example,
6312 Emacs was iconified for a longer period of time. In that
6313 case, current matrices may still contain references to
6314 images freed above. So, clear these matrices. */
6315 if (nfreed)
6317 Lisp_Object tail, frame;
6319 FOR_EACH_FRAME (tail, frame)
6321 struct frame *f = XFRAME (frame);
6322 if (FRAME_X_P (f)
6323 && FRAME_X_IMAGE_CACHE (f) == c)
6324 clear_current_matrices (f);
6327 ++windows_or_buffers_changed;
6330 UNBLOCK_INPUT;
6335 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
6336 0, 1, 0,
6337 doc: /* Clear the image cache of FRAME.
6338 FRAME nil or omitted means use the selected frame.
6339 FRAME t means clear the image caches of all frames. */)
6340 (frame)
6341 Lisp_Object frame;
6343 if (EQ (frame, Qt))
6345 Lisp_Object tail;
6347 FOR_EACH_FRAME (tail, frame)
6348 if (FRAME_X_P (XFRAME (frame)))
6349 clear_image_cache (XFRAME (frame), 1);
6351 else
6352 clear_image_cache (check_x_frame (frame), 1);
6354 return Qnil;
6358 /* Compute masks and transform image IMG on frame F, as specified
6359 by the image's specification, */
6361 static void
6362 postprocess_image (f, img)
6363 struct frame *f;
6364 struct image *img;
6366 /* Manipulation of the image's mask. */
6367 if (img->pixmap)
6369 Lisp_Object conversion, spec;
6370 Lisp_Object mask;
6372 spec = img->spec;
6374 /* `:heuristic-mask t'
6375 `:mask heuristic'
6376 means build a mask heuristically.
6377 `:heuristic-mask (R G B)'
6378 `:mask (heuristic (R G B))'
6379 means build a mask from color (R G B) in the
6380 image.
6381 `:mask nil'
6382 means remove a mask, if any. */
6384 mask = image_spec_value (spec, QCheuristic_mask, NULL);
6385 if (!NILP (mask))
6386 x_build_heuristic_mask (f, img, mask);
6387 else
6389 int found_p;
6391 mask = image_spec_value (spec, QCmask, &found_p);
6393 if (EQ (mask, Qheuristic))
6394 x_build_heuristic_mask (f, img, Qt);
6395 else if (CONSP (mask)
6396 && EQ (XCAR (mask), Qheuristic))
6398 if (CONSP (XCDR (mask)))
6399 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
6400 else
6401 x_build_heuristic_mask (f, img, XCDR (mask));
6403 else if (NILP (mask) && found_p && img->mask)
6405 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
6406 img->mask = None;
6411 /* Should we apply an image transformation algorithm? */
6412 conversion = image_spec_value (spec, QCconversion, NULL);
6413 if (EQ (conversion, Qdisabled))
6414 x_disable_image (f, img);
6415 else if (EQ (conversion, Qlaplace))
6416 x_laplace (f, img);
6417 else if (EQ (conversion, Qemboss))
6418 x_emboss (f, img);
6419 else if (CONSP (conversion)
6420 && EQ (XCAR (conversion), Qedge_detection))
6422 Lisp_Object tem;
6423 tem = XCDR (conversion);
6424 if (CONSP (tem))
6425 x_edge_detection (f, img,
6426 Fplist_get (tem, QCmatrix),
6427 Fplist_get (tem, QCcolor_adjustment));
6433 /* Return the id of image with Lisp specification SPEC on frame F.
6434 SPEC must be a valid Lisp image specification (see valid_image_p). */
6437 lookup_image (f, spec)
6438 struct frame *f;
6439 Lisp_Object spec;
6441 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
6442 struct image *img;
6443 int i;
6444 unsigned hash;
6445 struct gcpro gcpro1;
6446 EMACS_TIME now;
6448 /* F must be a window-system frame, and SPEC must be a valid image
6449 specification. */
6450 xassert (FRAME_WINDOW_P (f));
6451 xassert (valid_image_p (spec));
6453 GCPRO1 (spec);
6455 /* Look up SPEC in the hash table of the image cache. */
6456 hash = sxhash (spec, 0);
6457 i = hash % IMAGE_CACHE_BUCKETS_SIZE;
6459 for (img = c->buckets[i]; img; img = img->next)
6460 if (img->hash == hash && !NILP (Fequal (img->spec, spec)))
6461 break;
6463 /* If not found, create a new image and cache it. */
6464 if (img == NULL)
6466 extern Lisp_Object Qpostscript;
6468 BLOCK_INPUT;
6469 img = make_image (spec, hash);
6470 cache_image (f, img);
6471 img->load_failed_p = img->type->load (f, img) == 0;
6473 /* If we can't load the image, and we don't have a width and
6474 height, use some arbitrary width and height so that we can
6475 draw a rectangle for it. */
6476 if (img->load_failed_p)
6478 Lisp_Object value;
6480 value = image_spec_value (spec, QCwidth, NULL);
6481 img->width = (INTEGERP (value)
6482 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
6483 value = image_spec_value (spec, QCheight, NULL);
6484 img->height = (INTEGERP (value)
6485 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
6487 else
6489 /* Handle image type independent image attributes
6490 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
6491 `:background COLOR'. */
6492 Lisp_Object ascent, margin, relief, bg;
6494 ascent = image_spec_value (spec, QCascent, NULL);
6495 if (INTEGERP (ascent))
6496 img->ascent = XFASTINT (ascent);
6497 else if (EQ (ascent, Qcenter))
6498 img->ascent = CENTERED_IMAGE_ASCENT;
6500 margin = image_spec_value (spec, QCmargin, NULL);
6501 if (INTEGERP (margin) && XINT (margin) >= 0)
6502 img->vmargin = img->hmargin = XFASTINT (margin);
6503 else if (CONSP (margin) && INTEGERP (XCAR (margin))
6504 && INTEGERP (XCDR (margin)))
6506 if (XINT (XCAR (margin)) > 0)
6507 img->hmargin = XFASTINT (XCAR (margin));
6508 if (XINT (XCDR (margin)) > 0)
6509 img->vmargin = XFASTINT (XCDR (margin));
6512 relief = image_spec_value (spec, QCrelief, NULL);
6513 if (INTEGERP (relief))
6515 img->relief = XINT (relief);
6516 img->hmargin += abs (img->relief);
6517 img->vmargin += abs (img->relief);
6520 if (! img->background_valid)
6522 bg = image_spec_value (img->spec, QCbackground, NULL);
6523 if (!NILP (bg))
6525 img->background
6526 = x_alloc_image_color (f, img, bg,
6527 FRAME_BACKGROUND_PIXEL (f));
6528 img->background_valid = 1;
6532 /* Do image transformations and compute masks, unless we
6533 don't have the image yet. */
6534 if (!EQ (*img->type->type, Qpostscript))
6535 postprocess_image (f, img);
6538 UNBLOCK_INPUT;
6539 xassert (!interrupt_input_blocked);
6542 /* We're using IMG, so set its timestamp to `now'. */
6543 EMACS_GET_TIME (now);
6544 img->timestamp = EMACS_SECS (now);
6546 UNGCPRO;
6548 /* Value is the image id. */
6549 return img->id;
6553 /* Cache image IMG in the image cache of frame F. */
6555 static void
6556 cache_image (f, img)
6557 struct frame *f;
6558 struct image *img;
6560 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
6561 int i;
6563 /* Find a free slot in c->images. */
6564 for (i = 0; i < c->used; ++i)
6565 if (c->images[i] == NULL)
6566 break;
6568 /* If no free slot found, maybe enlarge c->images. */
6569 if (i == c->used && c->used == c->size)
6571 c->size *= 2;
6572 c->images = (struct image **) xrealloc (c->images,
6573 c->size * sizeof *c->images);
6576 /* Add IMG to c->images, and assign IMG an id. */
6577 c->images[i] = img;
6578 img->id = i;
6579 if (i == c->used)
6580 ++c->used;
6582 /* Add IMG to the cache's hash table. */
6583 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
6584 img->next = c->buckets[i];
6585 if (img->next)
6586 img->next->prev = img;
6587 img->prev = NULL;
6588 c->buckets[i] = img;
6592 /* Call FN on every image in the image cache of frame F. Used to mark
6593 Lisp Objects in the image cache. */
6595 void
6596 forall_images_in_image_cache (f, fn)
6597 struct frame *f;
6598 void (*fn) P_ ((struct image *img));
6600 if (FRAME_LIVE_P (f) && FRAME_X_P (f))
6602 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
6603 if (c)
6605 int i;
6606 for (i = 0; i < c->used; ++i)
6607 if (c->images[i])
6608 fn (c->images[i]);
6615 /***********************************************************************
6616 X support code
6617 ***********************************************************************/
6619 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
6620 XImage **, Pixmap *));
6621 static void x_destroy_x_image P_ ((XImage *));
6622 static void x_put_x_image P_ ((struct frame *, XImage *, Pixmap, int, int));
6625 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
6626 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
6627 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
6628 via xmalloc. Print error messages via image_error if an error
6629 occurs. Value is non-zero if successful. */
6631 static int
6632 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
6633 struct frame *f;
6634 int width, height, depth;
6635 XImage **ximg;
6636 Pixmap *pixmap;
6638 Display *display = FRAME_X_DISPLAY (f);
6639 Screen *screen = FRAME_X_SCREEN (f);
6640 Window window = FRAME_X_WINDOW (f);
6642 xassert (interrupt_input_blocked);
6644 if (depth <= 0)
6645 depth = DefaultDepthOfScreen (screen);
6646 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
6647 depth, ZPixmap, 0, NULL, width, height,
6648 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
6649 if (*ximg == NULL)
6651 image_error ("Unable to allocate X image", Qnil, Qnil);
6652 return 0;
6655 /* Allocate image raster. */
6656 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
6658 /* Allocate a pixmap of the same size. */
6659 *pixmap = XCreatePixmap (display, window, width, height, depth);
6660 if (*pixmap == None)
6662 x_destroy_x_image (*ximg);
6663 *ximg = NULL;
6664 image_error ("Unable to create X pixmap", Qnil, Qnil);
6665 return 0;
6668 return 1;
6672 /* Destroy XImage XIMG. Free XIMG->data. */
6674 static void
6675 x_destroy_x_image (ximg)
6676 XImage *ximg;
6678 xassert (interrupt_input_blocked);
6679 if (ximg)
6681 xfree (ximg->data);
6682 ximg->data = NULL;
6683 XDestroyImage (ximg);
6688 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
6689 are width and height of both the image and pixmap. */
6691 static void
6692 x_put_x_image (f, ximg, pixmap, width, height)
6693 struct frame *f;
6694 XImage *ximg;
6695 Pixmap pixmap;
6696 int width, height;
6698 GC gc;
6700 xassert (interrupt_input_blocked);
6701 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
6702 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
6703 XFreeGC (FRAME_X_DISPLAY (f), gc);
6708 /***********************************************************************
6709 File Handling
6710 ***********************************************************************/
6712 static Lisp_Object x_find_image_file P_ ((Lisp_Object));
6713 static char *slurp_file P_ ((char *, int *));
6716 /* Find image file FILE. Look in data-directory, then
6717 x-bitmap-file-path. Value is the full name of the file found, or
6718 nil if not found. */
6720 static Lisp_Object
6721 x_find_image_file (file)
6722 Lisp_Object file;
6724 Lisp_Object file_found, search_path;
6725 struct gcpro gcpro1, gcpro2;
6726 int fd;
6728 file_found = Qnil;
6729 search_path = Fcons (Vdata_directory, Vx_bitmap_file_path);
6730 GCPRO2 (file_found, search_path);
6732 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
6733 fd = openp (search_path, file, Qnil, &file_found, Qnil);
6735 if (fd == -1)
6736 file_found = Qnil;
6737 else
6738 close (fd);
6740 UNGCPRO;
6741 return file_found;
6745 /* Read FILE into memory. Value is a pointer to a buffer allocated
6746 with xmalloc holding FILE's contents. Value is null if an error
6747 occurred. *SIZE is set to the size of the file. */
6749 static char *
6750 slurp_file (file, size)
6751 char *file;
6752 int *size;
6754 FILE *fp = NULL;
6755 char *buf = NULL;
6756 struct stat st;
6758 if (stat (file, &st) == 0
6759 && (fp = fopen (file, "r")) != NULL
6760 && (buf = (char *) xmalloc (st.st_size),
6761 fread (buf, 1, st.st_size, fp) == st.st_size))
6763 *size = st.st_size;
6764 fclose (fp);
6766 else
6768 if (fp)
6769 fclose (fp);
6770 if (buf)
6772 xfree (buf);
6773 buf = NULL;
6777 return buf;
6782 /***********************************************************************
6783 XBM images
6784 ***********************************************************************/
6786 static int xbm_scan P_ ((char **, char *, char *, int *));
6787 static int xbm_load P_ ((struct frame *f, struct image *img));
6788 static int xbm_load_image P_ ((struct frame *f, struct image *img,
6789 char *, char *));
6790 static int xbm_image_p P_ ((Lisp_Object object));
6791 static int xbm_read_bitmap_data P_ ((char *, char *, int *, int *,
6792 unsigned char **));
6793 static int xbm_file_p P_ ((Lisp_Object));
6796 /* Indices of image specification fields in xbm_format, below. */
6798 enum xbm_keyword_index
6800 XBM_TYPE,
6801 XBM_FILE,
6802 XBM_WIDTH,
6803 XBM_HEIGHT,
6804 XBM_DATA,
6805 XBM_FOREGROUND,
6806 XBM_BACKGROUND,
6807 XBM_ASCENT,
6808 XBM_MARGIN,
6809 XBM_RELIEF,
6810 XBM_ALGORITHM,
6811 XBM_HEURISTIC_MASK,
6812 XBM_MASK,
6813 XBM_LAST
6816 /* Vector of image_keyword structures describing the format
6817 of valid XBM image specifications. */
6819 static struct image_keyword xbm_format[XBM_LAST] =
6821 {":type", IMAGE_SYMBOL_VALUE, 1},
6822 {":file", IMAGE_STRING_VALUE, 0},
6823 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
6824 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
6825 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6826 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
6827 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
6828 {":ascent", IMAGE_ASCENT_VALUE, 0},
6829 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
6830 {":relief", IMAGE_INTEGER_VALUE, 0},
6831 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6832 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6833 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
6836 /* Structure describing the image type XBM. */
6838 static struct image_type xbm_type =
6840 &Qxbm,
6841 xbm_image_p,
6842 xbm_load,
6843 x_clear_image,
6844 NULL
6847 /* Tokens returned from xbm_scan. */
6849 enum xbm_token
6851 XBM_TK_IDENT = 256,
6852 XBM_TK_NUMBER
6856 /* Return non-zero if OBJECT is a valid XBM-type image specification.
6857 A valid specification is a list starting with the symbol `image'
6858 The rest of the list is a property list which must contain an
6859 entry `:type xbm..
6861 If the specification specifies a file to load, it must contain
6862 an entry `:file FILENAME' where FILENAME is a string.
6864 If the specification is for a bitmap loaded from memory it must
6865 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
6866 WIDTH and HEIGHT are integers > 0. DATA may be:
6868 1. a string large enough to hold the bitmap data, i.e. it must
6869 have a size >= (WIDTH + 7) / 8 * HEIGHT
6871 2. a bool-vector of size >= WIDTH * HEIGHT
6873 3. a vector of strings or bool-vectors, one for each line of the
6874 bitmap.
6876 4. A string containing an in-memory XBM file. WIDTH and HEIGHT
6877 may not be specified in this case because they are defined in the
6878 XBM file.
6880 Both the file and data forms may contain the additional entries
6881 `:background COLOR' and `:foreground COLOR'. If not present,
6882 foreground and background of the frame on which the image is
6883 displayed is used. */
6885 static int
6886 xbm_image_p (object)
6887 Lisp_Object object;
6889 struct image_keyword kw[XBM_LAST];
6891 bcopy (xbm_format, kw, sizeof kw);
6892 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
6893 return 0;
6895 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
6897 if (kw[XBM_FILE].count)
6899 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
6900 return 0;
6902 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
6904 /* In-memory XBM file. */
6905 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
6906 return 0;
6908 else
6910 Lisp_Object data;
6911 int width, height;
6913 /* Entries for `:width', `:height' and `:data' must be present. */
6914 if (!kw[XBM_WIDTH].count
6915 || !kw[XBM_HEIGHT].count
6916 || !kw[XBM_DATA].count)
6917 return 0;
6919 data = kw[XBM_DATA].value;
6920 width = XFASTINT (kw[XBM_WIDTH].value);
6921 height = XFASTINT (kw[XBM_HEIGHT].value);
6923 /* Check type of data, and width and height against contents of
6924 data. */
6925 if (VECTORP (data))
6927 int i;
6929 /* Number of elements of the vector must be >= height. */
6930 if (XVECTOR (data)->size < height)
6931 return 0;
6933 /* Each string or bool-vector in data must be large enough
6934 for one line of the image. */
6935 for (i = 0; i < height; ++i)
6937 Lisp_Object elt = XVECTOR (data)->contents[i];
6939 if (STRINGP (elt))
6941 if (SCHARS (elt)
6942 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
6943 return 0;
6945 else if (BOOL_VECTOR_P (elt))
6947 if (XBOOL_VECTOR (elt)->size < width)
6948 return 0;
6950 else
6951 return 0;
6954 else if (STRINGP (data))
6956 if (SCHARS (data)
6957 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
6958 return 0;
6960 else if (BOOL_VECTOR_P (data))
6962 if (XBOOL_VECTOR (data)->size < width * height)
6963 return 0;
6965 else
6966 return 0;
6969 return 1;
6973 /* Scan a bitmap file. FP is the stream to read from. Value is
6974 either an enumerator from enum xbm_token, or a character for a
6975 single-character token, or 0 at end of file. If scanning an
6976 identifier, store the lexeme of the identifier in SVAL. If
6977 scanning a number, store its value in *IVAL. */
6979 static int
6980 xbm_scan (s, end, sval, ival)
6981 char **s, *end;
6982 char *sval;
6983 int *ival;
6985 int c;
6987 loop:
6989 /* Skip white space. */
6990 while (*s < end && (c = *(*s)++, isspace (c)))
6993 if (*s >= end)
6994 c = 0;
6995 else if (isdigit (c))
6997 int value = 0, digit;
6999 if (c == '0' && *s < end)
7001 c = *(*s)++;
7002 if (c == 'x' || c == 'X')
7004 while (*s < end)
7006 c = *(*s)++;
7007 if (isdigit (c))
7008 digit = c - '0';
7009 else if (c >= 'a' && c <= 'f')
7010 digit = c - 'a' + 10;
7011 else if (c >= 'A' && c <= 'F')
7012 digit = c - 'A' + 10;
7013 else
7014 break;
7015 value = 16 * value + digit;
7018 else if (isdigit (c))
7020 value = c - '0';
7021 while (*s < end
7022 && (c = *(*s)++, isdigit (c)))
7023 value = 8 * value + c - '0';
7026 else
7028 value = c - '0';
7029 while (*s < end
7030 && (c = *(*s)++, isdigit (c)))
7031 value = 10 * value + c - '0';
7034 if (*s < end)
7035 *s = *s - 1;
7036 *ival = value;
7037 c = XBM_TK_NUMBER;
7039 else if (isalpha (c) || c == '_')
7041 *sval++ = c;
7042 while (*s < end
7043 && (c = *(*s)++, (isalnum (c) || c == '_')))
7044 *sval++ = c;
7045 *sval = 0;
7046 if (*s < end)
7047 *s = *s - 1;
7048 c = XBM_TK_IDENT;
7050 else if (c == '/' && **s == '*')
7052 /* C-style comment. */
7053 ++*s;
7054 while (**s && (**s != '*' || *(*s + 1) != '/'))
7055 ++*s;
7056 if (**s)
7058 *s += 2;
7059 goto loop;
7063 return c;
7067 /* Replacement for XReadBitmapFileData which isn't available under old
7068 X versions. CONTENTS is a pointer to a buffer to parse; END is the
7069 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
7070 the image. Return in *DATA the bitmap data allocated with xmalloc.
7071 Value is non-zero if successful. DATA null means just test if
7072 CONTENTS looks like an in-memory XBM file. */
7074 static int
7075 xbm_read_bitmap_data (contents, end, width, height, data)
7076 char *contents, *end;
7077 int *width, *height;
7078 unsigned char **data;
7080 char *s = contents;
7081 char buffer[BUFSIZ];
7082 int padding_p = 0;
7083 int v10 = 0;
7084 int bytes_per_line, i, nbytes;
7085 unsigned char *p;
7086 int value;
7087 int LA1;
7089 #define match() \
7090 LA1 = xbm_scan (&s, end, buffer, &value)
7092 #define expect(TOKEN) \
7093 if (LA1 != (TOKEN)) \
7094 goto failure; \
7095 else \
7096 match ()
7098 #define expect_ident(IDENT) \
7099 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
7100 match (); \
7101 else \
7102 goto failure
7104 *width = *height = -1;
7105 if (data)
7106 *data = NULL;
7107 LA1 = xbm_scan (&s, end, buffer, &value);
7109 /* Parse defines for width, height and hot-spots. */
7110 while (LA1 == '#')
7112 match ();
7113 expect_ident ("define");
7114 expect (XBM_TK_IDENT);
7116 if (LA1 == XBM_TK_NUMBER);
7118 char *p = strrchr (buffer, '_');
7119 p = p ? p + 1 : buffer;
7120 if (strcmp (p, "width") == 0)
7121 *width = value;
7122 else if (strcmp (p, "height") == 0)
7123 *height = value;
7125 expect (XBM_TK_NUMBER);
7128 if (*width < 0 || *height < 0)
7129 goto failure;
7130 else if (data == NULL)
7131 goto success;
7133 /* Parse bits. Must start with `static'. */
7134 expect_ident ("static");
7135 if (LA1 == XBM_TK_IDENT)
7137 if (strcmp (buffer, "unsigned") == 0)
7139 match ();
7140 expect_ident ("char");
7142 else if (strcmp (buffer, "short") == 0)
7144 match ();
7145 v10 = 1;
7146 if (*width % 16 && *width % 16 < 9)
7147 padding_p = 1;
7149 else if (strcmp (buffer, "char") == 0)
7150 match ();
7151 else
7152 goto failure;
7154 else
7155 goto failure;
7157 expect (XBM_TK_IDENT);
7158 expect ('[');
7159 expect (']');
7160 expect ('=');
7161 expect ('{');
7163 bytes_per_line = (*width + 7) / 8 + padding_p;
7164 nbytes = bytes_per_line * *height;
7165 p = *data = (char *) xmalloc (nbytes);
7167 if (v10)
7169 for (i = 0; i < nbytes; i += 2)
7171 int val = value;
7172 expect (XBM_TK_NUMBER);
7174 *p++ = val;
7175 if (!padding_p || ((i + 2) % bytes_per_line))
7176 *p++ = value >> 8;
7178 if (LA1 == ',' || LA1 == '}')
7179 match ();
7180 else
7181 goto failure;
7184 else
7186 for (i = 0; i < nbytes; ++i)
7188 int val = value;
7189 expect (XBM_TK_NUMBER);
7191 *p++ = val;
7193 if (LA1 == ',' || LA1 == '}')
7194 match ();
7195 else
7196 goto failure;
7200 success:
7201 return 1;
7203 failure:
7205 if (data && *data)
7207 xfree (*data);
7208 *data = NULL;
7210 return 0;
7212 #undef match
7213 #undef expect
7214 #undef expect_ident
7218 /* Load XBM image IMG which will be displayed on frame F from buffer
7219 CONTENTS. END is the end of the buffer. Value is non-zero if
7220 successful. */
7222 static int
7223 xbm_load_image (f, img, contents, end)
7224 struct frame *f;
7225 struct image *img;
7226 char *contents, *end;
7228 int rc;
7229 unsigned char *data;
7230 int success_p = 0;
7232 rc = xbm_read_bitmap_data (contents, end, &img->width, &img->height, &data);
7233 if (rc)
7235 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
7236 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
7237 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
7238 Lisp_Object value;
7240 xassert (img->width > 0 && img->height > 0);
7242 /* Get foreground and background colors, maybe allocate colors. */
7243 value = image_spec_value (img->spec, QCforeground, NULL);
7244 if (!NILP (value))
7245 foreground = x_alloc_image_color (f, img, value, foreground);
7246 value = image_spec_value (img->spec, QCbackground, NULL);
7247 if (!NILP (value))
7249 background = x_alloc_image_color (f, img, value, background);
7250 img->background = background;
7251 img->background_valid = 1;
7254 img->pixmap
7255 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
7256 FRAME_X_WINDOW (f),
7257 data,
7258 img->width, img->height,
7259 foreground, background,
7260 depth);
7261 xfree (data);
7263 if (img->pixmap == None)
7265 x_clear_image (f, img);
7266 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
7268 else
7269 success_p = 1;
7271 else
7272 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
7274 return success_p;
7278 /* Value is non-zero if DATA looks like an in-memory XBM file. */
7280 static int
7281 xbm_file_p (data)
7282 Lisp_Object data;
7284 int w, h;
7285 return (STRINGP (data)
7286 && xbm_read_bitmap_data (SDATA (data),
7287 (SDATA (data)
7288 + SBYTES (data)),
7289 &w, &h, NULL));
7293 /* Fill image IMG which is used on frame F with pixmap data. Value is
7294 non-zero if successful. */
7296 static int
7297 xbm_load (f, img)
7298 struct frame *f;
7299 struct image *img;
7301 int success_p = 0;
7302 Lisp_Object file_name;
7304 xassert (xbm_image_p (img->spec));
7306 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7307 file_name = image_spec_value (img->spec, QCfile, NULL);
7308 if (STRINGP (file_name))
7310 Lisp_Object file;
7311 char *contents;
7312 int size;
7313 struct gcpro gcpro1;
7315 file = x_find_image_file (file_name);
7316 GCPRO1 (file);
7317 if (!STRINGP (file))
7319 image_error ("Cannot find image file `%s'", file_name, Qnil);
7320 UNGCPRO;
7321 return 0;
7324 contents = slurp_file (SDATA (file), &size);
7325 if (contents == NULL)
7327 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
7328 UNGCPRO;
7329 return 0;
7332 success_p = xbm_load_image (f, img, contents, contents + size);
7333 UNGCPRO;
7335 else
7337 struct image_keyword fmt[XBM_LAST];
7338 Lisp_Object data;
7339 int depth;
7340 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
7341 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
7342 char *bits;
7343 int parsed_p;
7344 int in_memory_file_p = 0;
7346 /* See if data looks like an in-memory XBM file. */
7347 data = image_spec_value (img->spec, QCdata, NULL);
7348 in_memory_file_p = xbm_file_p (data);
7350 /* Parse the image specification. */
7351 bcopy (xbm_format, fmt, sizeof fmt);
7352 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
7353 xassert (parsed_p);
7355 /* Get specified width, and height. */
7356 if (!in_memory_file_p)
7358 img->width = XFASTINT (fmt[XBM_WIDTH].value);
7359 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
7360 xassert (img->width > 0 && img->height > 0);
7363 /* Get foreground and background colors, maybe allocate colors. */
7364 if (fmt[XBM_FOREGROUND].count
7365 && STRINGP (fmt[XBM_FOREGROUND].value))
7366 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
7367 foreground);
7368 if (fmt[XBM_BACKGROUND].count
7369 && STRINGP (fmt[XBM_BACKGROUND].value))
7370 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
7371 background);
7373 if (in_memory_file_p)
7374 success_p = xbm_load_image (f, img, SDATA (data),
7375 (SDATA (data)
7376 + SBYTES (data)));
7377 else
7379 if (VECTORP (data))
7381 int i;
7382 char *p;
7383 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
7385 p = bits = (char *) alloca (nbytes * img->height);
7386 for (i = 0; i < img->height; ++i, p += nbytes)
7388 Lisp_Object line = XVECTOR (data)->contents[i];
7389 if (STRINGP (line))
7390 bcopy (SDATA (line), p, nbytes);
7391 else
7392 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
7395 else if (STRINGP (data))
7396 bits = SDATA (data);
7397 else
7398 bits = XBOOL_VECTOR (data)->data;
7400 /* Create the pixmap. */
7401 depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
7402 img->pixmap
7403 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
7404 FRAME_X_WINDOW (f),
7405 bits,
7406 img->width, img->height,
7407 foreground, background,
7408 depth);
7409 if (img->pixmap)
7410 success_p = 1;
7411 else
7413 image_error ("Unable to create pixmap for XBM image `%s'",
7414 img->spec, Qnil);
7415 x_clear_image (f, img);
7420 return success_p;
7425 /***********************************************************************
7426 XPM images
7427 ***********************************************************************/
7429 #if HAVE_XPM
7431 static int xpm_image_p P_ ((Lisp_Object object));
7432 static int xpm_load P_ ((struct frame *f, struct image *img));
7433 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
7435 #include "X11/xpm.h"
7437 /* The symbol `xpm' identifying XPM-format images. */
7439 Lisp_Object Qxpm;
7441 /* Indices of image specification fields in xpm_format, below. */
7443 enum xpm_keyword_index
7445 XPM_TYPE,
7446 XPM_FILE,
7447 XPM_DATA,
7448 XPM_ASCENT,
7449 XPM_MARGIN,
7450 XPM_RELIEF,
7451 XPM_ALGORITHM,
7452 XPM_HEURISTIC_MASK,
7453 XPM_MASK,
7454 XPM_COLOR_SYMBOLS,
7455 XPM_BACKGROUND,
7456 XPM_LAST
7459 /* Vector of image_keyword structures describing the format
7460 of valid XPM image specifications. */
7462 static struct image_keyword xpm_format[XPM_LAST] =
7464 {":type", IMAGE_SYMBOL_VALUE, 1},
7465 {":file", IMAGE_STRING_VALUE, 0},
7466 {":data", IMAGE_STRING_VALUE, 0},
7467 {":ascent", IMAGE_ASCENT_VALUE, 0},
7468 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7469 {":relief", IMAGE_INTEGER_VALUE, 0},
7470 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7471 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7472 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7473 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7474 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7477 /* Structure describing the image type XBM. */
7479 static struct image_type xpm_type =
7481 &Qxpm,
7482 xpm_image_p,
7483 xpm_load,
7484 x_clear_image,
7485 NULL
7489 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
7490 functions for allocating image colors. Our own functions handle
7491 color allocation failures more gracefully than the ones on the XPM
7492 lib. */
7494 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
7495 #define ALLOC_XPM_COLORS
7496 #endif
7498 #ifdef ALLOC_XPM_COLORS
7500 static void xpm_init_color_cache P_ ((struct frame *, XpmAttributes *));
7501 static void xpm_free_color_cache P_ ((void));
7502 static int xpm_lookup_color P_ ((struct frame *, char *, XColor *));
7503 static int xpm_color_bucket P_ ((char *));
7504 static struct xpm_cached_color *xpm_cache_color P_ ((struct frame *, char *,
7505 XColor *, int));
7507 /* An entry in a hash table used to cache color definitions of named
7508 colors. This cache is necessary to speed up XPM image loading in
7509 case we do color allocations ourselves. Without it, we would need
7510 a call to XParseColor per pixel in the image. */
7512 struct xpm_cached_color
7514 /* Next in collision chain. */
7515 struct xpm_cached_color *next;
7517 /* Color definition (RGB and pixel color). */
7518 XColor color;
7520 /* Color name. */
7521 char name[1];
7524 /* The hash table used for the color cache, and its bucket vector
7525 size. */
7527 #define XPM_COLOR_CACHE_BUCKETS 1001
7528 struct xpm_cached_color **xpm_color_cache;
7530 /* Initialize the color cache. */
7532 static void
7533 xpm_init_color_cache (f, attrs)
7534 struct frame *f;
7535 XpmAttributes *attrs;
7537 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
7538 xpm_color_cache = (struct xpm_cached_color **) xmalloc (nbytes);
7539 memset (xpm_color_cache, 0, nbytes);
7540 init_color_table ();
7542 if (attrs->valuemask & XpmColorSymbols)
7544 int i;
7545 XColor color;
7547 for (i = 0; i < attrs->numsymbols; ++i)
7548 if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
7549 attrs->colorsymbols[i].value, &color))
7551 color.pixel = lookup_rgb_color (f, color.red, color.green,
7552 color.blue);
7553 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
7559 /* Free the color cache. */
7561 static void
7562 xpm_free_color_cache ()
7564 struct xpm_cached_color *p, *next;
7565 int i;
7567 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
7568 for (p = xpm_color_cache[i]; p; p = next)
7570 next = p->next;
7571 xfree (p);
7574 xfree (xpm_color_cache);
7575 xpm_color_cache = NULL;
7576 free_color_table ();
7580 /* Return the bucket index for color named COLOR_NAME in the color
7581 cache. */
7583 static int
7584 xpm_color_bucket (color_name)
7585 char *color_name;
7587 unsigned h = 0;
7588 char *s;
7590 for (s = color_name; *s; ++s)
7591 h = (h << 2) ^ *s;
7592 return h %= XPM_COLOR_CACHE_BUCKETS;
7596 /* On frame F, cache values COLOR for color with name COLOR_NAME.
7597 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
7598 entry added. */
7600 static struct xpm_cached_color *
7601 xpm_cache_color (f, color_name, color, bucket)
7602 struct frame *f;
7603 char *color_name;
7604 XColor *color;
7605 int bucket;
7607 size_t nbytes;
7608 struct xpm_cached_color *p;
7610 if (bucket < 0)
7611 bucket = xpm_color_bucket (color_name);
7613 nbytes = sizeof *p + strlen (color_name);
7614 p = (struct xpm_cached_color *) xmalloc (nbytes);
7615 strcpy (p->name, color_name);
7616 p->color = *color;
7617 p->next = xpm_color_cache[bucket];
7618 xpm_color_cache[bucket] = p;
7619 return p;
7623 /* Look up color COLOR_NAME for frame F in the color cache. If found,
7624 return the cached definition in *COLOR. Otherwise, make a new
7625 entry in the cache and allocate the color. Value is zero if color
7626 allocation failed. */
7628 static int
7629 xpm_lookup_color (f, color_name, color)
7630 struct frame *f;
7631 char *color_name;
7632 XColor *color;
7634 struct xpm_cached_color *p;
7635 int h = xpm_color_bucket (color_name);
7637 for (p = xpm_color_cache[h]; p; p = p->next)
7638 if (strcmp (p->name, color_name) == 0)
7639 break;
7641 if (p != NULL)
7642 *color = p->color;
7643 else if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
7644 color_name, color))
7646 color->pixel = lookup_rgb_color (f, color->red, color->green,
7647 color->blue);
7648 p = xpm_cache_color (f, color_name, color, h);
7651 return p != NULL;
7655 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
7656 CLOSURE is a pointer to the frame on which we allocate the
7657 color. Return in *COLOR the allocated color. Value is non-zero
7658 if successful. */
7660 static int
7661 xpm_alloc_color (dpy, cmap, color_name, color, closure)
7662 Display *dpy;
7663 Colormap cmap;
7664 char *color_name;
7665 XColor *color;
7666 void *closure;
7668 return xpm_lookup_color ((struct frame *) closure, color_name, color);
7672 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
7673 is a pointer to the frame on which we allocate the color. Value is
7674 non-zero if successful. */
7676 static int
7677 xpm_free_colors (dpy, cmap, pixels, npixels, closure)
7678 Display *dpy;
7679 Colormap cmap;
7680 Pixel *pixels;
7681 int npixels;
7682 void *closure;
7684 return 1;
7687 #endif /* ALLOC_XPM_COLORS */
7690 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
7691 for XPM images. Such a list must consist of conses whose car and
7692 cdr are strings. */
7694 static int
7695 xpm_valid_color_symbols_p (color_symbols)
7696 Lisp_Object color_symbols;
7698 while (CONSP (color_symbols))
7700 Lisp_Object sym = XCAR (color_symbols);
7701 if (!CONSP (sym)
7702 || !STRINGP (XCAR (sym))
7703 || !STRINGP (XCDR (sym)))
7704 break;
7705 color_symbols = XCDR (color_symbols);
7708 return NILP (color_symbols);
7712 /* Value is non-zero if OBJECT is a valid XPM image specification. */
7714 static int
7715 xpm_image_p (object)
7716 Lisp_Object object;
7718 struct image_keyword fmt[XPM_LAST];
7719 bcopy (xpm_format, fmt, sizeof fmt);
7720 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
7721 /* Either `:file' or `:data' must be present. */
7722 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
7723 /* Either no `:color-symbols' or it's a list of conses
7724 whose car and cdr are strings. */
7725 && (fmt[XPM_COLOR_SYMBOLS].count == 0
7726 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
7730 /* Load image IMG which will be displayed on frame F. Value is
7731 non-zero if successful. */
7733 static int
7734 xpm_load (f, img)
7735 struct frame *f;
7736 struct image *img;
7738 int rc;
7739 XpmAttributes attrs;
7740 Lisp_Object specified_file, color_symbols;
7742 /* Configure the XPM lib. Use the visual of frame F. Allocate
7743 close colors. Return colors allocated. */
7744 bzero (&attrs, sizeof attrs);
7745 attrs.visual = FRAME_X_VISUAL (f);
7746 attrs.colormap = FRAME_X_COLORMAP (f);
7747 attrs.valuemask |= XpmVisual;
7748 attrs.valuemask |= XpmColormap;
7750 #ifdef ALLOC_XPM_COLORS
7751 /* Allocate colors with our own functions which handle
7752 failing color allocation more gracefully. */
7753 attrs.color_closure = f;
7754 attrs.alloc_color = xpm_alloc_color;
7755 attrs.free_colors = xpm_free_colors;
7756 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
7757 #else /* not ALLOC_XPM_COLORS */
7758 /* Let the XPM lib allocate colors. */
7759 attrs.valuemask |= XpmReturnAllocPixels;
7760 #ifdef XpmAllocCloseColors
7761 attrs.alloc_close_colors = 1;
7762 attrs.valuemask |= XpmAllocCloseColors;
7763 #else /* not XpmAllocCloseColors */
7764 attrs.closeness = 600;
7765 attrs.valuemask |= XpmCloseness;
7766 #endif /* not XpmAllocCloseColors */
7767 #endif /* ALLOC_XPM_COLORS */
7769 /* If image specification contains symbolic color definitions, add
7770 these to `attrs'. */
7771 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
7772 if (CONSP (color_symbols))
7774 Lisp_Object tail;
7775 XpmColorSymbol *xpm_syms;
7776 int i, size;
7778 attrs.valuemask |= XpmColorSymbols;
7780 /* Count number of symbols. */
7781 attrs.numsymbols = 0;
7782 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
7783 ++attrs.numsymbols;
7785 /* Allocate an XpmColorSymbol array. */
7786 size = attrs.numsymbols * sizeof *xpm_syms;
7787 xpm_syms = (XpmColorSymbol *) alloca (size);
7788 bzero (xpm_syms, size);
7789 attrs.colorsymbols = xpm_syms;
7791 /* Fill the color symbol array. */
7792 for (tail = color_symbols, i = 0;
7793 CONSP (tail);
7794 ++i, tail = XCDR (tail))
7796 Lisp_Object name = XCAR (XCAR (tail));
7797 Lisp_Object color = XCDR (XCAR (tail));
7798 xpm_syms[i].name = (char *) alloca (SCHARS (name) + 1);
7799 strcpy (xpm_syms[i].name, SDATA (name));
7800 xpm_syms[i].value = (char *) alloca (SCHARS (color) + 1);
7801 strcpy (xpm_syms[i].value, SDATA (color));
7805 /* Create a pixmap for the image, either from a file, or from a
7806 string buffer containing data in the same format as an XPM file. */
7807 #ifdef ALLOC_XPM_COLORS
7808 xpm_init_color_cache (f, &attrs);
7809 #endif
7811 specified_file = image_spec_value (img->spec, QCfile, NULL);
7812 if (STRINGP (specified_file))
7814 Lisp_Object file = x_find_image_file (specified_file);
7815 if (!STRINGP (file))
7817 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7818 return 0;
7821 rc = XpmReadFileToPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7822 SDATA (file), &img->pixmap, &img->mask,
7823 &attrs);
7825 else
7827 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
7828 rc = XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7829 SDATA (buffer),
7830 &img->pixmap, &img->mask,
7831 &attrs);
7834 if (rc == XpmSuccess)
7836 #ifdef ALLOC_XPM_COLORS
7837 img->colors = colors_in_color_table (&img->ncolors);
7838 #else /* not ALLOC_XPM_COLORS */
7839 int i;
7841 img->ncolors = attrs.nalloc_pixels;
7842 img->colors = (unsigned long *) xmalloc (img->ncolors
7843 * sizeof *img->colors);
7844 for (i = 0; i < attrs.nalloc_pixels; ++i)
7846 img->colors[i] = attrs.alloc_pixels[i];
7847 #ifdef DEBUG_X_COLORS
7848 register_color (img->colors[i]);
7849 #endif
7851 #endif /* not ALLOC_XPM_COLORS */
7853 img->width = attrs.width;
7854 img->height = attrs.height;
7855 xassert (img->width > 0 && img->height > 0);
7857 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
7858 XpmFreeAttributes (&attrs);
7860 else
7862 switch (rc)
7864 case XpmOpenFailed:
7865 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
7866 break;
7868 case XpmFileInvalid:
7869 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
7870 break;
7872 case XpmNoMemory:
7873 image_error ("Out of memory (%s)", img->spec, Qnil);
7874 break;
7876 case XpmColorFailed:
7877 image_error ("Color allocation error (%s)", img->spec, Qnil);
7878 break;
7880 default:
7881 image_error ("Unknown error (%s)", img->spec, Qnil);
7882 break;
7886 #ifdef ALLOC_XPM_COLORS
7887 xpm_free_color_cache ();
7888 #endif
7889 return rc == XpmSuccess;
7892 #endif /* HAVE_XPM != 0 */
7895 /***********************************************************************
7896 Color table
7897 ***********************************************************************/
7899 /* An entry in the color table mapping an RGB color to a pixel color. */
7901 struct ct_color
7903 int r, g, b;
7904 unsigned long pixel;
7906 /* Next in color table collision list. */
7907 struct ct_color *next;
7910 /* The bucket vector size to use. Must be prime. */
7912 #define CT_SIZE 101
7914 /* Value is a hash of the RGB color given by R, G, and B. */
7916 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
7918 /* The color hash table. */
7920 struct ct_color **ct_table;
7922 /* Number of entries in the color table. */
7924 int ct_colors_allocated;
7926 /* Initialize the color table. */
7928 static void
7929 init_color_table ()
7931 int size = CT_SIZE * sizeof (*ct_table);
7932 ct_table = (struct ct_color **) xmalloc (size);
7933 bzero (ct_table, size);
7934 ct_colors_allocated = 0;
7938 /* Free memory associated with the color table. */
7940 static void
7941 free_color_table ()
7943 int i;
7944 struct ct_color *p, *next;
7946 for (i = 0; i < CT_SIZE; ++i)
7947 for (p = ct_table[i]; p; p = next)
7949 next = p->next;
7950 xfree (p);
7953 xfree (ct_table);
7954 ct_table = NULL;
7958 /* Value is a pixel color for RGB color R, G, B on frame F. If an
7959 entry for that color already is in the color table, return the
7960 pixel color of that entry. Otherwise, allocate a new color for R,
7961 G, B, and make an entry in the color table. */
7963 static unsigned long
7964 lookup_rgb_color (f, r, g, b)
7965 struct frame *f;
7966 int r, g, b;
7968 unsigned hash = CT_HASH_RGB (r, g, b);
7969 int i = hash % CT_SIZE;
7970 struct ct_color *p;
7972 for (p = ct_table[i]; p; p = p->next)
7973 if (p->r == r && p->g == g && p->b == b)
7974 break;
7976 if (p == NULL)
7978 XColor color;
7979 Colormap cmap;
7980 int rc;
7982 color.red = r;
7983 color.green = g;
7984 color.blue = b;
7986 cmap = FRAME_X_COLORMAP (f);
7987 rc = x_alloc_nearest_color (f, cmap, &color);
7989 if (rc)
7991 ++ct_colors_allocated;
7993 p = (struct ct_color *) xmalloc (sizeof *p);
7994 p->r = r;
7995 p->g = g;
7996 p->b = b;
7997 p->pixel = color.pixel;
7998 p->next = ct_table[i];
7999 ct_table[i] = p;
8001 else
8002 return FRAME_FOREGROUND_PIXEL (f);
8005 return p->pixel;
8009 /* Look up pixel color PIXEL which is used on frame F in the color
8010 table. If not already present, allocate it. Value is PIXEL. */
8012 static unsigned long
8013 lookup_pixel_color (f, pixel)
8014 struct frame *f;
8015 unsigned long pixel;
8017 int i = pixel % CT_SIZE;
8018 struct ct_color *p;
8020 for (p = ct_table[i]; p; p = p->next)
8021 if (p->pixel == pixel)
8022 break;
8024 if (p == NULL)
8026 XColor color;
8027 Colormap cmap;
8028 int rc;
8030 cmap = FRAME_X_COLORMAP (f);
8031 color.pixel = pixel;
8032 x_query_color (f, &color);
8033 rc = x_alloc_nearest_color (f, cmap, &color);
8035 if (rc)
8037 ++ct_colors_allocated;
8039 p = (struct ct_color *) xmalloc (sizeof *p);
8040 p->r = color.red;
8041 p->g = color.green;
8042 p->b = color.blue;
8043 p->pixel = pixel;
8044 p->next = ct_table[i];
8045 ct_table[i] = p;
8047 else
8048 return FRAME_FOREGROUND_PIXEL (f);
8051 return p->pixel;
8055 /* Value is a vector of all pixel colors contained in the color table,
8056 allocated via xmalloc. Set *N to the number of colors. */
8058 static unsigned long *
8059 colors_in_color_table (n)
8060 int *n;
8062 int i, j;
8063 struct ct_color *p;
8064 unsigned long *colors;
8066 if (ct_colors_allocated == 0)
8068 *n = 0;
8069 colors = NULL;
8071 else
8073 colors = (unsigned long *) xmalloc (ct_colors_allocated
8074 * sizeof *colors);
8075 *n = ct_colors_allocated;
8077 for (i = j = 0; i < CT_SIZE; ++i)
8078 for (p = ct_table[i]; p; p = p->next)
8079 colors[j++] = p->pixel;
8082 return colors;
8087 /***********************************************************************
8088 Algorithms
8089 ***********************************************************************/
8091 static XColor *x_to_xcolors P_ ((struct frame *, struct image *, int));
8092 static void x_from_xcolors P_ ((struct frame *, struct image *, XColor *));
8093 static void x_detect_edges P_ ((struct frame *, struct image *, int[9], int));
8095 /* Non-zero means draw a cross on images having `:conversion
8096 disabled'. */
8098 int cross_disabled_images;
8100 /* Edge detection matrices for different edge-detection
8101 strategies. */
8103 static int emboss_matrix[9] = {
8104 /* x - 1 x x + 1 */
8105 2, -1, 0, /* y - 1 */
8106 -1, 0, 1, /* y */
8107 0, 1, -2 /* y + 1 */
8110 static int laplace_matrix[9] = {
8111 /* x - 1 x x + 1 */
8112 1, 0, 0, /* y - 1 */
8113 0, 0, 0, /* y */
8114 0, 0, -1 /* y + 1 */
8117 /* Value is the intensity of the color whose red/green/blue values
8118 are R, G, and B. */
8120 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
8123 /* On frame F, return an array of XColor structures describing image
8124 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
8125 non-zero means also fill the red/green/blue members of the XColor
8126 structures. Value is a pointer to the array of XColors structures,
8127 allocated with xmalloc; it must be freed by the caller. */
8129 static XColor *
8130 x_to_xcolors (f, img, rgb_p)
8131 struct frame *f;
8132 struct image *img;
8133 int rgb_p;
8135 int x, y;
8136 XColor *colors, *p;
8137 XImage *ximg;
8139 colors = (XColor *) xmalloc (img->width * img->height * sizeof *colors);
8141 /* Get the X image IMG->pixmap. */
8142 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
8143 0, 0, img->width, img->height, ~0, ZPixmap);
8145 /* Fill the `pixel' members of the XColor array. I wished there
8146 were an easy and portable way to circumvent XGetPixel. */
8147 p = colors;
8148 for (y = 0; y < img->height; ++y)
8150 XColor *row = p;
8152 for (x = 0; x < img->width; ++x, ++p)
8153 p->pixel = XGetPixel (ximg, x, y);
8155 if (rgb_p)
8156 x_query_colors (f, row, img->width);
8159 XDestroyImage (ximg);
8160 return colors;
8164 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
8165 RGB members are set. F is the frame on which this all happens.
8166 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
8168 static void
8169 x_from_xcolors (f, img, colors)
8170 struct frame *f;
8171 struct image *img;
8172 XColor *colors;
8174 int x, y;
8175 XImage *oimg;
8176 Pixmap pixmap;
8177 XColor *p;
8179 init_color_table ();
8181 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
8182 &oimg, &pixmap);
8183 p = colors;
8184 for (y = 0; y < img->height; ++y)
8185 for (x = 0; x < img->width; ++x, ++p)
8187 unsigned long pixel;
8188 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
8189 XPutPixel (oimg, x, y, pixel);
8192 xfree (colors);
8193 x_clear_image_1 (f, img, 1, 0, 1);
8195 x_put_x_image (f, oimg, pixmap, img->width, img->height);
8196 x_destroy_x_image (oimg);
8197 img->pixmap = pixmap;
8198 img->colors = colors_in_color_table (&img->ncolors);
8199 free_color_table ();
8203 /* On frame F, perform edge-detection on image IMG.
8205 MATRIX is a nine-element array specifying the transformation
8206 matrix. See emboss_matrix for an example.
8208 COLOR_ADJUST is a color adjustment added to each pixel of the
8209 outgoing image. */
8211 static void
8212 x_detect_edges (f, img, matrix, color_adjust)
8213 struct frame *f;
8214 struct image *img;
8215 int matrix[9], color_adjust;
8217 XColor *colors = x_to_xcolors (f, img, 1);
8218 XColor *new, *p;
8219 int x, y, i, sum;
8221 for (i = sum = 0; i < 9; ++i)
8222 sum += abs (matrix[i]);
8224 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
8226 new = (XColor *) xmalloc (img->width * img->height * sizeof *new);
8228 for (y = 0; y < img->height; ++y)
8230 p = COLOR (new, 0, y);
8231 p->red = p->green = p->blue = 0xffff/2;
8232 p = COLOR (new, img->width - 1, y);
8233 p->red = p->green = p->blue = 0xffff/2;
8236 for (x = 1; x < img->width - 1; ++x)
8238 p = COLOR (new, x, 0);
8239 p->red = p->green = p->blue = 0xffff/2;
8240 p = COLOR (new, x, img->height - 1);
8241 p->red = p->green = p->blue = 0xffff/2;
8244 for (y = 1; y < img->height - 1; ++y)
8246 p = COLOR (new, 1, y);
8248 for (x = 1; x < img->width - 1; ++x, ++p)
8250 int r, g, b, y1, x1;
8252 r = g = b = i = 0;
8253 for (y1 = y - 1; y1 < y + 2; ++y1)
8254 for (x1 = x - 1; x1 < x + 2; ++x1, ++i)
8255 if (matrix[i])
8257 XColor *t = COLOR (colors, x1, y1);
8258 r += matrix[i] * t->red;
8259 g += matrix[i] * t->green;
8260 b += matrix[i] * t->blue;
8263 r = (r / sum + color_adjust) & 0xffff;
8264 g = (g / sum + color_adjust) & 0xffff;
8265 b = (b / sum + color_adjust) & 0xffff;
8266 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
8270 xfree (colors);
8271 x_from_xcolors (f, img, new);
8273 #undef COLOR
8277 /* Perform the pre-defined `emboss' edge-detection on image IMG
8278 on frame F. */
8280 static void
8281 x_emboss (f, img)
8282 struct frame *f;
8283 struct image *img;
8285 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
8289 /* Perform the pre-defined `laplace' edge-detection on image IMG
8290 on frame F. */
8292 static void
8293 x_laplace (f, img)
8294 struct frame *f;
8295 struct image *img;
8297 x_detect_edges (f, img, laplace_matrix, 45000);
8301 /* Perform edge-detection on image IMG on frame F, with specified
8302 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
8304 MATRIX must be either
8306 - a list of at least 9 numbers in row-major form
8307 - a vector of at least 9 numbers
8309 COLOR_ADJUST nil means use a default; otherwise it must be a
8310 number. */
8312 static void
8313 x_edge_detection (f, img, matrix, color_adjust)
8314 struct frame *f;
8315 struct image *img;
8316 Lisp_Object matrix, color_adjust;
8318 int i = 0;
8319 int trans[9];
8321 if (CONSP (matrix))
8323 for (i = 0;
8324 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
8325 ++i, matrix = XCDR (matrix))
8326 trans[i] = XFLOATINT (XCAR (matrix));
8328 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
8330 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
8331 trans[i] = XFLOATINT (AREF (matrix, i));
8334 if (NILP (color_adjust))
8335 color_adjust = make_number (0xffff / 2);
8337 if (i == 9 && NUMBERP (color_adjust))
8338 x_detect_edges (f, img, trans, (int) XFLOATINT (color_adjust));
8342 /* Transform image IMG on frame F so that it looks disabled. */
8344 static void
8345 x_disable_image (f, img)
8346 struct frame *f;
8347 struct image *img;
8349 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8351 if (dpyinfo->n_planes >= 2)
8353 /* Color (or grayscale). Convert to gray, and equalize. Just
8354 drawing such images with a stipple can look very odd, so
8355 we're using this method instead. */
8356 XColor *colors = x_to_xcolors (f, img, 1);
8357 XColor *p, *end;
8358 const int h = 15000;
8359 const int l = 30000;
8361 for (p = colors, end = colors + img->width * img->height;
8362 p < end;
8363 ++p)
8365 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
8366 int i2 = (0xffff - h - l) * i / 0xffff + l;
8367 p->red = p->green = p->blue = i2;
8370 x_from_xcolors (f, img, colors);
8373 /* Draw a cross over the disabled image, if we must or if we
8374 should. */
8375 if (dpyinfo->n_planes < 2 || cross_disabled_images)
8377 Display *dpy = FRAME_X_DISPLAY (f);
8378 GC gc;
8380 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
8381 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
8382 XDrawLine (dpy, img->pixmap, gc, 0, 0,
8383 img->width - 1, img->height - 1);
8384 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
8385 img->width - 1, 0);
8386 XFreeGC (dpy, gc);
8388 if (img->mask)
8390 gc = XCreateGC (dpy, img->mask, 0, NULL);
8391 XSetForeground (dpy, gc, WHITE_PIX_DEFAULT (f));
8392 XDrawLine (dpy, img->mask, gc, 0, 0,
8393 img->width - 1, img->height - 1);
8394 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
8395 img->width - 1, 0);
8396 XFreeGC (dpy, gc);
8402 /* Build a mask for image IMG which is used on frame F. FILE is the
8403 name of an image file, for error messages. HOW determines how to
8404 determine the background color of IMG. If it is a list '(R G B)',
8405 with R, G, and B being integers >= 0, take that as the color of the
8406 background. Otherwise, determine the background color of IMG
8407 heuristically. Value is non-zero if successful. */
8409 static int
8410 x_build_heuristic_mask (f, img, how)
8411 struct frame *f;
8412 struct image *img;
8413 Lisp_Object how;
8415 Display *dpy = FRAME_X_DISPLAY (f);
8416 XImage *ximg, *mask_img;
8417 int x, y, rc, use_img_background;
8418 unsigned long bg = 0;
8420 if (img->mask)
8422 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
8423 img->mask = None;
8424 img->background_transparent_valid = 0;
8427 /* Create an image and pixmap serving as mask. */
8428 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
8429 &mask_img, &img->mask);
8430 if (!rc)
8431 return 0;
8433 /* Get the X image of IMG->pixmap. */
8434 ximg = XGetImage (dpy, img->pixmap, 0, 0, img->width, img->height,
8435 ~0, ZPixmap);
8437 /* Determine the background color of ximg. If HOW is `(R G B)'
8438 take that as color. Otherwise, use the image's background color. */
8439 use_img_background = 1;
8441 if (CONSP (how))
8443 int rgb[3], i;
8445 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
8447 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
8448 how = XCDR (how);
8451 if (i == 3 && NILP (how))
8453 char color_name[30];
8454 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
8455 bg = x_alloc_image_color (f, img, build_string (color_name), 0);
8456 use_img_background = 0;
8460 if (use_img_background)
8461 bg = four_corners_best (ximg, img->width, img->height);
8463 /* Set all bits in mask_img to 1 whose color in ximg is different
8464 from the background color bg. */
8465 for (y = 0; y < img->height; ++y)
8466 for (x = 0; x < img->width; ++x)
8467 XPutPixel (mask_img, x, y, XGetPixel (ximg, x, y) != bg);
8469 /* Fill in the background_transparent field while we have the mask handy. */
8470 image_background_transparent (img, f, mask_img);
8472 /* Put mask_img into img->mask. */
8473 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
8474 x_destroy_x_image (mask_img);
8475 XDestroyImage (ximg);
8477 return 1;
8482 /***********************************************************************
8483 PBM (mono, gray, color)
8484 ***********************************************************************/
8486 static int pbm_image_p P_ ((Lisp_Object object));
8487 static int pbm_load P_ ((struct frame *f, struct image *img));
8488 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
8490 /* The symbol `pbm' identifying images of this type. */
8492 Lisp_Object Qpbm;
8494 /* Indices of image specification fields in gs_format, below. */
8496 enum pbm_keyword_index
8498 PBM_TYPE,
8499 PBM_FILE,
8500 PBM_DATA,
8501 PBM_ASCENT,
8502 PBM_MARGIN,
8503 PBM_RELIEF,
8504 PBM_ALGORITHM,
8505 PBM_HEURISTIC_MASK,
8506 PBM_MASK,
8507 PBM_FOREGROUND,
8508 PBM_BACKGROUND,
8509 PBM_LAST
8512 /* Vector of image_keyword structures describing the format
8513 of valid user-defined image specifications. */
8515 static struct image_keyword pbm_format[PBM_LAST] =
8517 {":type", IMAGE_SYMBOL_VALUE, 1},
8518 {":file", IMAGE_STRING_VALUE, 0},
8519 {":data", IMAGE_STRING_VALUE, 0},
8520 {":ascent", IMAGE_ASCENT_VALUE, 0},
8521 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8522 {":relief", IMAGE_INTEGER_VALUE, 0},
8523 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8524 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8525 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8526 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
8527 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8530 /* Structure describing the image type `pbm'. */
8532 static struct image_type pbm_type =
8534 &Qpbm,
8535 pbm_image_p,
8536 pbm_load,
8537 x_clear_image,
8538 NULL
8542 /* Return non-zero if OBJECT is a valid PBM image specification. */
8544 static int
8545 pbm_image_p (object)
8546 Lisp_Object object;
8548 struct image_keyword fmt[PBM_LAST];
8550 bcopy (pbm_format, fmt, sizeof fmt);
8552 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
8553 return 0;
8555 /* Must specify either :data or :file. */
8556 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
8560 /* Scan a decimal number from *S and return it. Advance *S while
8561 reading the number. END is the end of the string. Value is -1 at
8562 end of input. */
8564 static int
8565 pbm_scan_number (s, end)
8566 unsigned char **s, *end;
8568 int c = 0, val = -1;
8570 while (*s < end)
8572 /* Skip white-space. */
8573 while (*s < end && (c = *(*s)++, isspace (c)))
8576 if (c == '#')
8578 /* Skip comment to end of line. */
8579 while (*s < end && (c = *(*s)++, c != '\n'))
8582 else if (isdigit (c))
8584 /* Read decimal number. */
8585 val = c - '0';
8586 while (*s < end && (c = *(*s)++, isdigit (c)))
8587 val = 10 * val + c - '0';
8588 break;
8590 else
8591 break;
8594 return val;
8598 /* Load PBM image IMG for use on frame F. */
8600 static int
8601 pbm_load (f, img)
8602 struct frame *f;
8603 struct image *img;
8605 int raw_p, x, y;
8606 int width, height, max_color_idx = 0;
8607 XImage *ximg;
8608 Lisp_Object file, specified_file;
8609 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
8610 struct gcpro gcpro1;
8611 unsigned char *contents = NULL;
8612 unsigned char *end, *p;
8613 int size;
8615 specified_file = image_spec_value (img->spec, QCfile, NULL);
8616 file = Qnil;
8617 GCPRO1 (file);
8619 if (STRINGP (specified_file))
8621 file = x_find_image_file (specified_file);
8622 if (!STRINGP (file))
8624 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8625 UNGCPRO;
8626 return 0;
8629 contents = slurp_file (SDATA (file), &size);
8630 if (contents == NULL)
8632 image_error ("Error reading `%s'", file, Qnil);
8633 UNGCPRO;
8634 return 0;
8637 p = contents;
8638 end = contents + size;
8640 else
8642 Lisp_Object data;
8643 data = image_spec_value (img->spec, QCdata, NULL);
8644 p = SDATA (data);
8645 end = p + SBYTES (data);
8648 /* Check magic number. */
8649 if (end - p < 2 || *p++ != 'P')
8651 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
8652 error:
8653 xfree (contents);
8654 UNGCPRO;
8655 return 0;
8658 switch (*p++)
8660 case '1':
8661 raw_p = 0, type = PBM_MONO;
8662 break;
8664 case '2':
8665 raw_p = 0, type = PBM_GRAY;
8666 break;
8668 case '3':
8669 raw_p = 0, type = PBM_COLOR;
8670 break;
8672 case '4':
8673 raw_p = 1, type = PBM_MONO;
8674 break;
8676 case '5':
8677 raw_p = 1, type = PBM_GRAY;
8678 break;
8680 case '6':
8681 raw_p = 1, type = PBM_COLOR;
8682 break;
8684 default:
8685 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
8686 goto error;
8689 /* Read width, height, maximum color-component. Characters
8690 starting with `#' up to the end of a line are ignored. */
8691 width = pbm_scan_number (&p, end);
8692 height = pbm_scan_number (&p, end);
8694 if (type != PBM_MONO)
8696 max_color_idx = pbm_scan_number (&p, end);
8697 if (raw_p && max_color_idx > 255)
8698 max_color_idx = 255;
8701 if (width < 0
8702 || height < 0
8703 || (type != PBM_MONO && max_color_idx < 0))
8704 goto error;
8706 if (!x_create_x_image_and_pixmap (f, width, height, 0,
8707 &ximg, &img->pixmap))
8708 goto error;
8710 /* Initialize the color hash table. */
8711 init_color_table ();
8713 if (type == PBM_MONO)
8715 int c = 0, g;
8716 struct image_keyword fmt[PBM_LAST];
8717 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
8718 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
8720 /* Parse the image specification. */
8721 bcopy (pbm_format, fmt, sizeof fmt);
8722 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
8724 /* Get foreground and background colors, maybe allocate colors. */
8725 if (fmt[PBM_FOREGROUND].count
8726 && STRINGP (fmt[PBM_FOREGROUND].value))
8727 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
8728 if (fmt[PBM_BACKGROUND].count
8729 && STRINGP (fmt[PBM_BACKGROUND].value))
8731 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
8732 img->background = bg;
8733 img->background_valid = 1;
8736 for (y = 0; y < height; ++y)
8737 for (x = 0; x < width; ++x)
8739 if (raw_p)
8741 if ((x & 7) == 0)
8742 c = *p++;
8743 g = c & 0x80;
8744 c <<= 1;
8746 else
8747 g = pbm_scan_number (&p, end);
8749 XPutPixel (ximg, x, y, g ? fg : bg);
8752 else
8754 for (y = 0; y < height; ++y)
8755 for (x = 0; x < width; ++x)
8757 int r, g, b;
8759 if (type == PBM_GRAY)
8760 r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
8761 else if (raw_p)
8763 r = *p++;
8764 g = *p++;
8765 b = *p++;
8767 else
8769 r = pbm_scan_number (&p, end);
8770 g = pbm_scan_number (&p, end);
8771 b = pbm_scan_number (&p, end);
8774 if (r < 0 || g < 0 || b < 0)
8776 xfree (ximg->data);
8777 ximg->data = NULL;
8778 XDestroyImage (ximg);
8779 image_error ("Invalid pixel value in image `%s'",
8780 img->spec, Qnil);
8781 goto error;
8784 /* RGB values are now in the range 0..max_color_idx.
8785 Scale this to the range 0..0xffff supported by X. */
8786 r = (double) r * 65535 / max_color_idx;
8787 g = (double) g * 65535 / max_color_idx;
8788 b = (double) b * 65535 / max_color_idx;
8789 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
8793 /* Store in IMG->colors the colors allocated for the image, and
8794 free the color table. */
8795 img->colors = colors_in_color_table (&img->ncolors);
8796 free_color_table ();
8798 /* Maybe fill in the background field while we have ximg handy. */
8799 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
8800 IMAGE_BACKGROUND (img, f, ximg);
8802 /* Put the image into a pixmap. */
8803 x_put_x_image (f, ximg, img->pixmap, width, height);
8804 x_destroy_x_image (ximg);
8806 img->width = width;
8807 img->height = height;
8809 UNGCPRO;
8810 xfree (contents);
8811 return 1;
8816 /***********************************************************************
8818 ***********************************************************************/
8820 #if HAVE_PNG
8822 #include <png.h>
8824 /* Function prototypes. */
8826 static int png_image_p P_ ((Lisp_Object object));
8827 static int png_load P_ ((struct frame *f, struct image *img));
8829 /* The symbol `png' identifying images of this type. */
8831 Lisp_Object Qpng;
8833 /* Indices of image specification fields in png_format, below. */
8835 enum png_keyword_index
8837 PNG_TYPE,
8838 PNG_DATA,
8839 PNG_FILE,
8840 PNG_ASCENT,
8841 PNG_MARGIN,
8842 PNG_RELIEF,
8843 PNG_ALGORITHM,
8844 PNG_HEURISTIC_MASK,
8845 PNG_MASK,
8846 PNG_BACKGROUND,
8847 PNG_LAST
8850 /* Vector of image_keyword structures describing the format
8851 of valid user-defined image specifications. */
8853 static struct image_keyword png_format[PNG_LAST] =
8855 {":type", IMAGE_SYMBOL_VALUE, 1},
8856 {":data", IMAGE_STRING_VALUE, 0},
8857 {":file", IMAGE_STRING_VALUE, 0},
8858 {":ascent", IMAGE_ASCENT_VALUE, 0},
8859 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8860 {":relief", IMAGE_INTEGER_VALUE, 0},
8861 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8862 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8863 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8864 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8867 /* Structure describing the image type `png'. */
8869 static struct image_type png_type =
8871 &Qpng,
8872 png_image_p,
8873 png_load,
8874 x_clear_image,
8875 NULL
8879 /* Return non-zero if OBJECT is a valid PNG image specification. */
8881 static int
8882 png_image_p (object)
8883 Lisp_Object object;
8885 struct image_keyword fmt[PNG_LAST];
8886 bcopy (png_format, fmt, sizeof fmt);
8888 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
8889 return 0;
8891 /* Must specify either the :data or :file keyword. */
8892 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
8896 /* Error and warning handlers installed when the PNG library
8897 is initialized. */
8899 static void
8900 my_png_error (png_ptr, msg)
8901 png_struct *png_ptr;
8902 char *msg;
8904 xassert (png_ptr != NULL);
8905 image_error ("PNG error: %s", build_string (msg), Qnil);
8906 longjmp (png_ptr->jmpbuf, 1);
8910 static void
8911 my_png_warning (png_ptr, msg)
8912 png_struct *png_ptr;
8913 char *msg;
8915 xassert (png_ptr != NULL);
8916 image_error ("PNG warning: %s", build_string (msg), Qnil);
8919 /* Memory source for PNG decoding. */
8921 struct png_memory_storage
8923 unsigned char *bytes; /* The data */
8924 size_t len; /* How big is it? */
8925 int index; /* Where are we? */
8929 /* Function set as reader function when reading PNG image from memory.
8930 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
8931 bytes from the input to DATA. */
8933 static void
8934 png_read_from_memory (png_ptr, data, length)
8935 png_structp png_ptr;
8936 png_bytep data;
8937 png_size_t length;
8939 struct png_memory_storage *tbr
8940 = (struct png_memory_storage *) png_get_io_ptr (png_ptr);
8942 if (length > tbr->len - tbr->index)
8943 png_error (png_ptr, "Read error");
8945 bcopy (tbr->bytes + tbr->index, data, length);
8946 tbr->index = tbr->index + length;
8949 /* Load PNG image IMG for use on frame F. Value is non-zero if
8950 successful. */
8952 static int
8953 png_load (f, img)
8954 struct frame *f;
8955 struct image *img;
8957 Lisp_Object file, specified_file;
8958 Lisp_Object specified_data;
8959 int x, y, i;
8960 XImage *ximg, *mask_img = NULL;
8961 struct gcpro gcpro1;
8962 png_struct *png_ptr = NULL;
8963 png_info *info_ptr = NULL, *end_info = NULL;
8964 FILE *volatile fp = NULL;
8965 png_byte sig[8];
8966 png_byte * volatile pixels = NULL;
8967 png_byte ** volatile rows = NULL;
8968 png_uint_32 width, height;
8969 int bit_depth, color_type, interlace_type;
8970 png_byte channels;
8971 png_uint_32 row_bytes;
8972 int transparent_p;
8973 double screen_gamma, image_gamma;
8974 int intent;
8975 struct png_memory_storage tbr; /* Data to be read */
8977 /* Find out what file to load. */
8978 specified_file = image_spec_value (img->spec, QCfile, NULL);
8979 specified_data = image_spec_value (img->spec, QCdata, NULL);
8980 file = Qnil;
8981 GCPRO1 (file);
8983 if (NILP (specified_data))
8985 file = x_find_image_file (specified_file);
8986 if (!STRINGP (file))
8988 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8989 UNGCPRO;
8990 return 0;
8993 /* Open the image file. */
8994 fp = fopen (SDATA (file), "rb");
8995 if (!fp)
8997 image_error ("Cannot open image file `%s'", file, Qnil);
8998 UNGCPRO;
8999 fclose (fp);
9000 return 0;
9003 /* Check PNG signature. */
9004 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
9005 || !png_check_sig (sig, sizeof sig))
9007 image_error ("Not a PNG file: `%s'", file, Qnil);
9008 UNGCPRO;
9009 fclose (fp);
9010 return 0;
9013 else
9015 /* Read from memory. */
9016 tbr.bytes = SDATA (specified_data);
9017 tbr.len = SBYTES (specified_data);
9018 tbr.index = 0;
9020 /* Check PNG signature. */
9021 if (tbr.len < sizeof sig
9022 || !png_check_sig (tbr.bytes, sizeof sig))
9024 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
9025 UNGCPRO;
9026 return 0;
9029 /* Need to skip past the signature. */
9030 tbr.bytes += sizeof (sig);
9033 /* Initialize read and info structs for PNG lib. */
9034 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL,
9035 my_png_error, my_png_warning);
9036 if (!png_ptr)
9038 if (fp) fclose (fp);
9039 UNGCPRO;
9040 return 0;
9043 info_ptr = png_create_info_struct (png_ptr);
9044 if (!info_ptr)
9046 png_destroy_read_struct (&png_ptr, NULL, NULL);
9047 if (fp) fclose (fp);
9048 UNGCPRO;
9049 return 0;
9052 end_info = png_create_info_struct (png_ptr);
9053 if (!end_info)
9055 png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
9056 if (fp) fclose (fp);
9057 UNGCPRO;
9058 return 0;
9061 /* Set error jump-back. We come back here when the PNG library
9062 detects an error. */
9063 if (setjmp (png_ptr->jmpbuf))
9065 error:
9066 if (png_ptr)
9067 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
9068 xfree (pixels);
9069 xfree (rows);
9070 if (fp) fclose (fp);
9071 UNGCPRO;
9072 return 0;
9075 /* Read image info. */
9076 if (!NILP (specified_data))
9077 png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
9078 else
9079 png_init_io (png_ptr, fp);
9081 png_set_sig_bytes (png_ptr, sizeof sig);
9082 png_read_info (png_ptr, info_ptr);
9083 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
9084 &interlace_type, NULL, NULL);
9086 /* If image contains simply transparency data, we prefer to
9087 construct a clipping mask. */
9088 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
9089 transparent_p = 1;
9090 else
9091 transparent_p = 0;
9093 /* This function is easier to write if we only have to handle
9094 one data format: RGB or RGBA with 8 bits per channel. Let's
9095 transform other formats into that format. */
9097 /* Strip more than 8 bits per channel. */
9098 if (bit_depth == 16)
9099 png_set_strip_16 (png_ptr);
9101 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
9102 if available. */
9103 png_set_expand (png_ptr);
9105 /* Convert grayscale images to RGB. */
9106 if (color_type == PNG_COLOR_TYPE_GRAY
9107 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
9108 png_set_gray_to_rgb (png_ptr);
9110 screen_gamma = (f->gamma ? 1 / f->gamma / 0.45455 : 2.2);
9112 #if 0 /* Avoid double gamma correction for PNG images. */
9113 /* Tell the PNG lib to handle gamma correction for us. */
9114 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
9115 if (png_get_sRGB (png_ptr, info_ptr, &intent))
9116 /* The libpng documentation says this is right in this case. */
9117 png_set_gamma (png_ptr, screen_gamma, 0.45455);
9118 else
9119 #endif
9120 if (png_get_gAMA (png_ptr, info_ptr, &image_gamma))
9121 /* Image contains gamma information. */
9122 png_set_gamma (png_ptr, screen_gamma, image_gamma);
9123 else
9124 /* Use the standard default for the image gamma. */
9125 png_set_gamma (png_ptr, screen_gamma, 0.45455);
9126 #endif /* if 0 */
9128 /* Handle alpha channel by combining the image with a background
9129 color. Do this only if a real alpha channel is supplied. For
9130 simple transparency, we prefer a clipping mask. */
9131 if (!transparent_p)
9133 png_color_16 *image_bg;
9134 Lisp_Object specified_bg
9135 = image_spec_value (img->spec, QCbackground, NULL);
9137 if (STRINGP (specified_bg))
9138 /* The user specified `:background', use that. */
9140 XColor color;
9141 if (x_defined_color (f, SDATA (specified_bg), &color, 0))
9143 png_color_16 user_bg;
9145 bzero (&user_bg, sizeof user_bg);
9146 user_bg.red = color.red;
9147 user_bg.green = color.green;
9148 user_bg.blue = color.blue;
9150 png_set_background (png_ptr, &user_bg,
9151 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
9154 else if (png_get_bKGD (png_ptr, info_ptr, &image_bg))
9155 /* Image contains a background color with which to
9156 combine the image. */
9157 png_set_background (png_ptr, image_bg,
9158 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
9159 else
9161 /* Image does not contain a background color with which
9162 to combine the image data via an alpha channel. Use
9163 the frame's background instead. */
9164 XColor color;
9165 Colormap cmap;
9166 png_color_16 frame_background;
9168 cmap = FRAME_X_COLORMAP (f);
9169 color.pixel = FRAME_BACKGROUND_PIXEL (f);
9170 x_query_color (f, &color);
9172 bzero (&frame_background, sizeof frame_background);
9173 frame_background.red = color.red;
9174 frame_background.green = color.green;
9175 frame_background.blue = color.blue;
9177 png_set_background (png_ptr, &frame_background,
9178 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
9182 /* Update info structure. */
9183 png_read_update_info (png_ptr, info_ptr);
9185 /* Get number of channels. Valid values are 1 for grayscale images
9186 and images with a palette, 2 for grayscale images with transparency
9187 information (alpha channel), 3 for RGB images, and 4 for RGB
9188 images with alpha channel, i.e. RGBA. If conversions above were
9189 sufficient we should only have 3 or 4 channels here. */
9190 channels = png_get_channels (png_ptr, info_ptr);
9191 xassert (channels == 3 || channels == 4);
9193 /* Number of bytes needed for one row of the image. */
9194 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
9196 /* Allocate memory for the image. */
9197 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
9198 rows = (png_byte **) xmalloc (height * sizeof *rows);
9199 for (i = 0; i < height; ++i)
9200 rows[i] = pixels + i * row_bytes;
9202 /* Read the entire image. */
9203 png_read_image (png_ptr, rows);
9204 png_read_end (png_ptr, info_ptr);
9205 if (fp)
9207 fclose (fp);
9208 fp = NULL;
9211 /* Create the X image and pixmap. */
9212 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
9213 &img->pixmap))
9214 goto error;
9216 /* Create an image and pixmap serving as mask if the PNG image
9217 contains an alpha channel. */
9218 if (channels == 4
9219 && !transparent_p
9220 && !x_create_x_image_and_pixmap (f, width, height, 1,
9221 &mask_img, &img->mask))
9223 x_destroy_x_image (ximg);
9224 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
9225 img->pixmap = None;
9226 goto error;
9229 /* Fill the X image and mask from PNG data. */
9230 init_color_table ();
9232 for (y = 0; y < height; ++y)
9234 png_byte *p = rows[y];
9236 for (x = 0; x < width; ++x)
9238 unsigned r, g, b;
9240 r = *p++ << 8;
9241 g = *p++ << 8;
9242 b = *p++ << 8;
9243 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
9245 /* An alpha channel, aka mask channel, associates variable
9246 transparency with an image. Where other image formats
9247 support binary transparency---fully transparent or fully
9248 opaque---PNG allows up to 254 levels of partial transparency.
9249 The PNG library implements partial transparency by combining
9250 the image with a specified background color.
9252 I'm not sure how to handle this here nicely: because the
9253 background on which the image is displayed may change, for
9254 real alpha channel support, it would be necessary to create
9255 a new image for each possible background.
9257 What I'm doing now is that a mask is created if we have
9258 boolean transparency information. Otherwise I'm using
9259 the frame's background color to combine the image with. */
9261 if (channels == 4)
9263 if (mask_img)
9264 XPutPixel (mask_img, x, y, *p > 0);
9265 ++p;
9270 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
9271 /* Set IMG's background color from the PNG image, unless the user
9272 overrode it. */
9274 png_color_16 *bg;
9275 if (png_get_bKGD (png_ptr, info_ptr, &bg))
9277 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
9278 img->background_valid = 1;
9282 /* Remember colors allocated for this image. */
9283 img->colors = colors_in_color_table (&img->ncolors);
9284 free_color_table ();
9286 /* Clean up. */
9287 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
9288 xfree (rows);
9289 xfree (pixels);
9291 img->width = width;
9292 img->height = height;
9294 /* Maybe fill in the background field while we have ximg handy. */
9295 IMAGE_BACKGROUND (img, f, ximg);
9297 /* Put the image into the pixmap, then free the X image and its buffer. */
9298 x_put_x_image (f, ximg, img->pixmap, width, height);
9299 x_destroy_x_image (ximg);
9301 /* Same for the mask. */
9302 if (mask_img)
9304 /* Fill in the background_transparent field while we have the mask
9305 handy. */
9306 image_background_transparent (img, f, mask_img);
9308 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
9309 x_destroy_x_image (mask_img);
9312 UNGCPRO;
9313 return 1;
9316 #endif /* HAVE_PNG != 0 */
9320 /***********************************************************************
9321 JPEG
9322 ***********************************************************************/
9324 #if HAVE_JPEG
9326 /* Work around a warning about HAVE_STDLIB_H being redefined in
9327 jconfig.h. */
9328 #ifdef HAVE_STDLIB_H
9329 #define HAVE_STDLIB_H_1
9330 #undef HAVE_STDLIB_H
9331 #endif /* HAVE_STLIB_H */
9333 #include <jpeglib.h>
9334 #include <jerror.h>
9335 #include <setjmp.h>
9337 #ifdef HAVE_STLIB_H_1
9338 #define HAVE_STDLIB_H 1
9339 #endif
9341 static int jpeg_image_p P_ ((Lisp_Object object));
9342 static int jpeg_load P_ ((struct frame *f, struct image *img));
9344 /* The symbol `jpeg' identifying images of this type. */
9346 Lisp_Object Qjpeg;
9348 /* Indices of image specification fields in gs_format, below. */
9350 enum jpeg_keyword_index
9352 JPEG_TYPE,
9353 JPEG_DATA,
9354 JPEG_FILE,
9355 JPEG_ASCENT,
9356 JPEG_MARGIN,
9357 JPEG_RELIEF,
9358 JPEG_ALGORITHM,
9359 JPEG_HEURISTIC_MASK,
9360 JPEG_MASK,
9361 JPEG_BACKGROUND,
9362 JPEG_LAST
9365 /* Vector of image_keyword structures describing the format
9366 of valid user-defined image specifications. */
9368 static struct image_keyword jpeg_format[JPEG_LAST] =
9370 {":type", IMAGE_SYMBOL_VALUE, 1},
9371 {":data", IMAGE_STRING_VALUE, 0},
9372 {":file", IMAGE_STRING_VALUE, 0},
9373 {":ascent", IMAGE_ASCENT_VALUE, 0},
9374 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
9375 {":relief", IMAGE_INTEGER_VALUE, 0},
9376 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9377 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9378 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9379 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
9382 /* Structure describing the image type `jpeg'. */
9384 static struct image_type jpeg_type =
9386 &Qjpeg,
9387 jpeg_image_p,
9388 jpeg_load,
9389 x_clear_image,
9390 NULL
9394 /* Return non-zero if OBJECT is a valid JPEG image specification. */
9396 static int
9397 jpeg_image_p (object)
9398 Lisp_Object object;
9400 struct image_keyword fmt[JPEG_LAST];
9402 bcopy (jpeg_format, fmt, sizeof fmt);
9404 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
9405 return 0;
9407 /* Must specify either the :data or :file keyword. */
9408 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
9412 struct my_jpeg_error_mgr
9414 struct jpeg_error_mgr pub;
9415 jmp_buf setjmp_buffer;
9419 static void
9420 my_error_exit (cinfo)
9421 j_common_ptr cinfo;
9423 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
9424 longjmp (mgr->setjmp_buffer, 1);
9428 /* Init source method for JPEG data source manager. Called by
9429 jpeg_read_header() before any data is actually read. See
9430 libjpeg.doc from the JPEG lib distribution. */
9432 static void
9433 our_init_source (cinfo)
9434 j_decompress_ptr cinfo;
9439 /* Fill input buffer method for JPEG data source manager. Called
9440 whenever more data is needed. We read the whole image in one step,
9441 so this only adds a fake end of input marker at the end. */
9443 static boolean
9444 our_fill_input_buffer (cinfo)
9445 j_decompress_ptr cinfo;
9447 /* Insert a fake EOI marker. */
9448 struct jpeg_source_mgr *src = cinfo->src;
9449 static JOCTET buffer[2];
9451 buffer[0] = (JOCTET) 0xFF;
9452 buffer[1] = (JOCTET) JPEG_EOI;
9454 src->next_input_byte = buffer;
9455 src->bytes_in_buffer = 2;
9456 return TRUE;
9460 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
9461 is the JPEG data source manager. */
9463 static void
9464 our_skip_input_data (cinfo, num_bytes)
9465 j_decompress_ptr cinfo;
9466 long num_bytes;
9468 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
9470 if (src)
9472 if (num_bytes > src->bytes_in_buffer)
9473 ERREXIT (cinfo, JERR_INPUT_EOF);
9475 src->bytes_in_buffer -= num_bytes;
9476 src->next_input_byte += num_bytes;
9481 /* Method to terminate data source. Called by
9482 jpeg_finish_decompress() after all data has been processed. */
9484 static void
9485 our_term_source (cinfo)
9486 j_decompress_ptr cinfo;
9491 /* Set up the JPEG lib for reading an image from DATA which contains
9492 LEN bytes. CINFO is the decompression info structure created for
9493 reading the image. */
9495 static void
9496 jpeg_memory_src (cinfo, data, len)
9497 j_decompress_ptr cinfo;
9498 JOCTET *data;
9499 unsigned int len;
9501 struct jpeg_source_mgr *src;
9503 if (cinfo->src == NULL)
9505 /* First time for this JPEG object? */
9506 cinfo->src = (struct jpeg_source_mgr *)
9507 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
9508 sizeof (struct jpeg_source_mgr));
9509 src = (struct jpeg_source_mgr *) cinfo->src;
9510 src->next_input_byte = data;
9513 src = (struct jpeg_source_mgr *) cinfo->src;
9514 src->init_source = our_init_source;
9515 src->fill_input_buffer = our_fill_input_buffer;
9516 src->skip_input_data = our_skip_input_data;
9517 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
9518 src->term_source = our_term_source;
9519 src->bytes_in_buffer = len;
9520 src->next_input_byte = data;
9524 /* Load image IMG for use on frame F. Patterned after example.c
9525 from the JPEG lib. */
9527 static int
9528 jpeg_load (f, img)
9529 struct frame *f;
9530 struct image *img;
9532 struct jpeg_decompress_struct cinfo;
9533 struct my_jpeg_error_mgr mgr;
9534 Lisp_Object file, specified_file;
9535 Lisp_Object specified_data;
9536 FILE * volatile fp = NULL;
9537 JSAMPARRAY buffer;
9538 int row_stride, x, y;
9539 XImage *ximg = NULL;
9540 int rc;
9541 unsigned long *colors;
9542 int width, height;
9543 struct gcpro gcpro1;
9545 /* Open the JPEG file. */
9546 specified_file = image_spec_value (img->spec, QCfile, NULL);
9547 specified_data = image_spec_value (img->spec, QCdata, NULL);
9548 file = Qnil;
9549 GCPRO1 (file);
9551 if (NILP (specified_data))
9553 file = x_find_image_file (specified_file);
9554 if (!STRINGP (file))
9556 image_error ("Cannot find image file `%s'", specified_file, Qnil);
9557 UNGCPRO;
9558 return 0;
9561 fp = fopen (SDATA (file), "r");
9562 if (fp == NULL)
9564 image_error ("Cannot open `%s'", file, Qnil);
9565 UNGCPRO;
9566 return 0;
9570 /* Customize libjpeg's error handling to call my_error_exit when an
9571 error is detected. This function will perform a longjmp. */
9572 cinfo.err = jpeg_std_error (&mgr.pub);
9573 mgr.pub.error_exit = my_error_exit;
9575 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
9577 if (rc == 1)
9579 /* Called from my_error_exit. Display a JPEG error. */
9580 char buffer[JMSG_LENGTH_MAX];
9581 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
9582 image_error ("Error reading JPEG image `%s': %s", img->spec,
9583 build_string (buffer));
9586 /* Close the input file and destroy the JPEG object. */
9587 if (fp)
9588 fclose ((FILE *) fp);
9589 jpeg_destroy_decompress (&cinfo);
9591 /* If we already have an XImage, free that. */
9592 x_destroy_x_image (ximg);
9594 /* Free pixmap and colors. */
9595 x_clear_image (f, img);
9597 UNGCPRO;
9598 return 0;
9601 /* Create the JPEG decompression object. Let it read from fp.
9602 Read the JPEG image header. */
9603 jpeg_create_decompress (&cinfo);
9605 if (NILP (specified_data))
9606 jpeg_stdio_src (&cinfo, (FILE *) fp);
9607 else
9608 jpeg_memory_src (&cinfo, SDATA (specified_data),
9609 SBYTES (specified_data));
9611 jpeg_read_header (&cinfo, TRUE);
9613 /* Customize decompression so that color quantization will be used.
9614 Start decompression. */
9615 cinfo.quantize_colors = TRUE;
9616 jpeg_start_decompress (&cinfo);
9617 width = img->width = cinfo.output_width;
9618 height = img->height = cinfo.output_height;
9620 /* Create X image and pixmap. */
9621 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
9622 longjmp (mgr.setjmp_buffer, 2);
9624 /* Allocate colors. When color quantization is used,
9625 cinfo.actual_number_of_colors has been set with the number of
9626 colors generated, and cinfo.colormap is a two-dimensional array
9627 of color indices in the range 0..cinfo.actual_number_of_colors.
9628 No more than 255 colors will be generated. */
9630 int i, ir, ig, ib;
9632 if (cinfo.out_color_components > 2)
9633 ir = 0, ig = 1, ib = 2;
9634 else if (cinfo.out_color_components > 1)
9635 ir = 0, ig = 1, ib = 0;
9636 else
9637 ir = 0, ig = 0, ib = 0;
9639 /* Use the color table mechanism because it handles colors that
9640 cannot be allocated nicely. Such colors will be replaced with
9641 a default color, and we don't have to care about which colors
9642 can be freed safely, and which can't. */
9643 init_color_table ();
9644 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
9645 * sizeof *colors);
9647 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
9649 /* Multiply RGB values with 255 because X expects RGB values
9650 in the range 0..0xffff. */
9651 int r = cinfo.colormap[ir][i] << 8;
9652 int g = cinfo.colormap[ig][i] << 8;
9653 int b = cinfo.colormap[ib][i] << 8;
9654 colors[i] = lookup_rgb_color (f, r, g, b);
9657 /* Remember those colors actually allocated. */
9658 img->colors = colors_in_color_table (&img->ncolors);
9659 free_color_table ();
9662 /* Read pixels. */
9663 row_stride = width * cinfo.output_components;
9664 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
9665 row_stride, 1);
9666 for (y = 0; y < height; ++y)
9668 jpeg_read_scanlines (&cinfo, buffer, 1);
9669 for (x = 0; x < cinfo.output_width; ++x)
9670 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
9673 /* Clean up. */
9674 jpeg_finish_decompress (&cinfo);
9675 jpeg_destroy_decompress (&cinfo);
9676 if (fp)
9677 fclose ((FILE *) fp);
9679 /* Maybe fill in the background field while we have ximg handy. */
9680 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
9681 IMAGE_BACKGROUND (img, f, ximg);
9683 /* Put the image into the pixmap. */
9684 x_put_x_image (f, ximg, img->pixmap, width, height);
9685 x_destroy_x_image (ximg);
9686 UNGCPRO;
9687 return 1;
9690 #endif /* HAVE_JPEG */
9694 /***********************************************************************
9695 TIFF
9696 ***********************************************************************/
9698 #if HAVE_TIFF
9700 #include <tiffio.h>
9702 static int tiff_image_p P_ ((Lisp_Object object));
9703 static int tiff_load P_ ((struct frame *f, struct image *img));
9705 /* The symbol `tiff' identifying images of this type. */
9707 Lisp_Object Qtiff;
9709 /* Indices of image specification fields in tiff_format, below. */
9711 enum tiff_keyword_index
9713 TIFF_TYPE,
9714 TIFF_DATA,
9715 TIFF_FILE,
9716 TIFF_ASCENT,
9717 TIFF_MARGIN,
9718 TIFF_RELIEF,
9719 TIFF_ALGORITHM,
9720 TIFF_HEURISTIC_MASK,
9721 TIFF_MASK,
9722 TIFF_BACKGROUND,
9723 TIFF_LAST
9726 /* Vector of image_keyword structures describing the format
9727 of valid user-defined image specifications. */
9729 static struct image_keyword tiff_format[TIFF_LAST] =
9731 {":type", IMAGE_SYMBOL_VALUE, 1},
9732 {":data", IMAGE_STRING_VALUE, 0},
9733 {":file", IMAGE_STRING_VALUE, 0},
9734 {":ascent", IMAGE_ASCENT_VALUE, 0},
9735 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
9736 {":relief", IMAGE_INTEGER_VALUE, 0},
9737 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9738 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9739 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9740 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
9743 /* Structure describing the image type `tiff'. */
9745 static struct image_type tiff_type =
9747 &Qtiff,
9748 tiff_image_p,
9749 tiff_load,
9750 x_clear_image,
9751 NULL
9755 /* Return non-zero if OBJECT is a valid TIFF image specification. */
9757 static int
9758 tiff_image_p (object)
9759 Lisp_Object object;
9761 struct image_keyword fmt[TIFF_LAST];
9762 bcopy (tiff_format, fmt, sizeof fmt);
9764 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
9765 return 0;
9767 /* Must specify either the :data or :file keyword. */
9768 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
9772 /* Reading from a memory buffer for TIFF images Based on the PNG
9773 memory source, but we have to provide a lot of extra functions.
9774 Blah.
9776 We really only need to implement read and seek, but I am not
9777 convinced that the TIFF library is smart enough not to destroy
9778 itself if we only hand it the function pointers we need to
9779 override. */
9781 typedef struct
9783 unsigned char *bytes;
9784 size_t len;
9785 int index;
9787 tiff_memory_source;
9790 static size_t
9791 tiff_read_from_memory (data, buf, size)
9792 thandle_t data;
9793 tdata_t buf;
9794 tsize_t size;
9796 tiff_memory_source *src = (tiff_memory_source *) data;
9798 if (size > src->len - src->index)
9799 return (size_t) -1;
9800 bcopy (src->bytes + src->index, buf, size);
9801 src->index += size;
9802 return size;
9806 static size_t
9807 tiff_write_from_memory (data, buf, size)
9808 thandle_t data;
9809 tdata_t buf;
9810 tsize_t size;
9812 return (size_t) -1;
9816 static toff_t
9817 tiff_seek_in_memory (data, off, whence)
9818 thandle_t data;
9819 toff_t off;
9820 int whence;
9822 tiff_memory_source *src = (tiff_memory_source *) data;
9823 int idx;
9825 switch (whence)
9827 case SEEK_SET: /* Go from beginning of source. */
9828 idx = off;
9829 break;
9831 case SEEK_END: /* Go from end of source. */
9832 idx = src->len + off;
9833 break;
9835 case SEEK_CUR: /* Go from current position. */
9836 idx = src->index + off;
9837 break;
9839 default: /* Invalid `whence'. */
9840 return -1;
9843 if (idx > src->len || idx < 0)
9844 return -1;
9846 src->index = idx;
9847 return src->index;
9851 static int
9852 tiff_close_memory (data)
9853 thandle_t data;
9855 /* NOOP */
9856 return 0;
9860 static int
9861 tiff_mmap_memory (data, pbase, psize)
9862 thandle_t data;
9863 tdata_t *pbase;
9864 toff_t *psize;
9866 /* It is already _IN_ memory. */
9867 return 0;
9871 static void
9872 tiff_unmap_memory (data, base, size)
9873 thandle_t data;
9874 tdata_t base;
9875 toff_t size;
9877 /* We don't need to do this. */
9881 static toff_t
9882 tiff_size_of_memory (data)
9883 thandle_t data;
9885 return ((tiff_memory_source *) data)->len;
9889 static void
9890 tiff_error_handler (title, format, ap)
9891 const char *title, *format;
9892 va_list ap;
9894 char buf[512];
9895 int len;
9897 len = sprintf (buf, "TIFF error: %s ", title);
9898 vsprintf (buf + len, format, ap);
9899 add_to_log (buf, Qnil, Qnil);
9903 static void
9904 tiff_warning_handler (title, format, ap)
9905 const char *title, *format;
9906 va_list ap;
9908 char buf[512];
9909 int len;
9911 len = sprintf (buf, "TIFF warning: %s ", title);
9912 vsprintf (buf + len, format, ap);
9913 add_to_log (buf, Qnil, Qnil);
9917 /* Load TIFF image IMG for use on frame F. Value is non-zero if
9918 successful. */
9920 static int
9921 tiff_load (f, img)
9922 struct frame *f;
9923 struct image *img;
9925 Lisp_Object file, specified_file;
9926 Lisp_Object specified_data;
9927 TIFF *tiff;
9928 int width, height, x, y;
9929 uint32 *buf;
9930 int rc;
9931 XImage *ximg;
9932 struct gcpro gcpro1;
9933 tiff_memory_source memsrc;
9935 specified_file = image_spec_value (img->spec, QCfile, NULL);
9936 specified_data = image_spec_value (img->spec, QCdata, NULL);
9937 file = Qnil;
9938 GCPRO1 (file);
9940 TIFFSetErrorHandler (tiff_error_handler);
9941 TIFFSetWarningHandler (tiff_warning_handler);
9943 if (NILP (specified_data))
9945 /* Read from a file */
9946 file = x_find_image_file (specified_file);
9947 if (!STRINGP (file))
9949 image_error ("Cannot find image file `%s'", file, Qnil);
9950 UNGCPRO;
9951 return 0;
9954 /* Try to open the image file. */
9955 tiff = TIFFOpen (SDATA (file), "r");
9956 if (tiff == NULL)
9958 image_error ("Cannot open `%s'", file, Qnil);
9959 UNGCPRO;
9960 return 0;
9963 else
9965 /* Memory source! */
9966 memsrc.bytes = SDATA (specified_data);
9967 memsrc.len = SBYTES (specified_data);
9968 memsrc.index = 0;
9970 tiff = TIFFClientOpen ("memory_source", "r", &memsrc,
9971 (TIFFReadWriteProc) tiff_read_from_memory,
9972 (TIFFReadWriteProc) tiff_write_from_memory,
9973 tiff_seek_in_memory,
9974 tiff_close_memory,
9975 tiff_size_of_memory,
9976 tiff_mmap_memory,
9977 tiff_unmap_memory);
9979 if (!tiff)
9981 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
9982 UNGCPRO;
9983 return 0;
9987 /* Get width and height of the image, and allocate a raster buffer
9988 of width x height 32-bit values. */
9989 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
9990 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
9991 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
9993 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
9994 TIFFClose (tiff);
9995 if (!rc)
9997 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
9998 xfree (buf);
9999 UNGCPRO;
10000 return 0;
10003 /* Create the X image and pixmap. */
10004 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
10006 xfree (buf);
10007 UNGCPRO;
10008 return 0;
10011 /* Initialize the color table. */
10012 init_color_table ();
10014 /* Process the pixel raster. Origin is in the lower-left corner. */
10015 for (y = 0; y < height; ++y)
10017 uint32 *row = buf + y * width;
10019 for (x = 0; x < width; ++x)
10021 uint32 abgr = row[x];
10022 int r = TIFFGetR (abgr) << 8;
10023 int g = TIFFGetG (abgr) << 8;
10024 int b = TIFFGetB (abgr) << 8;
10025 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
10029 /* Remember the colors allocated for the image. Free the color table. */
10030 img->colors = colors_in_color_table (&img->ncolors);
10031 free_color_table ();
10033 img->width = width;
10034 img->height = height;
10036 /* Maybe fill in the background field while we have ximg handy. */
10037 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
10038 IMAGE_BACKGROUND (img, f, ximg);
10040 /* Put the image into the pixmap, then free the X image and its buffer. */
10041 x_put_x_image (f, ximg, img->pixmap, width, height);
10042 x_destroy_x_image (ximg);
10043 xfree (buf);
10045 UNGCPRO;
10046 return 1;
10049 #endif /* HAVE_TIFF != 0 */
10053 /***********************************************************************
10055 ***********************************************************************/
10057 #if HAVE_GIF
10059 #include <gif_lib.h>
10061 static int gif_image_p P_ ((Lisp_Object object));
10062 static int gif_load P_ ((struct frame *f, struct image *img));
10064 /* The symbol `gif' identifying images of this type. */
10066 Lisp_Object Qgif;
10068 /* Indices of image specification fields in gif_format, below. */
10070 enum gif_keyword_index
10072 GIF_TYPE,
10073 GIF_DATA,
10074 GIF_FILE,
10075 GIF_ASCENT,
10076 GIF_MARGIN,
10077 GIF_RELIEF,
10078 GIF_ALGORITHM,
10079 GIF_HEURISTIC_MASK,
10080 GIF_MASK,
10081 GIF_IMAGE,
10082 GIF_BACKGROUND,
10083 GIF_LAST
10086 /* Vector of image_keyword structures describing the format
10087 of valid user-defined image specifications. */
10089 static struct image_keyword gif_format[GIF_LAST] =
10091 {":type", IMAGE_SYMBOL_VALUE, 1},
10092 {":data", IMAGE_STRING_VALUE, 0},
10093 {":file", IMAGE_STRING_VALUE, 0},
10094 {":ascent", IMAGE_ASCENT_VALUE, 0},
10095 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
10096 {":relief", IMAGE_INTEGER_VALUE, 0},
10097 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10098 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10099 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10100 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10101 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
10104 /* Structure describing the image type `gif'. */
10106 static struct image_type gif_type =
10108 &Qgif,
10109 gif_image_p,
10110 gif_load,
10111 x_clear_image,
10112 NULL
10116 /* Return non-zero if OBJECT is a valid GIF image specification. */
10118 static int
10119 gif_image_p (object)
10120 Lisp_Object object;
10122 struct image_keyword fmt[GIF_LAST];
10123 bcopy (gif_format, fmt, sizeof fmt);
10125 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
10126 return 0;
10128 /* Must specify either the :data or :file keyword. */
10129 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
10133 /* Reading a GIF image from memory
10134 Based on the PNG memory stuff to a certain extent. */
10136 typedef struct
10138 unsigned char *bytes;
10139 size_t len;
10140 int index;
10142 gif_memory_source;
10145 /* Make the current memory source available to gif_read_from_memory.
10146 It's done this way because not all versions of libungif support
10147 a UserData field in the GifFileType structure. */
10148 static gif_memory_source *current_gif_memory_src;
10150 static int
10151 gif_read_from_memory (file, buf, len)
10152 GifFileType *file;
10153 GifByteType *buf;
10154 int len;
10156 gif_memory_source *src = current_gif_memory_src;
10158 if (len > src->len - src->index)
10159 return -1;
10161 bcopy (src->bytes + src->index, buf, len);
10162 src->index += len;
10163 return len;
10167 /* Load GIF image IMG for use on frame F. Value is non-zero if
10168 successful. */
10170 static int
10171 gif_load (f, img)
10172 struct frame *f;
10173 struct image *img;
10175 Lisp_Object file, specified_file;
10176 Lisp_Object specified_data;
10177 int rc, width, height, x, y, i;
10178 XImage *ximg;
10179 ColorMapObject *gif_color_map;
10180 unsigned long pixel_colors[256];
10181 GifFileType *gif;
10182 struct gcpro gcpro1;
10183 Lisp_Object image;
10184 int ino, image_left, image_top, image_width, image_height;
10185 gif_memory_source memsrc;
10186 unsigned char *raster;
10188 specified_file = image_spec_value (img->spec, QCfile, NULL);
10189 specified_data = image_spec_value (img->spec, QCdata, NULL);
10190 file = Qnil;
10191 GCPRO1 (file);
10193 if (NILP (specified_data))
10195 file = x_find_image_file (specified_file);
10196 if (!STRINGP (file))
10198 image_error ("Cannot find image file `%s'", specified_file, Qnil);
10199 UNGCPRO;
10200 return 0;
10203 /* Open the GIF file. */
10204 gif = DGifOpenFileName (SDATA (file));
10205 if (gif == NULL)
10207 image_error ("Cannot open `%s'", file, Qnil);
10208 UNGCPRO;
10209 return 0;
10212 else
10214 /* Read from memory! */
10215 current_gif_memory_src = &memsrc;
10216 memsrc.bytes = SDATA (specified_data);
10217 memsrc.len = SBYTES (specified_data);
10218 memsrc.index = 0;
10220 gif = DGifOpen(&memsrc, gif_read_from_memory);
10221 if (!gif)
10223 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
10224 UNGCPRO;
10225 return 0;
10229 /* Read entire contents. */
10230 rc = DGifSlurp (gif);
10231 if (rc == GIF_ERROR)
10233 image_error ("Error reading `%s'", img->spec, Qnil);
10234 DGifCloseFile (gif);
10235 UNGCPRO;
10236 return 0;
10239 image = image_spec_value (img->spec, QCindex, NULL);
10240 ino = INTEGERP (image) ? XFASTINT (image) : 0;
10241 if (ino >= gif->ImageCount)
10243 image_error ("Invalid image number `%s' in image `%s'",
10244 image, img->spec);
10245 DGifCloseFile (gif);
10246 UNGCPRO;
10247 return 0;
10250 width = img->width = max (gif->SWidth, gif->Image.Left + gif->Image.Width);
10251 height = img->height = max (gif->SHeight, gif->Image.Top + gif->Image.Height);
10253 /* Create the X image and pixmap. */
10254 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
10256 DGifCloseFile (gif);
10257 UNGCPRO;
10258 return 0;
10261 /* Allocate colors. */
10262 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
10263 if (!gif_color_map)
10264 gif_color_map = gif->SColorMap;
10265 init_color_table ();
10266 bzero (pixel_colors, sizeof pixel_colors);
10268 for (i = 0; i < gif_color_map->ColorCount; ++i)
10270 int r = gif_color_map->Colors[i].Red << 8;
10271 int g = gif_color_map->Colors[i].Green << 8;
10272 int b = gif_color_map->Colors[i].Blue << 8;
10273 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
10276 img->colors = colors_in_color_table (&img->ncolors);
10277 free_color_table ();
10279 /* Clear the part of the screen image that are not covered by
10280 the image from the GIF file. Full animated GIF support
10281 requires more than can be done here (see the gif89 spec,
10282 disposal methods). Let's simply assume that the part
10283 not covered by a sub-image is in the frame's background color. */
10284 image_top = gif->SavedImages[ino].ImageDesc.Top;
10285 image_left = gif->SavedImages[ino].ImageDesc.Left;
10286 image_width = gif->SavedImages[ino].ImageDesc.Width;
10287 image_height = gif->SavedImages[ino].ImageDesc.Height;
10289 for (y = 0; y < image_top; ++y)
10290 for (x = 0; x < width; ++x)
10291 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
10293 for (y = image_top + image_height; y < height; ++y)
10294 for (x = 0; x < width; ++x)
10295 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
10297 for (y = image_top; y < image_top + image_height; ++y)
10299 for (x = 0; x < image_left; ++x)
10300 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
10301 for (x = image_left + image_width; x < width; ++x)
10302 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
10305 /* Read the GIF image into the X image. We use a local variable
10306 `raster' here because RasterBits below is a char *, and invites
10307 problems with bytes >= 0x80. */
10308 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
10310 if (gif->SavedImages[ino].ImageDesc.Interlace)
10312 static int interlace_start[] = {0, 4, 2, 1};
10313 static int interlace_increment[] = {8, 8, 4, 2};
10314 int pass;
10315 int row = interlace_start[0];
10317 pass = 0;
10319 for (y = 0; y < image_height; y++)
10321 if (row >= image_height)
10323 row = interlace_start[++pass];
10324 while (row >= image_height)
10325 row = interlace_start[++pass];
10328 for (x = 0; x < image_width; x++)
10330 int i = raster[(y * image_width) + x];
10331 XPutPixel (ximg, x + image_left, row + image_top,
10332 pixel_colors[i]);
10335 row += interlace_increment[pass];
10338 else
10340 for (y = 0; y < image_height; ++y)
10341 for (x = 0; x < image_width; ++x)
10343 int i = raster[y * image_width + x];
10344 XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
10348 DGifCloseFile (gif);
10350 /* Maybe fill in the background field while we have ximg handy. */
10351 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
10352 IMAGE_BACKGROUND (img, f, ximg);
10354 /* Put the image into the pixmap, then free the X image and its buffer. */
10355 x_put_x_image (f, ximg, img->pixmap, width, height);
10356 x_destroy_x_image (ximg);
10358 UNGCPRO;
10359 return 1;
10362 #endif /* HAVE_GIF != 0 */
10366 /***********************************************************************
10367 Ghostscript
10368 ***********************************************************************/
10370 static int gs_image_p P_ ((Lisp_Object object));
10371 static int gs_load P_ ((struct frame *f, struct image *img));
10372 static void gs_clear_image P_ ((struct frame *f, struct image *img));
10374 /* The symbol `postscript' identifying images of this type. */
10376 Lisp_Object Qpostscript;
10378 /* Keyword symbols. */
10380 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
10382 /* Indices of image specification fields in gs_format, below. */
10384 enum gs_keyword_index
10386 GS_TYPE,
10387 GS_PT_WIDTH,
10388 GS_PT_HEIGHT,
10389 GS_FILE,
10390 GS_LOADER,
10391 GS_BOUNDING_BOX,
10392 GS_ASCENT,
10393 GS_MARGIN,
10394 GS_RELIEF,
10395 GS_ALGORITHM,
10396 GS_HEURISTIC_MASK,
10397 GS_MASK,
10398 GS_BACKGROUND,
10399 GS_LAST
10402 /* Vector of image_keyword structures describing the format
10403 of valid user-defined image specifications. */
10405 static struct image_keyword gs_format[GS_LAST] =
10407 {":type", IMAGE_SYMBOL_VALUE, 1},
10408 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
10409 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
10410 {":file", IMAGE_STRING_VALUE, 1},
10411 {":loader", IMAGE_FUNCTION_VALUE, 0},
10412 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
10413 {":ascent", IMAGE_ASCENT_VALUE, 0},
10414 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
10415 {":relief", IMAGE_INTEGER_VALUE, 0},
10416 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10417 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10418 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10419 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
10422 /* Structure describing the image type `ghostscript'. */
10424 static struct image_type gs_type =
10426 &Qpostscript,
10427 gs_image_p,
10428 gs_load,
10429 gs_clear_image,
10430 NULL
10434 /* Free X resources of Ghostscript image IMG which is used on frame F. */
10436 static void
10437 gs_clear_image (f, img)
10438 struct frame *f;
10439 struct image *img;
10441 /* IMG->data.ptr_val may contain a recorded colormap. */
10442 xfree (img->data.ptr_val);
10443 x_clear_image (f, img);
10447 /* Return non-zero if OBJECT is a valid Ghostscript image
10448 specification. */
10450 static int
10451 gs_image_p (object)
10452 Lisp_Object object;
10454 struct image_keyword fmt[GS_LAST];
10455 Lisp_Object tem;
10456 int i;
10458 bcopy (gs_format, fmt, sizeof fmt);
10460 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
10461 return 0;
10463 /* Bounding box must be a list or vector containing 4 integers. */
10464 tem = fmt[GS_BOUNDING_BOX].value;
10465 if (CONSP (tem))
10467 for (i = 0; i < 4; ++i, tem = XCDR (tem))
10468 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
10469 return 0;
10470 if (!NILP (tem))
10471 return 0;
10473 else if (VECTORP (tem))
10475 if (XVECTOR (tem)->size != 4)
10476 return 0;
10477 for (i = 0; i < 4; ++i)
10478 if (!INTEGERP (XVECTOR (tem)->contents[i]))
10479 return 0;
10481 else
10482 return 0;
10484 return 1;
10488 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
10489 if successful. */
10491 static int
10492 gs_load (f, img)
10493 struct frame *f;
10494 struct image *img;
10496 char buffer[100];
10497 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
10498 struct gcpro gcpro1, gcpro2;
10499 Lisp_Object frame;
10500 double in_width, in_height;
10501 Lisp_Object pixel_colors = Qnil;
10503 /* Compute pixel size of pixmap needed from the given size in the
10504 image specification. Sizes in the specification are in pt. 1 pt
10505 = 1/72 in, xdpi and ydpi are stored in the frame's X display
10506 info. */
10507 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
10508 in_width = XFASTINT (pt_width) / 72.0;
10509 img->width = in_width * FRAME_X_DISPLAY_INFO (f)->resx;
10510 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
10511 in_height = XFASTINT (pt_height) / 72.0;
10512 img->height = in_height * FRAME_X_DISPLAY_INFO (f)->resy;
10514 /* Create the pixmap. */
10515 xassert (img->pixmap == None);
10516 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10517 img->width, img->height,
10518 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
10520 if (!img->pixmap)
10522 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
10523 return 0;
10526 /* Call the loader to fill the pixmap. It returns a process object
10527 if successful. We do not record_unwind_protect here because
10528 other places in redisplay like calling window scroll functions
10529 don't either. Let the Lisp loader use `unwind-protect' instead. */
10530 GCPRO2 (window_and_pixmap_id, pixel_colors);
10532 sprintf (buffer, "%lu %lu",
10533 (unsigned long) FRAME_X_WINDOW (f),
10534 (unsigned long) img->pixmap);
10535 window_and_pixmap_id = build_string (buffer);
10537 sprintf (buffer, "%lu %lu",
10538 FRAME_FOREGROUND_PIXEL (f),
10539 FRAME_BACKGROUND_PIXEL (f));
10540 pixel_colors = build_string (buffer);
10542 XSETFRAME (frame, f);
10543 loader = image_spec_value (img->spec, QCloader, NULL);
10544 if (NILP (loader))
10545 loader = intern ("gs-load-image");
10547 img->data.lisp_val = call6 (loader, frame, img->spec,
10548 make_number (img->width),
10549 make_number (img->height),
10550 window_and_pixmap_id,
10551 pixel_colors);
10552 UNGCPRO;
10553 return PROCESSP (img->data.lisp_val);
10557 /* Kill the Ghostscript process that was started to fill PIXMAP on
10558 frame F. Called from XTread_socket when receiving an event
10559 telling Emacs that Ghostscript has finished drawing. */
10561 void
10562 x_kill_gs_process (pixmap, f)
10563 Pixmap pixmap;
10564 struct frame *f;
10566 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
10567 int class, i;
10568 struct image *img;
10570 /* Find the image containing PIXMAP. */
10571 for (i = 0; i < c->used; ++i)
10572 if (c->images[i]->pixmap == pixmap)
10573 break;
10575 /* Should someone in between have cleared the image cache, for
10576 instance, give up. */
10577 if (i == c->used)
10578 return;
10580 /* Kill the GS process. We should have found PIXMAP in the image
10581 cache and its image should contain a process object. */
10582 img = c->images[i];
10583 xassert (PROCESSP (img->data.lisp_val));
10584 Fkill_process (img->data.lisp_val, Qnil);
10585 img->data.lisp_val = Qnil;
10587 /* On displays with a mutable colormap, figure out the colors
10588 allocated for the image by looking at the pixels of an XImage for
10589 img->pixmap. */
10590 class = FRAME_X_VISUAL (f)->class;
10591 if (class != StaticColor && class != StaticGray && class != TrueColor)
10593 XImage *ximg;
10595 BLOCK_INPUT;
10597 /* Try to get an XImage for img->pixmep. */
10598 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
10599 0, 0, img->width, img->height, ~0, ZPixmap);
10600 if (ximg)
10602 int x, y;
10604 /* Initialize the color table. */
10605 init_color_table ();
10607 /* For each pixel of the image, look its color up in the
10608 color table. After having done so, the color table will
10609 contain an entry for each color used by the image. */
10610 for (y = 0; y < img->height; ++y)
10611 for (x = 0; x < img->width; ++x)
10613 unsigned long pixel = XGetPixel (ximg, x, y);
10614 lookup_pixel_color (f, pixel);
10617 /* Record colors in the image. Free color table and XImage. */
10618 img->colors = colors_in_color_table (&img->ncolors);
10619 free_color_table ();
10620 XDestroyImage (ximg);
10622 #if 0 /* This doesn't seem to be the case. If we free the colors
10623 here, we get a BadAccess later in x_clear_image when
10624 freeing the colors. */
10625 /* We have allocated colors once, but Ghostscript has also
10626 allocated colors on behalf of us. So, to get the
10627 reference counts right, free them once. */
10628 if (img->ncolors)
10629 x_free_colors (f, img->colors, img->ncolors);
10630 #endif
10632 else
10633 image_error ("Cannot get X image of `%s'; colors will not be freed",
10634 img->spec, Qnil);
10636 UNBLOCK_INPUT;
10639 /* Now that we have the pixmap, compute mask and transform the
10640 image if requested. */
10641 BLOCK_INPUT;
10642 postprocess_image (f, img);
10643 UNBLOCK_INPUT;
10648 /***********************************************************************
10649 Window properties
10650 ***********************************************************************/
10652 DEFUN ("x-change-window-property", Fx_change_window_property,
10653 Sx_change_window_property, 2, 3, 0,
10654 doc: /* Change window property PROP to VALUE on the X window of FRAME.
10655 PROP and VALUE must be strings. FRAME nil or omitted means use the
10656 selected frame. Value is VALUE. */)
10657 (prop, value, frame)
10658 Lisp_Object frame, prop, value;
10660 struct frame *f = check_x_frame (frame);
10661 Atom prop_atom;
10663 CHECK_STRING (prop);
10664 CHECK_STRING (value);
10666 BLOCK_INPUT;
10667 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
10668 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10669 prop_atom, XA_STRING, 8, PropModeReplace,
10670 SDATA (value), SCHARS (value));
10672 /* Make sure the property is set when we return. */
10673 XFlush (FRAME_X_DISPLAY (f));
10674 UNBLOCK_INPUT;
10676 return value;
10680 DEFUN ("x-delete-window-property", Fx_delete_window_property,
10681 Sx_delete_window_property, 1, 2, 0,
10682 doc: /* Remove window property PROP from X window of FRAME.
10683 FRAME nil or omitted means use the selected frame. Value is PROP. */)
10684 (prop, frame)
10685 Lisp_Object prop, frame;
10687 struct frame *f = check_x_frame (frame);
10688 Atom prop_atom;
10690 CHECK_STRING (prop);
10691 BLOCK_INPUT;
10692 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
10693 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
10695 /* Make sure the property is removed when we return. */
10696 XFlush (FRAME_X_DISPLAY (f));
10697 UNBLOCK_INPUT;
10699 return prop;
10703 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
10704 1, 2, 0,
10705 doc: /* Value is the value of window property PROP on FRAME.
10706 If FRAME is nil or omitted, use the selected frame. Value is nil
10707 if FRAME hasn't a property with name PROP or if PROP has no string
10708 value. */)
10709 (prop, frame)
10710 Lisp_Object prop, frame;
10712 struct frame *f = check_x_frame (frame);
10713 Atom prop_atom;
10714 int rc;
10715 Lisp_Object prop_value = Qnil;
10716 char *tmp_data = NULL;
10717 Atom actual_type;
10718 int actual_format;
10719 unsigned long actual_size, bytes_remaining;
10721 CHECK_STRING (prop);
10722 BLOCK_INPUT;
10723 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
10724 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10725 prop_atom, 0, 0, False, XA_STRING,
10726 &actual_type, &actual_format, &actual_size,
10727 &bytes_remaining, (unsigned char **) &tmp_data);
10728 if (rc == Success)
10730 int size = bytes_remaining;
10732 XFree (tmp_data);
10733 tmp_data = NULL;
10735 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10736 prop_atom, 0, bytes_remaining,
10737 False, XA_STRING,
10738 &actual_type, &actual_format,
10739 &actual_size, &bytes_remaining,
10740 (unsigned char **) &tmp_data);
10741 if (rc == Success && tmp_data)
10742 prop_value = make_string (tmp_data, size);
10744 XFree (tmp_data);
10747 UNBLOCK_INPUT;
10748 return prop_value;
10753 /***********************************************************************
10754 Busy cursor
10755 ***********************************************************************/
10757 /* If non-null, an asynchronous timer that, when it expires, displays
10758 an hourglass cursor on all frames. */
10760 static struct atimer *hourglass_atimer;
10762 /* Non-zero means an hourglass cursor is currently shown. */
10764 static int hourglass_shown_p;
10766 /* Number of seconds to wait before displaying an hourglass cursor. */
10768 static Lisp_Object Vhourglass_delay;
10770 /* Default number of seconds to wait before displaying an hourglass
10771 cursor. */
10773 #define DEFAULT_HOURGLASS_DELAY 1
10775 /* Function prototypes. */
10777 static void show_hourglass P_ ((struct atimer *));
10778 static void hide_hourglass P_ ((void));
10781 /* Cancel a currently active hourglass timer, and start a new one. */
10783 void
10784 start_hourglass ()
10786 EMACS_TIME delay;
10787 int secs, usecs = 0;
10789 cancel_hourglass ();
10791 if (INTEGERP (Vhourglass_delay)
10792 && XINT (Vhourglass_delay) > 0)
10793 secs = XFASTINT (Vhourglass_delay);
10794 else if (FLOATP (Vhourglass_delay)
10795 && XFLOAT_DATA (Vhourglass_delay) > 0)
10797 Lisp_Object tem;
10798 tem = Ftruncate (Vhourglass_delay, Qnil);
10799 secs = XFASTINT (tem);
10800 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
10802 else
10803 secs = DEFAULT_HOURGLASS_DELAY;
10805 EMACS_SET_SECS_USECS (delay, secs, usecs);
10806 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
10807 show_hourglass, NULL);
10811 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
10812 shown. */
10814 void
10815 cancel_hourglass ()
10817 if (hourglass_atimer)
10819 cancel_atimer (hourglass_atimer);
10820 hourglass_atimer = NULL;
10823 if (hourglass_shown_p)
10824 hide_hourglass ();
10828 /* Timer function of hourglass_atimer. TIMER is equal to
10829 hourglass_atimer.
10831 Display an hourglass pointer on all frames by mapping the frames'
10832 hourglass_window. Set the hourglass_p flag in the frames'
10833 output_data.x structure to indicate that an hourglass cursor is
10834 shown on the frames. */
10836 static void
10837 show_hourglass (timer)
10838 struct atimer *timer;
10840 /* The timer implementation will cancel this timer automatically
10841 after this function has run. Set hourglass_atimer to null
10842 so that we know the timer doesn't have to be canceled. */
10843 hourglass_atimer = NULL;
10845 if (!hourglass_shown_p)
10847 Lisp_Object rest, frame;
10849 BLOCK_INPUT;
10851 FOR_EACH_FRAME (rest, frame)
10853 struct frame *f = XFRAME (frame);
10855 if (FRAME_LIVE_P (f) && FRAME_X_P (f) && FRAME_X_DISPLAY (f))
10857 Display *dpy = FRAME_X_DISPLAY (f);
10859 #ifdef USE_X_TOOLKIT
10860 if (f->output_data.x->widget)
10861 #else
10862 if (FRAME_OUTER_WINDOW (f))
10863 #endif
10865 f->output_data.x->hourglass_p = 1;
10867 if (!f->output_data.x->hourglass_window)
10869 unsigned long mask = CWCursor;
10870 XSetWindowAttributes attrs;
10872 attrs.cursor = f->output_data.x->hourglass_cursor;
10874 f->output_data.x->hourglass_window
10875 = XCreateWindow (dpy, FRAME_OUTER_WINDOW (f),
10876 0, 0, 32000, 32000, 0, 0,
10877 InputOnly,
10878 CopyFromParent,
10879 mask, &attrs);
10882 XMapRaised (dpy, f->output_data.x->hourglass_window);
10883 XFlush (dpy);
10888 hourglass_shown_p = 1;
10889 UNBLOCK_INPUT;
10894 /* Hide the hourglass pointer on all frames, if it is currently
10895 shown. */
10897 static void
10898 hide_hourglass ()
10900 if (hourglass_shown_p)
10902 Lisp_Object rest, frame;
10904 BLOCK_INPUT;
10905 FOR_EACH_FRAME (rest, frame)
10907 struct frame *f = XFRAME (frame);
10909 if (FRAME_X_P (f)
10910 /* Watch out for newly created frames. */
10911 && f->output_data.x->hourglass_window)
10913 XUnmapWindow (FRAME_X_DISPLAY (f),
10914 f->output_data.x->hourglass_window);
10915 /* Sync here because XTread_socket looks at the
10916 hourglass_p flag that is reset to zero below. */
10917 XSync (FRAME_X_DISPLAY (f), False);
10918 f->output_data.x->hourglass_p = 0;
10922 hourglass_shown_p = 0;
10923 UNBLOCK_INPUT;
10929 /***********************************************************************
10930 Tool tips
10931 ***********************************************************************/
10933 static Lisp_Object x_create_tip_frame P_ ((struct x_display_info *,
10934 Lisp_Object, Lisp_Object));
10935 static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
10936 Lisp_Object, int, int, int *, int *));
10938 /* The frame of a currently visible tooltip. */
10940 Lisp_Object tip_frame;
10942 /* If non-nil, a timer started that hides the last tooltip when it
10943 fires. */
10945 Lisp_Object tip_timer;
10946 Window tip_window;
10948 /* If non-nil, a vector of 3 elements containing the last args
10949 with which x-show-tip was called. See there. */
10951 Lisp_Object last_show_tip_args;
10953 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
10955 Lisp_Object Vx_max_tooltip_size;
10958 static Lisp_Object
10959 unwind_create_tip_frame (frame)
10960 Lisp_Object frame;
10962 Lisp_Object deleted;
10964 deleted = unwind_create_frame (frame);
10965 if (EQ (deleted, Qt))
10967 tip_window = None;
10968 tip_frame = Qnil;
10971 return deleted;
10975 /* Create a frame for a tooltip on the display described by DPYINFO.
10976 PARMS is a list of frame parameters. TEXT is the string to
10977 display in the tip frame. Value is the frame.
10979 Note that functions called here, esp. x_default_parameter can
10980 signal errors, for instance when a specified color name is
10981 undefined. We have to make sure that we're in a consistent state
10982 when this happens. */
10984 static Lisp_Object
10985 x_create_tip_frame (dpyinfo, parms, text)
10986 struct x_display_info *dpyinfo;
10987 Lisp_Object parms, text;
10989 struct frame *f;
10990 Lisp_Object frame, tem;
10991 Lisp_Object name;
10992 long window_prompting = 0;
10993 int width, height;
10994 int count = SPECPDL_INDEX ();
10995 struct gcpro gcpro1, gcpro2, gcpro3;
10996 struct kboard *kb;
10997 int face_change_count_before = face_change_count;
10998 Lisp_Object buffer;
10999 struct buffer *old_buffer;
11001 check_x ();
11003 /* Use this general default value to start with until we know if
11004 this frame has a specified name. */
11005 Vx_resource_name = Vinvocation_name;
11007 #ifdef MULTI_KBOARD
11008 kb = dpyinfo->kboard;
11009 #else
11010 kb = &the_only_kboard;
11011 #endif
11013 /* Get the name of the frame to use for resource lookup. */
11014 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
11015 if (!STRINGP (name)
11016 && !EQ (name, Qunbound)
11017 && !NILP (name))
11018 error ("Invalid frame name--not a string or nil");
11019 Vx_resource_name = name;
11021 frame = Qnil;
11022 GCPRO3 (parms, name, frame);
11023 f = make_frame (1);
11024 XSETFRAME (frame, f);
11026 buffer = Fget_buffer_create (build_string (" *tip*"));
11027 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer);
11028 old_buffer = current_buffer;
11029 set_buffer_internal_1 (XBUFFER (buffer));
11030 current_buffer->truncate_lines = Qnil;
11031 Ferase_buffer ();
11032 Finsert (1, &text);
11033 set_buffer_internal_1 (old_buffer);
11035 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
11036 record_unwind_protect (unwind_create_tip_frame, frame);
11038 /* By setting the output method, we're essentially saying that
11039 the frame is live, as per FRAME_LIVE_P. If we get a signal
11040 from this point on, x_destroy_window might screw up reference
11041 counts etc. */
11042 f->output_method = output_x_window;
11043 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
11044 bzero (f->output_data.x, sizeof (struct x_output));
11045 f->output_data.x->icon_bitmap = -1;
11046 f->output_data.x->fontset = -1;
11047 f->output_data.x->scroll_bar_foreground_pixel = -1;
11048 f->output_data.x->scroll_bar_background_pixel = -1;
11049 #ifdef USE_TOOLKIT_SCROLL_BARS
11050 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
11051 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
11052 #endif /* USE_TOOLKIT_SCROLL_BARS */
11053 f->icon_name = Qnil;
11054 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
11055 #if GLYPH_DEBUG
11056 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
11057 dpyinfo_refcount = dpyinfo->reference_count;
11058 #endif /* GLYPH_DEBUG */
11059 #ifdef MULTI_KBOARD
11060 FRAME_KBOARD (f) = kb;
11061 #endif
11062 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
11063 f->output_data.x->explicit_parent = 0;
11065 /* These colors will be set anyway later, but it's important
11066 to get the color reference counts right, so initialize them! */
11068 Lisp_Object black;
11069 struct gcpro gcpro1;
11071 black = build_string ("black");
11072 GCPRO1 (black);
11073 f->output_data.x->foreground_pixel
11074 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
11075 f->output_data.x->background_pixel
11076 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
11077 f->output_data.x->cursor_pixel
11078 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
11079 f->output_data.x->cursor_foreground_pixel
11080 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
11081 f->output_data.x->border_pixel
11082 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
11083 f->output_data.x->mouse_pixel
11084 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
11085 UNGCPRO;
11088 /* Set the name; the functions to which we pass f expect the name to
11089 be set. */
11090 if (EQ (name, Qunbound) || NILP (name))
11092 f->name = build_string (dpyinfo->x_id_name);
11093 f->explicit_name = 0;
11095 else
11097 f->name = name;
11098 f->explicit_name = 1;
11099 /* use the frame's title when getting resources for this frame. */
11100 specbind (Qx_resource_name, name);
11103 /* Extract the window parameters from the supplied values that are
11104 needed to determine window geometry. */
11106 Lisp_Object font;
11108 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
11110 BLOCK_INPUT;
11111 /* First, try whatever font the caller has specified. */
11112 if (STRINGP (font))
11114 tem = Fquery_fontset (font, Qnil);
11115 if (STRINGP (tem))
11116 font = x_new_fontset (f, SDATA (tem));
11117 else
11118 font = x_new_font (f, SDATA (font));
11121 /* Try out a font which we hope has bold and italic variations. */
11122 if (!STRINGP (font))
11123 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
11124 if (!STRINGP (font))
11125 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
11126 if (! STRINGP (font))
11127 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
11128 if (! STRINGP (font))
11129 /* This was formerly the first thing tried, but it finds too many fonts
11130 and takes too long. */
11131 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
11132 /* If those didn't work, look for something which will at least work. */
11133 if (! STRINGP (font))
11134 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
11135 UNBLOCK_INPUT;
11136 if (! STRINGP (font))
11137 font = build_string ("fixed");
11139 x_default_parameter (f, parms, Qfont, font,
11140 "font", "Font", RES_TYPE_STRING);
11143 x_default_parameter (f, parms, Qborder_width, make_number (2),
11144 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
11146 /* This defaults to 2 in order to match xterm. We recognize either
11147 internalBorderWidth or internalBorder (which is what xterm calls
11148 it). */
11149 if (NILP (Fassq (Qinternal_border_width, parms)))
11151 Lisp_Object value;
11153 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
11154 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
11155 if (! EQ (value, Qunbound))
11156 parms = Fcons (Fcons (Qinternal_border_width, value),
11157 parms);
11160 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
11161 "internalBorderWidth", "internalBorderWidth",
11162 RES_TYPE_NUMBER);
11164 /* Also do the stuff which must be set before the window exists. */
11165 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
11166 "foreground", "Foreground", RES_TYPE_STRING);
11167 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
11168 "background", "Background", RES_TYPE_STRING);
11169 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
11170 "pointerColor", "Foreground", RES_TYPE_STRING);
11171 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
11172 "cursorColor", "Foreground", RES_TYPE_STRING);
11173 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
11174 "borderColor", "BorderColor", RES_TYPE_STRING);
11176 /* Init faces before x_default_parameter is called for scroll-bar
11177 parameters because that function calls x_set_scroll_bar_width,
11178 which calls change_frame_size, which calls Fset_window_buffer,
11179 which runs hooks, which call Fvertical_motion. At the end, we
11180 end up in init_iterator with a null face cache, which should not
11181 happen. */
11182 init_frame_faces (f);
11184 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
11185 window_prompting = x_figure_window_size (f, parms);
11187 if (window_prompting & XNegative)
11189 if (window_prompting & YNegative)
11190 f->output_data.x->win_gravity = SouthEastGravity;
11191 else
11192 f->output_data.x->win_gravity = NorthEastGravity;
11194 else
11196 if (window_prompting & YNegative)
11197 f->output_data.x->win_gravity = SouthWestGravity;
11198 else
11199 f->output_data.x->win_gravity = NorthWestGravity;
11202 f->output_data.x->size_hint_flags = window_prompting;
11204 XSetWindowAttributes attrs;
11205 unsigned long mask;
11207 BLOCK_INPUT;
11208 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
11209 if (DoesSaveUnders (dpyinfo->screen))
11210 mask |= CWSaveUnder;
11212 /* Window managers look at the override-redirect flag to determine
11213 whether or net to give windows a decoration (Xlib spec, chapter
11214 3.2.8). */
11215 attrs.override_redirect = True;
11216 attrs.save_under = True;
11217 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
11218 /* Arrange for getting MapNotify and UnmapNotify events. */
11219 attrs.event_mask = StructureNotifyMask;
11220 tip_window
11221 = FRAME_X_WINDOW (f)
11222 = XCreateWindow (FRAME_X_DISPLAY (f),
11223 FRAME_X_DISPLAY_INFO (f)->root_window,
11224 /* x, y, width, height */
11225 0, 0, 1, 1,
11226 /* Border. */
11228 CopyFromParent, InputOutput, CopyFromParent,
11229 mask, &attrs);
11230 UNBLOCK_INPUT;
11233 x_make_gc (f);
11235 x_default_parameter (f, parms, Qauto_raise, Qnil,
11236 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
11237 x_default_parameter (f, parms, Qauto_lower, Qnil,
11238 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
11239 x_default_parameter (f, parms, Qcursor_type, Qbox,
11240 "cursorType", "CursorType", RES_TYPE_SYMBOL);
11242 /* Dimensions, especially f->height, must be done via change_frame_size.
11243 Change will not be effected unless different from the current
11244 f->height. */
11245 width = f->width;
11246 height = f->height;
11247 f->height = 0;
11248 SET_FRAME_WIDTH (f, 0);
11249 change_frame_size (f, height, width, 1, 0, 0);
11251 /* Add `tooltip' frame parameter's default value. */
11252 if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
11253 Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
11254 Qnil));
11256 /* Set up faces after all frame parameters are known. This call
11257 also merges in face attributes specified for new frames.
11259 Frame parameters may be changed if .Xdefaults contains
11260 specifications for the default font. For example, if there is an
11261 `Emacs.default.attributeBackground: pink', the `background-color'
11262 attribute of the frame get's set, which let's the internal border
11263 of the tooltip frame appear in pink. Prevent this. */
11265 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
11267 /* Set tip_frame here, so that */
11268 tip_frame = frame;
11269 call1 (Qface_set_after_frame_default, frame);
11271 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
11272 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
11273 Qnil));
11276 f->no_split = 1;
11278 UNGCPRO;
11280 /* It is now ok to make the frame official even if we get an error
11281 below. And the frame needs to be on Vframe_list or making it
11282 visible won't work. */
11283 Vframe_list = Fcons (frame, Vframe_list);
11285 /* Now that the frame is official, it counts as a reference to
11286 its display. */
11287 FRAME_X_DISPLAY_INFO (f)->reference_count++;
11289 /* Setting attributes of faces of the tooltip frame from resources
11290 and similar will increment face_change_count, which leads to the
11291 clearing of all current matrices. Since this isn't necessary
11292 here, avoid it by resetting face_change_count to the value it
11293 had before we created the tip frame. */
11294 face_change_count = face_change_count_before;
11296 /* Discard the unwind_protect. */
11297 return unbind_to (count, frame);
11301 /* Compute where to display tip frame F. PARMS is the list of frame
11302 parameters for F. DX and DY are specified offsets from the current
11303 location of the mouse. WIDTH and HEIGHT are the width and height
11304 of the tooltip. Return coordinates relative to the root window of
11305 the display in *ROOT_X, and *ROOT_Y. */
11307 static void
11308 compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
11309 struct frame *f;
11310 Lisp_Object parms, dx, dy;
11311 int width, height;
11312 int *root_x, *root_y;
11314 Lisp_Object left, top;
11315 int win_x, win_y;
11316 Window root, child;
11317 unsigned pmask;
11319 /* User-specified position? */
11320 left = Fcdr (Fassq (Qleft, parms));
11321 top = Fcdr (Fassq (Qtop, parms));
11323 /* Move the tooltip window where the mouse pointer is. Resize and
11324 show it. */
11325 if (!INTEGERP (left) || !INTEGERP (top))
11327 BLOCK_INPUT;
11328 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
11329 &root, &child, root_x, root_y, &win_x, &win_y, &pmask);
11330 UNBLOCK_INPUT;
11333 if (INTEGERP (top))
11334 *root_y = XINT (top);
11335 else if (*root_y + XINT (dy) - height < 0)
11336 *root_y -= XINT (dy);
11337 else
11339 *root_y -= height;
11340 *root_y += XINT (dy);
11343 if (INTEGERP (left))
11344 *root_x = XINT (left);
11345 else if (*root_x + XINT (dx) + width <= FRAME_X_DISPLAY_INFO (f)->width)
11346 /* It fits to the right of the pointer. */
11347 *root_x += XINT (dx);
11348 else if (width + XINT (dx) <= *root_x)
11349 /* It fits to the left of the pointer. */
11350 *root_x -= width + XINT (dx);
11351 else
11352 /* Put it left-justified on the screen--it ought to fit that way. */
11353 *root_x = 0;
11357 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
11358 doc: /* Show STRING in a "tooltip" window on frame FRAME.
11359 A tooltip window is a small X window displaying a string.
11361 FRAME nil or omitted means use the selected frame.
11363 PARMS is an optional list of frame parameters which can be used to
11364 change the tooltip's appearance.
11366 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
11367 means use the default timeout of 5 seconds.
11369 If the list of frame parameters PARAMS contains a `left' parameters,
11370 the tooltip is displayed at that x-position. Otherwise it is
11371 displayed at the mouse position, with offset DX added (default is 5 if
11372 DX isn't specified). Likewise for the y-position; if a `top' frame
11373 parameter is specified, it determines the y-position of the tooltip
11374 window, otherwise it is displayed at the mouse position, with offset
11375 DY added (default is -10).
11377 A tooltip's maximum size is specified by `x-max-tooltip-size'.
11378 Text larger than the specified size is clipped. */)
11379 (string, frame, parms, timeout, dx, dy)
11380 Lisp_Object string, frame, parms, timeout, dx, dy;
11382 struct frame *f;
11383 struct window *w;
11384 int root_x, root_y;
11385 struct buffer *old_buffer;
11386 struct text_pos pos;
11387 int i, width, height;
11388 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
11389 int old_windows_or_buffers_changed = windows_or_buffers_changed;
11390 int count = SPECPDL_INDEX ();
11392 specbind (Qinhibit_redisplay, Qt);
11394 GCPRO4 (string, parms, frame, timeout);
11396 CHECK_STRING (string);
11397 f = check_x_frame (frame);
11398 if (NILP (timeout))
11399 timeout = make_number (5);
11400 else
11401 CHECK_NATNUM (timeout);
11403 if (NILP (dx))
11404 dx = make_number (5);
11405 else
11406 CHECK_NUMBER (dx);
11408 if (NILP (dy))
11409 dy = make_number (-10);
11410 else
11411 CHECK_NUMBER (dy);
11413 if (NILP (last_show_tip_args))
11414 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
11416 if (!NILP (tip_frame))
11418 Lisp_Object last_string = AREF (last_show_tip_args, 0);
11419 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
11420 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
11422 if (EQ (frame, last_frame)
11423 && !NILP (Fequal (last_string, string))
11424 && !NILP (Fequal (last_parms, parms)))
11426 struct frame *f = XFRAME (tip_frame);
11428 /* Only DX and DY have changed. */
11429 if (!NILP (tip_timer))
11431 Lisp_Object timer = tip_timer;
11432 tip_timer = Qnil;
11433 call1 (Qcancel_timer, timer);
11436 BLOCK_INPUT;
11437 compute_tip_xy (f, parms, dx, dy, PIXEL_WIDTH (f),
11438 PIXEL_HEIGHT (f), &root_x, &root_y);
11439 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
11440 root_x, root_y);
11441 UNBLOCK_INPUT;
11442 goto start_timer;
11446 /* Hide a previous tip, if any. */
11447 Fx_hide_tip ();
11449 ASET (last_show_tip_args, 0, string);
11450 ASET (last_show_tip_args, 1, frame);
11451 ASET (last_show_tip_args, 2, parms);
11453 /* Add default values to frame parameters. */
11454 if (NILP (Fassq (Qname, parms)))
11455 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
11456 if (NILP (Fassq (Qinternal_border_width, parms)))
11457 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
11458 if (NILP (Fassq (Qborder_width, parms)))
11459 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
11460 if (NILP (Fassq (Qborder_color, parms)))
11461 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
11462 if (NILP (Fassq (Qbackground_color, parms)))
11463 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
11464 parms);
11466 /* Create a frame for the tooltip, and record it in the global
11467 variable tip_frame. */
11468 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms, string);
11469 f = XFRAME (frame);
11471 /* Set up the frame's root window. */
11472 w = XWINDOW (FRAME_ROOT_WINDOW (f));
11473 w->left = w->top = make_number (0);
11475 if (CONSP (Vx_max_tooltip_size)
11476 && INTEGERP (XCAR (Vx_max_tooltip_size))
11477 && XINT (XCAR (Vx_max_tooltip_size)) > 0
11478 && INTEGERP (XCDR (Vx_max_tooltip_size))
11479 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
11481 w->width = XCAR (Vx_max_tooltip_size);
11482 w->height = XCDR (Vx_max_tooltip_size);
11484 else
11486 w->width = make_number (80);
11487 w->height = make_number (40);
11490 f->window_width = XINT (w->width);
11491 adjust_glyphs (f);
11492 w->pseudo_window_p = 1;
11494 /* Display the tooltip text in a temporary buffer. */
11495 old_buffer = current_buffer;
11496 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
11497 current_buffer->truncate_lines = Qnil;
11498 clear_glyph_matrix (w->desired_matrix);
11499 clear_glyph_matrix (w->current_matrix);
11500 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
11501 try_window (FRAME_ROOT_WINDOW (f), pos);
11503 /* Compute width and height of the tooltip. */
11504 width = height = 0;
11505 for (i = 0; i < w->desired_matrix->nrows; ++i)
11507 struct glyph_row *row = &w->desired_matrix->rows[i];
11508 struct glyph *last;
11509 int row_width;
11511 /* Stop at the first empty row at the end. */
11512 if (!row->enabled_p || !row->displays_text_p)
11513 break;
11515 /* Let the row go over the full width of the frame. */
11516 row->full_width_p = 1;
11518 /* There's a glyph at the end of rows that is used to place
11519 the cursor there. Don't include the width of this glyph. */
11520 if (row->used[TEXT_AREA])
11522 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
11523 row_width = row->pixel_width - last->pixel_width;
11525 else
11526 row_width = row->pixel_width;
11528 height += row->height;
11529 width = max (width, row_width);
11532 /* Add the frame's internal border to the width and height the X
11533 window should have. */
11534 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
11535 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
11537 /* Move the tooltip window where the mouse pointer is. Resize and
11538 show it. */
11539 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
11541 BLOCK_INPUT;
11542 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
11543 root_x, root_y, width, height);
11544 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
11545 UNBLOCK_INPUT;
11547 /* Draw into the window. */
11548 w->must_be_updated_p = 1;
11549 update_single_window (w, 1);
11551 /* Restore original current buffer. */
11552 set_buffer_internal_1 (old_buffer);
11553 windows_or_buffers_changed = old_windows_or_buffers_changed;
11555 start_timer:
11556 /* Let the tip disappear after timeout seconds. */
11557 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
11558 intern ("x-hide-tip"));
11560 UNGCPRO;
11561 return unbind_to (count, Qnil);
11565 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
11566 doc: /* Hide the current tooltip window, if there is any.
11567 Value is t if tooltip was open, nil otherwise. */)
11570 int count;
11571 Lisp_Object deleted, frame, timer;
11572 struct gcpro gcpro1, gcpro2;
11574 /* Return quickly if nothing to do. */
11575 if (NILP (tip_timer) && NILP (tip_frame))
11576 return Qnil;
11578 frame = tip_frame;
11579 timer = tip_timer;
11580 GCPRO2 (frame, timer);
11581 tip_frame = tip_timer = deleted = Qnil;
11583 count = SPECPDL_INDEX ();
11584 specbind (Qinhibit_redisplay, Qt);
11585 specbind (Qinhibit_quit, Qt);
11587 if (!NILP (timer))
11588 call1 (Qcancel_timer, timer);
11590 if (FRAMEP (frame))
11592 Fdelete_frame (frame, Qnil);
11593 deleted = Qt;
11595 #ifdef USE_LUCID
11596 /* Bloodcurdling hack alert: The Lucid menu bar widget's
11597 redisplay procedure is not called when a tip frame over menu
11598 items is unmapped. Redisplay the menu manually... */
11600 struct frame *f = SELECTED_FRAME ();
11601 Widget w = f->output_data.x->menubar_widget;
11602 extern void xlwmenu_redisplay P_ ((Widget));
11604 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
11605 && w != NULL)
11607 BLOCK_INPUT;
11608 xlwmenu_redisplay (w);
11609 UNBLOCK_INPUT;
11612 #endif /* USE_LUCID */
11615 UNGCPRO;
11616 return unbind_to (count, deleted);
11621 /***********************************************************************
11622 File selection dialog
11623 ***********************************************************************/
11625 #ifdef USE_MOTIF
11627 /* Callback for "OK" and "Cancel" on file selection dialog. */
11629 static void
11630 file_dialog_cb (widget, client_data, call_data)
11631 Widget widget;
11632 XtPointer call_data, client_data;
11634 int *result = (int *) client_data;
11635 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
11636 *result = cb->reason;
11640 /* Callback for unmapping a file selection dialog. This is used to
11641 capture the case where a dialog is closed via a window manager's
11642 closer button, for example. Using a XmNdestroyCallback didn't work
11643 in this case. */
11645 static void
11646 file_dialog_unmap_cb (widget, client_data, call_data)
11647 Widget widget;
11648 XtPointer call_data, client_data;
11650 int *result = (int *) client_data;
11651 *result = XmCR_CANCEL;
11655 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
11656 doc: /* Read file name, prompting with PROMPT in directory DIR.
11657 Use a file selection dialog.
11658 Select DEFAULT-FILENAME in the dialog's file selection box, if
11659 specified. Don't let the user enter a file name in the file
11660 selection dialog's entry field, if MUSTMATCH is non-nil. */)
11661 (prompt, dir, default_filename, mustmatch)
11662 Lisp_Object prompt, dir, default_filename, mustmatch;
11664 int result;
11665 struct frame *f = SELECTED_FRAME ();
11666 Lisp_Object file = Qnil;
11667 Widget dialog, text, list, help;
11668 Arg al[10];
11669 int ac = 0;
11670 extern XtAppContext Xt_app_con;
11671 XmString dir_xmstring, pattern_xmstring;
11672 int count = SPECPDL_INDEX ();
11673 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
11675 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
11676 CHECK_STRING (prompt);
11677 CHECK_STRING (dir);
11679 /* Prevent redisplay. */
11680 specbind (Qinhibit_redisplay, Qt);
11682 BLOCK_INPUT;
11684 /* Create the dialog with PROMPT as title, using DIR as initial
11685 directory and using "*" as pattern. */
11686 dir = Fexpand_file_name (dir, Qnil);
11687 dir_xmstring = XmStringCreateLocalized (SDATA (dir));
11688 pattern_xmstring = XmStringCreateLocalized ("*");
11690 XtSetArg (al[ac], XmNtitle, SDATA (prompt)); ++ac;
11691 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
11692 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
11693 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
11694 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
11695 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
11696 "fsb", al, ac);
11697 XmStringFree (dir_xmstring);
11698 XmStringFree (pattern_xmstring);
11700 /* Add callbacks for OK and Cancel. */
11701 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
11702 (XtPointer) &result);
11703 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
11704 (XtPointer) &result);
11705 XtAddCallback (dialog, XmNunmapCallback, file_dialog_unmap_cb,
11706 (XtPointer) &result);
11708 /* Disable the help button since we can't display help. */
11709 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
11710 XtSetSensitive (help, False);
11712 /* Mark OK button as default. */
11713 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
11714 XmNshowAsDefault, True, NULL);
11716 /* If MUSTMATCH is non-nil, disable the file entry field of the
11717 dialog, so that the user must select a file from the files list
11718 box. We can't remove it because we wouldn't have a way to get at
11719 the result file name, then. */
11720 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
11721 if (!NILP (mustmatch))
11723 Widget label;
11724 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
11725 XtSetSensitive (text, False);
11726 XtSetSensitive (label, False);
11729 /* Manage the dialog, so that list boxes get filled. */
11730 XtManageChild (dialog);
11732 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
11733 must include the path for this to work. */
11734 list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
11735 if (STRINGP (default_filename))
11737 XmString default_xmstring;
11738 int item_pos;
11740 default_xmstring
11741 = XmStringCreateLocalized (SDATA (default_filename));
11743 if (!XmListItemExists (list, default_xmstring))
11745 /* Add a new item if DEFAULT_FILENAME is not in the list. */
11746 XmListAddItem (list, default_xmstring, 0);
11747 item_pos = 0;
11749 else
11750 item_pos = XmListItemPos (list, default_xmstring);
11751 XmStringFree (default_xmstring);
11753 /* Select the item and scroll it into view. */
11754 XmListSelectPos (list, item_pos, True);
11755 XmListSetPos (list, item_pos);
11758 /* Process events until the user presses Cancel or OK. */
11759 result = 0;
11760 while (result == 0)
11762 XEvent event;
11763 XtAppNextEvent (Xt_app_con, &event);
11764 x_dispatch_event (&event, FRAME_X_DISPLAY (f) );
11767 /* Get the result. */
11768 if (result == XmCR_OK)
11770 XmString text;
11771 String data;
11773 XtVaGetValues (dialog, XmNtextString, &text, NULL);
11774 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
11775 XmStringFree (text);
11776 file = build_string (data);
11777 XtFree (data);
11779 else
11780 file = Qnil;
11782 /* Clean up. */
11783 XtUnmanageChild (dialog);
11784 XtDestroyWidget (dialog);
11785 UNBLOCK_INPUT;
11786 UNGCPRO;
11788 /* Make "Cancel" equivalent to C-g. */
11789 if (NILP (file))
11790 Fsignal (Qquit, Qnil);
11792 return unbind_to (count, file);
11795 #endif /* USE_MOTIF */
11797 #ifdef USE_GTK
11799 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
11800 "Read file name, prompting with PROMPT in directory DIR.\n\
11801 Use a file selection dialog.\n\
11802 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
11803 specified. Don't let the user enter a file name in the file\n\
11804 selection dialog's entry field, if MUSTMATCH is non-nil.")
11805 (prompt, dir, default_filename, mustmatch)
11806 Lisp_Object prompt, dir, default_filename, mustmatch;
11808 FRAME_PTR f = SELECTED_FRAME ();
11809 char *fn;
11810 Lisp_Object file = Qnil;
11811 int count = specpdl_ptr - specpdl;
11812 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
11813 char *cdef_file;
11814 char *cprompt;
11816 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
11817 CHECK_STRING (prompt);
11818 CHECK_STRING (dir);
11820 /* Prevent redisplay. */
11821 specbind (Qinhibit_redisplay, Qt);
11823 BLOCK_INPUT;
11825 if (STRINGP (default_filename))
11826 cdef_file = SDATA (default_filename);
11827 else
11828 cdef_file = SDATA (dir);
11830 fn = xg_get_file_name (f, SDATA (prompt), cdef_file, ! NILP (mustmatch));
11832 if (fn)
11834 file = build_string (fn);
11835 xfree (fn);
11838 UNBLOCK_INPUT;
11839 UNGCPRO;
11841 /* Make "Cancel" equivalent to C-g. */
11842 if (NILP (file))
11843 Fsignal (Qquit, Qnil);
11845 return unbind_to (count, file);
11848 #endif /* USE_GTK */
11851 /***********************************************************************
11852 Keyboard
11853 ***********************************************************************/
11855 #ifdef HAVE_XKBGETKEYBOARD
11856 #include <X11/XKBlib.h>
11857 #include <X11/keysym.h>
11858 #endif
11860 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p,
11861 Sx_backspace_delete_keys_p, 0, 1, 0,
11862 doc: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
11863 FRAME nil means use the selected frame.
11864 Value is t if we know that both keys are present, and are mapped to the
11865 usual X keysyms. */)
11866 (frame)
11867 Lisp_Object frame;
11869 #ifdef HAVE_XKBGETKEYBOARD
11870 XkbDescPtr kb;
11871 struct frame *f = check_x_frame (frame);
11872 Display *dpy = FRAME_X_DISPLAY (f);
11873 Lisp_Object have_keys;
11874 int major, minor, op, event, error;
11876 BLOCK_INPUT;
11878 /* Check library version in case we're dynamically linked. */
11879 major = XkbMajorVersion;
11880 minor = XkbMinorVersion;
11881 if (!XkbLibraryVersion (&major, &minor))
11883 UNBLOCK_INPUT;
11884 return Qnil;
11887 /* Check that the server supports XKB. */
11888 major = XkbMajorVersion;
11889 minor = XkbMinorVersion;
11890 if (!XkbQueryExtension (dpy, &op, &event, &error, &major, &minor))
11892 UNBLOCK_INPUT;
11893 return Qnil;
11896 have_keys = Qnil;
11897 kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
11898 if (kb)
11900 int delete_keycode = 0, backspace_keycode = 0, i;
11902 if (XkbGetNames (dpy, XkbAllNamesMask, kb) == Success)
11904 for (i = kb->min_key_code;
11905 (i < kb->max_key_code
11906 && (delete_keycode == 0 || backspace_keycode == 0));
11907 ++i)
11909 /* The XKB symbolic key names can be seen most easily in
11910 the PS file generated by `xkbprint -label name
11911 $DISPLAY'. */
11912 if (bcmp ("DELE", kb->names->keys[i].name, 4) == 0)
11913 delete_keycode = i;
11914 else if (bcmp ("BKSP", kb->names->keys[i].name, 4) == 0)
11915 backspace_keycode = i;
11918 XkbFreeNames (kb, 0, True);
11921 XkbFreeClientMap (kb, 0, True);
11923 if (delete_keycode
11924 && backspace_keycode
11925 && XKeysymToKeycode (dpy, XK_Delete) == delete_keycode
11926 && XKeysymToKeycode (dpy, XK_BackSpace) == backspace_keycode)
11927 have_keys = Qt;
11929 UNBLOCK_INPUT;
11930 return have_keys;
11931 #else /* not HAVE_XKBGETKEYBOARD */
11932 return Qnil;
11933 #endif /* not HAVE_XKBGETKEYBOARD */
11938 /***********************************************************************
11939 Initialization
11940 ***********************************************************************/
11942 void
11943 syms_of_xfns ()
11945 /* This is zero if not using X windows. */
11946 x_in_use = 0;
11948 /* The section below is built by the lisp expression at the top of the file,
11949 just above where these variables are declared. */
11950 /*&&& init symbols here &&&*/
11951 Qauto_raise = intern ("auto-raise");
11952 staticpro (&Qauto_raise);
11953 Qauto_lower = intern ("auto-lower");
11954 staticpro (&Qauto_lower);
11955 Qborder_color = intern ("border-color");
11956 staticpro (&Qborder_color);
11957 Qborder_width = intern ("border-width");
11958 staticpro (&Qborder_width);
11959 Qcursor_color = intern ("cursor-color");
11960 staticpro (&Qcursor_color);
11961 Qcursor_type = intern ("cursor-type");
11962 staticpro (&Qcursor_type);
11963 Qgeometry = intern ("geometry");
11964 staticpro (&Qgeometry);
11965 Qicon_left = intern ("icon-left");
11966 staticpro (&Qicon_left);
11967 Qicon_top = intern ("icon-top");
11968 staticpro (&Qicon_top);
11969 Qicon_type = intern ("icon-type");
11970 staticpro (&Qicon_type);
11971 Qicon_name = intern ("icon-name");
11972 staticpro (&Qicon_name);
11973 Qinternal_border_width = intern ("internal-border-width");
11974 staticpro (&Qinternal_border_width);
11975 Qleft = intern ("left");
11976 staticpro (&Qleft);
11977 Qright = intern ("right");
11978 staticpro (&Qright);
11979 Qmouse_color = intern ("mouse-color");
11980 staticpro (&Qmouse_color);
11981 Qnone = intern ("none");
11982 staticpro (&Qnone);
11983 Qparent_id = intern ("parent-id");
11984 staticpro (&Qparent_id);
11985 Qscroll_bar_width = intern ("scroll-bar-width");
11986 staticpro (&Qscroll_bar_width);
11987 Qsuppress_icon = intern ("suppress-icon");
11988 staticpro (&Qsuppress_icon);
11989 Qundefined_color = intern ("undefined-color");
11990 staticpro (&Qundefined_color);
11991 Qvertical_scroll_bars = intern ("vertical-scroll-bars");
11992 staticpro (&Qvertical_scroll_bars);
11993 Qvisibility = intern ("visibility");
11994 staticpro (&Qvisibility);
11995 Qwindow_id = intern ("window-id");
11996 staticpro (&Qwindow_id);
11997 Qouter_window_id = intern ("outer-window-id");
11998 staticpro (&Qouter_window_id);
11999 Qx_frame_parameter = intern ("x-frame-parameter");
12000 staticpro (&Qx_frame_parameter);
12001 Qx_resource_name = intern ("x-resource-name");
12002 staticpro (&Qx_resource_name);
12003 Quser_position = intern ("user-position");
12004 staticpro (&Quser_position);
12005 Quser_size = intern ("user-size");
12006 staticpro (&Quser_size);
12007 Qscroll_bar_foreground = intern ("scroll-bar-foreground");
12008 staticpro (&Qscroll_bar_foreground);
12009 Qscroll_bar_background = intern ("scroll-bar-background");
12010 staticpro (&Qscroll_bar_background);
12011 Qscreen_gamma = intern ("screen-gamma");
12012 staticpro (&Qscreen_gamma);
12013 Qline_spacing = intern ("line-spacing");
12014 staticpro (&Qline_spacing);
12015 Qcenter = intern ("center");
12016 staticpro (&Qcenter);
12017 Qcompound_text = intern ("compound-text");
12018 staticpro (&Qcompound_text);
12019 Qcancel_timer = intern ("cancel-timer");
12020 staticpro (&Qcancel_timer);
12021 Qwait_for_wm = intern ("wait-for-wm");
12022 staticpro (&Qwait_for_wm);
12023 Qfullscreen = intern ("fullscreen");
12024 staticpro (&Qfullscreen);
12025 Qfullwidth = intern ("fullwidth");
12026 staticpro (&Qfullwidth);
12027 Qfullheight = intern ("fullheight");
12028 staticpro (&Qfullheight);
12029 Qfullboth = intern ("fullboth");
12030 staticpro (&Qfullboth);
12031 /* This is the end of symbol initialization. */
12033 /* Text property `display' should be nonsticky by default. */
12034 Vtext_property_default_nonsticky
12035 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
12038 Qlaplace = intern ("laplace");
12039 staticpro (&Qlaplace);
12040 Qemboss = intern ("emboss");
12041 staticpro (&Qemboss);
12042 Qedge_detection = intern ("edge-detection");
12043 staticpro (&Qedge_detection);
12044 Qheuristic = intern ("heuristic");
12045 staticpro (&Qheuristic);
12046 QCmatrix = intern (":matrix");
12047 staticpro (&QCmatrix);
12048 QCcolor_adjustment = intern (":color-adjustment");
12049 staticpro (&QCcolor_adjustment);
12050 QCmask = intern (":mask");
12051 staticpro (&QCmask);
12053 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
12054 staticpro (&Qface_set_after_frame_default);
12056 Fput (Qundefined_color, Qerror_conditions,
12057 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
12058 Fput (Qundefined_color, Qerror_message,
12059 build_string ("Undefined color"));
12061 init_x_parm_symbols ();
12063 DEFVAR_BOOL ("cross-disabled-images", &cross_disabled_images,
12064 doc: /* Non-nil means always draw a cross over disabled images.
12065 Disabled images are those having an `:conversion disabled' property.
12066 A cross is always drawn on black & white displays. */);
12067 cross_disabled_images = 0;
12069 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
12070 doc: /* List of directories to search for window system bitmap files. */);
12071 Vx_bitmap_file_path = decode_env_path ((char *) 0, PATH_BITMAPS);
12073 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
12074 doc: /* The shape of the pointer when over text.
12075 Changing the value does not affect existing frames
12076 unless you set the mouse color. */);
12077 Vx_pointer_shape = Qnil;
12079 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
12080 doc: /* The name Emacs uses to look up X resources.
12081 `x-get-resource' uses this as the first component of the instance name
12082 when requesting resource values.
12083 Emacs initially sets `x-resource-name' to the name under which Emacs
12084 was invoked, or to the value specified with the `-name' or `-rn'
12085 switches, if present.
12087 It may be useful to bind this variable locally around a call
12088 to `x-get-resource'. See also the variable `x-resource-class'. */);
12089 Vx_resource_name = Qnil;
12091 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
12092 doc: /* The class Emacs uses to look up X resources.
12093 `x-get-resource' uses this as the first component of the instance class
12094 when requesting resource values.
12096 Emacs initially sets `x-resource-class' to "Emacs".
12098 Setting this variable permanently is not a reasonable thing to do,
12099 but binding this variable locally around a call to `x-get-resource'
12100 is a reasonable practice. See also the variable `x-resource-name'. */);
12101 Vx_resource_class = build_string (EMACS_CLASS);
12103 #if 0 /* This doesn't really do anything. */
12104 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
12105 doc: /* The shape of the pointer when not over text.
12106 This variable takes effect when you create a new frame
12107 or when you set the mouse color. */);
12108 #endif
12109 Vx_nontext_pointer_shape = Qnil;
12111 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
12112 doc: /* The shape of the pointer when Emacs is busy.
12113 This variable takes effect when you create a new frame
12114 or when you set the mouse color. */);
12115 Vx_hourglass_pointer_shape = Qnil;
12117 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
12118 doc: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
12119 display_hourglass_p = 1;
12121 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
12122 doc: /* *Seconds to wait before displaying an hourglass pointer.
12123 Value must be an integer or float. */);
12124 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
12126 #if 0 /* This doesn't really do anything. */
12127 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
12128 doc: /* The shape of the pointer when over the mode line.
12129 This variable takes effect when you create a new frame
12130 or when you set the mouse color. */);
12131 #endif
12132 Vx_mode_pointer_shape = Qnil;
12134 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
12135 &Vx_sensitive_text_pointer_shape,
12136 doc: /* The shape of the pointer when over mouse-sensitive text.
12137 This variable takes effect when you create a new frame
12138 or when you set the mouse color. */);
12139 Vx_sensitive_text_pointer_shape = Qnil;
12141 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
12142 &Vx_window_horizontal_drag_shape,
12143 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
12144 This variable takes effect when you create a new frame
12145 or when you set the mouse color. */);
12146 Vx_window_horizontal_drag_shape = Qnil;
12148 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
12149 doc: /* A string indicating the foreground color of the cursor box. */);
12150 Vx_cursor_fore_pixel = Qnil;
12152 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
12153 doc: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
12154 Text larger than this is clipped. */);
12155 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
12157 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
12158 doc: /* Non-nil if no X window manager is in use.
12159 Emacs doesn't try to figure this out; this is always nil
12160 unless you set it to something else. */);
12161 /* We don't have any way to find this out, so set it to nil
12162 and maybe the user would like to set it to t. */
12163 Vx_no_window_manager = Qnil;
12165 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
12166 &Vx_pixel_size_width_font_regexp,
12167 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
12169 Since Emacs gets width of a font matching with this regexp from
12170 PIXEL_SIZE field of the name, font finding mechanism gets faster for
12171 such a font. This is especially effective for such large fonts as
12172 Chinese, Japanese, and Korean. */);
12173 Vx_pixel_size_width_font_regexp = Qnil;
12175 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
12176 doc: /* Time after which cached images are removed from the cache.
12177 When an image has not been displayed this many seconds, remove it
12178 from the image cache. Value must be an integer or nil with nil
12179 meaning don't clear the cache. */);
12180 Vimage_cache_eviction_delay = make_number (30 * 60);
12182 #ifdef USE_X_TOOLKIT
12183 Fprovide (intern ("x-toolkit"), Qnil);
12184 #ifdef USE_MOTIF
12185 Fprovide (intern ("motif"), Qnil);
12187 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string,
12188 doc: /* Version info for LessTif/Motif. */);
12189 Vmotif_version_string = build_string (XmVERSION_STRING);
12190 #endif /* USE_MOTIF */
12191 #endif /* USE_X_TOOLKIT */
12193 defsubr (&Sx_get_resource);
12195 /* X window properties. */
12196 defsubr (&Sx_change_window_property);
12197 defsubr (&Sx_delete_window_property);
12198 defsubr (&Sx_window_property);
12200 defsubr (&Sxw_display_color_p);
12201 defsubr (&Sx_display_grayscale_p);
12202 defsubr (&Sxw_color_defined_p);
12203 defsubr (&Sxw_color_values);
12204 defsubr (&Sx_server_max_request_size);
12205 defsubr (&Sx_server_vendor);
12206 defsubr (&Sx_server_version);
12207 defsubr (&Sx_display_pixel_width);
12208 defsubr (&Sx_display_pixel_height);
12209 defsubr (&Sx_display_mm_width);
12210 defsubr (&Sx_display_mm_height);
12211 defsubr (&Sx_display_screens);
12212 defsubr (&Sx_display_planes);
12213 defsubr (&Sx_display_color_cells);
12214 defsubr (&Sx_display_visual_class);
12215 defsubr (&Sx_display_backing_store);
12216 defsubr (&Sx_display_save_under);
12217 defsubr (&Sx_parse_geometry);
12218 defsubr (&Sx_create_frame);
12219 defsubr (&Sx_open_connection);
12220 defsubr (&Sx_close_connection);
12221 defsubr (&Sx_display_list);
12222 defsubr (&Sx_synchronize);
12223 defsubr (&Sx_focus_frame);
12224 defsubr (&Sx_backspace_delete_keys_p);
12226 /* Setting callback functions for fontset handler. */
12227 get_font_info_func = x_get_font_info;
12229 #if 0 /* This function pointer doesn't seem to be used anywhere.
12230 And the pointer assigned has the wrong type, anyway. */
12231 list_fonts_func = x_list_fonts;
12232 #endif
12234 load_font_func = x_load_font;
12235 find_ccl_program_func = x_find_ccl_program;
12236 query_font_func = x_query_font;
12237 set_frame_fontset_func = x_set_font;
12238 check_window_system_func = check_x;
12240 /* Images. */
12241 Qxbm = intern ("xbm");
12242 staticpro (&Qxbm);
12243 QCconversion = intern (":conversion");
12244 staticpro (&QCconversion);
12245 QCheuristic_mask = intern (":heuristic-mask");
12246 staticpro (&QCheuristic_mask);
12247 QCcolor_symbols = intern (":color-symbols");
12248 staticpro (&QCcolor_symbols);
12249 QCascent = intern (":ascent");
12250 staticpro (&QCascent);
12251 QCmargin = intern (":margin");
12252 staticpro (&QCmargin);
12253 QCrelief = intern (":relief");
12254 staticpro (&QCrelief);
12255 Qpostscript = intern ("postscript");
12256 staticpro (&Qpostscript);
12257 QCloader = intern (":loader");
12258 staticpro (&QCloader);
12259 QCbounding_box = intern (":bounding-box");
12260 staticpro (&QCbounding_box);
12261 QCpt_width = intern (":pt-width");
12262 staticpro (&QCpt_width);
12263 QCpt_height = intern (":pt-height");
12264 staticpro (&QCpt_height);
12265 QCindex = intern (":index");
12266 staticpro (&QCindex);
12267 Qpbm = intern ("pbm");
12268 staticpro (&Qpbm);
12270 #if HAVE_XPM
12271 Qxpm = intern ("xpm");
12272 staticpro (&Qxpm);
12273 #endif
12275 #if HAVE_JPEG
12276 Qjpeg = intern ("jpeg");
12277 staticpro (&Qjpeg);
12278 #endif
12280 #if HAVE_TIFF
12281 Qtiff = intern ("tiff");
12282 staticpro (&Qtiff);
12283 #endif
12285 #if HAVE_GIF
12286 Qgif = intern ("gif");
12287 staticpro (&Qgif);
12288 #endif
12290 #if HAVE_PNG
12291 Qpng = intern ("png");
12292 staticpro (&Qpng);
12293 #endif
12295 defsubr (&Sclear_image_cache);
12296 defsubr (&Simage_size);
12297 defsubr (&Simage_mask_p);
12299 hourglass_atimer = NULL;
12300 hourglass_shown_p = 0;
12302 defsubr (&Sx_show_tip);
12303 defsubr (&Sx_hide_tip);
12304 tip_timer = Qnil;
12305 staticpro (&tip_timer);
12306 tip_frame = Qnil;
12307 staticpro (&tip_frame);
12309 last_show_tip_args = Qnil;
12310 staticpro (&last_show_tip_args);
12312 #ifdef USE_MOTIF
12313 defsubr (&Sx_file_dialog);
12314 #endif
12318 void
12319 init_xfns ()
12321 image_types = NULL;
12322 Vimage_types = Qnil;
12324 define_image_type (&xbm_type);
12325 define_image_type (&gs_type);
12326 define_image_type (&pbm_type);
12328 #if HAVE_XPM
12329 define_image_type (&xpm_type);
12330 #endif
12332 #if HAVE_JPEG
12333 define_image_type (&jpeg_type);
12334 #endif
12336 #if HAVE_TIFF
12337 define_image_type (&tiff_type);
12338 #endif
12340 #if HAVE_GIF
12341 define_image_type (&gif_type);
12342 #endif
12344 #if HAVE_PNG
12345 define_image_type (&png_type);
12346 #endif
12349 #endif /* HAVE_X_WINDOWS */